@pdtf/schemas 3.6.0-30 → 3.6.0-32

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.
Files changed (38) hide show
  1. package/docs/sef25-extensions-ui-spec.md +274 -5
  2. package/index.js +9 -0
  3. package/package.json +1 -1
  4. package/src/schemas/v3/combined.json +419 -69
  5. package/src/schemas/v3/compactSkeleton.txt +24 -5
  6. package/src/schemas/v3/overlays/extensions/as.json +4 -2
  7. package/src/schemas/v3/overlays/extensions/dk.json +32 -0
  8. package/src/schemas/v3/overlays/extensions/dr.json +4 -2
  9. package/src/schemas/v3/overlays/extensions/er.json +4 -2
  10. package/src/schemas/v3/overlays/extensions/fd.json +6 -3
  11. package/src/schemas/v3/overlays/extensions/hi.json +6 -3
  12. package/src/schemas/v3/overlays/extensions/hs.json +4 -2
  13. package/src/schemas/v3/overlays/extensions/ic.json +56 -0
  14. package/src/schemas/v3/overlays/extensions/jk.json +4 -2
  15. package/src/schemas/v3/overlays/extensions/la.json +4 -2
  16. package/src/schemas/v3/overlays/extensions/lc.json +86 -0
  17. package/src/schemas/v3/overlays/extensions/ma.json +6 -3
  18. package/src/schemas/v3/overlays/extensions/mc.json +4 -2
  19. package/src/schemas/v3/overlays/extensions/mi.json +52 -0
  20. package/src/schemas/v3/overlays/extensions/nd.json +43 -0
  21. package/src/schemas/v3/overlays/extensions/oa.json +4 -2
  22. package/src/schemas/v3/overlays/extensions/oc.json +4 -2
  23. package/src/schemas/v3/overlays/extensions/pc.json +2 -1
  24. package/src/schemas/v3/overlays/extensions/rw.json +68 -0
  25. package/src/schemas/v3/overlays/extensions/sb.json +4 -2
  26. package/src/schemas/v3/overlays/extensions/sc.json +82 -14
  27. package/src/schemas/v3/overlays/extensions/sd.json +63 -0
  28. package/src/schemas/v3/overlays/extensions/sf.json +4 -2
  29. package/src/schemas/v3/overlays/extensions/sl.json +4 -2
  30. package/src/schemas/v3/overlays/extensions/tf.json +6 -3
  31. package/src/schemas/v3/overlays/extensions/tr.json +73 -0
  32. package/src/schemas/v3/overlays/extensions/wg.json +209 -0
  33. package/src/schemas/v3/overlays/ta6ed6.json +37 -18
  34. package/src/schemas/v3/pdtf-transaction.json +477 -51
  35. package/src/schemas/v3/skeleton.json +33 -10
  36. package/src/tests/v3/extensionOverlays.test.js +410 -4
  37. package/src/tests/v3/ta6ed6.test.js +1 -48
  38. package/src/utils/extractExtensionOverlays.js +121 -0
@@ -1325,7 +1325,48 @@
1325
1325
  "type": "string",
1326
1326
  "enum": ["Yes", "No"]
1327
1327
  }
1328
- }
1328
+ },
1329
+ "oneOf": [
1330
+ {
1331
+ "properties": {
1332
+ "yesNo": {
1333
+ "enum": ["No"]
1334
+ }
1335
+ }
1336
+ },
1337
+ {
1338
+ "properties": {
1339
+ "yesNo": {
1340
+ "enum": ["Yes"]
1341
+ },
1342
+ "newBuildDetails": {
1343
+ "title": "New build details",
1344
+ "type": "object",
1345
+ "properties": {
1346
+ "snaggingCompletion": {
1347
+ "title": "Snagging completion status",
1348
+ "type": "string",
1349
+ "enum": ["complete", "outstanding", "not-done"]
1350
+ },
1351
+ "adoptionStatus": {
1352
+ "title": "Roads and drains adoption status",
1353
+ "type": "string",
1354
+ "enum": ["adopted", "pending", "private"]
1355
+ },
1356
+ "conversionConsent": {
1357
+ "title": "Consent for conversion obtained",
1358
+ "type": "boolean"
1359
+ },
1360
+ "conversionQuality": {
1361
+ "title": "Conversion quality assessment",
1362
+ "type": "string",
1363
+ "enum": ["professional", "diy", "unknown"]
1364
+ }
1365
+ }
1366
+ }
1367
+ }
1368
+ }
1369
+ ]
1329
1370
  },
1330
1371
  "isHMO": {
1331
1372
  "title": "Is the property a House in Multiple Occupation (HMO)?",
@@ -1938,6 +1979,7 @@
1938
1979
  "ta7ed5Ref": "2",
1939
1980
  "ntsRef": "A3",
1940
1981
  "nts2Ref": "A3",
1982
+ "sef25Ref": "T1",
1941
1983
  "title": "Ownership",
1942
1984
  "type": "object",
1943
1985
  "baspi4Required": ["ownershipsToBeTransferred"],
@@ -2096,6 +2138,46 @@
2096
2138
  }
