@pdtf/schemas 3.6.0-31 → 3.6.0-33
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/README.md +52 -33
- package/docs/sef25-extensions-ui-spec.md +258 -49
- package/index.js +9 -0
- package/package.json +1 -1
- package/src/schemas/v3/combined.json +288 -32
- package/src/schemas/v3/compactSkeleton.txt +17 -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 +59 -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 +55 -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/overlays/sef25.json +966 -0
- package/src/schemas/v3/pdtf-transaction.json +256 -94
- package/src/schemas/v3/skeleton.json +23 -1
- package/src/tests/v3/extensionOverlays.test.js +417 -11
- package/src/utils/extractExtensionOverlays.js +121 -0
- package/src/utils/extractOverlay.js +1 -0
|
@@ -1938,6 +1938,7 @@
|
|
|
1938
1938
|
"ta7ed5Ref": "2",
|
|
1939
1939
|
"ntsRef": "A3",
|
|
1940
1940
|
"nts2Ref": "A3",
|
|
1941
|
+
"sef25Ref": "T1",
|
|
1941
1942
|
"title": "Ownership",
|
|
1942
1943
|
"type": "object",
|
|
1943
1944
|
"baspi4Required": ["ownershipsToBeTransferred"],
|
|
@@ -2096,6 +2097,46 @@
|
|
|
2096
2097
|
}
|
|
2097
2098
|
]
|
|
2098
2099
|
},
|
|
2100
|
+
"titleRestrictions": {
|
|
2101
|
+
"sef25Ref": "T1.1",
|
|
2102
|
+
"title": "Are there any known restrictions on the title?",
|
|
2103
|
+
"type": "object",
|
|
2104
|
+
"sef25Required": ["yesNo"],
|
|
2105
|
+
"properties": {
|
|
2106
|
+
"yesNo": {
|
|
2107
|
+
"sef25Ref": "T1.1.1",
|
|
2108
|
+
"type": "string",
|
|
2109
|
+
"title": "",
|
|
2110
|
+
"enum": ["Yes", "No"]
|
|
2111
|
+
}
|
|
2112
|
+
},
|
|
2113
|
+
"discriminator": {
|
|
2114
|
+
"propertyName": "yesNo"
|
|
2115
|
+
},
|
|
2116
|
+
"oneOf": [
|
|
2117
|
+
{
|
|
2118
|
+
"properties": {
|
|
2119
|
+
"yesNo": {
|
|
2120
|
+
"enum": ["No"]
|
|
2121
|
+
}
|
|
2122
|
+
}
|
|
2123
|
+
},
|
|
2124
|
+
{
|
|
2125
|
+
"properties": {
|
|
2126
|
+
"yesNo": {
|
|
2127
|
+
"enum": ["Yes"]
|
|
2128
|
+
},
|
|
2129
|
+
"details": {
|
|
2130
|
+
"sef25Ref": "T1.1.2",
|
|
2131
|
+
"title": "Details",
|
|
2132
|
+
"type": "string",
|
|
2133
|
+
"minLength": 1
|
|
2134
|
+
}
|
|
2135
|
+
},
|
|
2136
|
+
"sef25Required": ["details"]
|
|
2137
|
+
}
|
|
2138
|
+
]
|
|
2139
|
+
},
|
|
2099
2140
|
"wholeFreeholdForSale": {
|
|
2100
2141
|
"baspi4Ref": "A1.3.0.2.1",
|
|
2101
2142
|
"baspi5Ref": "A1.3.0.2.1",
|
|
@@ -2144,7 +2185,8 @@
|
|
|
2144
2185
|
},
|
|
2145
2186
|
"baspi4Required": ["wholeFreeholdForSale"],
|
|
2146
2187
|
"baspi5Required": ["wholeFreeholdForSale"],
|
|
2147
|
-
"nts2Required": ["estateRentcharges"]
|
|
2188
|
+
"nts2Required": ["estateRentcharges"],
|
|
2189
|
+
"sef25Required": ["titleRestrictions"]
|
|
2148
2190
|
},
|
|
2149
2191
|
{
|
|
2150
2192
|
"properties": {
|
|
@@ -10206,6 +10248,7 @@
|
|
|
10206
10248
|
"rdsRef": "Services/Parking",
|
|
10207
10249
|
"ta6Ref": "9",
|
|
10208
10250
|
"ta6ed6Ref": "10",
|
|
10251
|
+
"sef25Ref": "K1",
|
|
10209
10252
|
"title": "Parking",
|
|
10210
10253
|
"type": "object",
|
|
10211
10254
|
"baspi4Required": [
|
|
@@ -10248,6 +10291,7 @@
|
|
|
10248
10291
|
"controlledParking",
|
|
10249
10292
|
"electricVehicleChargingPoint"
|
|
10250
10293
|
],
|
|
10294
|
+
"sef25Required": ["droppedKerbAccess"],
|
|
10251
10295
|
"properties": {
|
|
10252
10296
|
"parkingArrangements": {
|
|
10253
10297
|
"ntsRef": "B4.1",
|
|
@@ -10370,7 +10414,7 @@
|
|
|
10370
10414
|
"sef25Ref": "P1.2",
|
|
10371
10415
|
"title": "Payment frequency",
|
|
10372
10416
|
"type": "string",
|
|
10373
|
-
"enum": ["Per month", "Per year"
|
|
10417
|
+
"enum": ["Per month", "Per year"]
|
|
10374
10418
|
}
|
|
10375
10419
|
},
|
|
10376
10420
|
"baspi5Required": ["costOfPermit"],
|
|
@@ -10418,6 +10462,20 @@
|
|
|
10418
10462
|
}
|
|
10419
10463
|
]
|
|
10420
10464
|
},
|
|
10465
|
+
"droppedKerbAccess": {
|
|
10466
|
+
"sef25Ref": "K1.1",
|
|
10467
|
+
"title": "Is there a dropped kerb access to parking?",
|
|
10468
|
+
"type": "object",
|
|
10469
|
+
"sef25Required": ["yesNo"],
|
|
10470
|
+
"properties": {
|
|
10471
|
+
"yesNo": {
|
|
10472
|
+
"sef25Ref": "K1.1.1",
|
|
10473
|
+
"type": "string",
|
|
10474
|
+
"title": "",
|
|
10475
|
+
"enum": ["Yes", "No"]
|
|
10476
|
+
}
|
|
10477
|
+
}
|
|
10478
|
+
},
|
|
10421
10479
|
"electricVehicleChargingPoint": {
|
|
10422
10480
|
"ntsRef": "B4.4",
|
|
10423
10481
|
"nts2Ref": "B4.4",
|
|
@@ -15068,6 +15126,7 @@
|
|
|
15068
15126
|
"nts2Ref": "C4",
|
|
15069
15127
|
"ntslRef": "C4",
|
|
15070
15128
|
"ntsl2Ref": "C4",
|
|
15129
|
+
"sef25Ref": "N1",
|
|
15071
15130
|
"title": "Notices which Affect the Property",
|
|
15072
15131
|
"description": "Are you aware of, or have you received, any of the following notices?",
|
|
15073
15132
|
"type": "object",
|
|
@@ -15116,6 +15175,7 @@
|
|
|
15116
15175
|
"ta6ed6Ref": "4.2",
|
|
15117
15176
|
"rdsRef": "Property/Flags,Planning",
|
|
15118
15177
|
"piqRef": "A4.1",
|
|
15178
|
+
"sef25Ref": "N1.1",
|
|
15119
15179
|
"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
15180
|
"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
15181
|
"type": "object",
|
|
@@ -21228,6 +21288,7 @@
|
|
|
21228
21288
|
"ta6ed6Ref": "12.1",
|
|
21229
21289
|
"rdsRef": "Services/Electricity",
|
|
21230
21290
|
"piqRef": "A7.1.1",
|
|
21291
|
+
"sef25Ref": "S1",
|
|
21231
21292
|
"title": "Electricity supply",
|
|
21232
21293
|
"type": "object",
|
|
21233
21294
|
"ntsRequired": [
|
|
@@ -21406,6 +21467,7 @@
|
|
|
21406
21467
|
"piqRef": "A7.1.17",
|
|
21407
21468
|
"ta6Ref": "4.6",
|
|
21408
21469
|
"ta6ed6Ref": "5.6",
|
|
21470
|
+
"sef25Ref": "S1",
|
|
21409
21471
|
"title": "Solar or photovoltaic panels",
|
|
21410
21472
|
"type": "object",
|
|
21411
21473
|
"properties": {
|
|
@@ -21482,6 +21544,7 @@
|
|
|
21482
21544
|
"ta6ed6Ref": "5.6c",
|
|
21483
21545
|
"nts2Ref": "B3.7.1",
|
|
21484
21546
|
"ntsl2Ref": "B3.7.1",
|
|
21547
|
+
"sef25Ref": "S1.1",
|
|
21485
21548
|
"rdsRef": "Objects/Ownership",
|
|
21486
21549
|
"piqRef": "B4.4.3",
|
|
21487
21550
|
"title": "Do you own the panels, and all equipment related to them, outright?",
|
|
@@ -21533,6 +21596,51 @@
|
|
|
21533
21596
|
"title": "Attachments",
|
|
21534
21597
|
"type": "string",
|
|
21535
21598
|
"enum": ["Attached", "To follow"]
|
|
21599
|
+
},
|
|
21600
|
+
"associatedCost": {
|
|
21601
|
+
"sef25Ref": "S1.1",
|
|
21602
|
+
"title": "Associated costs of leased solar panels",
|
|
21603
|
+
"type": "object",
|
|
21604
|
+
"sef25Required": ["hasCost"],
|
|
21605
|
+
"properties": {
|
|
21606
|
+
"hasCost": {
|
|
21607
|
+
"sef25Ref": "S1.1.1",
|
|
21608
|
+
"title": "Are there any associated costs?",
|
|
21609
|
+
"type": "string",
|
|
21610
|
+
"enum": ["Yes", "No"]
|
|
21611
|
+
}
|
|
21612
|
+
},
|
|
21613
|
+
"discriminator": {
|
|
21614
|
+
"propertyName": "hasCost"
|
|
21615
|
+
},
|
|
21616
|
+
"oneOf": [
|
|
21617
|
+
{
|
|
21618
|
+
"properties": {
|
|
21619
|
+
"hasCost": {
|
|
21620
|
+
"enum": ["No"]
|
|
21621
|
+
}
|
|
21622
|
+
}
|
|
21623
|
+
},
|
|
21624
|
+
{
|
|
21625
|
+
"properties": {
|
|
21626
|
+
"hasCost": {
|
|
21627
|
+
"enum": ["Yes"]
|
|
21628
|
+
},
|
|
21629
|
+
"amount": {
|
|
21630
|
+
"sef25Ref": "S1.1.2",
|
|
21631
|
+
"title": "Amount (£)",
|
|
21632
|
+
"type": "number"
|
|
21633
|
+
},
|
|
21634
|
+
"frequency": {
|
|
21635
|
+
"sef25Ref": "S1.1.3",
|
|
21636
|
+
"title": "Payment frequency",
|
|
21637
|
+
"type": "string",
|
|
21638
|
+
"enum": ["Per month", "Per year"]
|
|
21639
|
+
}
|
|
21640
|
+
},
|
|
21641
|
+
"sef25Required": ["amount", "frequency"]
|
|
21642
|
+
}
|
|
21643
|
+
]
|
|
21536
21644
|
}
|
|
21537
21645
|
},
|
|
21538
21646
|
"baspi4Required": ["details", "attachments"],
|
|
@@ -22329,26 +22437,48 @@
|
|
|
22329
22437
|
},
|
|
22330
22438
|
"associatedCost": {
|
|
22331
22439
|
"sef25Ref": "U1.1",
|
|
22332
|
-
"title": "
|
|
22440
|
+
"title": "Associated costs for water supply",
|
|
22333
22441
|
"type": "object",
|
|
22334
|
-
"sef25Required": ["
|
|
22442
|
+
"sef25Required": ["hasCost"],
|
|
22335
22443
|
"properties": {
|
|
22336
|
-
"
|
|
22444
|
+
"hasCost": {
|
|
22337
22445
|
"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",
|
|
22446
|
+
"title": "Are there any associated costs?",
|
|
22344
22447
|
"type": "string",
|
|
22345
|
-
"enum": [
|
|
22346
|
-
"Per month",
|
|
22347
|
-
"Per year",
|
|
22348
|
-
"Not applicable"
|
|
22349
|
-
]
|
|
22448
|
+
"enum": ["Yes", "No"]
|
|
22350
22449
|
}
|
|
22351
|
-
}
|
|
22450
|
+
},
|
|
22451
|
+
"discriminator": {
|
|
22452
|
+
"propertyName": "hasCost"
|
|
22453
|
+
},
|
|
22454
|
+
"oneOf": [
|
|
22455
|
+
{
|
|
22456
|
+
"properties": {
|
|
22457
|
+
"hasCost": {
|
|
22458
|
+
"enum": ["No"]
|
|
22459
|
+
}
|
|
22460
|
+
}
|
|
22461
|
+
},
|
|
22462
|
+
{
|
|
22463
|
+
"properties": {
|
|
22464
|
+
"hasCost": {
|
|
22465
|
+
"enum": ["Yes"]
|
|
22466
|
+
},
|
|
22467
|
+
"amount": {
|
|
22468
|
+
"sef25Ref": "U1.1.2",
|
|
22469
|
+
"title": "Amount (£)",
|
|
22470
|
+
"type": "number"
|
|
22471
|
+
},
|
|
22472
|
+
"frequency": {
|
|
22473
|
+
"sef25Ref": "U1.1.3",
|
|
22474
|
+
"title": "Payment frequency",
|
|
22475
|
+
"type": "string",
|
|
22476
|
+
"enum": ["Per month", "Per year"]
|
|
22477
|
+
}
|
|
22478
|
+
},
|
|
22479
|
+
"sef25Required": ["amount", "frequency"]
|
|
22480
|
+
}
|
|
22481
|
+
]
|
|
22352
22482
|
}
|
|
22353
22483
|
},
|
|
22354
22484
|
"ntsRequired": ["details"],
|
|
@@ -23444,24 +23574,46 @@
|
|
|
23444
23574
|
"sef25Ref": "U1.2",
|
|
23445
23575
|
"title": "Associated costs for sewerage",
|
|
23446
23576
|
"type": "object",
|
|
23447
|
-
"sef25Required": ["
|
|
23577
|
+
"sef25Required": ["hasCost"],
|
|
23448
23578
|
"properties": {
|
|
23449
|
-
"
|
|
23579
|
+
"hasCost": {
|
|
23450
23580
|
"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",
|
|
23581
|
+
"title": "Are there any associated costs?",
|
|
23457
23582
|
"type": "string",
|
|
23458
|
-
"enum": [
|
|
23459
|
-
"Per month",
|
|
23460
|
-
"Per year",
|
|
23461
|
-
"Not applicable"
|
|
23462
|
-
]
|
|
23583
|
+
"enum": ["Yes", "No"]
|
|
23463
23584
|
}
|
|
23464
|
-
}
|
|
23585
|
+
},
|
|
23586
|
+
"discriminator": {
|
|
23587
|
+
"propertyName": "hasCost"
|
|
23588
|
+
},
|
|
23589
|
+
"oneOf": [
|
|
23590
|
+
{
|
|
23591
|
+
"properties": {
|
|
23592
|
+
"hasCost": {
|
|
23593
|
+
"enum": ["No"]
|
|
23594
|
+
}
|
|
23595
|
+
}
|
|
23596
|
+
},
|
|
23597
|
+
{
|
|
23598
|
+
"properties": {
|
|
23599
|
+
"hasCost": {
|
|
23600
|
+
"enum": ["Yes"]
|
|
23601
|
+
},
|
|
23602
|
+
"amount": {
|
|
23603
|
+
"sef25Ref": "U1.2.2",
|
|
23604
|
+
"title": "Amount (£)",
|
|
23605
|
+
"type": "number"
|
|
23606
|
+
},
|
|
23607
|
+
"frequency": {
|
|
23608
|
+
"sef25Ref": "U1.2.3",
|
|
23609
|
+
"title": "Payment frequency",
|
|
23610
|
+
"type": "string",
|
|
23611
|
+
"enum": ["Per month", "Per year"]
|
|
23612
|
+
}
|
|
23613
|
+
},
|
|
23614
|
+
"sef25Required": ["amount", "frequency"]
|
|
23615
|
+
}
|
|
23616
|
+
]
|
|
23465
23617
|
}
|
|
23466
23618
|
},
|
|
23467
23619
|
"ntsRequired": ["offMainsDrainageSystem"],
|
|
@@ -25034,6 +25186,7 @@
|
|
|
25034
25186
|
"baspi5Ref": "A8",
|
|
25035
25187
|
"ta6Ref": "6",
|
|
25036
25188
|
"ta6ed6Ref": "7",
|
|
25189
|
+
"sef25Ref": "I1",
|
|
25037
25190
|
"title": "Insurance",
|
|
25038
25191
|
"type": "object",
|
|
25039
25192
|
"baspi4Required": ["difficultiesObtainingInsurance", "isInsured"],
|
|
@@ -25377,6 +25530,7 @@
|
|
|
25377
25530
|
"rdsRef": "Insurance/Claims",
|
|
25378
25531
|
"ta6Ref": "6.5",
|
|
25379
25532
|
"ta6ed6Ref": "7.3",
|
|
25533
|
+
"sef25Ref": "I1.1",
|
|
25380
25534
|
"title": "Have you ever made a claim against your building insurance in relation to the property?",
|
|
25381
25535
|
"Title": "Has the seller made any buildings insurance claims?",
|
|
25382
25536
|
"ta6ed6Title": "Have you made any buildings insurance claims?",
|
|
@@ -25387,6 +25541,7 @@
|
|
|
25387
25541
|
"baspi5Ref": "A8.2.1",
|
|
25388
25542
|
"ta6Ref": "6.5.1",
|
|
25389
25543
|
"ta6ed6Ref": "7.3.1",
|
|
25544
|
+
"sef25Ref": "I1.1.1",
|
|
25390
25545
|
"type": "string",
|
|
25391
25546
|
"title": "",
|
|
25392
25547
|
"enum": ["Yes", "No"]
|
|
@@ -25396,6 +25551,7 @@
|
|
|
25396
25551
|
"baspi5Required": ["yesNo"],
|
|
25397
25552
|
"ta6Required": ["yesNo"],
|
|
25398
25553
|
"ta6ed6Required": ["yesNo"],
|
|
25554
|
+
"sef25Required": ["yesNo"],
|
|
25399
25555
|
"discriminator": {
|
|
25400
25556
|
"propertyName": "yesNo"
|
|
25401
25557
|
},
|
|
@@ -25434,7 +25590,8 @@
|
|
|
25434
25590
|
"baspi4Required": ["insuranceClaims"],
|
|
25435
25591
|
"baspi5Required": ["insuranceClaims"],
|
|
25436
25592
|
"ta6Required": ["insuranceClaims"],
|
|
25437
|
-
"ta6ed6Required": ["insuranceClaims"]
|
|
25593
|
+
"ta6ed6Required": ["insuranceClaims"],
|
|
25594
|
+
"sef25Required": ["insuranceClaims"]
|
|
25438
25595
|
}
|
|
25439
25596
|
]
|
|
25440
25597
|
},
|
|
@@ -25447,6 +25604,7 @@
|
|
|
25447
25604
|
"baspi5Ref": "A10",
|
|
25448
25605
|
"ta6Ref": "8",
|
|
25449
25606
|
"ta6ed6Ref": "9",
|
|
25607
|
+
"sef25Ref": "R1",
|
|
25450
25608
|
"title": "Rights and Informal Arrangements",
|
|
25451
25609
|
"type": "object",
|
|
25452
25610
|
"baspi4Required": [
|
|
@@ -25752,6 +25910,7 @@
|
|
|
25752
25910
|
"baspi5Ref": "A10.4",
|
|
25753
25911
|
"ta6Ref": "8.4",
|
|
25754
25912
|
"ta6ed6Ref": "9.4",
|
|
25913
|
+
"sef25Ref": "R1",
|
|
25755
25914
|
"title": "Do you know if any of the following rights or arrangements affect the property?",
|
|
25756
25915
|
"type": "object",
|
|
25757
25916
|
"ntsRequired": ["publicRightOfWay"],
|
|
@@ -25798,6 +25957,7 @@
|
|
|
25798
25957
|
"otherRights",
|
|
25799
25958
|
"disagreementOrComplaint"
|
|
25800
25959
|
],
|
|
25960
|
+
"sef25Required": ["privateRightOfWay"],
|
|
25801
25961
|
"properties": {
|
|
25802
25962
|
"publicRightOfWay": {
|
|
25803
25963
|
"ntsRef": "C2.2.1",
|
|
@@ -25886,6 +26046,46 @@
|
|
|
25886
26046
|
}
|
|
25887
26047
|
]
|
|
25888
26048
|
},
|
|
26049
|
+
"privateRightOfWay": {
|
|
26050
|
+
"sef25Ref": "R1.1",
|
|
26051
|
+
"title": "A private right of way through and/or across your house, buildings or land",
|
|
26052
|
+
"type": "object",
|
|
26053
|
+
"sef25Required": ["yesNo"],
|
|
26054
|
+
"properties": {
|
|
26055
|
+
"yesNo": {
|
|
26056
|
+
"sef25Ref": "R1.1.1",
|
|
26057
|
+
"type": "string",
|
|
26058
|
+
"title": "",
|
|
26059
|
+
"enum": ["Yes", "No"]
|
|
26060
|
+
}
|
|
26061
|
+
},
|
|
26062
|
+
"discriminator": {
|
|
26063
|
+
"propertyName": "yesNo"
|
|
26064
|
+
},
|
|
26065
|
+
"oneOf": [
|
|
26066
|
+
{
|
|
26067
|
+
"properties": {
|
|
26068
|
+
"yesNo": {
|
|
26069
|
+
"enum": ["No"]
|
|
26070
|
+
}
|
|
26071
|
+
}
|
|
26072
|
+
},
|
|
26073
|
+
{
|
|
26074
|
+
"properties": {
|
|
26075
|
+
"yesNo": {
|
|
26076
|
+
"enum": ["Yes"]
|
|
26077
|
+
},
|
|
26078
|
+
"details": {
|
|
26079
|
+
"sef25Ref": "R1.1.2",
|
|
26080
|
+
"title": "Please provide details",
|
|
26081
|
+
"type": "string",
|
|
26082
|
+
"minLength": 1
|
|
26083
|
+
}
|
|
26084
|
+
},
|
|
26085
|
+
"sef25Required": ["details"]
|
|
26086
|
+
}
|
|
26087
|
+
]
|
|
26088
|
+
},
|
|
25889
26089
|
"rightsOfLight": {
|
|
25890
26090
|
"baspi4Ref": "A10.4.2a",
|
|
25891
26091
|
"baspi5Ref": "A10.4.2a",
|
|
@@ -26412,6 +26612,7 @@
|
|
|
26412
26612
|
"ta6Ref": "7",
|
|
26413
26613
|
"ta6ed6Ref": "8",
|
|
26414
26614
|
"piqRef": "A11.1",
|
|
26615
|
+
"sef25Ref": "E1",
|
|
26415
26616
|
"title": "Environmental Issues Affecting the Property",
|
|
26416
26617
|
"type": "object",
|
|
26417
26618
|
"baspi4Required": ["flooding", "radon", "otherEnvironmental"],
|
|
@@ -26447,6 +26648,7 @@
|
|
|
26447
26648
|
],
|
|
26448
26649
|
"ta6Required": ["flooding", "radon"],
|
|
26449
26650
|
"ta6ed6Required": ["flooding", "radon"],
|
|
26651
|
+
"sef25Required": ["stormFireFloodDamage"],
|
|
26450
26652
|
"properties": {
|
|
26451
26653
|
"flooding": {
|
|
26452
26654
|
"ntsRef": "C3.1.1",
|
|
@@ -26676,6 +26878,7 @@
|
|
|
26676
26878
|
"baspi5Ref": "A11.1.2.1",
|
|
26677
26879
|
"ta6Ref": "7.1.1",
|
|
26678
26880
|
"ta6ed6Ref": "8.1.1",
|
|
26881
|
+
"sef25Ref": "E1.2",
|
|
26679
26882
|
"title": "Has the property been flooded in the last 5 years?",
|
|
26680
26883
|
"ta6Title": "Has any part of the property (whether buildings or surrounding garden or land) ever been flooded?",
|
|
26681
26884
|
"type": "string",
|
|
@@ -26804,6 +27007,46 @@
|
|
|
26804
27007
|
}
|
|
26805
27008
|
}
|
|
26806
27009
|
},
|
|
27010
|
+
"stormFireFloodDamage": {
|
|
27011
|
+
"sef25Ref": "E1.1",
|
|
27012
|
+
"title": "Has the property ever suffered storm, fire or flood damage?",
|
|
27013
|
+
"type": "object",
|
|
27014
|
+
"sef25Required": ["yesNo"],
|
|
27015
|
+
"properties": {
|
|
27016
|
+
"yesNo": {
|
|
27017
|
+
"sef25Ref": "E1.1.1",
|
|
27018
|
+
"type": "string",
|
|
27019
|
+
"title": "",
|
|
27020
|
+
"enum": ["Yes", "No"]
|
|
27021
|
+
}
|
|
27022
|
+
},
|
|
27023
|
+
"discriminator": {
|
|
27024
|
+
"propertyName": "yesNo"
|
|
27025
|
+
},
|
|
27026
|
+
"oneOf": [
|
|
27027
|
+
{
|
|
27028
|
+
"properties": {
|
|
27029
|
+
"yesNo": {
|
|
27030
|
+
"enum": ["No"]
|
|
27031
|
+
}
|
|
27032
|
+
}
|
|
27033
|
+
},
|
|
27034
|
+
{
|
|
27035
|
+
"properties": {
|
|
27036
|
+
"yesNo": {
|
|
27037
|
+
"enum": ["Yes"]
|
|
27038
|
+
},
|
|
27039
|
+
"details": {
|
|
27040
|
+
"sef25Ref": "E1.1.2",
|
|
27041
|
+
"title": "Please provide details",
|
|
27042
|
+
"type": "string",
|
|
27043
|
+
"minLength": 1
|
|
27044
|
+
}
|
|
27045
|
+
},
|
|
27046
|
+
"sef25Required": ["details"]
|
|
27047
|
+
}
|
|
27048
|
+
]
|
|
27049
|
+
},
|
|
26807
27050
|
"radon": {
|
|
26808
27051
|
"baspi4Ref": "A11.1.3",
|
|
26809
27052
|
"baspi5Ref": "A11.1.3",
|
|
@@ -28264,6 +28507,7 @@
|
|
|
28264
28507
|
"baspi5Ref": "A12",
|
|
28265
28508
|
"ta6Ref": "10",
|
|
28266
28509
|
"ta6ed6Ref": "15",
|
|
28510
|
+
"sef25Ref": "M1",
|
|
28267
28511
|
"title": "Additional Information",
|
|
28268
28512
|
"type": "object",
|
|
28269
28513
|
"baspi4Required": [
|
|
@@ -28278,6 +28522,7 @@
|
|
|
28278
28522
|
],
|
|
28279
28523
|
"ta6Required": ["otherCharges"],
|
|
28280
28524
|
"ta6ed6Required": ["consents", "furtherInformation"],
|
|
28525
|
+
"sef25Required": ["otherMaterialIssue"],
|
|
28281
28526
|
"properties": {
|
|
28282
28527
|
"consents": {
|
|
28283
28528
|
"ta6ed6Ref": "15.1",
|
|
@@ -28390,6 +28635,7 @@
|
|
|
28390
28635
|
"baspi5Ref": "A12.2",
|
|
28391
28636
|
"rdsRef": "Tenure/OtherMaterialIssues",
|
|
28392
28637
|
"piqRef": "A12.2",
|
|
28638
|
+
"sef25Ref": "M1.1",
|
|
28393
28639
|
"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
28640
|
"description": "This disclosure is required under the Consumer Protection from Unfair Trading Regulations 2008",
|
|
28395
28641
|
"type": "object",
|
|
@@ -28398,6 +28644,7 @@
|
|
|
28398
28644
|
"baspi4Ref": "A12.2.1",
|
|
28399
28645
|
"baspi5Ref": "A12.2.1",
|
|
28400
28646
|
"piqRef": "A12.2.1",
|
|
28647
|
+
"sef25Ref": "M1.1.1",
|
|
28401
28648
|
"type": "string",
|
|
28402
28649
|
"title": "",
|
|
28403
28650
|
"enum": ["Yes", "No"]
|
|
@@ -28405,6 +28652,7 @@
|
|
|
28405
28652
|
},
|
|
28406
28653
|
"baspi4Required": ["yesNo"],
|
|
28407
28654
|
"baspi5Required": ["yesNo"],
|
|
28655
|
+
"sef25Required": ["yesNo"],
|
|
28408
28656
|
"discriminator": {
|
|
28409
28657
|
"propertyName": "yesNo"
|
|
28410
28658
|
},
|
|
@@ -29805,6 +30053,7 @@
|
|
|
29805
30053
|
"baspi5Ref": "B5",
|
|
29806
30054
|
"ta6Ref": "5",
|
|
29807
30055
|
"ta6ed6Ref": "6",
|
|
30056
|
+
"sef25Ref": "W1",
|
|
29808
30057
|
"title": "Guarantees, Warranties and Indemnity Insurances",
|
|
29809
30058
|
"type": "object",
|
|
29810
30059
|
"baspi4Required": ["hasValidGuaranteesOrWarranties"],
|
|
@@ -29847,6 +30096,7 @@
|
|
|
29847
30096
|
"ta6ed6Ref": "6.1a",
|
|
29848
30097
|
"ta6Ref": "5.1a",
|
|
29849
30098
|
"piqRef": "B5.1.1",
|
|
30099
|
+
"sef25Ref": "W1.1",
|
|
29850
30100
|
"title": "New Home Warranty (NHBC or similar)",
|
|
29851
30101
|
"type": "object",
|
|
29852
30102
|
"properties": {
|
|
@@ -29911,6 +30161,7 @@
|
|
|
29911
30161
|
"rdsRef": "Certificates",
|
|
29912
30162
|
"ta6ed6Ref": "6.1e",
|
|
29913
30163
|
"ta6Ref": "5.1f",
|
|
30164
|
+
"sef25Ref": "W1.2",
|
|
29914
30165
|
"title": "Roofing work",
|
|
29915
30166
|
"type": "object",
|
|
29916
30167
|
"properties": {
|
|
@@ -29969,6 +30220,7 @@
|
|
|
29969
30220
|
"ta6ed6Ref": "6.1b",
|
|
29970
30221
|
"ta6Ref": "5.1b",
|
|
29971
30222
|
"piqRef": "B5.1.3",
|
|
30223
|
+
"sef25Ref": "W1.3",
|
|
29972
30224
|
"title": "Damp proofing treatment",
|
|
29973
30225
|
"type": "object",
|
|
29974
30226
|
"properties": {
|
|
@@ -30083,6 +30335,7 @@
|
|
|
30083
30335
|
"ta6ed6Ref": "6.1f",
|
|
30084
30336
|
"ta6Ref": "5.1g",
|
|
30085
30337
|
"piqRef": "B5.1.5",
|
|
30338
|
+
"sef25Ref": "W1.4",
|
|
30086
30339
|
"title": "Central heating and/or plumbing",
|
|
30087
30340
|
"ta6ed6Title": "Boiler or heating systems",
|
|
30088
30341
|
"type": "object",
|
|
@@ -30230,6 +30483,7 @@
|
|
|
30230
30483
|
"rdsRef": "Certificates",
|
|
30231
30484
|
"ta6Ref": "5.1e",
|
|
30232
30485
|
"piqRef": "B5.1.7",
|
|
30486
|
+
"sef25Ref": "W1.5",
|
|
30233
30487
|
"title": "Electrical repair or installation",
|
|
30234
30488
|
"type": "object",
|
|
30235
30489
|
"properties": {
|
|
@@ -30283,6 +30537,7 @@
|
|
|
30283
30537
|
"ta6ed6Ref": "6.1g",
|
|
30284
30538
|
"ta6Ref": "5.1h",
|
|
30285
30539
|
"piqRef": "B5.1.8",
|
|
30540
|
+
"sef25Ref": "W1.6",
|
|
30286
30541
|
"title": "Underpinning or other preventative work and/or remedial action relating to subsidence",
|
|
30287
30542
|
"type": "object",
|
|
30288
30543
|
"properties": {
|
|
@@ -30428,6 +30683,7 @@
|
|
|
30428
30683
|
"ta6Ref": "5.1i",
|
|
30429
30684
|
"ta6ed6Ref": "6.1i",
|
|
30430
30685
|
"piqRef": "B5.1.10",
|
|
30686
|
+
"sef25Ref": "W1.7",
|
|
30431
30687
|
"title": "Other Guarantees or warranties",
|
|
30432
30688
|
"type": "object",
|
|
30433
30689
|
"properties": {
|
|
@@ -225,6 +225,9 @@
|
|
|
225
225
|
yesNo
|
|
226
226
|
details
|
|
227
227
|
amount
|
|
228
|
+
titleRestrictions
|
|
229
|
+
yesNo
|
|
230
|
+
details
|
|
228
231
|
wholeFreeholdForSale
|
|
229
232
|
yesNo
|
|
230
233
|
details
|
|
@@ -955,6 +958,8 @@
|
|
|
955
958
|
vehicleTypeRestriction
|
|
956
959
|
yesNo
|
|
957
960
|
details
|
|
961
|
+
droppedKerbAccess
|
|
962
|
+
yesNo
|
|
958
963
|
electricVehicleChargingPoint
|
|
959
964
|
yesNo
|
|
960
965
|
chargerDetails
|
|
@@ -1875,6 +1880,10 @@
|
|
|
1875
1880
|
yesNo
|
|
1876
1881
|
details
|
|
1877
1882
|
attachments
|
|
1883
|
+
associatedCost
|
|
1884
|
+
hasCost
|
|
1885
|
+
amount
|
|
1886
|
+
frequency
|
|
1878
1887
|
panelProviderLease
|
|
1879
1888
|
yesNo
|
|
1880
1889
|
details
|
|
@@ -1924,6 +1933,7 @@
|
|
|
1924
1933
|
yesNo
|
|
1925
1934
|
details
|
|
1926
1935
|
associatedCost
|
|
1936
|
+
hasCost
|
|
1927
1937
|
amount
|
|
1928
1938
|
frequency
|
|
1929
1939
|
supplier
|
|
@@ -1983,6 +1993,7 @@
|
|
|
1983
1993
|
attachments
|
|
1984
1994
|
details
|
|
1985
1995
|
associatedCost
|
|
1996
|
+
hasCost
|
|
1986
1997
|
amount
|
|
1987
1998
|
frequency
|
|
1988
1999
|
surfaceDrainageCharge
|
|
@@ -2151,6 +2162,9 @@
|
|
|
2151
2162
|
yesNo
|
|
2152
2163
|
details
|
|
2153
2164
|
attachments
|
|
2165
|
+
privateRightOfWay
|
|
2166
|
+
yesNo
|
|
2167
|
+
details
|
|
2154
2168
|
rightsOfLight
|
|
2155
2169
|
yesNo
|
|
2156
2170
|
details
|
|
@@ -2209,6 +2223,9 @@
|
|
|
2209
2223
|
floodDefences
|
|
2210
2224
|
hasFloodDefences
|
|
2211
2225
|
details
|
|
2226
|
+
stormFireFloodDamage
|
|
2227
|
+
yesNo
|
|
2228
|
+
details
|
|
2212
2229
|
radon
|
|
2213
2230
|
radonRisk
|
|
2214
2231
|
riskIndicator
|