@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
|
@@ -990,7 +990,64 @@
|
|
|
990
990
|
"No"
|
|
991
991
|
]
|
|
992
992
|
}
|
|
993
|
-
}
|
|
993
|
+
},
|
|
994
|
+
"oneOf": [
|
|
995
|
+
{
|
|
996
|
+
"properties": {
|
|
997
|
+
"yesNo": {
|
|
998
|
+
"enum": [
|
|
999
|
+
"No"
|
|
1000
|
+
]
|
|
1001
|
+
}
|
|
1002
|
+
}
|
|
1003
|
+
},
|
|
1004
|
+
{
|
|
1005
|
+
"properties": {
|
|
1006
|
+
"yesNo": {
|
|
1007
|
+
"enum": [
|
|
1008
|
+
"Yes"
|
|
1009
|
+
]
|
|
1010
|
+
},
|
|
1011
|
+
"newBuildDetails": {
|
|
1012
|
+
"title": "New build details",
|
|
1013
|
+
"type": "object",
|
|
1014
|
+
"properties": {
|
|
1015
|
+
"snaggingCompletion": {
|
|
1016
|
+
"title": "Snagging completion status",
|
|
1017
|
+
"type": "string",
|
|
1018
|
+
"enum": [
|
|
1019
|
+
"complete",
|
|
1020
|
+
"outstanding",
|
|
1021
|
+
"not-done"
|
|
1022
|
+
]
|
|
1023
|
+
},
|
|
1024
|
+
"adoptionStatus": {
|
|
1025
|
+
"title": "Roads and drains adoption status",
|
|
1026
|
+
"type": "string",
|
|
1027
|
+
"enum": [
|
|
1028
|
+
"adopted",
|
|
1029
|
+
"pending",
|
|
1030
|
+
"private"
|
|
1031
|
+
]
|
|
1032
|
+
},
|
|
1033
|
+
"conversionConsent": {
|
|
1034
|
+
"title": "Consent for conversion obtained",
|
|
1035
|
+
"type": "boolean"
|
|
1036
|
+
},
|
|
1037
|
+
"conversionQuality": {
|
|
1038
|
+
"title": "Conversion quality assessment",
|
|
1039
|
+
"type": "string",
|
|
1040
|
+
"enum": [
|
|
1041
|
+
"professional",
|
|
1042
|
+
"diy",
|
|
1043
|
+
"unknown"
|
|
1044
|
+
]
|
|
1045
|
+
}
|
|
1046
|
+
}
|
|
1047
|
+
}
|
|
1048
|
+
}
|
|
1049
|
+
}
|
|
1050
|
+
]
|
|
994
1051
|
},
|
|
995
1052
|
"isHMO": {
|
|
996
1053
|
"title": "Is the property a House in Multiple Occupation (HMO)?",
|
|
@@ -1548,6 +1605,7 @@
|
|
|
1548
1605
|
}
|
|
1549
1606
|
},
|
|
1550
1607
|
"ownership": {
|
|
1608
|
+
"sef25Ref": "T1",
|
|
1551
1609
|
"title": "Ownership",
|
|
1552
1610
|
"type": "object",
|
|
1553
1611
|
"properties": {
|
|
@@ -1677,6 +1735,54 @@
|
|
|
1677
1735
|
}
|
|
1678
1736
|
]
|
|
1679
1737
|
},
|
|
1738
|
+
"titleRestrictions": {
|
|
1739
|
+
"sef25Ref": "T1.1",
|
|
1740
|
+
"title": "Are there any known restrictions on the title?",
|
|
1741
|
+
"type": "object",
|
|
1742
|
+
"sef25Required": [
|
|
1743
|
+
"yesNo"
|
|
1744
|
+
],
|
|
1745
|
+
"properties": {
|
|
1746
|
+
"yesNo": {
|
|
1747
|
+
"sef25Ref": "T1.1.1",
|
|
1748
|
+
"type": "string",
|
|
1749
|
+
"title": "",
|
|
1750
|
+
"enum": [
|
|
1751
|
+
"Yes",
|
|
1752
|
+
"No"
|
|
1753
|
+
]
|
|
1754
|
+
}
|
|
1755
|
+
},
|
|
1756
|
+
"oneOf": [
|
|
1757
|
+
{
|
|
1758
|
+
"properties": {
|
|
1759
|
+
"yesNo": {
|
|
1760
|
+
"enum": [
|
|
1761
|
+
"No"
|
|
1762
|
+
]
|
|
1763
|
+
}
|
|
1764
|
+
}
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
"properties": {
|
|
1768
|
+
"yesNo": {
|
|
1769
|
+
"enum": [
|
|
1770
|
+
"Yes"
|
|
1771
|
+
]
|
|
1772
|
+
},
|
|
1773
|
+
"details": {
|
|
1774
|
+
"sef25Ref": "T1.1.2",
|
|
1775
|
+
"title": "Details",
|
|
1776
|
+
"type": "string",
|
|
1777
|
+
"minLength": 1
|
|
1778
|
+
}
|
|
1779
|
+
},
|
|
1780
|
+
"sef25Required": [
|
|
1781
|
+
"details"
|
|
1782
|
+
]
|
|
1783
|
+
}
|
|
1784
|
+
]
|
|
1785
|
+
},
|
|
1680
1786
|
"wholeFreeholdForSale": {
|
|
1681
1787
|
"title": "Is the entire freehold being sold?",
|
|
1682
1788
|
"type": "object",
|
|
@@ -1716,7 +1822,10 @@
|
|
|
1716
1822
|
}
|
|
1717
1823
|
]
|
|
1718
1824
|
}
|
|
1719
|
-
}
|
|
1825
|
+
},
|
|
1826
|
+
"sef25Required": [
|
|
1827
|
+
"titleRestrictions"
|
|
1828
|
+
]
|
|
1720
1829
|
},
|
|
1721
1830
|
{
|
|
1722
1831
|
"properties": {
|
|
@@ -8303,8 +8412,12 @@
|
|
|
8303
8412
|
}
|
|
8304
8413
|
},
|
|
8305
8414
|
"parking": {
|
|
8415
|
+
"sef25Ref": "K1",
|
|
8306
8416
|
"title": "Parking",
|
|
8307
8417
|
"type": "object",
|
|
8418
|
+
"sef25Required": [
|
|
8419
|
+
"droppedKerbAccess"
|
|
8420
|
+
],
|
|
8308
8421
|
"properties": {
|
|
8309
8422
|
"parkingArrangements": {
|
|
8310
8423
|
"type": "array",
|
|
@@ -8436,6 +8549,25 @@
|
|
|
8436
8549
|
}
|
|
8437
8550
|
]
|
|
8438
8551
|
},
|
|
8552
|
+
"droppedKerbAccess": {
|
|
8553
|
+
"sef25Ref": "K1.1",
|
|
8554
|
+
"title": "Is there a dropped kerb access to parking?",
|
|
8555
|
+
"type": "object",
|
|
8556
|
+
"sef25Required": [
|
|
8557
|
+
"yesNo"
|
|
8558
|
+
],
|
|
8559
|
+
"properties": {
|
|
8560
|
+
"yesNo": {
|
|
8561
|
+
"sef25Ref": "K1.1.1",
|
|
8562
|
+
"type": "string",
|
|
8563
|
+
"title": "",
|
|
8564
|
+
"enum": [
|
|
8565
|
+
"Yes",
|
|
8566
|
+
"No"
|
|
8567
|
+
]
|
|
8568
|
+
}
|
|
8569
|
+
}
|
|
8570
|
+
},
|
|
8439
8571
|
"electricVehicleChargingPoint": {
|
|
8440
8572
|
"title": "Is there an electric vehicle charging point belonging to the property?",
|
|
8441
8573
|
"type": "object",
|
|
@@ -12102,11 +12234,13 @@
|
|
|
12102
12234
|
}
|
|
12103
12235
|
},
|
|
12104
12236
|
"notices": {
|
|
12237
|
+
"sef25Ref": "N1",
|
|
12105
12238
|
"title": "Notices which Affect the Property",
|
|
12106
12239
|
"description": "Are you aware of, or have you received, any of the following notices?",
|
|
12107
12240
|
"type": "object",
|
|
12108
12241
|
"properties": {
|
|
12109
12242
|
"neighbourDevelopment": {
|
|
12243
|
+
"sef25Ref": "N1.1",
|
|
12110
12244
|
"title": "The owner of a neighbouring property is proposing to develop property or land nearby, make alterations to nearby buildings or change the use?",
|
|
12111
12245
|
"type": "object",
|
|
12112
12246
|
"properties": {
|
|
@@ -17884,6 +18018,7 @@
|
|
|
17884
18018
|
}
|
|
17885
18019
|
},
|
|
17886
18020
|
"electricity": {
|
|
18021
|
+
"sef25Ref": "S1",
|
|
17887
18022
|
"title": "Electricity supply",
|
|
17888
18023
|
"type": "object",
|
|
17889
18024
|
"properties": {
|
|
@@ -17969,6 +18104,7 @@
|
|
|
17969
18104
|
]
|
|
17970
18105
|
},
|
|
17971
18106
|
"solarPanels": {
|
|
18107
|
+
"sef25Ref": "S1",
|
|
17972
18108
|
"title": "Solar or photovoltaic panels",
|
|
17973
18109
|
"type": "object",
|
|
17974
18110
|
"properties": {
|
|
@@ -18016,6 +18152,7 @@
|
|
|
18016
18152
|
"type": "integer"
|
|
18017
18153
|
},
|
|
18018
18154
|
"panelsOwnedOutright": {
|
|
18155
|
+
"sef25Ref": "S1.1",
|
|
18019
18156
|
"title": "Do you own the panels, and all equipment related to them, outright?",
|
|
18020
18157
|
"type": "object",
|
|
18021
18158
|
"properties": {
|
|
@@ -18057,6 +18194,63 @@
|
|
|
18057
18194
|
"Attached",
|
|
18058
18195
|
"To follow"
|
|
18059
18196
|
]
|
|
18197
|
+
},
|
|
18198
|
+
"associatedCost": {
|
|
18199
|
+
"sef25Ref": "S1.1",
|
|
18200
|
+
"title": "Associated costs of leased solar panels",
|
|
18201
|
+
"type": "object",
|
|
18202
|
+
"sef25Required": [
|
|
18203
|
+
"hasCost"
|
|
18204
|
+
],
|
|
18205
|
+
"properties": {
|
|
18206
|
+
"hasCost": {
|
|
18207
|
+
"sef25Ref": "S1.1.1",
|
|
18208
|
+
"title": "Are there any associated costs?",
|
|
18209
|
+
"type": "string",
|
|
18210
|
+
"enum": [
|
|
18211
|
+
"Yes",
|
|
18212
|
+
"No"
|
|
18213
|
+
]
|
|
18214
|
+
}
|
|
18215
|
+
},
|
|
18216
|
+
"oneOf": [
|
|
18217
|
+
{
|
|
18218
|
+
"properties": {
|
|
18219
|
+
"hasCost": {
|
|
18220
|
+
"enum": [
|
|
18221
|
+
"No"
|
|
18222
|
+
]
|
|
18223
|
+
}
|
|
18224
|
+
}
|
|
18225
|
+
},
|
|
18226
|
+
{
|
|
18227
|
+
"properties": {
|
|
18228
|
+
"hasCost": {
|
|
18229
|
+
"enum": [
|
|
18230
|
+
"Yes"
|
|
18231
|
+
]
|
|
18232
|
+
},
|
|
18233
|
+
"amount": {
|
|
18234
|
+
"sef25Ref": "S1.1.2",
|
|
18235
|
+
"title": "Amount (£)",
|
|
18236
|
+
"type": "number"
|
|
18237
|
+
},
|
|
18238
|
+
"frequency": {
|
|
18239
|
+
"sef25Ref": "S1.1.3",
|
|
18240
|
+
"title": "Payment frequency",
|
|
18241
|
+
"type": "string",
|
|
18242
|
+
"enum": [
|
|
18243
|
+
"Per month",
|
|
18244
|
+
"Per year"
|
|
18245
|
+
]
|
|
18246
|
+
}
|
|
18247
|
+
},
|
|
18248
|
+
"sef25Required": [
|
|
18249
|
+
"amount",
|
|
18250
|
+
"frequency"
|
|
18251
|
+
]
|
|
18252
|
+
}
|
|
18253
|
+
]
|
|
18060
18254
|
}
|
|
18061
18255
|
}
|
|
18062
18256
|
}
|
|
@@ -18605,29 +18799,60 @@
|
|
|
18605
18799
|
},
|
|
18606
18800
|
"associatedCost": {
|
|
18607
18801
|
"sef25Ref": "U1.1",
|
|
18608
|
-
"title": "
|
|
18802
|
+
"title": "Associated costs for water supply",
|
|
18609
18803
|
"type": "object",
|
|
18610
18804
|
"sef25Required": [
|
|
18611
|
-
"
|
|
18612
|
-
"frequency"
|
|
18805
|
+
"hasCost"
|
|
18613
18806
|
],
|
|
18614
18807
|
"properties": {
|
|
18615
|
-
"
|
|
18808
|
+
"hasCost": {
|
|
18616
18809
|
"sef25Ref": "U1.1.1",
|
|
18617
|
-
"title": "
|
|
18618
|
-
"type": "number"
|
|
18619
|
-
},
|
|
18620
|
-
"frequency": {
|
|
18621
|
-
"sef25Ref": "U1.1.2",
|
|
18622
|
-
"title": "Payment frequency if costs are associated",
|
|
18810
|
+
"title": "Are there any associated costs?",
|
|
18623
18811
|
"type": "string",
|
|
18624
18812
|
"enum": [
|
|
18625
|
-
"
|
|
18626
|
-
"
|
|
18627
|
-
"Not applicable"
|
|
18813
|
+
"Yes",
|
|
18814
|
+
"No"
|
|
18628
18815
|
]
|
|
18629
18816
|
}
|
|
18630
|
-
}
|
|
18817
|
+
},
|
|
18818
|
+
"oneOf": [
|
|
18819
|
+
{
|
|
18820
|
+
"properties": {
|
|
18821
|
+
"hasCost": {
|
|
18822
|
+
"enum": [
|
|
18823
|
+
"No"
|
|
18824
|
+
]
|
|
18825
|
+
}
|
|
18826
|
+
}
|
|
18827
|
+
},
|
|
18828
|
+
{
|
|
18829
|
+
"properties": {
|
|
18830
|
+
"hasCost": {
|
|
18831
|
+
"enum": [
|
|
18832
|
+
"Yes"
|
|
18833
|
+
]
|
|
18834
|
+
},
|
|
18835
|
+
"amount": {
|
|
18836
|
+
"sef25Ref": "U1.1.2",
|
|
18837
|
+
"title": "Amount (£)",
|
|
18838
|
+
"type": "number"
|
|
18839
|
+
},
|
|
18840
|
+
"frequency": {
|
|
18841
|
+
"sef25Ref": "U1.1.3",
|
|
18842
|
+
"title": "Payment frequency",
|
|
18843
|
+
"type": "string",
|
|
18844
|
+
"enum": [
|
|
18845
|
+
"Per month",
|
|
18846
|
+
"Per year"
|
|
18847
|
+
]
|
|
18848
|
+
}
|
|
18849
|
+
},
|
|
18850
|
+
"sef25Required": [
|
|
18851
|
+
"amount",
|
|
18852
|
+
"frequency"
|
|
18853
|
+
]
|
|
18854
|
+
}
|
|
18855
|
+
]
|
|
18631
18856
|
}
|
|
18632
18857
|
},
|
|
18633
18858
|
"sef25Required": [
|
|
@@ -19350,26 +19575,57 @@
|
|
|
19350
19575
|
"title": "Associated costs for sewerage",
|
|
19351
19576
|
"type": "object",
|
|
19352
19577
|
"sef25Required": [
|
|
19353
|
-
"
|
|
19354
|
-
"frequency"
|
|
19578
|
+
"hasCost"
|
|
19355
19579
|
],
|
|
19356
19580
|
"properties": {
|
|
19357
|
-
"
|
|
19581
|
+
"hasCost": {
|
|
19358
19582
|
"sef25Ref": "U1.2.1",
|
|
19359
|
-
"title": "
|
|
19360
|
-
"type": "number"
|
|
19361
|
-
},
|
|
19362
|
-
"frequency": {
|
|
19363
|
-
"sef25Ref": "U1.2.2",
|
|
19364
|
-
"title": "Payment frequency if costs are associated",
|
|
19583
|
+
"title": "Are there any associated costs?",
|
|
19365
19584
|
"type": "string",
|
|
19366
19585
|
"enum": [
|
|
19367
|
-
"
|
|
19368
|
-
"
|
|
19369
|
-
"Not applicable"
|
|
19586
|
+
"Yes",
|
|
19587
|
+
"No"
|
|
19370
19588
|
]
|
|
19371
19589
|
}
|
|
19372
|
-
}
|
|
19590
|
+
},
|
|
19591
|
+
"oneOf": [
|
|
19592
|
+
{
|
|
19593
|
+
"properties": {
|
|
19594
|
+
"hasCost": {
|
|
19595
|
+
"enum": [
|
|
19596
|
+
"No"
|
|
19597
|
+
]
|
|
19598
|
+
}
|
|
19599
|
+
}
|
|
19600
|
+
},
|
|
19601
|
+
{
|
|
19602
|
+
"properties": {
|
|
19603
|
+
"hasCost": {
|
|
19604
|
+
"enum": [
|
|
19605
|
+
"Yes"
|
|
19606
|
+
]
|
|
19607
|
+
},
|
|
19608
|
+
"amount": {
|
|
19609
|
+
"sef25Ref": "U1.2.2",
|
|
19610
|
+
"title": "Amount (£)",
|
|
19611
|
+
"type": "number"
|
|
19612
|
+
},
|
|
19613
|
+
"frequency": {
|
|
19614
|
+
"sef25Ref": "U1.2.3",
|
|
19615
|
+
"title": "Payment frequency",
|
|
19616
|
+
"type": "string",
|
|
19617
|
+
"enum": [
|
|
19618
|
+
"Per month",
|
|
19619
|
+
"Per year"
|
|
19620
|
+
]
|
|
19621
|
+
}
|
|
19622
|
+
},
|
|
19623
|
+
"sef25Required": [
|
|
19624
|
+
"amount",
|
|
19625
|
+
"frequency"
|
|
19626
|
+
]
|
|
19627
|
+
}
|
|
19628
|
+
]
|
|
19373
19629
|
}
|
|
19374
19630
|
},
|
|
19375
19631
|
"sef25Required": [
|
|
@@ -20505,6 +20761,7 @@
|
|
|
20505
20761
|
}
|
|
20506
20762
|
},
|
|
20507
20763
|
"insurance": {
|
|
20764
|
+
"sef25Ref": "I1",
|
|
20508
20765
|
"title": "Insurance",
|
|
20509
20766
|
"type": "object",
|
|
20510
20767
|
"properties": {
|
|
@@ -20716,11 +20973,13 @@
|
|
|
20716
20973
|
]
|
|
20717
20974
|
},
|
|
20718
20975
|
"insuranceClaims": {
|
|
20976
|
+
"sef25Ref": "I1.1",
|
|
20719
20977
|
"title": "Have you ever made a claim against your building insurance in relation to the property?",
|
|
20720
20978
|
"Title": "Has the seller made any buildings insurance claims?",
|
|
20721
20979
|
"type": "object",
|
|
20722
20980
|
"properties": {
|
|
20723
20981
|
"yesNo": {
|
|
20982
|
+
"sef25Ref": "I1.1.1",
|
|
20724
20983
|
"type": "string",
|
|
20725
20984
|
"title": "",
|
|
20726
20985
|
"enum": [
|
|
@@ -20755,11 +21014,15 @@
|
|
|
20755
21014
|
}
|
|
20756
21015
|
]
|
|
20757
21016
|
}
|
|
20758
|
-
}
|
|
21017
|
+
},
|
|
21018
|
+
"sef25Required": [
|
|
21019
|
+
"insuranceClaims"
|
|
21020
|
+
]
|
|
20759
21021
|
}
|
|
20760
21022
|
]
|
|
20761
21023
|
},
|
|
20762
21024
|
"rightsAndInformalArrangements": {
|
|
21025
|
+
"sef25Ref": "R1",
|
|
20763
21026
|
"title": "Rights and Informal Arrangements",
|
|
20764
21027
|
"type": "object",
|
|
20765
21028
|
"properties": {
|
|
@@ -20970,8 +21233,12 @@
|
|
|
20970
21233
|
]
|
|
20971
21234
|
},
|
|
20972
21235
|
"rightsOrArrangements": {
|
|
21236
|
+
"sef25Ref": "R1",
|
|
20973
21237
|
"title": "Do you know if any of the following rights or arrangements affect the property?",
|
|
20974
21238
|
"type": "object",
|
|
21239
|
+
"sef25Required": [
|
|
21240
|
+
"privateRightOfWay"
|
|
21241
|
+
],
|
|
20975
21242
|
"properties": {
|
|
20976
21243
|
"publicRightOfWay": {
|
|
20977
21244
|
"title": "A public right of way through and/or across your property, buildings or land",
|
|
@@ -21020,6 +21287,54 @@
|
|
|
21020
21287
|
}
|
|
21021
21288
|
]
|
|
21022
21289
|
},
|
|
21290
|
+
"privateRightOfWay": {
|
|
21291
|
+
"sef25Ref": "R1.1",
|
|
21292
|
+
"title": "A private right of way through and/or across your house, buildings or land",
|
|
21293
|
+
"type": "object",
|
|
21294
|
+
"sef25Required": [
|
|
21295
|
+
"yesNo"
|
|
21296
|
+
],
|
|
21297
|
+
"properties": {
|
|
21298
|
+
"yesNo": {
|
|
21299
|
+
"sef25Ref": "R1.1.1",
|
|
21300
|
+
"type": "string",
|
|
21301
|
+
"title": "",
|
|
21302
|
+
"enum": [
|
|
21303
|
+
"Yes",
|
|
21304
|
+
"No"
|
|
21305
|
+
]
|
|
21306
|
+
}
|
|
21307
|
+
},
|
|
21308
|
+
"oneOf": [
|
|
21309
|
+
{
|
|
21310
|
+
"properties": {
|
|
21311
|
+
"yesNo": {
|
|
21312
|
+
"enum": [
|
|
21313
|
+
"No"
|
|
21314
|
+
]
|
|
21315
|
+
}
|
|
21316
|
+
}
|
|
21317
|
+
},
|
|
21318
|
+
{
|
|
21319
|
+
"properties": {
|
|
21320
|
+
"yesNo": {
|
|
21321
|
+
"enum": [
|
|
21322
|
+
"Yes"
|
|
21323
|
+
]
|
|
21324
|
+
},
|
|
21325
|
+
"details": {
|
|
21326
|
+
"sef25Ref": "R1.1.2",
|
|
21327
|
+
"title": "Please provide details",
|
|
21328
|
+
"type": "string",
|
|
21329
|
+
"minLength": 1
|
|
21330
|
+
}
|
|
21331
|
+
},
|
|
21332
|
+
"sef25Required": [
|
|
21333
|
+
"details"
|
|
21334
|
+
]
|
|
21335
|
+
}
|
|
21336
|
+
]
|
|
21337
|
+
},
|
|
21023
21338
|
"rightsOfLight": {
|
|
21024
21339
|
"title": "Rights of light",
|
|
21025
21340
|
"type": "object",
|
|
@@ -21417,8 +21732,12 @@
|
|
|
21417
21732
|
}
|
|
21418
21733
|
},
|
|
21419
21734
|
"environmentalIssues": {
|
|
21735
|
+
"sef25Ref": "E1",
|
|
21420
21736
|
"title": "Environmental Issues Affecting the Property",
|
|
21421
21737
|
"type": "object",
|
|
21738
|
+
"sef25Required": [
|
|
21739
|
+
"stormFireFloodDamage"
|
|
21740
|
+
],
|
|
21422
21741
|
"properties": {
|
|
21423
21742
|
"flooding": {
|
|
21424
21743
|
"title": "Flooding",
|
|
@@ -21578,6 +21897,7 @@
|
|
|
21578
21897
|
"type": "object",
|
|
21579
21898
|
"properties": {
|
|
21580
21899
|
"hasBeenFlooded": {
|
|
21900
|
+
"sef25Ref": "E1.2",
|
|
21581
21901
|
"title": "Has the property been flooded in the last 5 years?",
|
|
21582
21902
|
"type": "string",
|
|
21583
21903
|
"enum": [
|
|
@@ -21668,6 +21988,54 @@
|
|
|
21668
21988
|
}
|
|
21669
21989
|
}
|
|
21670
21990
|
},
|
|
21991
|
+
"stormFireFloodDamage": {
|
|
21992
|
+
"sef25Ref": "E1.1",
|
|
21993
|
+
"title": "Has the property ever suffered storm, fire or flood damage?",
|
|
21994
|
+
"type": "object",
|
|
21995
|
+
"sef25Required": [
|
|
21996
|
+
"yesNo"
|
|
21997
|
+
],
|
|
21998
|
+
"properties": {
|
|
21999
|
+
"yesNo": {
|
|
22000
|
+
"sef25Ref": "E1.1.1",
|
|
22001
|
+
"type": "string",
|
|
22002
|
+
"title": "",
|
|
22003
|
+
"enum": [
|
|
22004
|
+
"Yes",
|
|
22005
|
+
"No"
|
|
22006
|
+
]
|
|
22007
|
+
}
|
|
22008
|
+
},
|
|
22009
|
+
"oneOf": [
|
|
22010
|
+
{
|
|
22011
|
+
"properties": {
|
|
22012
|
+
"yesNo": {
|
|
22013
|
+
"enum": [
|
|
22014
|
+
"No"
|
|
22015
|
+
]
|
|
22016
|
+
}
|
|
22017
|
+
}
|
|
22018
|
+
},
|
|
22019
|
+
{
|
|
22020
|
+
"properties": {
|
|
22021
|
+
"yesNo": {
|
|
22022
|
+
"enum": [
|
|
22023
|
+
"Yes"
|
|
22024
|
+
]
|
|
22025
|
+
},
|
|
22026
|
+
"details": {
|
|
22027
|
+
"sef25Ref": "E1.1.2",
|
|
22028
|
+
"title": "Please provide details",
|
|
22029
|
+
"type": "string",
|
|
22030
|
+
"minLength": 1
|
|
22031
|
+
}
|
|
22032
|
+
},
|
|
22033
|
+
"sef25Required": [
|
|
22034
|
+
"details"
|
|
22035
|
+
]
|
|
22036
|
+
}
|
|
22037
|
+
]
|
|
22038
|
+
},
|
|
21671
22039
|
"radon": {
|
|
21672
22040
|
"title": "Radon",
|
|
21673
22041
|
"type": "object",
|
|
@@ -23039,8 +23407,12 @@
|
|
|
23039
23407
|
}
|
|
23040
23408
|
},
|
|
23041
23409
|
"additionalInformation": {
|
|
23410
|
+
"sef25Ref": "M1",
|
|
23042
23411
|
"title": "Additional Information",
|
|
23043
23412
|
"type": "object",
|
|
23413
|
+
"sef25Required": [
|
|
23414
|
+
"otherMaterialIssue"
|
|
23415
|
+
],
|
|
23044
23416
|
"properties": {
|
|
23045
23417
|
"consents": {
|
|
23046
23418
|
"title": "Please supply copies of all consents that have been given under any covenants, estate management schemes or other restrictions affecting the title to the property for all actions you have disclosed in your answers to questions 5 (Alterations), 8.5 (Green Deal), 10.3 (EV charging points) and 11 (Services).",
|
|
@@ -23136,11 +23508,13 @@
|
|
|
23136
23508
|
]
|
|
23137
23509
|
},
|
|
23138
23510
|
"otherMaterialIssue": {
|
|
23511
|
+
"sef25Ref": "M1.1",
|
|
23139
23512
|
"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?",
|
|
23140
23513
|
"description": "This disclosure is required under the Consumer Protection from Unfair Trading Regulations 2008",
|
|
23141
23514
|
"type": "object",
|
|
23142
23515
|
"properties": {
|
|
23143
23516
|
"yesNo": {
|
|
23517
|
+
"sef25Ref": "M1.1.1",
|
|
23144
23518
|
"type": "string",
|
|
23145
23519
|
"title": "",
|
|
23146
23520
|
"enum": [
|
|
@@ -24150,6 +24524,7 @@
|
|
|
24150
24524
|
]
|
|
24151
24525
|
},
|
|
24152
24526
|
"guaranteesWarrantiesAndIndemnityInsurances": {
|
|
24527
|
+
"sef25Ref": "W1",
|
|
24153
24528
|
"title": "Guarantees, Warranties and Indemnity Insurances",
|
|
24154
24529
|
"type": "object",
|
|
24155
24530
|
"properties": {
|
|
@@ -24180,6 +24555,7 @@
|
|
|
24180
24555
|
]
|
|
24181
24556
|
},
|
|
24182
24557
|
"newHomeWarranty": {
|
|
24558
|
+
"sef25Ref": "W1.1",
|
|
24183
24559
|
"title": "New Home Warranty (NHBC or similar)",
|
|
24184
24560
|
"type": "object",
|
|
24185
24561
|
"properties": {
|
|
@@ -24227,6 +24603,7 @@
|
|
|
24227
24603
|
]
|
|
24228
24604
|
},
|
|
24229
24605
|
"roofingWork": {
|
|
24606
|
+
"sef25Ref": "W1.2",
|
|
24230
24607
|
"title": "Roofing work",
|
|
24231
24608
|
"type": "object",
|
|
24232
24609
|
"properties": {
|
|
@@ -24269,6 +24646,7 @@
|
|
|
24269
24646
|
]
|
|
24270
24647
|
},
|
|
24271
24648
|
"dampProofingTreatment": {
|
|
24649
|
+
"sef25Ref": "W1.3",
|
|
24272
24650
|
"title": "Damp proofing treatment",
|
|
24273
24651
|
"type": "object",
|
|
24274
24652
|
"properties": {
|
|
@@ -24353,6 +24731,7 @@
|
|
|
24353
24731
|
]
|
|
24354
24732
|
},
|
|
24355
24733
|
"centralHeatingAndorPlumbing": {
|
|
24734
|
+
"sef25Ref": "W1.4",
|
|
24356
24735
|
"title": "Central heating and/or plumbing",
|
|
24357
24736
|
"type": "object",
|
|
24358
24737
|
"properties": {
|
|
@@ -24470,6 +24849,7 @@
|
|
|
24470
24849
|
]
|
|
24471
24850
|
},
|
|
24472
24851
|
"electricalRepairOrInstallation": {
|
|
24852
|
+
"sef25Ref": "W1.5",
|
|
24473
24853
|
"title": "Electrical repair or installation",
|
|
24474
24854
|
"type": "object",
|
|
24475
24855
|
"properties": {
|
|
@@ -24512,6 +24892,7 @@
|
|
|
24512
24892
|
]
|
|
24513
24893
|
},
|
|
24514
24894
|
"subsidenceWork": {
|
|
24895
|
+
"sef25Ref": "W1.6",
|
|
24515
24896
|
"title": "Underpinning or other preventative work and/or remedial action relating to subsidence",
|
|
24516
24897
|
"type": "object",
|
|
24517
24898
|
"properties": {
|
|
@@ -24638,6 +25019,7 @@
|
|
|
24638
25019
|
]
|
|
24639
25020
|
},
|
|
24640
25021
|
"otherGuarantees": {
|
|
25022
|
+
"sef25Ref": "W1.7",
|
|
24641
25023
|
"title": "Other Guarantees or warranties",
|
|
24642
25024
|
"type": "object",
|
|
24643
25025
|
"properties": {
|