2097
2139
  ]
2098
2140
  },
2141
+ "titleRestrictions": {
2142
+ "sef25Ref": "T1.1",
2143
+ "title": "Are there any known restrictions on the title?",
2144
+ "type": "object",
2145
+ "sef25Required": ["yesNo"],
2146
+ "properties": {
2147
+ "yesNo": {
2148
+ "sef25Ref": "T1.1.1",
2149
+ "type": "string",
2150
+ "title": "",
2151
+ "enum": ["Yes", "No"]
2152
+ }
2153
+ },
2154
+ "discriminator": {
2155
+ "propertyName": "yesNo"
2156
+ },
2157
+ "oneOf": [
2158
+ {
2159
+ "properties": {
2160
+ "yesNo": {
2161
+ "enum": ["No"]
2162
+ }
2163
+ }
2164
+ },
2165
+ {
2166
+ "properties": {
2167
+ "yesNo": {
2168
+ "enum": ["Yes"]
2169
+ },
2170
+ "details": {
2171
+ "sef25Ref": "T1.1.2",
2172
+ "title": "Details",
2173
+ "type": "string",
2174
+ "minLength": 1
2175
+ }
2176
+ },
2177
+ "sef25Required": ["details"]
2178
+ }
2179
+ ]
2180
+ },
2099
2181
  "wholeFreeholdForSale": {
2100
2182
  "baspi4Ref": "A1.3.0.2.1",
2101
2183
  "baspi5Ref": "A1.3.0.2.1",
@@ -2144,7 +2226,8 @@
2144
2226
  },
2145
2227
  "baspi4Required": ["wholeFreeholdForSale"],
2146
2228
  "baspi5Required": ["wholeFreeholdForSale"],
2147
- "nts2Required": ["estateRentcharges"]
2229
+ "nts2Required": ["estateRentcharges"],
2230
+ "sef25Required": ["titleRestrictions"]
2148
2231
  },
