@pdtf/schemas 3.2.0-6 → 3.2.1-3

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.
@@ -383,9 +383,6 @@
383
383
  "annualGroundRent": {
384
384
  "ntsRef": "A3.4.2"
385
385
  },
386
- "groundRentFrequency": {
387
- "ntsRef": "A3.4.3"
388
- },
389
386
  "rentSubjectToIncrease": {
390
387
  "ntsRef": "A3.4.4",
391
388
  "discriminator": {
@@ -1087,6 +1084,7 @@
1087
1084
  "required": [
1088
1085
  "mainsElectricity",
1089
1086
  "solarPanels",
1087
+ "heatPump",
1090
1088
  "otherSources"
1091
1089
  ],
1092
1090
  "properties": {
@@ -757,6 +757,7 @@
757
757
  "required": [
758
758
  "mainsElectricity",
759
759
  "solarPanels",
760
+ "heatPump",
760
761
  "otherSources"
761
762
  ],
762
763
  "properties": {
@@ -37,7 +37,8 @@
37
37
  "outdoorArea",
38
38
  "televisionAndTelephone",
39
39
  "stockOfFuel",
40
- "otherItems"
40
+ "otherItems",
41
+ "confirmationOfAccuracy"
41
42
  ],
42
43
  "properties": {
43
44
  "basicFittings": {
@@ -341,7 +341,11 @@
341
341
  "rentIncreaseCalculated": {
342
342
  "ta7Ref": "1.2e"
343
343
  }
344
- }
344
+ },
345
+ "required": [
346
+ "rentReviewFrequency",
347
+ "rentIncreaseCalculated"
348
+ ]
345
349
  }
346
350
  ],
347
351
  "required": [
@@ -353,7 +357,12 @@
353
357
  }
354
358
  }
355
359
  }
356
- }
360
+ },
361
+ "required": [
362
+ "annualGroundRent",
363
+ "groundRentFrequency",
364
+ "rentSubjectToIncrease"
365
+ ]
357
366
  }
358
367
  ],
359
368
  "required": [
@@ -6320,7 +6320,7 @@
6320
6320
  },
6321
6321
  "premiumIncludedInServiceCharge": {
6322
6322
  "type": "object",
6323
- "title": "Is the insurance premium included in the service charge Yes budget?",
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": "confirm the annual amount payable for the Property",
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": {
@@ -10,6 +10,7 @@ const extractFields = [
10
10
  "baspi4",
11
11
  "baspi5",
12
12
  "nts",
13
+ "nts-sef",
13
14
  "ntsl",
14
15
  "ta6",
15
16
  "ta7",