@pdtf/schemas 3.6.0-31 → 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.
- package/docs/sef25-extensions-ui-spec.md +274 -5
- package/index.js +9 -0
- package/package.json +1 -1
- package/src/schemas/v3/combined.json +335 -40
- package/src/schemas/v3/compactSkeleton.txt +22 -0
- package/src/schemas/v3/overlays/extensions/as.json +4 -2
- package/src/schemas/v3/overlays/extensions/dk.json +32 -0
- package/src/schemas/v3/overlays/extensions/dr.json +4 -2
- package/src/schemas/v3/overlays/extensions/er.json +4 -2
- package/src/schemas/v3/overlays/extensions/fd.json +6 -3
- package/src/schemas/v3/overlays/extensions/hi.json +6 -3
- package/src/schemas/v3/overlays/extensions/hs.json +4 -2
- package/src/schemas/v3/overlays/extensions/ic.json +56 -0
- package/src/schemas/v3/overlays/extensions/jk.json +4 -2
- package/src/schemas/v3/overlays/extensions/la.json +4 -2
- package/src/schemas/v3/overlays/extensions/lc.json +86 -0
- package/src/schemas/v3/overlays/extensions/ma.json +6 -3
- package/src/schemas/v3/overlays/extensions/mc.json +4 -2
- package/src/schemas/v3/overlays/extensions/mi.json +52 -0
- package/src/schemas/v3/overlays/extensions/nd.json +43 -0
- package/src/schemas/v3/overlays/extensions/oa.json +4 -2
- package/src/schemas/v3/overlays/extensions/oc.json +4 -2
- package/src/schemas/v3/overlays/extensions/pc.json +2 -1
- package/src/schemas/v3/overlays/extensions/rw.json +68 -0
- package/src/schemas/v3/overlays/extensions/sb.json +4 -2
- package/src/schemas/v3/overlays/extensions/sc.json +82 -14
- package/src/schemas/v3/overlays/extensions/sd.json +63 -0
- package/src/schemas/v3/overlays/extensions/sf.json +4 -2
- package/src/schemas/v3/overlays/extensions/sl.json +4 -2
- package/src/schemas/v3/overlays/extensions/tf.json +6 -3
- package/src/schemas/v3/overlays/extensions/tr.json +73 -0
- package/src/schemas/v3/overlays/extensions/wg.json +209 -0
- package/src/schemas/v3/pdtf-transaction.json +412 -30
- package/src/schemas/v3/skeleton.json +30 -2
- package/src/tests/v3/extensionOverlays.test.js +410 -4
- 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": "
|
|
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": {
|
|
7320
|
+
"yesNo": {
|
|
7321
|
+
"enum": ["No", "Not known"]
|
|
7322
|
+
}
|
|
7239
7323
|
}
|
|
7240
7324
|
},
|
|
7241
7325
|
{
|
|
7242
7326
|
"properties": {
|
|
7243
|
-
"yesNo": {
|
|
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"],
|
|
@@ -22329,26 +22480,48 @@
|
|
|
22329
22480
|
},
|
|
22330
22481
|
"associatedCost": {
|
|
22331
22482
|
"sef25Ref": "U1.1",
|
|
22332
|
-
"title": "
|
|
22483
|
+
"title": "Associated costs for water supply",
|
|
22333
22484
|
"type": "object",
|
|
22334
|
-
"sef25Required": ["
|
|
22485
|
+
"sef25Required": ["hasCost"],
|
|
22335
22486
|
"properties": {
|
|
22336
|
-
"
|
|
22487
|
+
"hasCost": {
|
|
22337
22488
|
"sef25Ref": "U1.1.1",
|
|
22338
|
-
"title": "
|
|
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"],
|
|
@@ -23444,24 +23617,46 @@
|
|
|
23444
23617
|
"sef25Ref": "U1.2",
|
|
23445
23618
|
"title": "Associated costs for sewerage",
|
|
23446
23619
|
"type": "object",
|
|
23447
|
-
"sef25Required": ["
|
|
23620
|
+
"sef25Required": ["hasCost"],
|
|
23448
23621
|
"properties": {
|
|
23449
|
-
"
|
|
23622
|
+
"hasCost": {
|
|
23450
23623
|
"sef25Ref": "U1.2.1",
|
|
23451
|
-
"title": "
|
|
23452
|
-
"type": "number"
|
|
23453
|
-
},
|
|
23454
|
-
"frequency": {
|
|
23455
|
-
"sef25Ref": "U1.2.2",
|
|
23456
|
-
"title": "Payment frequency if costs are associated",
|
|
23624
|
+
"title": "Are there any associated costs?",
|
|
23457
23625
|
"type": "string",
|
|
23458
|
-
"enum": [
|
|
23459
|
-
"Per month",
|
|
23460
|
-
"Per year",
|
|
23461
|
-
"Not applicable"
|
|
23462
|
-
]
|
|
23626
|
+
"enum": ["Yes", "No"]
|
|
23463
23627
|
}
|
|
23464
|
-
}
|
|
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
|
+
]
|
|
23465
23660
|
}
|
|
23466
23661
|
},
|
|
23467
23662
|
"ntsRequired": ["offMainsDrainageSystem"],
|
|
@@ -24819,7 +25014,6 @@
|
|
|
24819
25014
|
}
|
|
24820
25015
|
}
|
|
24821
25016
|
},
|
|
24822
|
-
|
|
24823
25017
|
{
|
|
24824
25018
|
"properties": {
|
|
24825
25019
|
"typeOfConnection": {
|
|
@@ -24836,7 +25030,6 @@
|
|
|
24836
25030
|
"type": "string"
|
|
24837
25031
|
}
|
|
24838
25032
|
},
|
|
24839
|
-
|
|
24840
25033
|
"ta6ed6Required": ["providerName"]
|
|
24841
25034
|
}
|
|
24842
25035
|
],
|
|
@@ -25034,6 +25227,7 @@
|
|
|
25034
25227
|
"baspi5Ref": "A8",
|
|
25035
25228
|
"ta6Ref": "6",
|
|
25036
25229
|
"ta6ed6Ref": "7",
|
|
25230
|
+
"sef25Ref": "I1",
|
|
25037
25231
|
"title": "Insurance",
|
|
25038
25232
|
"type": "object",
|
|
25039
25233
|
"baspi4Required": ["difficultiesObtainingInsurance", "isInsured"],
|
|
@@ -25377,6 +25571,7 @@
|
|
|
25377
25571
|
"rdsRef": "Insurance/Claims",
|
|
25378
25572
|
"ta6Ref": "6.5",
|
|
25379
25573
|
"ta6ed6Ref": "7.3",
|
|
25574
|
+
"sef25Ref": "I1.1",
|
|
25380
25575
|
"title": "Have you ever made a claim against your building insurance in relation to the property?",
|
|
25381
25576
|
"Title": "Has the seller made any buildings insurance claims?",
|
|
25382
25577
|
"ta6ed6Title": "Have you made any buildings insurance claims?",
|
|
@@ -25387,6 +25582,7 @@
|
|
|
25387
25582
|
"baspi5Ref": "A8.2.1",
|
|
25388
25583
|
"ta6Ref": "6.5.1",
|
|
25389
25584
|
"ta6ed6Ref": "7.3.1",
|
|
25585
|
+
"sef25Ref": "I1.1.1",
|
|
25390
25586
|
"type": "string",
|
|
25391
25587
|
"title": "",
|
|
25392
25588
|
"enum": ["Yes", "No"]
|
|
@@ -25434,7 +25630,8 @@
|
|
|
25434
25630
|
"baspi4Required": ["insuranceClaims"],
|
|
25435
25631
|
"baspi5Required": ["insuranceClaims"],
|
|
25436
25632
|
"ta6Required": ["insuranceClaims"],
|
|
25437
|
-
"ta6ed6Required": ["insuranceClaims"]
|
|
25633
|
+
"ta6ed6Required": ["insuranceClaims"],
|
|
25634
|
+
"sef25Required": ["insuranceClaims"]
|
|
25438
25635
|
}
|
|
25439
25636
|
]
|
|
25440
25637
|
},
|
|
@@ -25447,6 +25644,7 @@
|
|
|
25447
25644
|
"baspi5Ref": "A10",
|
|
25448
25645
|
"ta6Ref": "8",
|
|
25449
25646
|
"ta6ed6Ref": "9",
|
|
25647
|
+
"sef25Ref": "R1",
|
|
25450
25648
|
"title": "Rights and Informal Arrangements",
|
|
25451
25649
|
"type": "object",
|
|
25452
25650
|
"baspi4Required": [
|
|
@@ -25752,6 +25950,7 @@
|
|
|
25752
25950
|
"baspi5Ref": "A10.4",
|
|
25753
25951
|
"ta6Ref": "8.4",
|
|
25754
25952
|
"ta6ed6Ref": "9.4",
|
|
25953
|
+
"sef25Ref": "R1",
|
|
25755
25954
|
"title": "Do you know if any of the following rights or arrangements affect the property?",
|
|
25756
25955
|
"type": "object",
|
|
25757
25956
|
"ntsRequired": ["publicRightOfWay"],
|
|
@@ -25798,6 +25997,7 @@
|
|
|
25798
25997
|
"otherRights",
|
|
25799
25998
|
"disagreementOrComplaint"
|
|
25800
25999
|
],
|
|
26000
|
+
"sef25Required": ["privateRightOfWay"],
|
|
25801
26001
|
"properties": {
|
|
25802
26002
|
"publicRightOfWay": {
|
|
25803
26003
|
"ntsRef": "C2.2.1",
|
|
@@ -25886,6 +26086,46 @@
|
|
|
25886
26086
|
}
|
|
25887
26087
|
]
|
|
25888
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
|
+
},
|
|
25889
26129
|
"rightsOfLight": {
|
|
25890
26130
|
"baspi4Ref": "A10.4.2a",
|
|
25891
26131
|
"baspi5Ref": "A10.4.2a",
|
|
@@ -26412,6 +26652,7 @@
|
|
|
26412
26652
|
"ta6Ref": "7",
|
|
26413
26653
|
"ta6ed6Ref": "8",
|
|
26414
26654
|
"piqRef": "A11.1",
|
|
26655
|
+
"sef25Ref": "E1",
|
|
26415
26656
|
"title": "Environmental Issues Affecting the Property",
|
|
26416
26657
|
"type": "object",
|
|
26417
26658
|
"baspi4Required": ["flooding", "radon", "otherEnvironmental"],
|
|
@@ -26447,6 +26688,7 @@
|
|
|
26447
26688
|
],
|
|
26448
26689
|
"ta6Required": ["flooding", "radon"],
|
|
26449
26690
|
"ta6ed6Required": ["flooding", "radon"],
|
|
26691
|
+
"sef25Required": ["stormFireFloodDamage"],
|
|
26450
26692
|
"properties": {
|
|
26451
26693
|
"flooding": {
|
|
26452
26694
|
"ntsRef": "C3.1.1",
|
|
@@ -26676,6 +26918,7 @@
|
|
|
26676
26918
|
"baspi5Ref": "A11.1.2.1",
|
|
26677
26919
|
"ta6Ref": "7.1.1",
|
|
26678
26920
|
"ta6ed6Ref": "8.1.1",
|
|
26921
|
+
"sef25Ref": "E1.2",
|
|
26679
26922
|
"title": "Has the property been flooded in the last 5 years?",
|
|
26680
26923
|
"ta6Title": "Has any part of the property (whether buildings or surrounding garden or land) ever been flooded?",
|
|
26681
26924
|
"type": "string",
|
|
@@ -26804,6 +27047,46 @@
|
|
|
26804
27047
|
}
|
|
26805
27048
|
}
|
|
26806
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
|
+
},
|
|
26807
27090
|
"radon": {
|
|
26808
27091
|
"baspi4Ref": "A11.1.3",
|
|
26809
27092
|
"baspi5Ref": "A11.1.3",
|
|
@@ -28264,6 +28547,7 @@
|
|
|
28264
28547
|
"baspi5Ref": "A12",
|
|
28265
28548
|
"ta6Ref": "10",
|
|
28266
28549
|
"ta6ed6Ref": "15",
|
|
28550
|
+
"sef25Ref": "M1",
|
|
28267
28551
|
"title": "Additional Information",
|
|
28268
28552
|
"type": "object",
|
|
28269
28553
|
"baspi4Required": [
|
|
@@ -28278,6 +28562,7 @@
|
|
|
28278
28562
|
],
|
|
28279
28563
|
"ta6Required": ["otherCharges"],
|
|
28280
28564
|
"ta6ed6Required": ["consents", "furtherInformation"],
|
|
28565
|
+
"sef25Required": ["otherMaterialIssue"],
|
|
28281
28566
|
"properties": {
|
|
28282
28567
|
"consents": {
|
|
28283
28568
|
"ta6ed6Ref": "15.1",
|
|
@@ -28390,6 +28675,7 @@
|
|
|
28390
28675
|
"baspi5Ref": "A12.2",
|
|
28391
28676
|
"rdsRef": "Tenure/OtherMaterialIssues",
|
|
28392
28677
|
"piqRef": "A12.2",
|
|
28678
|
+
"sef25Ref": "M1.1",
|
|
28393
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?",
|
|
28394
28680
|
"description": "This disclosure is required under the Consumer Protection from Unfair Trading Regulations 2008",
|
|
28395
28681
|
"type": "object",
|
|
@@ -28398,6 +28684,7 @@
|
|
|
28398
28684
|
"baspi4Ref": "A12.2.1",
|
|
28399
28685
|
"baspi5Ref": "A12.2.1",
|
|
28400
28686
|
"piqRef": "A12.2.1",
|
|
28687
|
+
"sef25Ref": "M1.1.1",
|
|
28401
28688
|
"type": "string",
|
|
28402
28689
|
"title": "",
|
|
28403
28690
|
"enum": ["Yes", "No"]
|
|
@@ -29805,6 +30092,7 @@
|
|
|
29805
30092
|
"baspi5Ref": "B5",
|
|
29806
30093
|
"ta6Ref": "5",
|
|
29807
30094
|
"ta6ed6Ref": "6",
|
|
30095
|
+
"sef25Ref": "W1",
|
|
29808
30096
|
"title": "Guarantees, Warranties and Indemnity Insurances",
|
|
29809
30097
|
"type": "object",
|
|
29810
30098
|
"baspi4Required": ["hasValidGuaranteesOrWarranties"],
|
|
@@ -29847,6 +30135,7 @@
|
|
|
29847
30135
|
"ta6ed6Ref": "6.1a",
|
|
29848
30136
|
"ta6Ref": "5.1a",
|
|
29849
30137
|
"piqRef": "B5.1.1",
|
|
30138
|
+
"sef25Ref": "W1.1",
|
|
29850
30139
|
"title": "New Home Warranty (NHBC or similar)",
|
|
29851
30140
|
"type": "object",
|
|
29852
30141
|
"properties": {
|
|
@@ -29911,6 +30200,7 @@
|
|
|
29911
30200
|
"rdsRef": "Certificates",
|
|
29912
30201
|
"ta6ed6Ref": "6.1e",
|
|
29913
30202
|
"ta6Ref": "5.1f",
|
|
30203
|
+
"sef25Ref": "W1.2",
|
|
29914
30204
|
"title": "Roofing work",
|
|
29915
30205
|
"type": "object",
|
|
29916
30206
|
"properties": {
|
|
@@ -29969,6 +30259,7 @@
|
|
|
29969
30259
|
"ta6ed6Ref": "6.1b",
|
|
29970
30260
|
"ta6Ref": "5.1b",
|
|
29971
30261
|
"piqRef": "B5.1.3",
|
|
30262
|
+
"sef25Ref": "W1.3",
|
|
29972
30263
|
"title": "Damp proofing treatment",
|
|
29973
30264
|
"type": "object",
|
|
29974
30265
|
"properties": {
|
|
@@ -30083,6 +30374,7 @@
|
|
|
30083
30374
|
"ta6ed6Ref": "6.1f",
|
|
30084
30375
|
"ta6Ref": "5.1g",
|
|
30085
30376
|
"piqRef": "B5.1.5",
|
|
30377
|
+
"sef25Ref": "W1.4",
|
|
30086
30378
|
"title": "Central heating and/or plumbing",
|
|
30087
30379
|
"ta6ed6Title": "Boiler or heating systems",
|
|
30088
30380
|
"type": "object",
|
|
@@ -30230,6 +30522,7 @@
|
|
|
30230
30522
|
"rdsRef": "Certificates",
|
|
30231
30523
|
"ta6Ref": "5.1e",
|
|
30232
30524
|
"piqRef": "B5.1.7",
|
|
30525
|
+
"sef25Ref": "W1.5",
|
|
30233
30526
|
"title": "Electrical repair or installation",
|
|
30234
30527
|
"type": "object",
|
|
30235
30528
|
"properties": {
|
|
@@ -30283,6 +30576,7 @@
|
|
|
30283
30576
|
"ta6ed6Ref": "6.1g",
|
|
30284
30577
|
"ta6Ref": "5.1h",
|
|
30285
30578
|
"piqRef": "B5.1.8",
|
|
30579
|
+
"sef25Ref": "W1.6",
|
|
30286
30580
|
"title": "Underpinning or other preventative work and/or remedial action relating to subsidence",
|
|
30287
30581
|
"type": "object",
|
|
30288
30582
|
"properties": {
|
|
@@ -30428,6 +30722,7 @@
|
|
|
30428
30722
|
"ta6Ref": "5.1i",
|
|
30429
30723
|
"ta6ed6Ref": "6.1i",
|
|
30430
30724
|
"piqRef": "B5.1.10",
|
|
30725
|
+
"sef25Ref": "W1.7",
|
|
30431
30726
|
"title": "Other Guarantees or warranties",
|
|
30432
30727
|
"type": "object",
|
|
30433
30728
|
"properties": {
|