2149
2232
  {
2150
2233
  "properties": {
@@ -4352,9 +4435,8 @@
4352
4435
  "properties": {
4353
4436
  "response": {
4354
4437
  "title": "Declaration",
4355
- "type": "object",
4356
- "description": "I/we confirm that I am the person authorised to provide the information which I have completed in it on behalf of those parties which I have selected from the list, and that a buyer may rely on the information which I have supplied without applying to any other party except where I have left a section blank because I do not have the authority to provide the information",
4357
- "type": "boolean"
4438
+ "type": "boolean",
4439
+ "description": "I/we confirm that I am the person authorised to provide the information which I have completed in it on behalf of those parties which I have selected from the list, and that a buyer may rely on the information which I have supplied without applying to any other party except where I have left a section blank because I do not have the authority to provide the information"
4358
4440
  },
4359
4441
  "capacity": {
4360
4442
  "title": "Please tick as applicable below, to confirm the capacity in which the answers are given.",
@@ -7235,12 +7317,16 @@
7235
7317
  "oneOf": [
7236
7318
  {
7237
7319
  "properties": {
7238
- "yesNo": { "enum": ["No", "Not known"] }
7320
+ "yesNo": {
7321
+ "enum": ["No", "Not known"]
7322
+ }
7239
7323
  }
7240
7324
  },
7241
7325
  {
7242
7326
  "properties": {
7243
- "yesNo": { "enum": ["Yes"] },
7327
+ "yesNo": {
7328
+ "enum": ["Yes"]
7329
+ },
7244
7330
  "attachments": {
7245
7331
  "ta7ed5Ref": "4.4.2",
7246
7332
  "title": "If yes, supply evidence of your ownership or share certificate for membership of the organisation that is responsible for the management of the building.",
@@ -10206,6 +10292,7 @@
10206
10292
  "rdsRef": "Services/Parking",
10207
10293
  "ta6Ref": "9",
10208
10294
  "ta6ed6Ref": "10",
10295
+ "sef25Ref": "K1",
10209
10296
  "title": "Parking",
10210
10297
  "type": "object",
10211
10298
  "baspi4Required": [
@@ -10248,6 +10335,7 @@
10248
10335
  "controlledParking",
10249
10336
  "electricVehicleChargingPoint"
10250
10337
  ],
10338
+ "sef25Required": ["droppedKerbAccess"],
10251
10339
  "properties": {
10252
10340
  "parkingArrangements": {
10253
10341
  "ntsRef": "B4.1",
@@ -10342,7 +10430,6 @@
10342
10430
  "ntsl2Required": ["yesNo"],
10343
10431
  "ta6Required": ["yesNo"],
10344
10432
  "ta6ed6Required": ["yesNo"],
10345
-
10346
10433
  "discriminator": {
10347
10434
  "propertyName": "yesNo"
10348
10435
  },
@@ -10418,6 +10505,20 @@
10418
10505
  }
10419
10506
  ]
10420
10507
  },
10508
+ "droppedKerbAccess": {
10509
+ "sef25Ref": "K1.1",
10510
+ "title": "Is there a dropped kerb access to parking?",
10511
+ "type": "object",
10512
+ "sef25Required": ["yesNo"],
10513
+ "properties": {
10514
+ "yesNo": {
10515
+ "sef25Ref": "K1.1.1",
10516
+ "type": "string",
10517
+ "title": "",
10518
+ "enum": ["Yes", "No"]
10519
+ }
10520
+ }
10521
+ },
10421
10522
  "electricVehicleChargingPoint": {
10422
10523
  "ntsRef": "B4.4",
10423
10524
  "nts2Ref": "B4.4",
@@ -15068,6 +15169,7 @@
15068
15169
  "nts2Ref": "C4",
15069
15170
  "ntslRef": "C4",
15070
15171
  "ntsl2Ref": "C4",
15172
+ "sef25Ref": "N1",
15071
15173
  "title": "Notices which Affect the Property",
15072
15174
  "description": "Are you aware of, or have you received, any of the following notices?",
15073
15175
  "type": "object",
@@ -15116,6 +15218,7 @@
15116
15218
  "ta6ed6Ref": "4.2",
15117
15219
  "rdsRef": "Property/Flags,Planning",
15118
15220
  "piqRef": "A4.1",
15221
+ "sef25Ref": "N1.1",
15119
15222
  "title": "The owner of a neighbouring property is proposing to develop property or land nearby, make alterations to nearby buildings or change the use?",
15120
15223
  "ta6Title": "Is the seller aware of any proposals to develop property or land nearby, or of any proposals to make alterations to buildings nearby?",
15121
15224
  "type": "object",
@@ -21228,6 +21331,7 @@
21228
21331
  "ta6ed6Ref": "12.1",
21229
21332
  "rdsRef": "Services/Electricity",
21230
21333
  "piqRef": "A7.1.1",
21334
+ "sef25Ref": "S1",
21231
21335
  "title": "Electricity supply",
21232
21336
  "type": "object",
21233
21337
  "ntsRequired": [
@@ -21406,6 +21510,7 @@
21406
21510
  "piqRef": "A7.1.17",
21407
21511
  "ta6Ref": "4.6",
21408
21512
  "ta6ed6Ref": "5.6",
21513
+ "sef25Ref": "S1",
21409
21514
  "title": "Solar or photovoltaic panels",
21410
21515
  "type": "object",
21411
21516
  "properties": {
@@ -21482,6 +21587,7 @@
21482
21587
  "ta6ed6Ref": "5.6c",
21483
21588
  "nts2Ref": "B3.7.1",
21484
21589
  "ntsl2Ref": "B3.7.1",
21590
+ "sef25Ref": "S1.1",
21485
21591
  "rdsRef": "Objects/Ownership",
21486
21592
  "piqRef": "B4.4.3",
21487
21593
  "title": "Do you own the panels, and all equipment related to them, outright?",
@@ -21533,6 +21639,51 @@
21533
21639
  "title": "Attachments",
21534
21640
  "type": "string",
21535
21641
  "enum": ["Attached", "To follow"]
21642
+ },
21643
+ "associatedCost": {
21644
+ "sef25Ref": "S1.1",
21645
+ "title": "Associated costs of leased solar panels",
21646
+ "type": "object",
21647
+ "sef25Required": ["hasCost"],
21648
+ "properties": {
21649
+ "hasCost": {
21650
+ "sef25Ref": "S1.1.1",
21651
+ "title": "Are there any associated costs?",
21652
+ "type": "string",
21653
+ "enum": ["Yes", "No"]
21654
+ }
21655
+ },
21656
+ "discriminator": {
21657
+ "propertyName": "hasCost"
21658
+ },
21659
+ "oneOf": [
21660
+ {
21661
+ "properties": {
21662
+ "hasCost": {
21663
+ "enum": ["No"]
21664
+ }
21665
+ }
21666
+ },
21667
+ {
21668
+ "properties": {
21669
+ "hasCost": {
21670
+ "enum": ["Yes"]
21671
+ },
21672
+ "amount": {
21673
+ "sef25Ref": "S1.1.2",
21674
+ "title": "Amount (£)",
21675
+ "type": "number"
21676
+ },
21677
+ "frequency": {
21678
+ "sef25Ref": "S1.1.3",
21679
+ "title": "Payment frequency",
21680
+ "type": "string",
21681
+ "enum": ["Per month", "Per year"]
21682
+ }
21683
+ },
21684
+ "sef25Required": ["amount", "frequency"]
21685
+ }
21686
+ ]
21536
21687
  }
21537
21688
  },
21538
21689
  "baspi4Required": ["details", "attachments"],
@@ -22040,7 +22191,7 @@
22040
22191
  "ntslRequired": ["details"],
22041
22192
  "ntsl2Required": ["details"],
22042
22193
  "ta6ed6Required": [
22043
- "providerName",
22194
+ "supplier",
22044
22195
  "makeModel",
22045
22196
  "serviceProviderName"
22046
22197
  ]
@@ -22329,26 +22480,48 @@
22329
22480
  },
22330
22481
  "associatedCost": {
22331
22482
  "sef25Ref": "U1.1",
22332
- "title": "Please provide the associated costs for water supply",
22483
+ "title": "Associated costs for water supply",
22333
22484
  "type": "object",
22334
- "sef25Required": ["amount", "frequency"],
22485
+ "sef25Required": ["hasCost"],
22335
22486
  "properties": {
22336
- "amount": {
22487
+ "hasCost": {
22337
22488
  "sef25Ref": "U1.1.1",
22338
- "title": "Associated costs of supply if any (£)",
22339
- "type": "number"
22340
- },
22341
- "frequency": {
22342
- "sef25Ref": "U1.1.2",
22343
- "title": "Payment frequency if costs are associated",
22489
+ "title": "Are there any associated costs?",
22344
22490
  "type": "string",
22345
- "enum": [
22346
- "Per month",
22347
- "Per year",
22348
- "Not applicable"
22349
- ]
22491
+ "enum": ["Yes", "No"]
22350
22492
  }
22351
- }
22493
+ },
22494
+ "discriminator": {
22495
+ "propertyName": "hasCost"
22496
+ },
22497
+ "oneOf": [
22498
+ {
22499
+ "properties": {
22500
+ "hasCost": {
22501
+ "enum": ["No"]
22502
+ }
22503
+ }
22504
+ },
22505
+ {
22506
+ "properties": {
22507
+ "hasCost": {
22508
+ "enum": ["Yes"]
22509
+ },
22510
+ "amount": {
22511
+ "sef25Ref": "U1.1.2",
22512
+ "title": "Amount (£)",
22513
+ "type": "number"
22514
+ },
22515
+ "frequency": {
22516
+ "sef25Ref": "U1.1.3",
22517
+ "title": "Payment frequency",
22518
+ "type": "string",
22519
+ "enum": ["Per month", "Per year"]
22520
+ }
22521
+ },
22522
+ "sef25Required": ["amount", "frequency"]
22523
+ }
22524
+ ]
22352
22525
  }
22353
22526
  },
22354
22527
  "ntsRequired": ["details"],
@@ -22946,6 +23119,12 @@
22946
23119
  "Sewerage treatment plant",
22947
23120
  "Other",
22948
23121
  "Not known"
23122
+ ],
23123
+ "ta6ed6Enum": [
23124
+ "Septic tank",
23125
+ "Cesspit",
23126
+ "Sewerage treatment plant",
23127
+ "Other"
22949
23128
  ]
22950
23129
  },
22951
23130
  "otherConnectedProperties": {
@@ -23000,6 +23179,7 @@
23000
23179
  "baspi5Ref": "A7.1.1.2",
23001
23180
  "ta6ed6Ref": "11.7h",
23002
23181
  "title": "Provide details of the properties sharing the system and explain how maintenance of the system is arranged and paid for",
23182
+ "ta6ed6Title": "Give details about how many properties share the system, the arrangements for jointly managing it and how the costs are shared",
23003
23183
  "type": "string",
23004
23184
  "minLength": 1
23005
23185
  }
@@ -23130,6 +23310,7 @@
23130
23310
  "rdsRef": "Services/OtherServices/{isExternallyConnected='yes?true'}",
23131
23311
  "ta6ed6Ref": "11.7f",
23132
23312
  "title": "Does the septic tank, cesspit or sewerage treatment plant drain into a waterway (lake, river, stream etc)",
23313
+ "ta6ed6Title": "Does the sewerage system discharge to the ground or to surface water?",
23133
23314
  "type": "object",
23134
23315
  "properties": {
23135
23316
  "yesNo": {
@@ -23193,8 +23374,7 @@
23193
23374
  ],
23194
23375
  "baspi5Required": ["dischargeCompliesWithGBR"]
23195
23376
  }
23196
- ],
23197
- "ta6ed6Title": "Does the sewerage system discharge to the ground or to surface water?"
23377
+ ]
23198
23378
  }
23199
23379
  },
