@pdtf/schemas 3.2.0-5 → 3.2.1-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -0
- package/package.json +1 -1
- package/src/examples/v3/exampleAddParticipantVouch.json +3 -0
- package/src/examples/v3/exampleDocumentedVouch.json +3 -0
- package/src/examples/v3/exampleElectronicRecord.json +3 -0
- package/src/examples/v3/exampleTransaction.json +7 -1
- package/src/examples/v3/exampleVouch.json +3 -0
- package/src/schemas/v3/combined.json +429 -7
- package/src/schemas/v3/overlays/nts-sef.json +2122 -0
- package/src/schemas/v3/overlays/sr24.json +4 -0
- package/src/schemas/v3/overlays/ta10.json +2 -1
- package/src/schemas/v3/pdtf-transaction.json +57 -2
- package/src/schemas/v3/skeleton.json +6 -0
- package/src/schemas/verifiedClaims/pdtf-verified-claims.json +12 -0
- package/src/utils/extractOverlay.js +1 -0
|
@@ -6320,7 +6320,7 @@
|
|
|
6320
6320
|
},
|
|
6321
6321
|
"premiumIncludedInServiceCharge": {
|
|
6322
6322
|
"type": "object",
|
|
6323
|
-
"title": "Is the insurance premium included in the service charge
|
|
6323
|
+
"title": "Is the insurance premium included in the service charge budget?",
|
|
6324
6324
|
"properties": {
|
|
6325
6325
|
"yesNo": {
|
|
6326
6326
|
"type": "string",
|
|
@@ -6349,7 +6349,7 @@
|
|
|
6349
6349
|
]
|
|
6350
6350
|
},
|
|
6351
6351
|
"details": {
|
|
6352
|
-
"title": "
|
|
6352
|
+
"title": "Confirm the annual amount payable for the Property",
|
|
6353
6353
|
"type": "number"
|
|
6354
6354
|
}
|
|
6355
6355
|
}
|
|
@@ -7953,6 +7953,61 @@
|
|
|
7953
7953
|
}
|
|
7954
7954
|
]
|
|
7955
7955
|
},
|
|
7956
|
+
"loft": {
|
|
7957
|
+
"title": "Does the property have access to a loft?",
|
|
7958
|
+
"type": "object",
|
|
7959
|
+
"properties": {
|
|
7960
|
+
"loftAccess": {
|
|
7961
|
+
"type": "string",
|
|
7962
|
+
"title": "",
|
|
7963
|
+
"enum": [
|
|
7964
|
+
"Yes",
|
|
7965
|
+
"No"
|
|
7966
|
+
]
|
|
7967
|
+
}
|
|
7968
|
+
},
|
|
7969
|
+
"oneOf": [
|
|
7970
|
+
{
|
|
7971
|
+
"properties": {
|
|
7972
|
+
"loftAccess": {
|
|
7973
|
+
"enum": [
|
|
7974
|
+
"No"
|
|
7975
|
+
]
|
|
7976
|
+
}
|
|
7977
|
+
}
|
|
7978
|
+
},
|
|
7979
|
+
{
|
|
7980
|
+
"properties": {
|
|
7981
|
+
"loftAccess": {
|
|
7982
|
+
"enum": [
|
|
7983
|
+
"Yes"
|
|
7984
|
+
]
|
|
7985
|
+
},
|
|
7986
|
+
"details": {
|
|
7987
|
+
"title": "Please describe how the loft is accessed",
|
|
7988
|
+
"type": "string",
|
|
7989
|
+
"minLength": 1
|
|
7990
|
+
},
|
|
7991
|
+
"loftBoarded": {
|
|
7992
|
+
"type": "string",
|
|
7993
|
+
"title": "Is the loft space boarded?",
|
|
7994
|
+
"enum": [
|
|
7995
|
+
"Yes",
|
|
7996
|
+
"No"
|
|
7997
|
+
]
|
|
7998
|
+
},
|
|
7999
|
+
"loftInsulated": {
|
|
8000
|
+
"type": "string",
|
|
8001
|
+
"title": "Is the loft space insulated?",
|
|
8002
|
+
"enum": [
|
|
8003
|
+
"Yes",
|
|
8004
|
+
"No"
|
|
8005
|
+
]
|
|
8006
|
+
}
|
|
8007
|
+
}
|
|
8008
|
+
}
|
|
8009
|
+
]
|
|
8010
|
+
},
|
|
7956
8011
|
"sprayFoamInsulation": {
|
|
7957
8012
|
"title": "Has spray foam insulation been installed at the property?",
|
|
7958
8013
|
"type": "object",
|
|
@@ -1076,6 +1076,12 @@
|
|
|
1076
1076
|
"abilityToResideAtProperty": {},
|
|
1077
1077
|
"attachments": {}
|
|
1078
1078
|
},
|
|
1079
|
+
"loft": {
|
|
1080
|
+
"loftAccess": {},
|
|
1081
|
+
"details": {},
|
|
1082
|
+
"loftBoarded": {},
|
|
1083
|
+
"loftInsulated": {}
|
|
1084
|
+
},
|
|
1079
1085
|
"sprayFoamInsulation": {
|
|
1080
1086
|
"hasSprayFoamInstalled": {},
|
|
1081
1087
|
"details": {},
|
|
@@ -362,6 +362,18 @@
|
|
|
362
362
|
"verified_claims_def": {
|
|
363
363
|
"type": "object",
|
|
364
364
|
"properties": {
|
|
365
|
+
"id": {
|
|
366
|
+
"description": "The unique identifier of the verified claim",
|
|
367
|
+
"type": "string"
|
|
368
|
+
},
|
|
369
|
+
"transactionId": {
|
|
370
|
+
"description": "The unique identifier of the PDTF transaction to which these claims relate",
|
|
371
|
+
"type": "string"
|
|
372
|
+
},
|
|
373
|
+
"schemaVersion": {
|
|
374
|
+
"description": "The semantic version of the schema used to validate the claims",
|
|
375
|
+
"type": "string"
|
|
376
|
+
},
|
|
365
377
|
"verification": {
|
|
366
378
|
"type": "object",
|
|
367
379
|
"properties": {
|