@pdtf/schemas 3.0.0-1 → 3.0.0-11
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/index.js +15 -13
- package/package.json +1 -1
- package/src/examples/v3/exampleTransaction.json +23 -22
- package/src/schemas/v2/overlays/baspi.json +510 -2331
- package/src/schemas/v2/overlays/con29DW.json +36 -125
- package/src/schemas/v2/overlays/con29R.json +5 -143
- package/src/schemas/v2/overlays/fme1.json +48 -233
- package/src/schemas/v2/overlays/lpe1.json +75 -367
- package/src/schemas/v2/overlays/nts.json +17 -103
- package/src/schemas/v2/overlays/piq.json +146 -693
- package/src/schemas/v2/overlays/rds.json +50 -316
- package/src/schemas/v2/overlays/ta10.json +540 -1755
- package/src/schemas/v2/overlays/ta6.json +241 -1193
- package/src/schemas/v2/overlays/ta7.json +106 -440
- package/src/schemas/v3/combined.json +762 -683
- package/src/schemas/v3/overlays/baspi.json +662 -2571
- package/src/schemas/v3/overlays/con29DW.json +46 -127
- package/src/schemas/v3/overlays/con29R.json +5 -143
- package/src/schemas/v3/overlays/fme1.json +53 -233
- package/src/schemas/v3/overlays/lpe1.json +85 -367
- package/src/schemas/v3/overlays/nts.json +493 -475
- package/src/schemas/v3/overlays/piq.json +225 -827
- package/src/schemas/v3/overlays/rds.json +172 -541
- package/src/schemas/v3/overlays/ta10.json +540 -1755
- package/src/schemas/v3/overlays/ta6.json +346 -1271
- package/src/schemas/v3/overlays/ta7.json +220 -462
- package/src/schemas/v3/pdtf-transaction.json +628 -600
- package/src/schemas/v3/skeleton.json +92 -67
- package/src/tests/v3/transactionSchema.test.js +27 -17
- package/src/tests/v3/verifiedClaimsValidator.test.js +2 -2
- package/src/utils/extractOverlay.js +5 -27
- package/src/tests/v2/transactionSchema.test.js +0 -361
- package/src/tests/v2/verifiedClaimsValidator.test.js +0 -128
|
@@ -7,7 +7,6 @@
|
|
|
7
7
|
"properties": {
|
|
8
8
|
"propertyPack": {
|
|
9
9
|
"ntsRef": "0",
|
|
10
|
-
"title": "Property Pack",
|
|
11
10
|
"required": [
|
|
12
11
|
"materialFacts"
|
|
13
12
|
],
|
|
@@ -16,88 +15,229 @@
|
|
|
16
15
|
"required": [
|
|
17
16
|
"ownership",
|
|
18
17
|
"councilTax",
|
|
19
|
-
"energyEfficiency"
|
|
18
|
+
"energyEfficiency",
|
|
19
|
+
"buildInformation",
|
|
20
|
+
"typeOfConstruction",
|
|
21
|
+
"connectedUtilities",
|
|
22
|
+
"waterAndDrainage",
|
|
23
|
+
"heating",
|
|
24
|
+
"parking",
|
|
25
|
+
"listingAndConservation",
|
|
26
|
+
"rightsAndInformalArrangements",
|
|
27
|
+
"environmentalIssues",
|
|
28
|
+
"notices"
|
|
20
29
|
],
|
|
21
30
|
"properties": {
|
|
22
31
|
"priceInformation": {
|
|
23
32
|
"ntsRef": "A2",
|
|
24
|
-
"title": "Price information",
|
|
25
33
|
"required": [
|
|
26
34
|
"price",
|
|
27
35
|
"priceQualifier"
|
|
28
36
|
],
|
|
29
37
|
"properties": {
|
|
30
38
|
"price": {
|
|
31
|
-
"ntsRef": "A2.1"
|
|
32
|
-
"title": "Price"
|
|
39
|
+
"ntsRef": "A2.1"
|
|
33
40
|
},
|
|
34
41
|
"priceQualifier": {
|
|
35
|
-
"ntsRef": "A2.2"
|
|
36
|
-
"title": "Price type",
|
|
37
|
-
"enum": [
|
|
38
|
-
"POA",
|
|
39
|
-
"Guide price",
|
|
40
|
-
"Fixed price",
|
|
41
|
-
"Offers in excess of",
|
|
42
|
-
"Offers in region of",
|
|
43
|
-
"Sale by tender"
|
|
44
|
-
]
|
|
42
|
+
"ntsRef": "A2.2"
|
|
45
43
|
}
|
|
46
44
|
}
|
|
47
45
|
},
|
|
48
46
|
"marketingTenure": {
|
|
49
|
-
"ntsRef": "A3"
|
|
50
|
-
"title": "Type of tenure being marketed",
|
|
51
|
-
"enum": [
|
|
52
|
-
"Commonhold",
|
|
53
|
-
"Freehold",
|
|
54
|
-
"Leasehold",
|
|
55
|
-
"Share of Freehold",
|
|
56
|
-
"Shared Ownership"
|
|
57
|
-
]
|
|
47
|
+
"ntsRef": "A3"
|
|
58
48
|
},
|
|
59
49
|
"buildInformation": {
|
|
50
|
+
"ntsRef": "B1.1",
|
|
51
|
+
"required": [
|
|
52
|
+
"building",
|
|
53
|
+
"roomDimensions"
|
|
54
|
+
],
|
|
60
55
|
"properties": {
|
|
61
|
-
"
|
|
62
|
-
"ntsRef": "
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
"
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
"title": "The length of the room"
|
|
56
|
+
"building": {
|
|
57
|
+
"ntsRef": "B1.1.1",
|
|
58
|
+
"discriminator": {
|
|
59
|
+
"propertyName": "propertyType"
|
|
60
|
+
},
|
|
61
|
+
"oneOf": [
|
|
62
|
+
{
|
|
63
|
+
"properties": {
|
|
64
|
+
"propertyType": {
|
|
65
|
+
"enum": [
|
|
66
|
+
"Other"
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
"otherType": {
|
|
70
|
+
"ntsRef": "B1.1.1.1"
|
|
71
|
+
}
|
|
78
72
|
},
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
|
|
73
|
+
"required": [
|
|
74
|
+
"otherType"
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"properties": {
|
|
79
|
+
"propertyType": {
|
|
80
|
+
"enum": [
|
|
81
|
+
"House",
|
|
82
|
+
"Bungalow"
|
|
83
|
+
]
|
|
84
|
+
},
|
|
85
|
+
"builtForm": {
|
|
86
|
+
"ntsRef": "B1.1.2"
|
|
87
|
+
}
|
|
82
88
|
},
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
"
|
|
91
|
-
|
|
92
|
-
|
|
89
|
+
"required": [
|
|
90
|
+
"builtForm"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"properties": {
|
|
95
|
+
"propertyType": {
|
|
96
|
+
"enum": [
|
|
97
|
+
"Maisonette",
|
|
98
|
+
"Flat"
|
|
99
|
+
]
|
|
100
|
+
},
|
|
101
|
+
"builtForm": {
|
|
102
|
+
"ntsRef": "B1.1.2"
|
|
103
|
+
},
|
|
104
|
+
"numberOfFloors": {
|
|
105
|
+
"ntsRef": "B1.1.3"
|
|
106
|
+
},
|
|
107
|
+
"entranceFloor": {
|
|
108
|
+
"ntsRef": "B1.1.4"
|
|
109
|
+
},
|
|
110
|
+
"hasLift": {
|
|
111
|
+
"ntsRef": "B1.1.5"
|
|
112
|
+
},
|
|
113
|
+
"overCommercialPremises": {
|
|
114
|
+
"ntsRef": "B1.1.6",
|
|
115
|
+
"discriminator": {
|
|
116
|
+
"propertyName": "isLocatedOverCommercialPremises"
|
|
117
|
+
},
|
|
118
|
+
"oneOf": [
|
|
119
|
+
{
|
|
120
|
+
"properties": {
|
|
121
|
+
"isLocatedOverCommercialPremises": {
|
|
122
|
+
"enum": [
|
|
123
|
+
"No"
|
|
124
|
+
]
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"properties": {
|
|
130
|
+
"isLocatedOverCommercialPremises": {
|
|
131
|
+
"enum": [
|
|
132
|
+
"Yes"
|
|
133
|
+
]
|
|
134
|
+
},
|
|
135
|
+
"details": {
|
|
136
|
+
"ntsRef": "B1.1.6.2"
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"required": [
|
|
140
|
+
"details"
|
|
141
|
+
]
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
"properties": {
|
|
145
|
+
"isLocatedOverCommercialPremises": {
|
|
146
|
+
"ntsRef": "B1.1.6.1"
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
93
150
|
},
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
151
|
+
"required": [
|
|
152
|
+
"builtForm",
|
|
153
|
+
"numberOfFloors",
|
|
154
|
+
"entranceFloor",
|
|
155
|
+
"hasLift",
|
|
156
|
+
"overCommercialPremises"
|
|
157
|
+
]
|
|
158
|
+
}
|
|
159
|
+
],
|
|
160
|
+
"required": [
|
|
161
|
+
"propertyType"
|
|
162
|
+
],
|
|
163
|
+
"properties": {
|
|
164
|
+
"propertyType": {
|
|
165
|
+
"ntsRef": "B1.1.1.1"
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
"roomDimensions": {
|
|
170
|
+
"ntsRef": "B2",
|
|
171
|
+
"properties": {
|
|
172
|
+
"hasFloorplan": {
|
|
173
|
+
"ntsRef": "B2.1",
|
|
174
|
+
"discriminator": {
|
|
175
|
+
"propertyName": "yesNo"
|
|
97
176
|
},
|
|
98
|
-
"
|
|
99
|
-
|
|
100
|
-
|
|
177
|
+
"oneOf": [
|
|
178
|
+
{
|
|
179
|
+
"properties": {
|
|
180
|
+
"yesNo": {
|
|
181
|
+
"enum": [
|
|
182
|
+
"Yes"
|
|
183
|
+
]
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"properties": {
|
|
189
|
+
"yesNo": {
|
|
190
|
+
"enum": [
|
|
191
|
+
"No"
|
|
192
|
+
]
|
|
193
|
+
},
|
|
194
|
+
"rooms": {
|
|
195
|
+
"ntsRef": "B2",
|
|
196
|
+
"items": {
|
|
197
|
+
"required": [
|
|
198
|
+
"roomName",
|
|
199
|
+
"length",
|
|
200
|
+
"width",
|
|
201
|
+
"units"
|
|
202
|
+
],
|
|
203
|
+
"properties": {
|
|
204
|
+
"roomName": {
|
|
205
|
+
"ntsRef": "B2.1.1"
|
|
206
|
+
},
|
|
207
|
+
"description": {
|
|
208
|
+
"ntsRef": "B2.1.2"
|
|
209
|
+
},
|
|
210
|
+
"length": {
|
|
211
|
+
"ntsRef": "B2.1.3"
|
|
212
|
+
},
|
|
213
|
+
"width": {
|
|
214
|
+
"ntsRef": "B2.1.4"
|
|
215
|
+
},
|
|
216
|
+
"units": {
|
|
217
|
+
"ntsRef": "B2.1.5"
|
|
218
|
+
},
|
|
219
|
+
"dimensionDetails": {
|
|
220
|
+
"ntsRef": "B2.6"
|
|
221
|
+
},
|
|
222
|
+
"photoUrls": {
|
|
223
|
+
"ntsRef": "B2.7"
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"required": [
|
|
230
|
+
"rooms"
|
|
231
|
+
]
|
|
232
|
+
}
|
|
233
|
+
],
|
|
234
|
+
"required": [
|
|
235
|
+
"yesNo"
|
|
236
|
+
],
|
|
237
|
+
"properties": {
|
|
238
|
+
"yesNo": {
|
|
239
|
+
"ntsRef": "B2.1.1"
|
|
240
|
+
}
|
|
101
241
|
}
|
|
102
242
|
}
|
|
103
243
|
}
|
|
@@ -106,18 +246,14 @@
|
|
|
106
246
|
},
|
|
107
247
|
"ownership": {
|
|
108
248
|
"ntsRef": "A3",
|
|
109
|
-
"title": "Ownership",
|
|
110
249
|
"required": [
|
|
111
250
|
"ownershipsToBeTransferred"
|
|
112
251
|
],
|
|
113
252
|
"properties": {
|
|
114
253
|
"ownershipsToBeTransferred": {
|
|
115
254
|
"ntsRef": "A3",
|
|
116
|
-
"title": "Ownerships to be transferred on sale",
|
|
117
|
-
"minItems": 1,
|
|
118
255
|
"items": {
|
|
119
256
|
"ntsRef": "A3.1",
|
|
120
|
-
"title": "Ownership to be transferred",
|
|
121
257
|
"discriminator": {
|
|
122
258
|
"propertyName": "ownershipType"
|
|
123
259
|
},
|
|
@@ -138,6 +274,25 @@
|
|
|
138
274
|
"Managed Freehold",
|
|
139
275
|
"Commonhold"
|
|
140
276
|
]
|
|
277
|
+
},
|
|
278
|
+
"managedFreeholdOrCommonholdInformation": {
|
|
279
|
+
"ntsRef": "A3.2",
|
|
280
|
+
"required": [
|
|
281
|
+
"serviceCharge"
|
|
282
|
+
],
|
|
283
|
+
"properties": {
|
|
284
|
+
"serviceCharge": {
|
|
285
|
+
"ntsRef": "A3.1.1",
|
|
286
|
+
"required": [
|
|
287
|
+
"annualServiceCharge"
|
|
288
|
+
],
|
|
289
|
+
"properties": {
|
|
290
|
+
"annualServiceCharge": {
|
|
291
|
+
"ntsRef": "A3.1.2"
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
}
|
|
141
296
|
}
|
|
142
297
|
}
|
|
143
298
|
},
|
|
@@ -150,7 +305,6 @@
|
|
|
150
305
|
},
|
|
151
306
|
"leaseholdInformation": {
|
|
152
307
|
"ntsRef": "A3.2",
|
|
153
|
-
"title": "Leasehold information",
|
|
154
308
|
"required": [
|
|
155
309
|
"typeOfLeasehold",
|
|
156
310
|
"leaseTerm",
|
|
@@ -182,21 +336,13 @@
|
|
|
182
336
|
]
|
|
183
337
|
},
|
|
184
338
|
"sharedOwnershipPercentage": {
|
|
185
|
-
"ntsRef": "A3.7.1"
|
|
186
|
-
"title": "Shared ownership percentage"
|
|
339
|
+
"ntsRef": "A3.7.1"
|
|
187
340
|
},
|
|
188
341
|
"sharedOwnershipRent": {
|
|
189
|
-
"ntsRef": "A3.7.2"
|
|
190
|
-
"title": "Shared ownership rent (£)"
|
|
342
|
+
"ntsRef": "A3.7.2"
|
|
191
343
|
},
|
|
192
344
|
"sharedOwnershipRentFrequency": {
|
|
193
|
-
"ntsRef": "A3.7.3"
|
|
194
|
-
"title": "Shared ownership rent frequency",
|
|
195
|
-
"enum": [
|
|
196
|
-
"Yearly",
|
|
197
|
-
"Monthly",
|
|
198
|
-
"Weekly"
|
|
199
|
-
]
|
|
345
|
+
"ntsRef": "A3.7.3"
|
|
200
346
|
}
|
|
201
347
|
},
|
|
202
348
|
"required": [
|
|
@@ -218,18 +364,15 @@
|
|
|
218
364
|
],
|
|
219
365
|
"properties": {
|
|
220
366
|
"startYearOfLease": {
|
|
221
|
-
"ntsRef": "A3.2.1.1"
|
|
222
|
-
"title": "Year that the lease commenced"
|
|
367
|
+
"ntsRef": "A3.2.1.1"
|
|
223
368
|
},
|
|
224
369
|
"lengthOfLeaseInYears": {
|
|
225
|
-
"ntsRef": "A3.2.1.2"
|
|
226
|
-
"title": "Length of lease (years)"
|
|
370
|
+
"ntsRef": "A3.2.1.2"
|
|
227
371
|
}
|
|
228
372
|
}
|
|
229
373
|
},
|
|
230
374
|
"groundRent": {
|
|
231
375
|
"ntsRef": "A3.4",
|
|
232
|
-
"title": "Ground Rent",
|
|
233
376
|
"discriminator": {
|
|
234
377
|
"propertyName": "isGroundRentPayable"
|
|
235
378
|
},
|
|
@@ -251,12 +394,10 @@
|
|
|
251
394
|
]
|
|
252
395
|
},
|
|
253
396
|
"annualGroundRent": {
|
|
254
|
-
"ntsRef": "A3.4.2"
|
|
255
|
-
"title": "What is the annual ground rent payable? (£)"
|
|
397
|
+
"ntsRef": "A3.4.2"
|
|
256
398
|
},
|
|
257
399
|
"rentSubjectToIncrease": {
|
|
258
400
|
"ntsRef": "A3.4.3",
|
|
259
|
-
"title": "Is the ground rent subject to increase?",
|
|
260
401
|
"discriminator": {
|
|
261
402
|
"propertyName": "yesNo"
|
|
262
403
|
},
|
|
@@ -278,13 +419,10 @@
|
|
|
278
419
|
]
|
|
279
420
|
},
|
|
280
421
|
"rentReviewFrequency": {
|
|
281
|
-
"ntsRef": "1.4.3.2"
|
|
282
|
-
"title": "How often is the rent reviewed?"
|
|
422
|
+
"ntsRef": "1.4.3.2"
|
|
283
423
|
},
|
|
284
424
|
"rentIncreaseCalculated": {
|
|
285
|
-
"ntsRef": "1.4.3.3"
|
|
286
|
-
"title": "How is the increase calculated?",
|
|
287
|
-
"description": "e.g. set figure, doubling, in line with Retail Price Index, Consumer Price Index, etc"
|
|
425
|
+
"ntsRef": "1.4.3.3"
|
|
288
426
|
}
|
|
289
427
|
},
|
|
290
428
|
"required": [
|
|
@@ -298,11 +436,7 @@
|
|
|
298
436
|
],
|
|
299
437
|
"properties": {
|
|
300
438
|
"yesNo": {
|
|
301
|
-
"ntsRef": "1.4.3.1"
|
|
302
|
-
"enum": [
|
|
303
|
-
"Yes",
|
|
304
|
-
"No"
|
|
305
|
-
]
|
|
439
|
+
"ntsRef": "1.4.3.1"
|
|
306
440
|
}
|
|
307
441
|
}
|
|
308
442
|
}
|
|
@@ -318,18 +452,12 @@
|
|
|
318
452
|
],
|
|
319
453
|
"properties": {
|
|
320
454
|
"isGroundRentPayable": {
|
|
321
|
-
"ntsRef": "A3.4.1"
|
|
322
|
-
"title": "Does the seller pay ground rent for the property?",
|
|
323
|
-
"enum": [
|
|
324
|
-
"Yes",
|
|
325
|
-
"No"
|
|
326
|
-
]
|
|
455
|
+
"ntsRef": "A3.4.1"
|
|
327
456
|
}
|
|
328
457
|
}
|
|
329
458
|
},
|
|
330
459
|
"serviceCharge": {
|
|
331
460
|
"ntsRef": "A3.5",
|
|
332
|
-
"title": "Service Charge",
|
|
333
461
|
"discriminator": {
|
|
334
462
|
"propertyName": "sellerContributesToServiceCharge"
|
|
335
463
|
},
|
|
@@ -351,10 +479,12 @@
|
|
|
351
479
|
]
|
|
352
480
|
},
|
|
353
481
|
"annualServiceCharge": {
|
|
354
|
-
"ntsRef": "A3.5.1.1"
|
|
355
|
-
"title": "Amount of current annual service charge (£)"
|
|
482
|
+
"ntsRef": "A3.5.1.1"
|
|
356
483
|
}
|
|
357
|
-
}
|
|
484
|
+
},
|
|
485
|
+
"required": [
|
|
486
|
+
"annualServiceCharge"
|
|
487
|
+
]
|
|
358
488
|
}
|
|
359
489
|
],
|
|
360
490
|
"required": [
|
|
@@ -362,12 +492,7 @@
|
|
|
362
492
|
],
|
|
363
493
|
"properties": {
|
|
364
494
|
"sellerContributesToServiceCharge": {
|
|
365
|
-
"ntsRef": "A3.5.1"
|
|
366
|
-
"title": "Does the seller contribute to the cost of maintaining the building (a service charge)?",
|
|
367
|
-
"enum": [
|
|
368
|
-
"Yes",
|
|
369
|
-
"No"
|
|
370
|
-
]
|
|
495
|
+
"ntsRef": "A3.5.1"
|
|
371
496
|
}
|
|
372
497
|
}
|
|
373
498
|
}
|
|
@@ -381,20 +506,30 @@
|
|
|
381
506
|
"enum": [
|
|
382
507
|
"Other"
|
|
383
508
|
]
|
|
509
|
+
},
|
|
510
|
+
"otherOwnershipDetails": {
|
|
511
|
+
"ntsRef": "A3.5"
|
|
384
512
|
}
|
|
385
|
-
}
|
|
513
|
+
},
|
|
514
|
+
"required": [
|
|
515
|
+
"otherOwnershipDetails"
|
|
516
|
+
]
|
|
386
517
|
}
|
|
387
518
|
],
|
|
388
519
|
"required": [
|
|
389
520
|
"ownershipType"
|
|
390
|
-
]
|
|
521
|
+
],
|
|
522
|
+
"properties": {
|
|
523
|
+
"ownershipType": {
|
|
524
|
+
"ntsRef": "A3.1"
|
|
525
|
+
}
|
|
526
|
+
}
|
|
391
527
|
}
|
|
392
528
|
}
|
|
393
529
|
}
|
|
394
530
|
},
|
|
395
531
|
"parking": {
|
|
396
532
|
"ntsRef": "B4",
|
|
397
|
-
"title": "Parking",
|
|
398
533
|
"required": [
|
|
399
534
|
"parkingArrangements",
|
|
400
535
|
"controlledParking",
|
|
@@ -403,27 +538,36 @@
|
|
|
403
538
|
"properties": {
|
|
404
539
|
"parkingArrangements": {
|
|
405
540
|
"ntsRef": "B4.1",
|
|
406
|
-
"
|
|
541
|
+
"items": {
|
|
542
|
+
"ntsRef": "B4.1.1"
|
|
543
|
+
}
|
|
407
544
|
},
|
|
408
545
|
"controlledParking": {
|
|
409
546
|
"ntsRef": "B4.2",
|
|
410
|
-
"title": "Is the property in a controlled parking zone or within a local authority parking scheme?",
|
|
411
547
|
"required": [
|
|
412
548
|
"yesNo"
|
|
413
|
-
]
|
|
549
|
+
],
|
|
550
|
+
"properties": {
|
|
551
|
+
"yesNo": {
|
|
552
|
+
"ntsRef": "B4.2.1"
|
|
553
|
+
}
|
|
554
|
+
}
|
|
414
555
|
},
|
|
415
556
|
"electricVehicleChargingPoint": {
|
|
416
557
|
"ntsRef": "B4.3",
|
|
417
|
-
"title": "Is there an electric vehicle charging point belonging to the property?",
|
|
418
558
|
"required": [
|
|
419
559
|
"yesNo"
|
|
420
|
-
]
|
|
560
|
+
],
|
|
561
|
+
"properties": {
|
|
562
|
+
"yesNo": {
|
|
563
|
+
"ntsRef": "B4.2.1"
|
|
564
|
+
}
|
|
565
|
+
}
|
|
421
566
|
}
|
|
422
567
|
}
|
|
423
568
|
},
|
|
424
569
|
"listingAndConservation": {
|
|
425
570
|
"ntsRef": "C2.1",
|
|
426
|
-
"title": "Listing and Conservation",
|
|
427
571
|
"required": [
|
|
428
572
|
"isListed",
|
|
429
573
|
"isConservationArea",
|
|
@@ -432,7 +576,6 @@
|
|
|
432
576
|
"properties": {
|
|
433
577
|
"isListed": {
|
|
434
578
|
"ntsRef": "C2.1.1",
|
|
435
|
-
"title": "Is the property a listed building in England or Wales?",
|
|
436
579
|
"discriminator": {
|
|
437
580
|
"propertyName": "yesNo"
|
|
438
581
|
},
|
|
@@ -453,8 +596,14 @@
|
|
|
453
596
|
"enum": [
|
|
454
597
|
"Yes"
|
|
455
598
|
]
|
|
599
|
+
},
|
|
600
|
+
"details": {
|
|
601
|
+
"ntsRef": "C2.1.1.2"
|
|
456
602
|
}
|
|
457
|
-
}
|
|
603
|
+
},
|
|
604
|
+
"required": [
|
|
605
|
+
"details"
|
|
606
|
+
]
|
|
458
607
|
}
|
|
459
608
|
],
|
|
460
609
|
"required": [
|
|
@@ -462,18 +611,12 @@
|
|
|
462
611
|
],
|
|
463
612
|
"properties": {
|
|
464
613
|
"yesNo": {
|
|
465
|
-
"ntsRef": "C2.1.1.1"
|
|
466
|
-
"enum": [
|
|
467
|
-
"Yes",
|
|
468
|
-
"No",
|
|
469
|
-
"Not known"
|
|
470
|
-
]
|
|
614
|
+
"ntsRef": "C2.1.1.1"
|
|
471
615
|
}
|
|
472
616
|
}
|
|
473
617
|
},
|
|
474
618
|
"isConservationArea": {
|
|
475
619
|
"ntsRef": "C2.1.2",
|
|
476
|
-
"title": "Is the property in a designated conservation area?",
|
|
477
620
|
"discriminator": {
|
|
478
621
|
"propertyName": "yesNo"
|
|
479
622
|
},
|
|
@@ -494,8 +637,14 @@
|
|
|
494
637
|
"enum": [
|
|
495
638
|
"Yes"
|
|
496
639
|
]
|
|
640
|
+
},
|
|
641
|
+
"details": {
|
|
642
|
+
"ntsRef": "C2.1.2.2"
|
|
497
643
|
}
|
|
498
|
-
}
|
|
644
|
+
},
|
|
645
|
+
"required": [
|
|
646
|
+
"details"
|
|
647
|
+
]
|
|
499
648
|
}
|
|
500
649
|
],
|
|
501
650
|
"required": [
|
|
@@ -503,18 +652,12 @@
|
|
|
503
652
|
],
|
|
504
653
|
"properties": {
|
|
505
654
|
"yesNo": {
|
|
506
|
-
"ntsRef": "C2.1.2.1"
|
|
507
|
-
"enum": [
|
|
508
|
-
"Yes",
|
|
509
|
-
"No",
|
|
510
|
-
"Not known"
|
|
511
|
-
]
|
|
655
|
+
"ntsRef": "C2.1.2.1"
|
|
512
656
|
}
|
|
513
657
|
}
|
|
514
658
|
},
|
|
515
659
|
"hasTreePreservationOrder": {
|
|
516
660
|
"ntsRef": "C2.1.3",
|
|
517
|
-
"title": "To your knowledge, does a tree preservation order apply to any trees within the boundaries of the property?",
|
|
518
661
|
"discriminator": {
|
|
519
662
|
"propertyName": "yesNo"
|
|
520
663
|
},
|
|
@@ -535,6 +678,41 @@
|
|
|
535
678
|
"enum": [
|
|
536
679
|
"Yes"
|
|
537
680
|
]
|
|
681
|
+
},
|
|
682
|
+
"workCarriedOut": {
|
|
683
|
+
"ntsRef": "C2.1.3.2",
|
|
684
|
+
"discriminator": {
|
|
685
|
+
"propertyName": "yesNo"
|
|
686
|
+
},
|
|
687
|
+
"oneOf": [
|
|
688
|
+
{
|
|
689
|
+
"properties": {
|
|
690
|
+
"yesNo": {
|
|
691
|
+
"enum": [
|
|
692
|
+
"No"
|
|
693
|
+
]
|
|
694
|
+
}
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"properties": {
|
|
699
|
+
"yesNo": {
|
|
700
|
+
"enum": [
|
|
701
|
+
"Yes"
|
|
702
|
+
]
|
|
703
|
+
},
|
|
704
|
+
"consentsObtained": {
|
|
705
|
+
"ntsRef": "C2.1.3.3"
|
|
706
|
+
}
|
|
707
|
+
},
|
|
708
|
+
"required": [
|
|
709
|
+
"consentsObtained"
|
|
710
|
+
]
|
|
711
|
+
}
|
|
712
|
+
],
|
|
713
|
+
"required": [
|
|
714
|
+
"yesNo"
|
|
715
|
+
]
|
|
538
716
|
}
|
|
539
717
|
}
|
|
540
718
|
}
|
|
@@ -544,12 +722,7 @@
|
|
|
544
722
|
],
|
|
545
723
|
"properties": {
|
|
546
724
|
"yesNo": {
|
|
547
|
-
"ntsRef": "C2.1.3.1"
|
|
548
|
-
"enum": [
|
|
549
|
-
"Yes",
|
|
550
|
-
"No",
|
|
551
|
-
"Not known"
|
|
552
|
-
]
|
|
725
|
+
"ntsRef": "C2.1.3.1"
|
|
553
726
|
}
|
|
554
727
|
}
|
|
555
728
|
}
|
|
@@ -557,7 +730,6 @@
|
|
|
557
730
|
},
|
|
558
731
|
"typeOfConstruction": {
|
|
559
732
|
"ntsRef": "A1.2",
|
|
560
|
-
"title": "Type of Construction",
|
|
561
733
|
"required": [
|
|
562
734
|
"isStandardForm",
|
|
563
735
|
"buildingSafety",
|
|
@@ -566,8 +738,6 @@
|
|
|
566
738
|
"properties": {
|
|
567
739
|
"isStandardForm": {
|
|
568
740
|
"ntsRef": "A1.2.1",
|
|
569
|
-
"title": "Is the property built in a standard form of construction? E.g. brick and/or block with timber-supported roof comprising a tile or slate cover?",
|
|
570
|
-
"description": "Examples of non-standard features which might affect a buyer are are thatched roofs, prefabricated buildings or timber-framed windows",
|
|
571
741
|
"discriminator": {
|
|
572
742
|
"propertyName": "yesNo"
|
|
573
743
|
},
|
|
@@ -589,8 +759,7 @@
|
|
|
589
759
|
]
|
|
590
760
|
},
|
|
591
761
|
"details": {
|
|
592
|
-
"ntsRef": "A1.2.1.2"
|
|
593
|
-
"title": "Details"
|
|
762
|
+
"ntsRef": "A1.2.1.2"
|
|
594
763
|
}
|
|
595
764
|
},
|
|
596
765
|
"required": [
|
|
@@ -603,18 +772,12 @@
|
|
|
603
772
|
],
|
|
604
773
|
"properties": {
|
|
605
774
|
"yesNo": {
|
|
606
|
-
"ntsRef": "A1.2.1.1"
|
|
607
|
-
"enum": [
|
|
608
|
-
"Yes",
|
|
609
|
-
"No"
|
|
610
|
-
]
|
|
775
|
+
"ntsRef": "A1.2.1.1"
|
|
611
776
|
}
|
|
612
777
|
}
|
|
613
778
|
},
|
|
614
779
|
"buildingSafety": {
|
|
615
780
|
"ntsRef": "C1",
|
|
616
|
-
"title": "Are you aware of any building safety issues?",
|
|
617
|
-
"description": "For example issues related to unsafe cladding, integrity of building materials used in construction (e.g. asbestos), risk of collapse (e.g. damaged roofs or strucutural failures), at-risk wooden decking for external structures (including balconies), lack of emergency lighting where required or insufficient fire/smoke alarm systems",
|
|
618
781
|
"discriminator": {
|
|
619
782
|
"propertyName": "yesNo"
|
|
620
783
|
},
|
|
@@ -636,24 +799,19 @@
|
|
|
636
799
|
]
|
|
637
800
|
},
|
|
638
801
|
"details": {
|
|
639
|
-
"ntsRef": "C1.2"
|
|
640
|
-
"title": "What are are the defects or hazards?"
|
|
802
|
+
"ntsRef": "C1.2"
|
|
641
803
|
},
|
|
642
804
|
"workAlreadyDone": {
|
|
643
|
-
"ntsRef": "C1.3"
|
|
644
|
-
"title": "What work has already been done?"
|
|
805
|
+
"ntsRef": "C1.3"
|
|
645
806
|
},
|
|
646
807
|
"workToBeDone": {
|
|
647
|
-
"ntsRef": "C1.4"
|
|
648
|
-
"title": "What work is required to be done?"
|
|
808
|
+
"ntsRef": "C1.4"
|
|
649
809
|
},
|
|
650
810
|
"potentialCost": {
|
|
651
|
-
"ntsRef": "C1.5"
|
|
652
|
-
"title": "What will the potential cost be?"
|
|
811
|
+
"ntsRef": "C1.5"
|
|
653
812
|
},
|
|
654
813
|
"abilityToResideAtProperty": {
|
|
655
|
-
"ntsRef": "C1.6"
|
|
656
|
-
"title": "Will the work impact the ability to reside at the property?"
|
|
814
|
+
"ntsRef": "C1.6"
|
|
657
815
|
}
|
|
658
816
|
},
|
|
659
817
|
"required": [
|
|
@@ -679,15 +837,12 @@
|
|
|
679
837
|
}
|
|
680
838
|
},
|
|
681
839
|
"accessibilityAndAdaptations": {
|
|
682
|
-
"ntsRef": "C5"
|
|
683
|
-
"title": "Are there any adaptations or features that provide easier access to, and within, the property?",
|
|
684
|
-
"description": "Lateral living is a term used to describe a property that has essential facilites on the entrance level"
|
|
840
|
+
"ntsRef": "C5"
|
|
685
841
|
}
|
|
686
842
|
}
|
|
687
843
|
},
|
|
688
844
|
"energyEfficiency": {
|
|
689
845
|
"ntsRef": "A4",
|
|
690
|
-
"title": "Energy Efficiency",
|
|
691
846
|
"required": [
|
|
692
847
|
"certificate"
|
|
693
848
|
],
|
|
@@ -699,21 +854,7 @@
|
|
|
699
854
|
],
|
|
700
855
|
"properties": {
|
|
701
856
|
"currentEnergyRating": {
|
|
702
|
-
"ntsRef": "A4.1.1"
|
|
703
|
-
"title": "Current energy efficiency rating",
|
|
704
|
-
"description": "What is the energy efficiency rating of the property according to the latest Energy Performance Certificate (EPC)?",
|
|
705
|
-
"enum": [
|
|
706
|
-
"A",
|
|
707
|
-
"B",
|
|
708
|
-
"C",
|
|
709
|
-
"D",
|
|
710
|
-
"E",
|
|
711
|
-
"F",
|
|
712
|
-
"G",
|
|
713
|
-
"Exempt Property",
|
|
714
|
-
"Survey Instructed",
|
|
715
|
-
"No Certificate"
|
|
716
|
-
]
|
|
857
|
+
"ntsRef": "A4.1.1"
|
|
717
858
|
}
|
|
718
859
|
}
|
|
719
860
|
}
|
|
@@ -721,31 +862,16 @@
|
|
|
721
862
|
},
|
|
722
863
|
"councilTax": {
|
|
723
864
|
"ntsRef": "A1",
|
|
724
|
-
"title": "Council Tax",
|
|
725
865
|
"required": [
|
|
726
866
|
"councilTaxBand",
|
|
727
867
|
"councilTaxAffectingAlterations"
|
|
728
868
|
],
|
|
729
869
|
"properties": {
|
|
730
870
|
"councilTaxBand": {
|
|
731
|
-
"ntsRef": "A1.1"
|
|
732
|
-
"title": "Which Council Tax band does this property fall within?",
|
|
733
|
-
"description": "Band I relates to Wales only",
|
|
734
|
-
"enum": [
|
|
735
|
-
"A",
|
|
736
|
-
"B",
|
|
737
|
-
"C",
|
|
738
|
-
"D",
|
|
739
|
-
"E",
|
|
740
|
-
"F",
|
|
741
|
-
"G",
|
|
742
|
-
"H",
|
|
743
|
-
"I"
|
|
744
|
-
]
|
|
871
|
+
"ntsRef": "A1.1"
|
|
745
872
|
},
|
|
746
873
|
"councilTaxAffectingAlterations": {
|
|
747
874
|
"ntsRef": "A1.2",
|
|
748
|
-
"title": "Have you altered the property in any way to the extent that it might change the Council Tax band e.g. added a bedroom or substantially extended the property?",
|
|
749
875
|
"discriminator": {
|
|
750
876
|
"propertyName": "yesNo"
|
|
751
877
|
},
|
|
@@ -767,17 +893,60 @@
|
|
|
767
893
|
]
|
|
768
894
|
},
|
|
769
895
|
"details": {
|
|
770
|
-
"ntsRef": "A1.2.2"
|
|
771
|
-
"title": "Please give details"
|
|
896
|
+
"ntsRef": "A1.2.2"
|
|
772
897
|
},
|
|
773
898
|
"attachments": {
|
|
774
|
-
"ntsRef": "A1.2.3"
|
|
775
|
-
|
|
899
|
+
"ntsRef": "A1.2.3"
|
|
900
|
+
}
|
|
901
|
+
},
|
|
902
|
+
"required": [
|
|
903
|
+
"details"
|
|
904
|
+
]
|
|
905
|
+
}
|
|
906
|
+
],
|
|
907
|
+
"required": [
|
|
908
|
+
"yesNo"
|
|
909
|
+
],
|
|
910
|
+
"properties": {
|
|
911
|
+
"yesNo": {
|
|
912
|
+
"ntsRef": "A1.2.1"
|
|
913
|
+
}
|
|
914
|
+
}
|
|
915
|
+
}
|
|
916
|
+
}
|
|
917
|
+
},
|
|
918
|
+
"notices": {
|
|
919
|
+
"ntsRef": "C4",
|
|
920
|
+
"required": [
|
|
921
|
+
"neighbourDevelopment",
|
|
922
|
+
"planningApplication"
|
|
923
|
+
],
|
|
924
|
+
"properties": {
|
|
925
|
+
"neighbourDevelopment": {
|
|
926
|
+
"ntsRef": "C4.1",
|
|
927
|
+
"discriminator": {
|
|
928
|
+
"propertyName": "yesNo"
|
|
929
|
+
},
|
|
930
|
+
"oneOf": [
|
|
931
|
+
{
|
|
932
|
+
"properties": {
|
|
933
|
+
"yesNo": {
|
|
776
934
|
"enum": [
|
|
777
|
-
"
|
|
778
|
-
"To follow"
|
|
935
|
+
"No"
|
|
779
936
|
]
|
|
780
937
|
}
|
|
938
|
+
}
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"properties": {
|
|
942
|
+
"yesNo": {
|
|
943
|
+
"enum": [
|
|
944
|
+
"Yes"
|
|
945
|
+
]
|
|
946
|
+
},
|
|
947
|
+
"details": {
|
|
948
|
+
"ntsRef": "C4.1.2"
|
|
949
|
+
}
|
|
781
950
|
},
|
|
782
951
|
"required": [
|
|
783
952
|
"details"
|
|
@@ -789,24 +958,56 @@
|
|
|
789
958
|
],
|
|
790
959
|
"properties": {
|
|
791
960
|
"yesNo": {
|
|
792
|
-
"ntsRef": "
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
961
|
+
"ntsRef": "C4.1.1"
|
|
962
|
+
}
|
|
963
|
+
}
|
|
964
|
+
},
|
|
965
|
+
"planningApplication": {
|
|
966
|
+
"ntsRef": "C4.2",
|
|
967
|
+
"discriminator": {
|
|
968
|
+
"propertyName": "yesNo"
|
|
969
|
+
},
|
|
970
|
+
"oneOf": [
|
|
971
|
+
{
|
|
972
|
+
"properties": {
|
|
973
|
+
"yesNo": {
|
|
974
|
+
"enum": [
|
|
975
|
+
"No"
|
|
976
|
+
]
|
|
977
|
+
}
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"properties": {
|
|
982
|
+
"yesNo": {
|
|
983
|
+
"enum": [
|
|
984
|
+
"Yes"
|
|
985
|
+
]
|
|
986
|
+
},
|
|
987
|
+
"details": {
|
|
988
|
+
"ntsRef": "C4.2.2"
|
|
989
|
+
}
|
|
990
|
+
},
|
|
991
|
+
"required": [
|
|
992
|
+
"details"
|
|
796
993
|
]
|
|
797
994
|
}
|
|
995
|
+
],
|
|
996
|
+
"required": [
|
|
997
|
+
"yesNo"
|
|
998
|
+
],
|
|
999
|
+
"properties": {
|
|
1000
|
+
"yesNo": {
|
|
1001
|
+
"ntsRef": "C4.2.1"
|
|
1002
|
+
}
|
|
798
1003
|
}
|
|
799
1004
|
}
|
|
800
1005
|
}
|
|
801
1006
|
},
|
|
802
1007
|
"connectedUtilities": {
|
|
803
1008
|
"ntsRef": "B3",
|
|
804
|
-
"title": "Connected utilities",
|
|
805
|
-
"description": "Please indicate which utilities are are connected to the property.",
|
|
806
1009
|
"required": [
|
|
807
1010
|
"mainsElectricity",
|
|
808
|
-
"telephone",
|
|
809
|
-
"cableSatelliteTV",
|
|
810
1011
|
"broadband",
|
|
811
1012
|
"solarPanels",
|
|
812
1013
|
"otherServices"
|
|
@@ -814,7 +1015,6 @@
|
|
|
814
1015
|
"properties": {
|
|
815
1016
|
"mainsElectricity": {
|
|
816
1017
|
"ntsRef": "B3.1",
|
|
817
|
-
"title": "Mains electricity",
|
|
818
1018
|
"discriminator": {
|
|
819
1019
|
"propertyName": "yesNo"
|
|
820
1020
|
},
|
|
@@ -912,7 +1112,6 @@
|
|
|
912
1112
|
},
|
|
913
1113
|
"broadband": {
|
|
914
1114
|
"ntsRef": "B3.5",
|
|
915
|
-
"title": "Broadband",
|
|
916
1115
|
"discriminator": {
|
|
917
1116
|
"propertyName": "yesNo"
|
|
918
1117
|
},
|
|
@@ -934,14 +1133,7 @@
|
|
|
934
1133
|
]
|
|
935
1134
|
},
|
|
936
1135
|
"typeOfConnection": {
|
|
937
|
-
"ntsRef": "B3.5.2"
|
|
938
|
-
"title": "Type of connection",
|
|
939
|
-
"enum": [
|
|
940
|
-
"ADSL copper wire",
|
|
941
|
-
"Cable",
|
|
942
|
-
"FTTC (Fibre to the Cabinet)",
|
|
943
|
-
"FTTP (Fibre to the Premises)"
|
|
944
|
-
]
|
|
1136
|
+
"ntsRef": "B3.5.2"
|
|
945
1137
|
}
|
|
946
1138
|
},
|
|
947
1139
|
"required": [
|
|
@@ -973,7 +1165,6 @@
|
|
|
973
1165
|
},
|
|
974
1166
|
"solarPanels": {
|
|
975
1167
|
"ntsRef": "B3.7",
|
|
976
|
-
"title": "Solar or photovoltaic panels",
|
|
977
1168
|
"discriminator": {
|
|
978
1169
|
"propertyName": "yesNo"
|
|
979
1170
|
},
|
|
@@ -1021,8 +1212,6 @@
|
|
|
1021
1212
|
},
|
|
1022
1213
|
"otherServices": {
|
|
1023
1214
|
"ntsRef": "B3.8",
|
|
1024
|
-
"title": "Other services",
|
|
1025
|
-
"description": "Other services include wind turbines, generators and other renewable technologies, for example ground source heat pumps. If you receive Renewable Heat Incentives please provide details and note that you will need to advise Ofgem when you complete the sale",
|
|
1026
1215
|
"discriminator": {
|
|
1027
1216
|
"propertyName": "yesNo"
|
|
1028
1217
|
},
|
|
@@ -1044,8 +1233,7 @@
|
|
|
1044
1233
|
]
|
|
1045
1234
|
},
|
|
1046
1235
|
"details": {
|
|
1047
|
-
"ntsRef": "3.8.2"
|
|
1048
|
-
"title": "Supplier"
|
|
1236
|
+
"ntsRef": "3.8.2"
|
|
1049
1237
|
}
|
|
1050
1238
|
},
|
|
1051
1239
|
"required": [
|
|
@@ -1079,16 +1267,19 @@
|
|
|
1079
1267
|
},
|
|
1080
1268
|
"waterAndDrainage": {
|
|
1081
1269
|
"ntsRef": "A3.2",
|
|
1082
|
-
"
|
|
1083
|
-
|
|
1270
|
+
"required": [
|
|
1271
|
+
"water",
|
|
1272
|
+
"drainage"
|
|
1273
|
+
],
|
|
1084
1274
|
"properties": {
|
|
1085
1275
|
"water": {
|
|
1086
1276
|
"ntsRef": "A3.2",
|
|
1087
|
-
"
|
|
1277
|
+
"required": [
|
|
1278
|
+
"mainsWater"
|
|
1279
|
+
],
|
|
1088
1280
|
"properties": {
|
|
1089
1281
|
"mainsWater": {
|
|
1090
1282
|
"ntsRef": "A3.2",
|
|
1091
|
-
"title": "Mains water",
|
|
1092
1283
|
"discriminator": {
|
|
1093
1284
|
"propertyName": "yesNo"
|
|
1094
1285
|
},
|
|
@@ -1101,9 +1292,7 @@
|
|
|
1101
1292
|
]
|
|
1102
1293
|
},
|
|
1103
1294
|
"details": {
|
|
1104
|
-
"ntsRef": "3.2.2"
|
|
1105
|
-
"title": "How is water supplied?",
|
|
1106
|
-
"description": "e.g. Private well, borehole, springs etc."
|
|
1295
|
+
"ntsRef": "3.2.2"
|
|
1107
1296
|
}
|
|
1108
1297
|
},
|
|
1109
1298
|
"required": [
|
|
@@ -1118,8 +1307,7 @@
|
|
|
1118
1307
|
]
|
|
1119
1308
|
},
|
|
1120
1309
|
"isSupplyMetered": {
|
|
1121
|
-
"ntsRef": "3.2.3"
|
|
1122
|
-
"title": "Details"
|
|
1310
|
+
"ntsRef": "3.2.3"
|
|
1123
1311
|
}
|
|
1124
1312
|
},
|
|
1125
1313
|
"required": [
|
|
@@ -1144,7 +1332,6 @@
|
|
|
1144
1332
|
"ntsRef": "A3.2.1",
|
|
1145
1333
|
"enum": [
|
|
1146
1334
|
"Yes",
|
|
1147
|
-
"To be connected",
|
|
1148
1335
|
"No"
|
|
1149
1336
|
]
|
|
1150
1337
|
}
|
|
@@ -1154,7 +1341,6 @@
|
|
|
1154
1341
|
},
|
|
1155
1342
|
"drainage": {
|
|
1156
1343
|
"ntsRef": "A3.3",
|
|
1157
|
-
"title": "Drainage",
|
|
1158
1344
|
"required": [
|
|
1159
1345
|
"mainsSurfaceWaterDrainage",
|
|
1160
1346
|
"mainsFoulDrainage"
|
|
@@ -1162,7 +1348,6 @@
|
|
|
1162
1348
|
"properties": {
|
|
1163
1349
|
"mainsSurfaceWaterDrainage": {
|
|
1164
1350
|
"ntsRef": "A3.3.1",
|
|
1165
|
-
"title": "Mains surface water drainage",
|
|
1166
1351
|
"discriminator": {
|
|
1167
1352
|
"propertyName": "yesNo"
|
|
1168
1353
|
},
|
|
@@ -1204,7 +1389,6 @@
|
|
|
1204
1389
|
"ntsRef": "A3.3.1.1",
|
|
1205
1390
|
"enum": [
|
|
1206
1391
|
"Yes",
|
|
1207
|
-
"To be connected",
|
|
1208
1392
|
"No",
|
|
1209
1393
|
"Not known"
|
|
1210
1394
|
]
|
|
@@ -1213,7 +1397,6 @@
|
|
|
1213
1397
|
},
|
|
1214
1398
|
"mainsFoulDrainage": {
|
|
1215
1399
|
"ntsRef": "A3.3.2",
|
|
1216
|
-
"title": "Mains foul drainage / sweerage",
|
|
1217
1400
|
"discriminator": {
|
|
1218
1401
|
"propertyName": "yesNo"
|
|
1219
1402
|
},
|
|
@@ -1227,6 +1410,15 @@
|
|
|
1227
1410
|
}
|
|
1228
1411
|
}
|
|
1229
1412
|
},
|
|
1413
|
+
{
|
|
1414
|
+
"properties": {
|
|
1415
|
+
"yesNo": {
|
|
1416
|
+
"enum": [
|
|
1417
|
+
"Not known"
|
|
1418
|
+
]
|
|
1419
|
+
}
|
|
1420
|
+
}
|
|
1421
|
+
},
|
|
1230
1422
|
{
|
|
1231
1423
|
"properties": {
|
|
1232
1424
|
"yesNo": {
|
|
@@ -1240,182 +1432,62 @@
|
|
|
1240
1432
|
"properties": {
|
|
1241
1433
|
"yesNo": {
|
|
1242
1434
|
"enum": [
|
|
1243
|
-
"No"
|
|
1244
|
-
"Not known"
|
|
1435
|
+
"No"
|
|
1245
1436
|
]
|
|
1246
1437
|
},
|
|
1247
|
-
"
|
|
1438
|
+
"offMainsDrainageSystem": {
|
|
1248
1439
|
"ntsRef": "A3.3.3",
|
|
1249
|
-
"title": "Sustainable Drainage System",
|
|
1250
1440
|
"discriminator": {
|
|
1251
|
-
"propertyName": "
|
|
1441
|
+
"propertyName": "offMainsDrainageSystemType"
|
|
1252
1442
|
},
|
|
1253
1443
|
"oneOf": [
|
|
1254
1444
|
{
|
|
1255
1445
|
"properties": {
|
|
1256
|
-
"
|
|
1446
|
+
"offMainsDrainageSystemType": {
|
|
1257
1447
|
"enum": [
|
|
1258
|
-
"
|
|
1448
|
+
"Sustainable Drainage System"
|
|
1259
1449
|
]
|
|
1260
1450
|
}
|
|
1261
1451
|
}
|
|
1262
1452
|
},
|
|
1263
1453
|
{
|
|
1264
1454
|
"properties": {
|
|
1265
|
-
"
|
|
1455
|
+
"offMainsDrainageSystemType": {
|
|
1266
1456
|
"enum": [
|
|
1267
|
-
"
|
|
1457
|
+
"Septic tank"
|
|
1268
1458
|
]
|
|
1269
1459
|
}
|
|
1270
1460
|
}
|
|
1271
1461
|
},
|
|
1272
1462
|
{
|
|
1273
1463
|
"properties": {
|
|
1274
|
-
"
|
|
1464
|
+
"offMainsDrainageSystemType": {
|
|
1275
1465
|
"enum": [
|
|
1276
|
-
"
|
|
1277
|
-
]
|
|
1278
|
-
}
|
|
1279
|
-
}
|
|
1280
|
-
}
|
|
1281
|
-
],
|
|
1282
|
-
"required": [
|
|
1283
|
-
"yesNo"
|
|
1284
|
-
],
|
|
1285
|
-
"properties": {
|
|
1286
|
-
"yesNo": {
|
|
1287
|
-
"ntsRef": "A3.3.3.1",
|
|
1288
|
-
"enum": [
|
|
1289
|
-
"Yes",
|
|
1290
|
-
"No"
|
|
1291
|
-
]
|
|
1292
|
-
}
|
|
1293
|
-
}
|
|
1294
|
-
},
|
|
1295
|
-
"septicTank": {
|
|
1296
|
-
"ntsRef": "A3.3.4",
|
|
1297
|
-
"title": "Septic tank",
|
|
1298
|
-
"discriminator": {
|
|
1299
|
-
"propertyName": "yesNo"
|
|
1300
|
-
},
|
|
1301
|
-
"oneOf": [
|
|
1302
|
-
{
|
|
1303
|
-
"properties": {
|
|
1304
|
-
"yesNo": {
|
|
1305
|
-
"enum": [
|
|
1306
|
-
"No"
|
|
1307
|
-
]
|
|
1308
|
-
}
|
|
1309
|
-
}
|
|
1310
|
-
},
|
|
1311
|
-
{
|
|
1312
|
-
"properties": {
|
|
1313
|
-
"yesNo": {
|
|
1314
|
-
"enum": [
|
|
1315
|
-
"Yes"
|
|
1316
|
-
]
|
|
1317
|
-
}
|
|
1318
|
-
}
|
|
1319
|
-
}
|
|
1320
|
-
],
|
|
1321
|
-
"required": [
|
|
1322
|
-
"yesNo"
|
|
1323
|
-
],
|
|
1324
|
-
"properties": {
|
|
1325
|
-
"yesNo": {
|
|
1326
|
-
"ntsRef": "A3.3.4.1",
|
|
1327
|
-
"enum": [
|
|
1328
|
-
"Yes",
|
|
1329
|
-
"No"
|
|
1330
|
-
]
|
|
1331
|
-
}
|
|
1332
|
-
}
|
|
1333
|
-
},
|
|
1334
|
-
"cesspit": {
|
|
1335
|
-
"ntsRef": "A3.3.5",
|
|
1336
|
-
"title": "Cesspit",
|
|
1337
|
-
"discriminator": {
|
|
1338
|
-
"propertyName": "yesNo"
|
|
1339
|
-
},
|
|
1340
|
-
"oneOf": [
|
|
1341
|
-
{
|
|
1342
|
-
"properties": {
|
|
1343
|
-
"yesNo": {
|
|
1344
|
-
"enum": [
|
|
1345
|
-
"No"
|
|
1346
|
-
]
|
|
1347
|
-
}
|
|
1348
|
-
}
|
|
1349
|
-
},
|
|
1350
|
-
{
|
|
1351
|
-
"properties": {
|
|
1352
|
-
"yesNo": {
|
|
1353
|
-
"enum": [
|
|
1354
|
-
"Yes"
|
|
1355
|
-
]
|
|
1356
|
-
}
|
|
1357
|
-
}
|
|
1358
|
-
}
|
|
1359
|
-
],
|
|
1360
|
-
"required": [
|
|
1361
|
-
"yesNo"
|
|
1362
|
-
],
|
|
1363
|
-
"properties": {
|
|
1364
|
-
"yesNo": {
|
|
1365
|
-
"ntsRef": "A3.3.5.1",
|
|
1366
|
-
"enum": [
|
|
1367
|
-
"Yes",
|
|
1368
|
-
"No"
|
|
1369
|
-
]
|
|
1370
|
-
}
|
|
1371
|
-
}
|
|
1372
|
-
},
|
|
1373
|
-
"sewerageTreatmentPlant": {
|
|
1374
|
-
"ntsRef": "A3.3.6",
|
|
1375
|
-
"title": "Sewerage treatment plant",
|
|
1376
|
-
"discriminator": {
|
|
1377
|
-
"propertyName": "yesNo"
|
|
1378
|
-
},
|
|
1379
|
-
"oneOf": [
|
|
1380
|
-
{
|
|
1381
|
-
"properties": {
|
|
1382
|
-
"yesNo": {
|
|
1383
|
-
"enum": [
|
|
1384
|
-
"No"
|
|
1466
|
+
"Cesspit"
|
|
1385
1467
|
]
|
|
1386
1468
|
}
|
|
1387
1469
|
}
|
|
1388
1470
|
},
|
|
1389
1471
|
{
|
|
1390
1472
|
"properties": {
|
|
1391
|
-
"
|
|
1473
|
+
"offMainsDrainageSystemType": {
|
|
1392
1474
|
"enum": [
|
|
1393
|
-
"
|
|
1475
|
+
"Sewerage treatment plant"
|
|
1394
1476
|
]
|
|
1395
1477
|
}
|
|
1396
1478
|
}
|
|
1397
1479
|
}
|
|
1398
1480
|
],
|
|
1399
1481
|
"required": [
|
|
1400
|
-
"
|
|
1482
|
+
"offMainsDrainageSystemType"
|
|
1401
1483
|
],
|
|
1402
1484
|
"properties": {
|
|
1403
|
-
"
|
|
1404
|
-
"ntsRef": "A3.3.
|
|
1405
|
-
"enum": [
|
|
1406
|
-
"Yes",
|
|
1407
|
-
"No"
|
|
1408
|
-
]
|
|
1485
|
+
"offMainsDrainageSystemType": {
|
|
1486
|
+
"ntsRef": "A3.3.3.1"
|
|
1409
1487
|
}
|
|
1410
1488
|
}
|
|
1411
1489
|
}
|
|
1412
|
-
}
|
|
1413
|
-
"required": [
|
|
1414
|
-
"sustainableDrainageSystem",
|
|
1415
|
-
"septicTank",
|
|
1416
|
-
"cesspit",
|
|
1417
|
-
"sewerageTreatmentPlant"
|
|
1418
|
-
]
|
|
1490
|
+
}
|
|
1419
1491
|
}
|
|
1420
1492
|
],
|
|
1421
1493
|
"required": [
|
|
@@ -1423,9 +1495,11 @@
|
|
|
1423
1495
|
],
|
|
1424
1496
|
"properties": {
|
|
1425
1497
|
"yesNo": {
|
|
1498
|
+
"ntsRef": "A3.3.2.1",
|
|
1426
1499
|
"enum": [
|
|
1427
1500
|
"Yes",
|
|
1428
|
-
"No"
|
|
1501
|
+
"No",
|
|
1502
|
+
"Not known"
|
|
1429
1503
|
]
|
|
1430
1504
|
}
|
|
1431
1505
|
}
|
|
@@ -1436,7 +1510,6 @@
|
|
|
1436
1510
|
},
|
|
1437
1511
|
"heating": {
|
|
1438
1512
|
"ntsRef": "B3.4",
|
|
1439
|
-
"title": "Heating",
|
|
1440
1513
|
"discriminator": {
|
|
1441
1514
|
"propertyName": "heatingType"
|
|
1442
1515
|
},
|
|
@@ -1459,14 +1532,12 @@
|
|
|
1459
1532
|
},
|
|
1460
1533
|
"centralHeatingDetails": {
|
|
1461
1534
|
"ntsRef": "B3.4.3",
|
|
1462
|
-
"title": "Central Heating Details",
|
|
1463
1535
|
"required": [
|
|
1464
1536
|
"centralHeatingFuel"
|
|
1465
1537
|
],
|
|
1466
1538
|
"properties": {
|
|
1467
1539
|
"centralHeatingFuel": {
|
|
1468
1540
|
"ntsRef": "B3.4.3.1",
|
|
1469
|
-
"title": "Central Heating Fuel",
|
|
1470
1541
|
"discriminator": {
|
|
1471
1542
|
"propertyName": "centralHeatingFuelType"
|
|
1472
1543
|
},
|
|
@@ -1479,7 +1550,7 @@
|
|
|
1479
1550
|
"Electricity",
|
|
1480
1551
|
"Oil",
|
|
1481
1552
|
"LPG",
|
|
1482
|
-
"Biomass
|
|
1553
|
+
"Biomass"
|
|
1483
1554
|
]
|
|
1484
1555
|
}
|
|
1485
1556
|
}
|
|
@@ -1499,15 +1570,7 @@
|
|
|
1499
1570
|
],
|
|
1500
1571
|
"properties": {
|
|
1501
1572
|
"centralHeatingFuelType": {
|
|
1502
|
-
"ntsRef": "B3.4.3.1.1"
|
|
1503
|
-
"title": "What type of fuel does the system run on?",
|
|
1504
|
-
"enum": [
|
|
1505
|
-
"Mains gas",
|
|
1506
|
-
"Electricity",
|
|
1507
|
-
"Oil",
|
|
1508
|
-
"LPG",
|
|
1509
|
-
"Other"
|
|
1510
|
-
]
|
|
1573
|
+
"ntsRef": "B3.4.3.1.1"
|
|
1511
1574
|
}
|
|
1512
1575
|
}
|
|
1513
1576
|
}
|
|
@@ -1526,9 +1589,7 @@
|
|
|
1526
1589
|
]
|
|
1527
1590
|
},
|
|
1528
1591
|
"details": {
|
|
1529
|
-
"ntsRef": "B3.4.4"
|
|
1530
|
-
"title": "Community heating system details",
|
|
1531
|
-
"description": "Please descripbe how the cost of heating supply is charged, whether you have control over the energy supplier and whether you have any control over the heating"
|
|
1592
|
+
"ntsRef": "B3.4.4"
|
|
1532
1593
|
}
|
|
1533
1594
|
},
|
|
1534
1595
|
"required": [
|
|
@@ -1541,34 +1602,27 @@
|
|
|
1541
1602
|
],
|
|
1542
1603
|
"properties": {
|
|
1543
1604
|
"heatingType": {
|
|
1544
|
-
"ntsRef": "B3.4.1"
|
|
1545
|
-
"title": "What type of heating system does the property have?",
|
|
1546
|
-
"enum": [
|
|
1547
|
-
"Central heating",
|
|
1548
|
-
"Communal heating system",
|
|
1549
|
-
"None"
|
|
1550
|
-
]
|
|
1605
|
+
"ntsRef": "B3.4.1"
|
|
1551
1606
|
},
|
|
1552
1607
|
"otherHeatingFeatures": {
|
|
1553
|
-
"ntsRef": "B3.4.2"
|
|
1554
|
-
"title": "What other heating features does the property have?"
|
|
1608
|
+
"ntsRef": "B3.4.2"
|
|
1555
1609
|
}
|
|
1556
1610
|
}
|
|
1557
1611
|
},
|
|
1558
1612
|
"rightsAndInformalArrangements": {
|
|
1559
1613
|
"ntsRef": "C2.2",
|
|
1560
|
-
"
|
|
1614
|
+
"required": [
|
|
1615
|
+
"rightsOrArrangements"
|
|
1616
|
+
],
|
|
1561
1617
|
"properties": {
|
|
1562
1618
|
"rightsOrArrangements": {
|
|
1563
1619
|
"ntsRef": "C2.2.1",
|
|
1564
|
-
"title": "Do you know if any of the following rights or arrangements affect the property?",
|
|
1565
1620
|
"required": [
|
|
1566
1621
|
"publicRightOfWay"
|
|
1567
1622
|
],
|
|
1568
1623
|
"properties": {
|
|
1569
1624
|
"publicRightOfWay": {
|
|
1570
1625
|
"ntsRef": "C2.2.1",
|
|
1571
|
-
"title": "A public right of way through and/or across your property, buildings or land",
|
|
1572
1626
|
"discriminator": {
|
|
1573
1627
|
"propertyName": "yesNo"
|
|
1574
1628
|
},
|
|
@@ -1590,8 +1644,7 @@
|
|
|
1590
1644
|
]
|
|
1591
1645
|
},
|
|
1592
1646
|
"details": {
|
|
1593
|
-
"ntsRef": "C2.2.1.2"
|
|
1594
|
-
"title": "Please provide details and mark the route on a plan of the property"
|
|
1647
|
+
"ntsRef": "C2.2.1.2"
|
|
1595
1648
|
}
|
|
1596
1649
|
},
|
|
1597
1650
|
"required": [
|
|
@@ -1602,13 +1655,10 @@
|
|
|
1602
1655
|
"required": [
|
|
1603
1656
|
"yesNo"
|
|
1604
1657
|
],
|
|
1658
|
+
"title": "Is there a public right of way through and/or across your house, buildings or land?",
|
|
1605
1659
|
"properties": {
|
|
1606
1660
|
"yesNo": {
|
|
1607
|
-
"ntsRef": "C2.2.1.1"
|
|
1608
|
-
"enum": [
|
|
1609
|
-
"Yes",
|
|
1610
|
-
"No"
|
|
1611
|
-
]
|
|
1661
|
+
"ntsRef": "C2.2.1.1"
|
|
1612
1662
|
}
|
|
1613
1663
|
}
|
|
1614
1664
|
}
|
|
@@ -1618,7 +1668,6 @@
|
|
|
1618
1668
|
},
|
|
1619
1669
|
"environmentalIssues": {
|
|
1620
1670
|
"ntsRef": "C3.1",
|
|
1621
|
-
"title": "Environmental Issues Affecting the Property",
|
|
1622
1671
|
"required": [
|
|
1623
1672
|
"flooding",
|
|
1624
1673
|
"coalMining",
|
|
@@ -1628,7 +1677,6 @@
|
|
|
1628
1677
|
"properties": {
|
|
1629
1678
|
"flooding": {
|
|
1630
1679
|
"ntsRef": "C3.1.1",
|
|
1631
|
-
"title": "Flooding",
|
|
1632
1680
|
"discriminator": {
|
|
1633
1681
|
"propertyName": "hasBeenFlooded"
|
|
1634
1682
|
},
|
|
@@ -1650,12 +1698,10 @@
|
|
|
1650
1698
|
]
|
|
1651
1699
|
},
|
|
1652
1700
|
"typeOfFlooding": {
|
|
1653
|
-
"ntsRef": "C3.1.1.3"
|
|
1654
|
-
"title": "What type of flooding occurred?"
|
|
1701
|
+
"ntsRef": "C3.1.1.3"
|
|
1655
1702
|
},
|
|
1656
1703
|
"details": {
|
|
1657
|
-
"ntsRef": "C3.1.1.
|
|
1658
|
-
"title": "Please state when the flooding occurred and identify the parts that flooded"
|
|
1704
|
+
"ntsRef": "C3.1.1.4"
|
|
1659
1705
|
}
|
|
1660
1706
|
},
|
|
1661
1707
|
"required": [
|
|
@@ -1671,14 +1717,13 @@
|
|
|
1671
1717
|
"properties": {
|
|
1672
1718
|
"floodRisk": {
|
|
1673
1719
|
"ntsRef": "C3.1.1.1",
|
|
1674
|
-
"title": "Flood Risk",
|
|
1675
1720
|
"discriminator": {
|
|
1676
|
-
"propertyName": "
|
|
1721
|
+
"propertyName": "riskIndicator"
|
|
1677
1722
|
},
|
|
1678
1723
|
"oneOf": [
|
|
1679
1724
|
{
|
|
1680
1725
|
"properties": {
|
|
1681
|
-
"
|
|
1726
|
+
"riskIndicator": {
|
|
1682
1727
|
"enum": [
|
|
1683
1728
|
"No"
|
|
1684
1729
|
]
|
|
@@ -1687,14 +1732,13 @@
|
|
|
1687
1732
|
},
|
|
1688
1733
|
{
|
|
1689
1734
|
"properties": {
|
|
1690
|
-
"
|
|
1735
|
+
"riskIndicator": {
|
|
1691
1736
|
"enum": [
|
|
1692
1737
|
"Yes"
|
|
1693
1738
|
]
|
|
1694
1739
|
},
|
|
1695
1740
|
"summary": {
|
|
1696
|
-
"ntsRef": "C3.1.1.2"
|
|
1697
|
-
"title": "Summary of risk"
|
|
1741
|
+
"ntsRef": "C3.1.1.2"
|
|
1698
1742
|
}
|
|
1699
1743
|
},
|
|
1700
1744
|
"required": [
|
|
@@ -1703,39 +1747,29 @@
|
|
|
1703
1747
|
}
|
|
1704
1748
|
],
|
|
1705
1749
|
"required": [
|
|
1706
|
-
"
|
|
1750
|
+
"riskIndicator"
|
|
1707
1751
|
],
|
|
1708
1752
|
"properties": {
|
|
1709
|
-
"
|
|
1753
|
+
"riskIndicator": {
|
|
1710
1754
|
"ntsRef": "C3.1.1.1",
|
|
1711
|
-
"title": "To your knowledge, is the property at risk of flooding of any type?"
|
|
1712
|
-
"enum": [
|
|
1713
|
-
"Yes",
|
|
1714
|
-
"No"
|
|
1715
|
-
]
|
|
1755
|
+
"title": "To your knowledge, is the property at risk of flooding of any type?"
|
|
1716
1756
|
}
|
|
1717
1757
|
}
|
|
1718
1758
|
},
|
|
1719
1759
|
"hasBeenFlooded": {
|
|
1720
|
-
"ntsRef": "C3.1.1.2"
|
|
1721
|
-
"title": "Has any part of the property (whether buildings or surrounding garden or land) ever been flooded?",
|
|
1722
|
-
"enum": [
|
|
1723
|
-
"Yes",
|
|
1724
|
-
"No"
|
|
1725
|
-
]
|
|
1760
|
+
"ntsRef": "C3.1.1.2"
|
|
1726
1761
|
}
|
|
1727
1762
|
}
|
|
1728
1763
|
},
|
|
1729
1764
|
"coalMining": {
|
|
1730
1765
|
"ntsRef": "C6.1",
|
|
1731
|
-
"title": "Coal mining",
|
|
1732
1766
|
"discriminator": {
|
|
1733
|
-
"propertyName": "
|
|
1767
|
+
"propertyName": "riskIndicator"
|
|
1734
1768
|
},
|
|
1735
1769
|
"oneOf": [
|
|
1736
1770
|
{
|
|
1737
1771
|
"properties": {
|
|
1738
|
-
"
|
|
1772
|
+
"riskIndicator": {
|
|
1739
1773
|
"enum": [
|
|
1740
1774
|
"No"
|
|
1741
1775
|
]
|
|
@@ -1744,7 +1778,7 @@
|
|
|
1744
1778
|
},
|
|
1745
1779
|
{
|
|
1746
1780
|
"properties": {
|
|
1747
|
-
"
|
|
1781
|
+
"riskIndicator": {
|
|
1748
1782
|
"enum": [
|
|
1749
1783
|
"Yes"
|
|
1750
1784
|
]
|
|
@@ -1757,29 +1791,24 @@
|
|
|
1757
1791
|
}
|
|
1758
1792
|
],
|
|
1759
1793
|
"required": [
|
|
1760
|
-
"
|
|
1794
|
+
"riskIndicator"
|
|
1761
1795
|
],
|
|
1762
1796
|
"properties": {
|
|
1763
|
-
"
|
|
1797
|
+
"riskIndicator": {
|
|
1764
1798
|
"ntsRef": "C6.1.1",
|
|
1765
|
-
"title": "To your knowledge, is the property impacted by coal mining?"
|
|
1766
|
-
"enum": [
|
|
1767
|
-
"Yes",
|
|
1768
|
-
"No"
|
|
1769
|
-
]
|
|
1799
|
+
"title": "To your knowledge, is the property impacted by coal mining?"
|
|
1770
1800
|
}
|
|
1771
1801
|
}
|
|
1772
1802
|
},
|
|
1773
1803
|
"nonCoalMining": {
|
|
1774
1804
|
"ntsRef": "C6.2",
|
|
1775
|
-
"title": "Non-coal mining",
|
|
1776
1805
|
"discriminator": {
|
|
1777
|
-
"propertyName": "
|
|
1806
|
+
"propertyName": "riskIndicator"
|
|
1778
1807
|
},
|
|
1779
1808
|
"oneOf": [
|
|
1780
1809
|
{
|
|
1781
1810
|
"properties": {
|
|
1782
|
-
"
|
|
1811
|
+
"riskIndicator": {
|
|
1783
1812
|
"enum": [
|
|
1784
1813
|
"No"
|
|
1785
1814
|
]
|
|
@@ -1788,14 +1817,13 @@
|
|
|
1788
1817
|
},
|
|
1789
1818
|
{
|
|
1790
1819
|
"properties": {
|
|
1791
|
-
"
|
|
1820
|
+
"riskIndicator": {
|
|
1792
1821
|
"enum": [
|
|
1793
1822
|
"Yes"
|
|
1794
1823
|
]
|
|
1795
1824
|
},
|
|
1796
1825
|
"summary": {
|
|
1797
|
-
"ntsRef": "C6.2.2"
|
|
1798
|
-
"title": "Summary of risk"
|
|
1826
|
+
"ntsRef": "C6.2.2"
|
|
1799
1827
|
}
|
|
1800
1828
|
},
|
|
1801
1829
|
"required": [
|
|
@@ -1804,29 +1832,24 @@
|
|
|
1804
1832
|
}
|
|
1805
1833
|
],
|
|
1806
1834
|
"required": [
|
|
1807
|
-
"
|
|
1835
|
+
"riskIndicator"
|
|
1808
1836
|
],
|
|
1809
1837
|
"properties": {
|
|
1810
|
-
"
|
|
1838
|
+
"riskIndicator": {
|
|
1811
1839
|
"ntsRef": "C6.2.1",
|
|
1812
|
-
"title": "To your knowledge, is the property impacted by types of mining other than coal?"
|
|
1813
|
-
"enum": [
|
|
1814
|
-
"Yes",
|
|
1815
|
-
"No"
|
|
1816
|
-
]
|
|
1840
|
+
"title": "To your knowledge, is the property impacted by types of mining other than coal?"
|
|
1817
1841
|
}
|
|
1818
1842
|
}
|
|
1819
1843
|
},
|
|
1820
1844
|
"coastalErosion": {
|
|
1821
1845
|
"ntsRef": "C3.2",
|
|
1822
|
-
"title": "Coastal erosion",
|
|
1823
1846
|
"discriminator": {
|
|
1824
|
-
"propertyName": "
|
|
1847
|
+
"propertyName": "riskIndicator"
|
|
1825
1848
|
},
|
|
1826
1849
|
"oneOf": [
|
|
1827
1850
|
{
|
|
1828
1851
|
"properties": {
|
|
1829
|
-
"
|
|
1852
|
+
"riskIndicator": {
|
|
1830
1853
|
"enum": [
|
|
1831
1854
|
"No"
|
|
1832
1855
|
]
|
|
@@ -1835,14 +1858,13 @@
|
|
|
1835
1858
|
},
|
|
1836
1859
|
{
|
|
1837
1860
|
"properties": {
|
|
1838
|
-
"
|
|
1861
|
+
"riskIndicator": {
|
|
1839
1862
|
"enum": [
|
|
1840
1863
|
"Yes"
|
|
1841
1864
|
]
|
|
1842
1865
|
},
|
|
1843
1866
|
"summary": {
|
|
1844
|
-
"ntsRef": "C3.2.2"
|
|
1845
|
-
"title": "Summary of risk"
|
|
1867
|
+
"ntsRef": "C3.2.2"
|
|
1846
1868
|
}
|
|
1847
1869
|
},
|
|
1848
1870
|
"required": [
|
|
@@ -1851,16 +1873,12 @@
|
|
|
1851
1873
|
}
|
|
1852
1874
|
],
|
|
1853
1875
|
"required": [
|
|
1854
|
-
"
|
|
1876
|
+
"riskIndicator"
|
|
1855
1877
|
],
|
|
1856
1878
|
"properties": {
|
|
1857
|
-
"
|
|
1879
|
+
"riskIndicator": {
|
|
1858
1880
|
"ntsRef": "C3.2.1",
|
|
1859
|
-
"title": "To your knowledge, is the property impacted by coastal erosion?"
|
|
1860
|
-
"enum": [
|
|
1861
|
-
"Yes",
|
|
1862
|
-
"No"
|
|
1863
|
-
]
|
|
1881
|
+
"title": "To your knowledge, is the property impacted by coastal erosion?"
|
|
1864
1882
|
}
|
|
1865
1883
|
}
|
|
1866
1884
|
}
|