23200
23380
  "discriminator": {
@@ -23213,12 +23393,31 @@
23213
23393
  "offMainsDrainageSystemType": {
23214
23394
  "enum": ["Septic tank"]
23215
23395
  },
23396
+ "dateDischargeCommenced": {
23397
+ "ta6ed6Ref": "11.7a",
23398
+ "title": "When did the discharge commence?",
23399
+ "type": "string",
23400
+ "oneOf": [
23401
+ {
23402
+ "format": "date"
23403
+ },
23404
+ {
23405
+ "enum": ["Not known"]
23406
+ }
23407
+ ]
23408
+ },
23409
+ "dateInstalled": {
23410
+ "ta6ed6Ref": "11.7b",
23411
+ "title": "When was the system installed?",
23412
+ "type": "string",
23413
+ "format": "date"
23414
+ },
23216
23415
  "dateReplaced": {
23217
23416
  "baspi4Ref": "A7.1.0.14.2",
23218
23417
  "baspi5Ref": "A7.1.0.14.2",
23219
23418
  "ta6Ref": "12.5.1",
23220
23419
  "ta6ed6Ref": "11.7c",
23221
- "title": "Date replaced or upgraded",
23420
+ "title": "When was the system last replaced or upgraded?",
23222
23421
  "type": "string",
23223
23422
  "format": "date"
23224
23423
  },
@@ -23246,7 +23445,8 @@
23246
23445
  "dateLastEmptied"
23247
23446
  ],
23248
23447
  "ta6ed6Required": [
23249
- "dateReplaced",
23448
+ "dateDischargeCommenced",
23449
+ "dateInstalled",
23250
23450
  "dateLastEmptied"
23251
23451
  ]
23252
23452
  },
@@ -23255,6 +23455,31 @@
23255
23455
  "offMainsDrainageSystemType": {
23256
23456
  "enum": ["Cesspit"]
23257
23457
  },
23458
+ "dateDischargeCommenced": {
23459
+ "ta6ed6Ref": "11.7a",
23460
+ "title": "When did the discharge commence?",
23461
+ "type": "string",
23462
+ "oneOf": [
23463
+ {
23464
+ "format": "date"
23465
+ },
23466
+ {
23467
+ "enum": ["Not known"]
23468
+ }
23469
+ ]
23470
+ },
23471
+ "dateInstalled": {
23472
+ "ta6ed6Ref": "11.7b",
23473
+ "title": "Date installed",
23474
+ "type": "string",
23475
+ "format": "date"
23476
+ },
23477
+ "dateReplaced": {
23478
+ "ta6ed6Ref": "11.7c",
23479
+ "title": "When was the system last replaced or upgraded?",
23480
+ "type": "string",
23481
+ "format": "date"
23482
+ },
23258
23483
  "dateLastEmptied": {
23259
23484
  "baspi4Ref": "A7.1.0.15.2",
23260
23485
  "baspi5Ref": "A7.1.0.15.2",
@@ -23269,13 +23494,30 @@
23269
23494
  "baspi4Required": ["dateLastEmptied"],
23270
23495
  "baspi5Required": ["dateLastEmptied"],
23271
23496
  "ta6Required": ["dateLastEmptied"],
23272
- "ta6ed6Required": ["dateLastEmptied"]
23497
+ "ta6ed6Required": [
23498
+ "dateDischargeCommenced",
23499
+ "dateLastEmptied",
23500
+ "dateInstalled"
23501
+ ]
23273
23502
  },
23274
23503
  {
23275
23504
  "properties": {
23276
23505
  "offMainsDrainageSystemType": {
23277
23506
  "enum": ["Sewerage treatment plant"]
23278
23507
  },
23508
+ "dateDischargeCommenced": {
23509
+ "ta6ed6Ref": "11.7a",
23510
+ "title": "When did the discharge commence?",
23511
+ "type": "string",
23512
+ "oneOf": [
23513
+ {
23514
+ "format": "date"
23515
+ },
23516
+ {
23517
+ "enum": ["Not known"]
23518
+ }
23519
+ ]
23520
+ },
23279
23521
  "supplier": {
23280
23522
  "ta6ed6Ref": "12.5.2",
23281
23523
  "title": "Provider name",
@@ -23296,7 +23538,13 @@
23296
23538
  "baspi5Ref": "A7.1.0.16.2",
23297
23539
  "ta6Ref": "12.9",
23298
23540
  "ta6ed6Ref": "11.7b",
23299
- "title": "Date installed",
23541
+ "title": "When was the system installed",
23542
+ "type": "string",
23543
+ "format": "date"
23544
+ },
23545
+ "dateReplaced": {
23546
+ "ta6ed6Ref": "11.7c",
23547
+ "title": "When was the system last replaced or upgraded?",
23300
23548
  "type": "string",
23301
23549
  "format": "date"
23302
23550
  },
@@ -23305,7 +23553,7 @@
23305
23553
  "baspi5Ref": "A7.1.0.16.3",
23306
23554
  "ta6Ref": "12.8",
23307
23555
  "ta6ed6Ref": "11.7e",
23308
- "title": "Date last serviced",
23556
+ "title": "When was the treatment plant last serviced",
23309
23557
  "type": "string",
23310
23558
  "format": "date"
23311
23559
  },
@@ -23336,6 +23584,7 @@
23336
23584
  "dateLastServiced"
23337
23585
  ],
23338
23586
  "ta6ed6Required": [
23587
+ "dateDischargeCommenced",
23339
23588
  "dateInstalled",
23340
23589
  "dateLastServiced",
23341
23590
  "supplier",
@@ -23368,24 +23617,46 @@
23368
23617
  "sef25Ref": "U1.2",
23369
23618
  "title": "Associated costs for sewerage",
23370
23619
  "type": "object",
23371
- "sef25Required": ["amount", "frequency"],
23620
+ "sef25Required": ["hasCost"],
23372
23621
  "properties": {
23373
- "amount": {
23622
+ "hasCost": {
23374
23623
  "sef25Ref": "U1.2.1",
23375
- "title": "Associated costs for sewerage if any (£)",
23376
- "type": "number"
23377
- },
23378
- "frequency": {
23379
- "sef25Ref": "U1.2.2",
23380
- "title": "Payment frequency if costs are associated",
23624
+ "title": "Are there any associated costs?",
23381
23625
  "type": "string",
23382
- "enum": [
23383
- "Per month",
23384
- "Per year",
23385
- "Not applicable"
23386
- ]
23626
+ "enum": ["Yes", "No"]
23387
23627
  }
23388
- }
23628
+ },
23629
+ "discriminator": {
23630
+ "propertyName": "hasCost"
23631
+ },
23632
+ "oneOf": [
23633
+ {
23634
+ "properties": {
23635
+ "hasCost": {
23636
+ "enum": ["No"]
23637
+ }
23638
+ }
23639
+ },
23640
+ {
23641
+ "properties": {
23642
+ "hasCost": {
23643
+ "enum": ["Yes"]
23644
+ },
23645
+ "amount": {
23646
+ "sef25Ref": "U1.2.2",
23647
+ "title": "Amount (£)",
23648
+ "type": "number"
23649
+ },
23650
+ "frequency": {
23651
+ "sef25Ref": "U1.2.3",
23652
+ "title": "Payment frequency",
23653
+ "type": "string",
23654
+ "enum": ["Per month", "Per year"]
23655
+ }
23656
+ },
23657
+ "sef25Required": ["amount", "frequency"]
23658
+ }
23659
+ ]
23389
23660
  }
23390
23661
  },
23391
23662
  "ntsRequired": ["offMainsDrainageSystem"],
@@ -24743,7 +25014,6 @@
24743
25014
  }
24744
25015
  }
24745
25016
  },
24746
-
24747
25017
  {
24748
25018
  "properties": {
24749
25019
  "typeOfConnection": {
@@ -24760,7 +25030,6 @@
24760
25030
  "type": "string"
24761
25031
  }
24762
25032
  },
24763
-
24764
25033
  "ta6ed6Required": ["providerName"]
24765
25034
  }
24766
25035
  ],
@@ -24958,6 +25227,7 @@
24958
25227
  "baspi5Ref": "A8",
24959
25228
  "ta6Ref": "6",
24960
25229
  "ta6ed6Ref": "7",
25230
+ "sef25Ref": "I1",
24961
25231
  "title": "Insurance",
24962
25232
  "type": "object",
24963
25233
  "baspi4Required": ["difficultiesObtainingInsurance", "isInsured"],
@@ -25301,6 +25571,7 @@
25301
25571
  "rdsRef": "Insurance/Claims",
25302
25572
  "ta6Ref": "6.5",
25303
25573
  "ta6ed6Ref": "7.3",
25574
+ "sef25Ref": "I1.1",
25304
25575
  "title": "Have you ever made a claim against your building insurance in relation to the property?",
25305
25576
  "Title": "Has the seller made any buildings insurance claims?",
25306
25577
  "ta6ed6Title": "Have you made any buildings insurance claims?",
@@ -25311,6 +25582,7 @@
25311
25582
  "baspi5Ref": "A8.2.1",
25312
25583
  "ta6Ref": "6.5.1",
25313
25584
  "ta6ed6Ref": "7.3.1",
25585
+ "sef25Ref": "I1.1.1",
25314
25586
  "type": "string",
25315
25587
  "title": "",
25316
25588
  "enum": ["Yes", "No"]
@@ -25358,7 +25630,8 @@
25358
25630
  "baspi4Required": ["insuranceClaims"],
25359
25631
  "baspi5Required": ["insuranceClaims"],
25360
25632
  "ta6Required": ["insuranceClaims"],
25361
- "ta6ed6Required": ["insuranceClaims"]
25633
+ "ta6ed6Required": ["insuranceClaims"],
25634
+ "sef25Required": ["insuranceClaims"]
25362
25635
  }
25363
25636
  ]
25364
25637
  },
@@ -25371,6 +25644,7 @@
25371
25644
  "baspi5Ref": "A10",
25372
25645
  "ta6Ref": "8",
25373
25646
  "ta6ed6Ref": "9",
25647
+ "sef25Ref": "R1",
25374
25648
  "title": "Rights and Informal Arrangements",
25375
25649
  "type": "object",
25376
25650
  "baspi4Required": [
@@ -25676,6 +25950,7 @@
25676
25950
  "baspi5Ref": "A10.4",
25677
25951
  "ta6Ref": "8.4",
25678
25952
  "ta6ed6Ref": "9.4",
25953
+ "sef25Ref": "R1",
25679
25954
  "title": "Do you know if any of the following rights or arrangements affect the property?",
25680
25955
  "type": "object",
25681
25956
  "ntsRequired": ["publicRightOfWay"],
@@ -25722,6 +25997,7 @@
25722
25997
  "otherRights",
25723
25998
  "disagreementOrComplaint"
25724
25999
  ],
26000
+ "sef25Required": ["privateRightOfWay"],
25725
26001
  "properties": {
25726
26002
  "publicRightOfWay": {
25727
26003
  "ntsRef": "C2.2.1",
@@ -25810,6 +26086,46 @@
25810
26086
  }
25811
26087
  ]
25812
26088
  },
26089
+ "privateRightOfWay": {
26090
+ "sef25Ref": "R1.1",
26091
+ "title": "A private right of way through and/or across your house, buildings or land",
26092
+ "type": "object",
26093
+ "sef25Required": ["yesNo"],
26094
+ "properties": {
26095
+ "yesNo": {
26096
+ "sef25Ref": "R1.1.1",
26097
+ "type": "string",
26098
+ "title": "",
26099
+ "enum": ["Yes", "No"]
26100
+ }
26101
+ },
26102
+ "discriminator": {
26103
+ "propertyName": "yesNo"
26104
+ },
26105
+ "oneOf": [
26106
+ {
26107
+ "properties": {
26108
+ "yesNo": {
26109
+ "enum": ["No"]
26110
+ }
26111
+ }
26112
+ },
26113
+ {
26114
+ "properties": {
26115
+ "yesNo": {
26116
+ "enum": ["Yes"]
26117
+ },
26118
+ "details": {
26119
+ "sef25Ref": "R1.1.2",
26120
+ "title": "Please provide details",
26121
+ "type": "string",
26122
+ "minLength": 1
26123
+ }
26124
+ },
26125
+ "sef25Required": ["details"]
26126
+ }
26127
+ ]
26128
+ },
25813
26129
  "rightsOfLight": {
25814
26130
  "baspi4Ref": "A10.4.2a",
25815
26131
  "baspi5Ref": "A10.4.2a",
@@ -26336,6 +26652,7 @@
26336
26652
  "ta6Ref": "7",
26337
26653
  "ta6ed6Ref": "8",
26338
26654
  "piqRef": "A11.1",
26655
+ "sef25Ref": "E1",
26339
26656
  "title": "Environmental Issues Affecting the Property",
26340
26657
  "type": "object",
26341
26658
  "baspi4Required": ["flooding", "radon", "otherEnvironmental"],
@@ -26371,6 +26688,7 @@
26371
26688
  ],
26372
26689
  "ta6Required": ["flooding", "radon"],
26373
26690
  "ta6ed6Required": ["flooding", "radon"],
26691
+ "sef25Required": ["stormFireFloodDamage"],
26374
26692
  "properties": {
26375
26693
  "flooding": {
26376
26694
  "ntsRef": "C3.1.1",
@@ -26600,6 +26918,7 @@
26600
26918
  "baspi5Ref": "A11.1.2.1",
26601
26919
  "ta6Ref": "7.1.1",
26602
26920
  "ta6ed6Ref": "8.1.1",
26921
+ "sef25Ref": "E1.2",
26603
26922
  "title": "Has the property been flooded in the last 5 years?",
26604
26923
  "ta6Title": "Has any part of the property (whether buildings or surrounding garden or land) ever been flooded?",
26605
26924
  "type": "string",
@@ -26728,6 +27047,46 @@
26728
27047
  }
26729
27048
  }
26730
27049
  },
27050
+ "stormFireFloodDamage": {
27051
+ "sef25Ref": "E1.1",
27052
+ "title": "Has the property ever suffered storm, fire or flood damage?",
27053
+ "type": "object",
27054
+ "sef25Required": ["yesNo"],
27055
+ "properties": {
27056
+ "yesNo": {
27057
+ "sef25Ref": "E1.1.1",
27058
+ "type": "string",
27059
+ "title": "",
27060
+ "enum": ["Yes", "No"]
27061
+ }
27062
+ },
27063
+ "discriminator": {
27064
+ "propertyName": "yesNo"
27065
+ },
27066
+ "oneOf": [
27067
+ {
27068
+ "properties": {
27069
+ "yesNo": {
27070
+ "enum": ["No"]
27071
+ }
27072
+ }
27073
+ },
27074
+ {
27075
+ "properties": {
27076
+ "yesNo": {
27077
+ "enum": ["Yes"]
27078
+ },
27079
+ "details": {
27080
+ "sef25Ref": "E1.1.2",
27081
+ "title": "Please provide details",
27082
+ "type": "string",
27083
+ "minLength": 1
27084
+ }
27085
+ },
27086
+ "sef25Required": ["details"]
27087
+ }
27088
+ ]
27089
+ },
26731
27090
  "radon": {
26732
27091
  "baspi4Ref": "A11.1.3",
26733
27092
  "baspi5Ref": "A11.1.3",
@@ -28188,6 +28547,7 @@
28188
28547
  "baspi5Ref": "A12",
28189
28548
  "ta6Ref": "10",
28190
28549
  "ta6ed6Ref": "15",
28550
+ "sef25Ref": "M1",
28191
28551
  "title": "Additional Information",
28192
28552
  "type": "object",
28193
28553
  "baspi4Required": [
@@ -28202,6 +28562,7 @@
28202
28562
  ],
28203
28563
  "ta6Required": ["otherCharges"],
28204
28564
  "ta6ed6Required": ["consents", "furtherInformation"],
28565
+ "sef25Required": ["otherMaterialIssue"],
28205
28566
  "properties": {
28206
28567
  "consents": {
28207
28568
  "ta6ed6Ref": "15.1",
@@ -28314,6 +28675,7 @@
28314
28675
  "baspi5Ref": "A12.2",
28315
28676
  "rdsRef": "Tenure/OtherMaterialIssues",
28316
28677
  "piqRef": "A12.2",
28678
+ "sef25Ref": "M1.1",
28317
28679
  "title": "Are you aware of any other material issue or information which relates to the property or has anything occurred which may affect the average person's decision to proceed?",
28318
28680
  "description": "This disclosure is required under the Consumer Protection from Unfair Trading Regulations 2008",
28319
28681
  "type": "object",
@@ -28322,6 +28684,7 @@
28322
28684
  "baspi4Ref": "A12.2.1",
28323
28685
  "baspi5Ref": "A12.2.1",
28324
28686
  "piqRef": "A12.2.1",
28687
+ "sef25Ref": "M1.1.1",
28325
28688
  "type": "string",
28326
28689
  "title": "",
28327
28690
  "enum": ["Yes", "No"]
@@ -29729,6 +30092,7 @@
29729
30092
  "baspi5Ref": "B5",
29730
30093
  "ta6Ref": "5",
29731
30094
  "ta6ed6Ref": "6",
30095
+ "sef25Ref": "W1",
29732
30096
  "title": "Guarantees, Warranties and Indemnity Insurances",
29733
30097
  "type": "object",
29734
30098
  "baspi4Required": ["hasValidGuaranteesOrWarranties"],
@@ -29771,6 +30135,7 @@
29771
30135
  "ta6ed6Ref": "6.1a",
29772
30136
  "ta6Ref": "5.1a",
29773
30137
  "piqRef": "B5.1.1",
30138
+ "sef25Ref": "W1.1",
29774
30139
  "title": "New Home Warranty (NHBC or similar)",
29775
30140
  "type": "object",
29776
30141
  "properties": {
@@ -29835,6 +30200,7 @@
29835
30200
  "rdsRef": "Certificates",
29836
30201
  "ta6ed6Ref": "6.1e",
29837
30202
  "ta6Ref": "5.1f",
30203
+ "sef25Ref": "W1.2",
29838
30204
  "title": "Roofing work",
29839
30205
  "type": "object",
29840
30206
  "properties": {
@@ -29893,6 +30259,7 @@
29893
30259
  "ta6ed6Ref": "6.1b",
29894
30260
  "ta6Ref": "5.1b",
29895
30261
  "piqRef": "B5.1.3",
30262
+ "sef25Ref": "W1.3",
29896
30263
  "title": "Damp proofing treatment",
29897
30264
  "type": "object",
29898
30265
  "properties": {
@@ -30007,6 +30374,7 @@
30007
30374
  "ta6ed6Ref": "6.1f",
30008
30375
  "ta6Ref": "5.1g",
30009
30376
  "piqRef": "B5.1.5",
30377
+ "sef25Ref": "W1.4",
30010
30378
  "title": "Central heating and/or plumbing",
30011
30379
  "ta6ed6Title": "Boiler or heating systems",
30012
30380
  "type": "object",
@@ -30154,6 +30522,7 @@
30154
30522
  "rdsRef": "Certificates",
30155
30523
  "ta6Ref": "5.1e",
30156
30524
  "piqRef": "B5.1.7",
30525
+ "sef25Ref": "W1.5",
30157
30526
  "title": "Electrical repair or installation",
30158
30527
  "type": "object",
30159
30528
  "properties": {
@@ -30207,6 +30576,7 @@
30207
30576
  "ta6ed6Ref": "6.1g",
30208
30577
  "ta6Ref": "5.1h",
30209
30578
  "piqRef": "B5.1.8",
30579
+ "sef25Ref": "W1.6",
30210
30580
  "title": "Underpinning or other preventative work and/or remedial action relating to subsidence",
30211
30581
  "type": "object",
30212
30582
  "properties": {
@@ -30352,6 +30722,7 @@
30352
30722
  "ta6Ref": "5.1i",
30353
30723
  "ta6ed6Ref": "6.1i",
30354
30724
  "piqRef": "B5.1.10",
30725
+ "sef25Ref": "W1.7",
30355
30726
  "title": "Other Guarantees or warranties",
30356
30727
  "type": "object",
30357
30728
  "properties": {
@@ -31298,27 +31669,6 @@
31298
31669
  "ta6ed6Ref": "15.3.1",
31299
31670
  "title": "I/we confirm that all information provided is accurate to the best of our knowledge and if we become aware of any change to/changes which alter the information supplied/provided prior to exchange of contracts for the sale of the property, I/we will update immediately notify the person marketing the property as well as my/our property lawyer",
31300
31671
  "type": "boolean"
31301
- },
31302
- "sellerSignatures": {
31303
- "ta6ed6Ref": "16.1",
31304
- "title": "Seller signatures",
31305
- "type": "array",
31306
- "items": {
31307
- "type": "object",
31308
- "properties": {
31309
- "name": {
31310
- "ta6ed6Ref": "16.1",
31311
- "title": "Name",
31312
- "type": "string"
31313
- },
31314
- "signedOn": {
31315
- "ta6ed6Ref": "16.1.dated",
31316
- "title": "Date signed",
31317
- "type": "string",
31318
- "format": "date"
31319
- }
31320
- }
31321
- }
31322
31672
  }
31323
31673
  }
31324
31674
  },