@pdtf/schemas 0.11.0-4 → 0.11.0
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 +8 -12
- package/package.json +1 -1
- package/src/examples/exampleTransaction.json +1 -31
- package/src/schemas/v1/legal-information.json +479 -528
- package/src/schemas/v1/material-facts.json +833 -900
- package/src/schemas/v1/pdtf-transaction.json +3 -7
- package/src/schemas/v1/searches/drainage-and-water.json +40 -48
- package/src/schemas/v1/searches/local-searches-required.json +20 -24
- package/src/schemas/v1/searches.json +146 -152
- package/src/tests/pdtfVerifiedClaims.test.js +1 -0
|
@@ -182,243 +182,237 @@
|
|
|
182
182
|
]
|
|
183
183
|
}
|
|
184
184
|
},
|
|
185
|
-
"
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
"enum": ["Freehold"]
|
|
192
|
-
},
|
|
193
|
-
"wholeFreeholdForSale": {
|
|
194
|
-
"title": "Is the entire freehold being sold?",
|
|
195
|
-
"description": "If not, describe the share for sale (e.g. Ground floor flat only)",
|
|
196
|
-
"$ref": "#/$defs/yesNoDetailIfNo"
|
|
197
|
-
}
|
|
198
|
-
},
|
|
199
|
-
"required": ["wholeFreeholdForSale"]
|
|
185
|
+
"discriminator": { "propertyName": "ownershipType" },
|
|
186
|
+
"oneOf": [
|
|
187
|
+
{
|
|
188
|
+
"properties": {
|
|
189
|
+
"ownershipType": {
|
|
190
|
+
"enum": ["Freehold"]
|
|
200
191
|
},
|
|
201
|
-
{
|
|
192
|
+
"wholeFreeholdForSale": {
|
|
193
|
+
"title": "Is the entire freehold being sold?",
|
|
194
|
+
"description": "If not, describe the share for sale (e.g. Ground floor flat only)",
|
|
195
|
+
"$ref": "#/$defs/yesNoDetailIfNo"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
"required": ["wholeFreeholdForSale"]
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"properties": {
|
|
202
|
+
"ownershipType": {
|
|
203
|
+
"enum": ["Managed Freehold", "Commonhold"]
|
|
204
|
+
},
|
|
205
|
+
"annualServiceCharge": {
|
|
206
|
+
"baspiRef": "A1.5.1",
|
|
207
|
+
"lawSocietyRef": "TA6/10.1",
|
|
208
|
+
"ntsRef": "A1.6",
|
|
209
|
+
"RDSRef": "TenureAgreements/ServiceCharges",
|
|
210
|
+
"title": "Amount of current annual service charge/estate rentcharge/maintenance contribution (£)",
|
|
211
|
+
"type": "number"
|
|
212
|
+
},
|
|
213
|
+
"largeAdditionalExpense": {
|
|
214
|
+
"baspiRef": "A1.5.2",
|
|
215
|
+
"lawSocietyRef": "TA6/10.1",
|
|
216
|
+
"RDSRef": "TenureAgreements/Repairs,TenureAgreements/ServicesCharges/Breakdown",
|
|
217
|
+
"title": "Have you received notice of any large expense in addition to the annual payment?",
|
|
218
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
219
|
+
"description": "If yes, please provide details and confirm whether there is a reserve fund or sinking fund which will cover the cost of the works."
|
|
220
|
+
},
|
|
221
|
+
"additionalFeesOnSale": {
|
|
222
|
+
"baspiRef": "A1.5.3",
|
|
223
|
+
"lawSocietyRef": "TA6/10.1",
|
|
224
|
+
"RDSRef": "TenureAgreements/LegalCosts/Actual, TenureAgreements/LegalCosts/Estimated",
|
|
225
|
+
"title": "Additional fees payable on sale (£)",
|
|
226
|
+
"type": "number"
|
|
227
|
+
},
|
|
228
|
+
"freeholderContactDetails": {
|
|
229
|
+
"baspiRef": "A1.5.4",
|
|
230
|
+
"lawSocietyRef": "TA7/4.1a",
|
|
231
|
+
"RDSRef": "TenureAgreements/Assignor",
|
|
232
|
+
"title": "The contact details of the freeholder or rentcharge owner",
|
|
233
|
+
"$ref": "#/$defs/contactDetails"
|
|
234
|
+
},
|
|
235
|
+
"managingAgentContactDetails": {
|
|
236
|
+
"baspiRef": "A1.5.5",
|
|
237
|
+
"lawSocietyRef": "TA7/4.1a",
|
|
238
|
+
"RDSRef": "Participants/Role",
|
|
239
|
+
"title": "The contact details of the managing agent",
|
|
240
|
+
"$ref": "#/$defs/contactDetails"
|
|
241
|
+
},
|
|
242
|
+
"managementCompanyDirectorRequirement": {
|
|
243
|
+
"baspiRef": "A1.5.6",
|
|
244
|
+
"RDSRef": "Property/Flags",
|
|
245
|
+
"title": "Is the owner of the property required to become a director in a management company for the maintenance of shared amenities?",
|
|
246
|
+
"$ref": "#/$defs/yesNo"
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
"required": [
|
|
250
|
+
"annualServiceCharge",
|
|
251
|
+
"largeAdditionalExpense",
|
|
252
|
+
"additionalFeesOnSale",
|
|
253
|
+
"freeholderContactDetails",
|
|
254
|
+
"managingAgentContactDetails",
|
|
255
|
+
"managementCompanyDirectorRequirement"
|
|
256
|
+
]
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"properties": {
|
|
260
|
+
"ownershipType": {
|
|
261
|
+
"enum": ["Leasehold"]
|
|
262
|
+
},
|
|
263
|
+
"sharedOwnership": {
|
|
264
|
+
"ntsRef": "A1.7",
|
|
265
|
+
"title": "Shared ownership",
|
|
266
|
+
"type": "object",
|
|
202
267
|
"properties": {
|
|
203
|
-
"
|
|
204
|
-
"
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
"baspiRef": "A1.5.1",
|
|
208
|
-
"lawSocietyRef": "TA6/10.1",
|
|
209
|
-
"ntsRef": "A1.6",
|
|
210
|
-
"RDSRef": "TenureAgreements/ServiceCharges",
|
|
211
|
-
"title": "Amount of current annual service charge/estate rentcharge/maintenance contribution (£)",
|
|
212
|
-
"type": "number"
|
|
213
|
-
},
|
|
214
|
-
"largeAdditionalExpense": {
|
|
215
|
-
"baspiRef": "A1.5.2",
|
|
216
|
-
"lawSocietyRef": "TA6/10.1",
|
|
217
|
-
"RDSRef": "TenureAgreements/Repairs,TenureAgreements/ServicesCharges/Breakdown",
|
|
218
|
-
"title": "Have you received notice of any large expense in addition to the annual payment?",
|
|
219
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
220
|
-
"description": "If yes, please provide details and confirm whether there is a reserve fund or sinking fund which will cover the cost of the works."
|
|
221
|
-
},
|
|
222
|
-
"additionalFeesOnSale": {
|
|
223
|
-
"baspiRef": "A1.5.3",
|
|
224
|
-
"lawSocietyRef": "TA6/10.1",
|
|
225
|
-
"RDSRef": "TenureAgreements/LegalCosts/Actual, TenureAgreements/LegalCosts/Estimated",
|
|
226
|
-
"title": "Additional fees payable on sale (£)",
|
|
227
|
-
"type": "number"
|
|
228
|
-
},
|
|
229
|
-
"freeholderContactDetails": {
|
|
230
|
-
"baspiRef": "A1.5.4",
|
|
231
|
-
"lawSocietyRef": "TA7/4.1a",
|
|
232
|
-
"RDSRef": "TenureAgreements/Assignor",
|
|
233
|
-
"title": "The contact details of the freeholder or rentcharge owner",
|
|
234
|
-
"$ref": "#/$defs/contactDetails"
|
|
235
|
-
},
|
|
236
|
-
"managingAgentContactDetails": {
|
|
237
|
-
"baspiRef": "A1.5.5",
|
|
238
|
-
"lawSocietyRef": "TA7/4.1a",
|
|
239
|
-
"RDSRef": "Participants/Role",
|
|
240
|
-
"title": "The contact details of the managing agent",
|
|
241
|
-
"$ref": "#/$defs/contactDetails"
|
|
242
|
-
},
|
|
243
|
-
"managementCompanyDirectorRequirement": {
|
|
244
|
-
"baspiRef": "A1.5.6",
|
|
245
|
-
"RDSRef": "Property/Flags",
|
|
246
|
-
"title": "Is the owner of the property required to become a director in a management company for the maintenance of shared amenities?",
|
|
247
|
-
"$ref": "#/$defs/yesNo"
|
|
268
|
+
"isSharedOwnership": {
|
|
269
|
+
"title": "Is the property under Shared Owenership or a Part-buy Part-rent arrangement?",
|
|
270
|
+
"type": "string",
|
|
271
|
+
"enum": ["Yes", "No"]
|
|
248
272
|
}
|
|
249
273
|
},
|
|
250
|
-
"required": [
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
{
|
|
260
|
-
"properties": {
|
|
261
|
-
"ownershipType": {
|
|
262
|
-
"enum": ["Leasehold"]
|
|
274
|
+
"required": ["isSharedOwnership"],
|
|
275
|
+
"discriminator": { "propertyName": "isSharedOwnership" },
|
|
276
|
+
"oneOf": [
|
|
277
|
+
{
|
|
278
|
+
"properties": {
|
|
279
|
+
"isSharedOwnership": {
|
|
280
|
+
"enum": ["No"]
|
|
281
|
+
}
|
|
282
|
+
}
|
|
263
283
|
},
|
|
264
|
-
|
|
265
|
-
"title": "Shared ownership",
|
|
266
|
-
"type": "object",
|
|
284
|
+
{
|
|
267
285
|
"properties": {
|
|
268
286
|
"isSharedOwnership": {
|
|
269
|
-
"
|
|
287
|
+
"enum": ["Yes"]
|
|
288
|
+
},
|
|
289
|
+
"sharedOwnershipPercentage": {
|
|
290
|
+
"ntsRef": "A1.7.1",
|
|
291
|
+
"title": "Shared ownership percentage",
|
|
292
|
+
"type": "integer",
|
|
293
|
+
"minimum": 5,
|
|
294
|
+
"exclusiveMaximum": 100
|
|
295
|
+
},
|
|
296
|
+
"sharedOwnershipRent": {
|
|
297
|
+
"ntsRef": "A1.7.2",
|
|
298
|
+
"title": "Shared ownership rent (£)",
|
|
299
|
+
"type": "number",
|
|
300
|
+
"minimum": 0
|
|
301
|
+
},
|
|
302
|
+
"sharedOwnershipRentFrequency": {
|
|
303
|
+
"ntsRef": "A1.7.3",
|
|
304
|
+
"title": "Shared ownership rent frequency",
|
|
270
305
|
"type": "string",
|
|
271
|
-
"enum": ["
|
|
306
|
+
"enum": ["Yearly", "Monthly", "Weekly"]
|
|
272
307
|
}
|
|
273
308
|
},
|
|
274
|
-
"required": [
|
|
275
|
-
|
|
276
|
-
"
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
"properties": {
|
|
280
|
-
"isSharedOwnership": {
|
|
281
|
-
"enum": ["No"]
|
|
282
|
-
}
|
|
283
|
-
},
|
|
284
|
-
"additionalProperties": false
|
|
285
|
-
},
|
|
286
|
-
{
|
|
287
|
-
"properties": {
|
|
288
|
-
"isSharedOwnership": {
|
|
289
|
-
"enum": ["Yes"]
|
|
290
|
-
},
|
|
291
|
-
"sharedOwnershipPercentage": {
|
|
292
|
-
"ntsRef": "A1.7",
|
|
293
|
-
"title": "Shared ownership percentage",
|
|
294
|
-
"type": "integer",
|
|
295
|
-
"minimum": 5,
|
|
296
|
-
"exclusiveMaximum": 100
|
|
297
|
-
},
|
|
298
|
-
"sharedOwnershipRent": {
|
|
299
|
-
"ntsRef": "A1.7",
|
|
300
|
-
"title": "Shared ownership rent (£)",
|
|
301
|
-
"type": "number",
|
|
302
|
-
"minimum": 0
|
|
303
|
-
},
|
|
304
|
-
"sharedOwnershipRentFrequency": {
|
|
305
|
-
"ntsRef": "A1.7",
|
|
306
|
-
"title": "Shared ownership rent frequency",
|
|
307
|
-
"type": "string",
|
|
308
|
-
"enum": ["Yearly", "Monthly", "Weekly"]
|
|
309
|
-
}
|
|
310
|
-
},
|
|
311
|
-
"required": [
|
|
312
|
-
"sharedOwnershipPercentage",
|
|
313
|
-
"sharedOwnershipRent",
|
|
314
|
-
"sharedOwnershipRentFrequency"
|
|
315
|
-
]
|
|
316
|
-
}
|
|
317
|
-
]
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
},
|
|
321
|
-
"startYearOfLease": {
|
|
322
|
-
"baspiRef": "A1.4.1b",
|
|
323
|
-
"ntsRef": "A1.2",
|
|
324
|
-
"title": "Year that the lease commenced",
|
|
325
|
-
"type": "integer",
|
|
326
|
-
"minimum": 1000
|
|
327
|
-
},
|
|
328
|
-
"lengthOfLeaseInYears": {
|
|
329
|
-
"baspiRef": "A1.4.1a",
|
|
330
|
-
"ntsRef": "A1.3",
|
|
331
|
-
"title": "Length of lease (years)",
|
|
332
|
-
"type": "integer"
|
|
333
|
-
},
|
|
334
|
-
"currentGroundRent": {
|
|
335
|
-
"baspiRef": "A1.4.2",
|
|
336
|
-
"ntsRef": "A1.4",
|
|
337
|
-
"RDSRef": "TenureAgreements/RentPayable/Value",
|
|
338
|
-
"lawSocietyRef": "TA7/1.2a",
|
|
339
|
-
"title": "Current annual ground rent (£)",
|
|
340
|
-
"type": "number"
|
|
341
|
-
},
|
|
342
|
-
"rentIncrease": {
|
|
343
|
-
"baspiRef": "A1.4.3",
|
|
344
|
-
"ntsRef": "A1.5",
|
|
345
|
-
"RDSRef": "TenureAgreement/isRentChangeable, TenureAgreements/RentChanges",
|
|
346
|
-
"title": "Does the ground rent increase?",
|
|
347
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
348
|
-
"description": "Please provide full details of the ground rent increase e.g. how often and by how much and when the next increase is due."
|
|
349
|
-
},
|
|
350
|
-
"annualServiceCharge": {
|
|
351
|
-
"baspiRef": "A1.5.1",
|
|
352
|
-
"ntsRef": "A1.6",
|
|
353
|
-
"RDSRef": "TenureAgreements/ServiceCharges",
|
|
354
|
-
"title": "Amount of current annual service charge/estate rentcharge/maintenance contribution (£)",
|
|
355
|
-
"type": "number"
|
|
356
|
-
},
|
|
357
|
-
"largeAdditionalExpense": {
|
|
358
|
-
"baspiRef": "A1.5.2",
|
|
359
|
-
"RDSRef": "TenureAgreements/Repairs,TenureAgreements/ServicesCharges/Breakdown",
|
|
360
|
-
"title": "Have you received notice of any large expense in addition to the annual payment?",
|
|
361
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
362
|
-
"description": "If yes, please provide details and confirm whether there is a reserve fund or sinking fund which will cover the cost of the works."
|
|
363
|
-
},
|
|
364
|
-
"additionalFeesOnSale": {
|
|
365
|
-
"baspiRef": "A1.5.3",
|
|
366
|
-
"RDSRef": "TenureAgreements/LegalCosts/Actual, TenureAgreements/LegalCosts/Estimated",
|
|
367
|
-
"title": "Additional fees payable on sale (£)",
|
|
368
|
-
"type": "number"
|
|
369
|
-
},
|
|
370
|
-
"freeholderContactDetails": {
|
|
371
|
-
"baspiRef": "A1.5.4",
|
|
372
|
-
"lawSocietyRef": "TA7/4.1a",
|
|
373
|
-
"RDSRef": "TenureAgreements/Assignor",
|
|
374
|
-
"title": "The name, address and email address of the freeholder or rentcharge owner",
|
|
375
|
-
"$ref": "#/$defs/contactDetails"
|
|
376
|
-
},
|
|
377
|
-
"managingAgentContactDetails": {
|
|
378
|
-
"baspiRef": "A1.5.5",
|
|
379
|
-
"lawSocietyRef": "TA7/4.1b",
|
|
380
|
-
"RDSRef": "Participants/Role",
|
|
381
|
-
"title": "The name, address and email address of the managing agent",
|
|
382
|
-
"$ref": "#/$defs/contactDetails"
|
|
383
|
-
},
|
|
384
|
-
"managementCompanyDirectorRequirement": {
|
|
385
|
-
"baspiRef": "A1.5.6",
|
|
386
|
-
"RDSRef": "Property/Flags",
|
|
387
|
-
"title": "Is the owner of the property required to become a director in a management company for the maintenance of shared amenities?",
|
|
388
|
-
"$ref": "#/$defs/yesNo"
|
|
309
|
+
"required": [
|
|
310
|
+
"sharedOwnershipPercentage",
|
|
311
|
+
"sharedOwnershipRent",
|
|
312
|
+
"sharedOwnershipRentFrequency"
|
|
313
|
+
]
|
|
389
314
|
}
|
|
390
|
-
},
|
|
391
|
-
"required": [
|
|
392
|
-
"sharedOwnership",
|
|
393
|
-
"startYearOfLease",
|
|
394
|
-
"lengthOfLeaseInYears",
|
|
395
|
-
"currentGroundRent",
|
|
396
|
-
"rentIncrease",
|
|
397
|
-
"annualServiceCharge",
|
|
398
|
-
"largeAdditionalExpense",
|
|
399
|
-
"additionalFeesOnSale",
|
|
400
|
-
"freeholderContactDetails",
|
|
401
|
-
"managingAgentContactDetails",
|
|
402
|
-
"managementCompanyDirectorRequirement"
|
|
403
315
|
]
|
|
404
316
|
},
|
|
405
|
-
{
|
|
406
|
-
"
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
317
|
+
"startYearOfLease": {
|
|
318
|
+
"baspiRef": "A1.4.1b",
|
|
319
|
+
"ntsRef": "A1.2",
|
|
320
|
+
"title": "Year that the lease commenced",
|
|
321
|
+
"type": "integer",
|
|
322
|
+
"minimum": 1000
|
|
323
|
+
},
|
|
324
|
+
"lengthOfLeaseInYears": {
|
|
325
|
+
"baspiRef": "A1.4.1a",
|
|
326
|
+
"ntsRef": "A1.3",
|
|
327
|
+
"title": "Length of lease (years)",
|
|
328
|
+
"type": "integer"
|
|
329
|
+
},
|
|
330
|
+
"currentGroundRent": {
|
|
331
|
+
"baspiRef": "A1.4.2",
|
|
332
|
+
"ntsRef": "A1.4",
|
|
333
|
+
"RDSRef": "TenureAgreements/RentPayable/Value",
|
|
334
|
+
"lawSocietyRef": "TA7/1.2a",
|
|
335
|
+
"title": "Current annual ground rent (£)",
|
|
336
|
+
"type": "number"
|
|
337
|
+
},
|
|
338
|
+
"rentIncrease": {
|
|
339
|
+
"baspiRef": "A1.4.3",
|
|
340
|
+
"ntsRef": "A1.5",
|
|
341
|
+
"RDSRef": "TenureAgreement/isRentChangeable, TenureAgreements/RentChanges",
|
|
342
|
+
"title": "Does the ground rent increase?",
|
|
343
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
344
|
+
"description": "Please provide full details of the ground rent increase e.g. how often and by how much and when the next increase is due."
|
|
345
|
+
},
|
|
346
|
+
"annualServiceCharge": {
|
|
347
|
+
"baspiRef": "A1.5.1",
|
|
348
|
+
"ntsRef": "A1.6",
|
|
349
|
+
"RDSRef": "TenureAgreements/ServiceCharges",
|
|
350
|
+
"title": "Amount of current annual service charge/estate rentcharge/maintenance contribution (£)",
|
|
351
|
+
"type": "number"
|
|
352
|
+
},
|
|
353
|
+
"largeAdditionalExpense": {
|
|
354
|
+
"baspiRef": "A1.5.2",
|
|
355
|
+
"RDSRef": "TenureAgreements/Repairs,TenureAgreements/ServicesCharges/Breakdown",
|
|
356
|
+
"title": "Have you received notice of any large expense in addition to the annual payment?",
|
|
357
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
358
|
+
"description": "If yes, please provide details and confirm whether there is a reserve fund or sinking fund which will cover the cost of the works."
|
|
359
|
+
},
|
|
360
|
+
"additionalFeesOnSale": {
|
|
361
|
+
"baspiRef": "A1.5.3",
|
|
362
|
+
"RDSRef": "TenureAgreements/LegalCosts/Actual, TenureAgreements/LegalCosts/Estimated",
|
|
363
|
+
"title": "Additional fees payable on sale (£)",
|
|
364
|
+
"type": "number"
|
|
365
|
+
},
|
|
366
|
+
"freeholderContactDetails": {
|
|
367
|
+
"baspiRef": "A1.5.4",
|
|
368
|
+
"lawSocietyRef": "TA7/4.1a",
|
|
369
|
+
"RDSRef": "TenureAgreements/Assignor",
|
|
370
|
+
"title": "The name, address and email address of the freeholder or rentcharge owner",
|
|
371
|
+
"$ref": "#/$defs/contactDetails"
|
|
372
|
+
},
|
|
373
|
+
"managingAgentContactDetails": {
|
|
374
|
+
"baspiRef": "A1.5.5",
|
|
375
|
+
"lawSocietyRef": "TA7/4.1b",
|
|
376
|
+
"RDSRef": "Participants/Role",
|
|
377
|
+
"title": "The name, address and email address of the managing agent",
|
|
378
|
+
"$ref": "#/$defs/contactDetails"
|
|
379
|
+
},
|
|
380
|
+
"managementCompanyDirectorRequirement": {
|
|
381
|
+
"baspiRef": "A1.5.6",
|
|
382
|
+
"RDSRef": "Property/Flags",
|
|
383
|
+
"title": "Is the owner of the property required to become a director in a management company for the maintenance of shared amenities?",
|
|
384
|
+
"$ref": "#/$defs/yesNo"
|
|
418
385
|
}
|
|
386
|
+
},
|
|
387
|
+
"required": [
|
|
388
|
+
"sharedOwnership",
|
|
389
|
+
"startYearOfLease",
|
|
390
|
+
"lengthOfLeaseInYears",
|
|
391
|
+
"currentGroundRent",
|
|
392
|
+
"rentIncrease",
|
|
393
|
+
"annualServiceCharge",
|
|
394
|
+
"largeAdditionalExpense",
|
|
395
|
+
"additionalFeesOnSale",
|
|
396
|
+
"freeholderContactDetails",
|
|
397
|
+
"managingAgentContactDetails",
|
|
398
|
+
"managementCompanyDirectorRequirement"
|
|
419
399
|
]
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"properties": {
|
|
403
|
+
"ownershipType": {
|
|
404
|
+
"enum": ["Other"]
|
|
405
|
+
},
|
|
406
|
+
"otherOwnershipDetails": {
|
|
407
|
+
"baspiRef": "A1.3.2",
|
|
408
|
+
"title": "Details of the ownership type",
|
|
409
|
+
"type": "string",
|
|
410
|
+
"minLength": 1
|
|
411
|
+
}
|
|
412
|
+
},
|
|
413
|
+
"required": ["otherOwnershipDetails"]
|
|
420
414
|
}
|
|
421
|
-
|
|
415
|
+
]
|
|
422
416
|
},
|
|
423
417
|
"parking": {
|
|
424
418
|
"baspiRef": "A1.6",
|
|
@@ -455,42 +449,38 @@
|
|
|
455
449
|
]
|
|
456
450
|
}
|
|
457
451
|
},
|
|
458
|
-
"
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
452
|
+
"discriminator": { "propertyName": "parkingArrangementsType" },
|
|
453
|
+
"oneOf": [
|
|
454
|
+
{
|
|
455
|
+
"properties": {
|
|
456
|
+
"parkingArrangementsType": {
|
|
457
|
+
"enum": [
|
|
458
|
+
"Garage",
|
|
459
|
+
"Allocated parking space",
|
|
460
|
+
"Driveway",
|
|
461
|
+
"On street",
|
|
462
|
+
"Resident permit",
|
|
463
|
+
"Metered parking",
|
|
464
|
+
"Communal parking",
|
|
465
|
+
"None"
|
|
466
|
+
]
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"properties": {
|
|
472
|
+
"parkingArrangementsType": {
|
|
473
|
+
"enum": ["Other"]
|
|
477
474
|
},
|
|
478
|
-
{
|
|
479
|
-
"
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
},
|
|
483
|
-
"otherParkingType": {
|
|
484
|
-
"baspiRef": "A1.6.2",
|
|
485
|
-
"title": "Please describe the other parking arrangements",
|
|
486
|
-
"type": "string"
|
|
487
|
-
}
|
|
488
|
-
},
|
|
489
|
-
"required": ["otherParkingType"]
|
|
475
|
+
"otherParkingType": {
|
|
476
|
+
"baspiRef": "A1.6.2",
|
|
477
|
+
"title": "Please describe the other parking arrangements",
|
|
478
|
+
"type": "string"
|
|
490
479
|
}
|
|
491
|
-
|
|
480
|
+
},
|
|
481
|
+
"required": ["otherParkingType"]
|
|
492
482
|
}
|
|
493
|
-
|
|
483
|
+
]
|
|
494
484
|
},
|
|
495
485
|
"controlledParking": {
|
|
496
486
|
"lawSocietyRef": "TA6/9.2",
|
|
@@ -545,41 +535,37 @@
|
|
|
545
535
|
}
|
|
546
536
|
},
|
|
547
537
|
"required": ["yesNo"],
|
|
548
|
-
"
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
538
|
+
"discriminator": { "propertyName": "yesNo" },
|
|
539
|
+
"oneOf": [
|
|
540
|
+
{
|
|
541
|
+
"properties": {
|
|
542
|
+
"yesNo": {
|
|
543
|
+
"enum": ["No"]
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
{
|
|
548
|
+
"properties": {
|
|
549
|
+
"yesNo": {
|
|
550
|
+
"enum": ["Yes"]
|
|
558
551
|
},
|
|
559
|
-
{
|
|
560
|
-
"
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
"RDSRef": "WorksAlterationsChanges",
|
|
572
|
-
"lawSocietyRef": "TA6/4.8a",
|
|
573
|
-
"title": "If work has been carried out to any trees which are protected by the order, were the relevant consents obtained? Provide any relevant documentation",
|
|
574
|
-
"type": "string",
|
|
575
|
-
"minLength": 1
|
|
576
|
-
}
|
|
577
|
-
},
|
|
578
|
-
"required": ["details", "workCarriedOut"]
|
|
552
|
+
"details": {
|
|
553
|
+
"title": "Details",
|
|
554
|
+
"RDSRef": "Protections",
|
|
555
|
+
"type": "string",
|
|
556
|
+
"minLength": 1
|
|
557
|
+
},
|
|
558
|
+
"workCarriedOut": {
|
|
559
|
+
"RDSRef": "WorksAlterationsChanges",
|
|
560
|
+
"lawSocietyRef": "TA6/4.8a",
|
|
561
|
+
"title": "If work has been carried out to any trees which are protected by the order, were the relevant consents obtained? Provide any relevant documentation",
|
|
562
|
+
"type": "string",
|
|
563
|
+
"minLength": 1
|
|
579
564
|
}
|
|
580
|
-
|
|
565
|
+
},
|
|
566
|
+
"required": ["details", "workCarriedOut"]
|
|
581
567
|
}
|
|
582
|
-
|
|
568
|
+
]
|
|
583
569
|
}
|
|
584
570
|
}
|
|
585
571
|
},
|
|
@@ -740,41 +726,37 @@
|
|
|
740
726
|
}
|
|
741
727
|
},
|
|
742
728
|
"required": ["yesNo"],
|
|
743
|
-
"
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
729
|
+
"discriminator": { "propertyName": "yesNo" },
|
|
730
|
+
"oneOf": [
|
|
731
|
+
{
|
|
732
|
+
"properties": {
|
|
733
|
+
"yesNo": {
|
|
734
|
+
"enum": ["No"]
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
"properties": {
|
|
740
|
+
"yesNo": {
|
|
741
|
+
"enum": ["Yes"]
|
|
753
742
|
},
|
|
754
|
-
{
|
|
755
|
-
"
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
"baspiRef": "A3.8",
|
|
767
|
-
"RDSRef": "Insurance/isWillingToProvide",
|
|
768
|
-
"title": "If yes, confirm whether you will pay for an insurance policy if the Local Authority still have power to enforce the breach. Your property lawyer can obtain a quote for you. (If you already have a policy please give it to your property lawyer and include details in Question 6 of Section B) [*Note: It will be a term of the insurance policy that the Local Authority is not contacted so if you have contacted the Local Authority the option of indemnity insurance will not be available.]",
|
|
769
|
-
"type": "string",
|
|
770
|
-
"enum": ["Yes", "No"]
|
|
771
|
-
}
|
|
772
|
-
},
|
|
773
|
-
"required": ["details", "willingToInsure"]
|
|
743
|
+
"details": {
|
|
744
|
+
"RDSRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
|
|
745
|
+
"title": "Details",
|
|
746
|
+
"type": "string",
|
|
747
|
+
"minLength": 1
|
|
748
|
+
},
|
|
749
|
+
"willingToInsure": {
|
|
750
|
+
"baspiRef": "A3.8",
|
|
751
|
+
"RDSRef": "Insurance/isWillingToProvide",
|
|
752
|
+
"title": "If yes, confirm whether you will pay for an insurance policy if the Local Authority still have power to enforce the breach. Your property lawyer can obtain a quote for you. (If you already have a policy please give it to your property lawyer and include details in Question 6 of Section B) [*Note: It will be a term of the insurance policy that the Local Authority is not contacted so if you have contacted the Local Authority the option of indemnity insurance will not be available.]",
|
|
753
|
+
"type": "string",
|
|
754
|
+
"enum": ["Yes", "No"]
|
|
774
755
|
}
|
|
775
|
-
|
|
756
|
+
},
|
|
757
|
+
"required": ["details", "willingToInsure"]
|
|
776
758
|
}
|
|
777
|
-
|
|
759
|
+
]
|
|
778
760
|
},
|
|
779
761
|
"unresolvedPlanningIssues": {
|
|
780
762
|
"baspiRef": "A3.7",
|
|
@@ -790,41 +772,37 @@
|
|
|
790
772
|
}
|
|
791
773
|
},
|
|
792
774
|
"required": ["yesNo"],
|
|
793
|
-
"
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
775
|
+
"discriminator": { "propertyName": "yesNo" },
|
|
776
|
+
"oneOf": [
|
|
777
|
+
{
|
|
778
|
+
"properties": {
|
|
779
|
+
"yesNo": {
|
|
780
|
+
"enum": ["No"]
|
|
781
|
+
}
|
|
782
|
+
}
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
"properties": {
|
|
786
|
+
"yesNo": {
|
|
787
|
+
"enum": ["Yes"]
|
|
803
788
|
},
|
|
804
|
-
{
|
|
805
|
-
"
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
"baspiRef": "A3.8",
|
|
817
|
-
"RDSRef": "Insurance/isWillingToProvide",
|
|
818
|
-
"title": "If yes, confirm whether you will pay for an insurance policy if the Local Authority still have power to enforce the breach. Your property lawyer can obtain a quote for you. (If you already have a policy please give it to your property lawyer and include details in Question 6 of Section B) [*Note: It will be a term of the insurance policy that the Local Authority is not contacted so if you have contacted the Local Authority the option of indemnity insurance will not be available.]",
|
|
819
|
-
"type": "string",
|
|
820
|
-
"enum": ["Yes", "No"]
|
|
821
|
-
}
|
|
822
|
-
},
|
|
823
|
-
"required": ["details", "willingToInsure"]
|
|
789
|
+
"details": {
|
|
790
|
+
"RDSRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
|
|
791
|
+
"title": "Details",
|
|
792
|
+
"type": "string",
|
|
793
|
+
"minLength": 1
|
|
794
|
+
},
|
|
795
|
+
"willingToInsure": {
|
|
796
|
+
"baspiRef": "A3.8",
|
|
797
|
+
"RDSRef": "Insurance/isWillingToProvide",
|
|
798
|
+
"title": "If yes, confirm whether you will pay for an insurance policy if the Local Authority still have power to enforce the breach. Your property lawyer can obtain a quote for you. (If you already have a policy please give it to your property lawyer and include details in Question 6 of Section B) [*Note: It will be a term of the insurance policy that the Local Authority is not contacted so if you have contacted the Local Authority the option of indemnity insurance will not be available.]",
|
|
799
|
+
"type": "string",
|
|
800
|
+
"enum": ["Yes", "No"]
|
|
824
801
|
}
|
|
825
|
-
|
|
802
|
+
},
|
|
803
|
+
"required": ["details", "willingToInsure"]
|
|
826
804
|
}
|
|
827
|
-
|
|
805
|
+
]
|
|
828
806
|
}
|
|
829
807
|
}
|
|
830
808
|
},
|
|
@@ -1004,185 +982,175 @@
|
|
|
1004
982
|
"enum": ["Yes", "To be connected", "No"]
|
|
1005
983
|
}
|
|
1006
984
|
},
|
|
1007
|
-
"
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
985
|
+
"discriminator": { "propertyName": "yesNo" },
|
|
986
|
+
"oneOf": [
|
|
987
|
+
{
|
|
988
|
+
"properties": {
|
|
989
|
+
"yesNo": {
|
|
990
|
+
"enum": ["No"]
|
|
991
|
+
},
|
|
992
|
+
"sustainableDrainageSystem": {
|
|
993
|
+
"baspiRef": "A7.2.1",
|
|
994
|
+
"RDSRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
|
|
995
|
+
"title": "Sustainable Drainage System",
|
|
996
|
+
"$ref": "#/$defs/yesNoConnectedSupplier"
|
|
997
|
+
},
|
|
998
|
+
"septicTank": {
|
|
999
|
+
"baspiRef": "A7.2.2",
|
|
1000
|
+
"RDSRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
|
|
1001
|
+
"lawSocietyRef": "TA6/12.5",
|
|
1002
|
+
"title": "Septic tank",
|
|
1003
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1004
|
+
"description": "If yes, please specify date replaced or updated and date last emptied"
|
|
1005
|
+
},
|
|
1006
|
+
"cesspit": {
|
|
1007
|
+
"baspiRef": "A7.2.3",
|
|
1008
|
+
"RDSRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
|
|
1009
|
+
"lawSocietyRef": "TA6/12.7",
|
|
1010
|
+
"title": "Cesspit",
|
|
1011
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1012
|
+
"description": "If yes, please specify date last emptied"
|
|
1013
|
+
},
|
|
1014
|
+
"sewerageTreatmentPlant": {
|
|
1015
|
+
"baspiRef": "A7.2.4",
|
|
1016
|
+
"RDSRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
|
|
1017
|
+
"lawSocietyRef": "TA6/12.8",
|
|
1018
|
+
"title": "Sewerage treatment plant",
|
|
1019
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1020
|
+
"description": "If yes, please specify date last serviced"
|
|
1021
|
+
},
|
|
1022
|
+
"otherConnectedProperties": {
|
|
1023
|
+
"baspiRef": "A7.2.5",
|
|
1024
|
+
"RDSRef": "Services/OtherServices/SharedWith",
|
|
1025
|
+
"lawSocietyRef": "TA6/12.6",
|
|
1026
|
+
"title": "Do other properties connect to the septic tank, cesspit or sewerage treatment plant?",
|
|
1027
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1028
|
+
"description": "If yes, provide details of the properties sharing the system and explain how maintenance of the system is arranged and paid for."
|
|
1029
|
+
},
|
|
1030
|
+
"yearSystemInstalled": {
|
|
1031
|
+
"lawSocietyRef": "TA6/12.9",
|
|
1032
|
+
"title": "What year was the system installed?",
|
|
1033
|
+
"type": "integer",
|
|
1034
|
+
"minimum": 1000
|
|
1035
|
+
},
|
|
1036
|
+
"plantOnOtherLand": {
|
|
1037
|
+
"baspiRef": "A7.2.6",
|
|
1038
|
+
"RDSRef": "Services/OtherServices/Located,Services/OtherServices/{access=?}",
|
|
1039
|
+
"lawSocietyRef": "TA6/12.10",
|
|
1040
|
+
"title": "Is any part of the septic tank, cesspit or sewerage treatment plant located on someone else’s land?",
|
|
1041
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1042
|
+
"description": "If yes, please supply a plan showing the location of the system and how access is obtained."
|
|
1043
|
+
},
|
|
1044
|
+
"plantRegistered": {
|
|
1045
|
+
"baspiRef": "A7.2.7",
|
|
1046
|
+
"RDSRef": "Services/OtherServices/Certificates",
|
|
1047
|
+
"title": "Is the septic tank, cesspit or sewerage treatment plant registered with the Environment Agency or exempted?",
|
|
1048
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1049
|
+
"description": "If yes, please supply the appropriate permit to discharge or exemption certificate"
|
|
1050
|
+
},
|
|
1051
|
+
"plantDrainsIntoWaterway": {
|
|
1052
|
+
"baspiRef": "A7.2.8",
|
|
1053
|
+
"RDSRef": "Services/OtherServices/{isExternallyConnected='yes?true'}",
|
|
1054
|
+
"title": "Does the septic tank, cesspit or sewerage treatment plant drain into a waterway (lake, river, stream etc)",
|
|
1055
|
+
"type": "object",
|
|
1011
1056
|
"properties": {
|
|
1012
1057
|
"yesNo": {
|
|
1013
|
-
"
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
"title": "Septic tank",
|
|
1026
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1027
|
-
"description": "If yes, please specify date replaced or updated and date last emptied"
|
|
1028
|
-
},
|
|
1029
|
-
"cesspit": {
|
|
1030
|
-
"baspiRef": "A7.2.3",
|
|
1031
|
-
"RDSRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
|
|
1032
|
-
"lawSocietyRef": "TA6/12.7",
|
|
1033
|
-
"title": "Cesspit",
|
|
1034
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1035
|
-
"description": "If yes, please specify date last emptied"
|
|
1036
|
-
},
|
|
1037
|
-
"sewerageTreatmentPlant": {
|
|
1038
|
-
"baspiRef": "A7.2.4",
|
|
1039
|
-
"RDSRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
|
|
1040
|
-
"lawSocietyRef": "TA6/12.8",
|
|
1041
|
-
"title": "Sewerage treatment plant",
|
|
1042
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1043
|
-
"description": "If yes, please specify date last serviced"
|
|
1044
|
-
},
|
|
1045
|
-
"otherConnectedProperties": {
|
|
1046
|
-
"baspiRef": "A7.2.5",
|
|
1047
|
-
"RDSRef": "Services/OtherServices/SharedWith",
|
|
1048
|
-
"lawSocietyRef": "TA6/12.6",
|
|
1049
|
-
"title": "Do other properties connect to the septic tank, cesspit or sewerage treatment plant?",
|
|
1050
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1051
|
-
"description": "If yes, provide details of the properties sharing the system and explain how maintenance of the system is arranged and paid for."
|
|
1052
|
-
},
|
|
1053
|
-
"yearSystemInstalled": {
|
|
1054
|
-
"lawSocietyRef": "TA6/12.9",
|
|
1055
|
-
"title": "What year was the system installed?",
|
|
1056
|
-
"type": "integer",
|
|
1057
|
-
"minimum": 1000
|
|
1058
|
-
},
|
|
1059
|
-
"plantOnOtherLand": {
|
|
1060
|
-
"baspiRef": "A7.2.6",
|
|
1061
|
-
"RDSRef": "Services/OtherServices/Located,Services/OtherServices/{access=?}",
|
|
1062
|
-
"lawSocietyRef": "TA6/12.10",
|
|
1063
|
-
"title": "Is any part of the septic tank, cesspit or sewerage treatment plant located on someone else’s land?",
|
|
1064
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1065
|
-
"description": "If yes, please supply a plan showing the location of the system and how access is obtained."
|
|
1066
|
-
},
|
|
1067
|
-
"plantRegistered": {
|
|
1068
|
-
"baspiRef": "A7.2.7",
|
|
1069
|
-
"RDSRef": "Services/OtherServices/Certificates",
|
|
1070
|
-
"title": "Is the septic tank, cesspit or sewerage treatment plant registered with the Environment Agency or exempted?",
|
|
1071
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1072
|
-
"description": "If yes, please supply the appropriate permit to discharge or exemption certificate"
|
|
1073
|
-
},
|
|
1074
|
-
"plantDrainsIntoWaterway": {
|
|
1075
|
-
"baspiRef": "A7.2.8",
|
|
1076
|
-
"RDSRef": "Services/OtherServices/{isExternallyConnected='yes?true'}",
|
|
1077
|
-
"title": "Does the septic tank, cesspit or sewerage treatment plant drain into a waterway (lake, river, stream etc)",
|
|
1078
|
-
"type": "object",
|
|
1058
|
+
"type": "string",
|
|
1059
|
+
"title": "",
|
|
1060
|
+
"enum": [
|
|
1061
|
+
"Yes",
|
|
1062
|
+
"No, the effluent is discharged through a soakaway system."
|
|
1063
|
+
]
|
|
1064
|
+
}
|
|
1065
|
+
},
|
|
1066
|
+
"required": ["yesNo"],
|
|
1067
|
+
"discriminator": { "propertyName": "yesNo" },
|
|
1068
|
+
"oneOf": [
|
|
1069
|
+
{
|
|
1079
1070
|
"properties": {
|
|
1080
1071
|
"yesNo": {
|
|
1081
|
-
"type": "string",
|
|
1082
|
-
"title": "",
|
|
1083
1072
|
"enum": [
|
|
1084
|
-
"Yes",
|
|
1085
1073
|
"No, the effluent is discharged through a soakaway system."
|
|
1086
1074
|
]
|
|
1087
1075
|
}
|
|
1088
|
-
}
|
|
1089
|
-
|
|
1090
|
-
|
|
1076
|
+
}
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
"properties": {
|
|
1091
1080
|
"yesNo": {
|
|
1092
|
-
"
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
},
|
|
1103
|
-
{
|
|
1104
|
-
"properties": {
|
|
1105
|
-
"yesNo": {
|
|
1106
|
-
"enum": ["Yes"]
|
|
1107
|
-
},
|
|
1108
|
-
"dischargeCompliesWithGBR": {
|
|
1109
|
-
"baspiRef": "A7.2.9",
|
|
1110
|
-
"RDSRef": "Services/OtherServices/ExternalConnections/Flags",
|
|
1111
|
-
"title": "Does it comply with the General Binding Rules for discharge into a waterway?",
|
|
1112
|
-
"type": "string",
|
|
1113
|
-
"enum": [
|
|
1114
|
-
"Yes",
|
|
1115
|
-
"No, it does not comply with the rules for discharge into a waterway."
|
|
1116
|
-
]
|
|
1117
|
-
}
|
|
1118
|
-
},
|
|
1119
|
-
"required": ["dischargeCompliesWithGBR"]
|
|
1120
|
-
}
|
|
1081
|
+
"enum": ["Yes"]
|
|
1082
|
+
},
|
|
1083
|
+
"dischargeCompliesWithGBR": {
|
|
1084
|
+
"baspiRef": "A7.2.9",
|
|
1085
|
+
"RDSRef": "Services/OtherServices/ExternalConnections/Flags",
|
|
1086
|
+
"title": "Does it comply with the General Binding Rules for discharge into a waterway?",
|
|
1087
|
+
"type": "string",
|
|
1088
|
+
"enum": [
|
|
1089
|
+
"Yes",
|
|
1090
|
+
"No, it does not comply with the rules for discharge into a waterway."
|
|
1121
1091
|
]
|
|
1122
1092
|
}
|
|
1123
|
-
}
|
|
1093
|
+
},
|
|
1094
|
+
"required": ["dischargeCompliesWithGBR"]
|
|
1124
1095
|
}
|
|
1125
|
-
},
|
|
1126
|
-
"additionalProperties": false,
|
|
1127
|
-
"required": [
|
|
1128
|
-
"sustainableDrainageSystem",
|
|
1129
|
-
"septicTank",
|
|
1130
|
-
"cesspit",
|
|
1131
|
-
"sewerageTreatmentPlant",
|
|
1132
|
-
"otherConnectedProperties",
|
|
1133
|
-
"yearSystemInstalled",
|
|
1134
|
-
"plantOnOtherLand",
|
|
1135
|
-
"plantRegistered",
|
|
1136
|
-
"plantDrainsIntoWaterway"
|
|
1137
1096
|
]
|
|
1097
|
+
}
|
|
1098
|
+
},
|
|
1099
|
+
"required": [
|
|
1100
|
+
"sustainableDrainageSystem",
|
|
1101
|
+
"septicTank",
|
|
1102
|
+
"cesspit",
|
|
1103
|
+
"sewerageTreatmentPlant",
|
|
1104
|
+
"otherConnectedProperties",
|
|
1105
|
+
"yearSystemInstalled",
|
|
1106
|
+
"plantOnOtherLand",
|
|
1107
|
+
"plantRegistered",
|
|
1108
|
+
"plantDrainsIntoWaterway"
|
|
1109
|
+
]
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
"properties": {
|
|
1113
|
+
"yesNo": {
|
|
1114
|
+
"enum": ["Yes"]
|
|
1138
1115
|
},
|
|
1139
|
-
{
|
|
1140
|
-
"
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
},
|
|
1144
|
-
"supplier": {
|
|
1145
|
-
"title": "Supplier (if known)",
|
|
1146
|
-
"type": "string",
|
|
1147
|
-
"minLength": 1
|
|
1148
|
-
},
|
|
1149
|
-
"maintenanceAgreements": {
|
|
1150
|
-
"baspiRef": "A7.2",
|
|
1151
|
-
"RDSRef": "Services/Certificates,Services/OtherServices/Certificates",
|
|
1152
|
-
"title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to this service?",
|
|
1153
|
-
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1154
|
-
}
|
|
1155
|
-
},
|
|
1156
|
-
"additionalProperties": false,
|
|
1157
|
-
"required": ["maintenanceAgreements"]
|
|
1116
|
+
"supplier": {
|
|
1117
|
+
"title": "Supplier (if known)",
|
|
1118
|
+
"type": "string",
|
|
1119
|
+
"minLength": 1
|
|
1158
1120
|
},
|
|
1159
|
-
{
|
|
1160
|
-
"
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
"dateToBeConnected": {
|
|
1165
|
-
"title": "Date to be connected",
|
|
1166
|
-
"type": "string",
|
|
1167
|
-
"format": "date"
|
|
1168
|
-
},
|
|
1169
|
-
"supplier": {
|
|
1170
|
-
"title": "Supplier (if known)",
|
|
1171
|
-
"type": "string"
|
|
1172
|
-
},
|
|
1173
|
-
"maintenanceAgreements": {
|
|
1174
|
-
"baspiRef": "A7.2",
|
|
1175
|
-
"RDSRef": "Services/Certificates,Services/OtherServices/Certificates",
|
|
1176
|
-
"title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to this service?",
|
|
1177
|
-
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1178
|
-
}
|
|
1179
|
-
},
|
|
1180
|
-
"additionalProperties": false,
|
|
1181
|
-
"required": ["dateToBeConnected", "maintenanceAgreements"]
|
|
1121
|
+
"maintenanceAgreements": {
|
|
1122
|
+
"baspiRef": "A7.2",
|
|
1123
|
+
"RDSRef": "Services/Certificates,Services/OtherServices/Certificates",
|
|
1124
|
+
"title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to this service?",
|
|
1125
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1182
1126
|
}
|
|
1183
|
-
|
|
1127
|
+
},
|
|
1128
|
+
"required": ["maintenanceAgreements"]
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"properties": {
|
|
1132
|
+
"yesNo": {
|
|
1133
|
+
"enum": ["To be connected"]
|
|
1134
|
+
},
|
|
1135
|
+
"dateToBeConnected": {
|
|
1136
|
+
"title": "Date to be connected",
|
|
1137
|
+
"type": "string",
|
|
1138
|
+
"format": "date"
|
|
1139
|
+
},
|
|
1140
|
+
"supplier": {
|
|
1141
|
+
"title": "Supplier (if known)",
|
|
1142
|
+
"type": "string"
|
|
1143
|
+
},
|
|
1144
|
+
"maintenanceAgreements": {
|
|
1145
|
+
"baspiRef": "A7.2",
|
|
1146
|
+
"RDSRef": "Services/Certificates,Services/OtherServices/Certificates",
|
|
1147
|
+
"title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to this service?",
|
|
1148
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1149
|
+
}
|
|
1150
|
+
},
|
|
1151
|
+
"required": ["dateToBeConnected", "maintenanceAgreements"]
|
|
1184
1152
|
}
|
|
1185
|
-
|
|
1153
|
+
]
|
|
1186
1154
|
}
|
|
1187
1155
|
}
|
|
1188
1156
|
},
|
|
@@ -1297,118 +1265,110 @@
|
|
|
1297
1265
|
"enum": ["Yes", "No"]
|
|
1298
1266
|
}
|
|
1299
1267
|
},
|
|
1300
|
-
"
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1268
|
+
"discriminator": { "propertyName": "hasCentralHeating" },
|
|
1269
|
+
"oneOf": [
|
|
1270
|
+
{
|
|
1271
|
+
"properties": {
|
|
1272
|
+
"hasCentralHeating": {
|
|
1273
|
+
"enum": ["No"]
|
|
1274
|
+
}
|
|
1275
|
+
}
|
|
1276
|
+
},
|
|
1277
|
+
{
|
|
1278
|
+
"properties": {
|
|
1279
|
+
"hasCentralHeating": {
|
|
1280
|
+
"enum": ["Yes"]
|
|
1310
1281
|
},
|
|
1311
|
-
{
|
|
1282
|
+
"centralHeatingDetails": {
|
|
1283
|
+
"type": "object",
|
|
1284
|
+
"title": "Central Heating Details",
|
|
1312
1285
|
"properties": {
|
|
1313
|
-
"
|
|
1314
|
-
"
|
|
1315
|
-
|
|
1316
|
-
"centralHeatingDetails": {
|
|
1286
|
+
"centralHeatingFuel": {
|
|
1287
|
+
"baspiRef": "A7.5.1",
|
|
1288
|
+
"RDSRef": "Buildings|BuildingSections/Heating/isGas=no|yes|true|false",
|
|
1317
1289
|
"type": "object",
|
|
1318
|
-
"title": "Central Heating
|
|
1290
|
+
"title": "Central Heating Fuel",
|
|
1291
|
+
"required": ["centralHeatingFuelType"],
|
|
1319
1292
|
"properties": {
|
|
1320
|
-
"
|
|
1321
|
-
"baspiRef": "A7.5.
|
|
1322
|
-
"
|
|
1323
|
-
"
|
|
1324
|
-
"
|
|
1325
|
-
"
|
|
1293
|
+
"centralHeatingFuelType": {
|
|
1294
|
+
"baspiRef": "A7.5.1a",
|
|
1295
|
+
"lawSocietyRef": "TA6/12.3a",
|
|
1296
|
+
"title": "What type of fuel does the system and boiler run on?",
|
|
1297
|
+
"type": "string",
|
|
1298
|
+
"enum": ["Gas", "Electricity", "Oil", "LPG", "Other"]
|
|
1299
|
+
}
|
|
1300
|
+
},
|
|
1301
|
+
"discriminator": { "propertyName": "centralHeatingFuelType" },
|
|
1302
|
+
"oneOf": [
|
|
1303
|
+
{
|
|
1326
1304
|
"properties": {
|
|
1327
1305
|
"centralHeatingFuelType": {
|
|
1328
|
-
"
|
|
1306
|
+
"enum": ["Gas", "Electricity", "Oil", "LPG"]
|
|
1307
|
+
}
|
|
1308
|
+
}
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
"properties": {
|
|
1312
|
+
"centralHeatingFuelType": {
|
|
1313
|
+
"enum": ["Other"]
|
|
1314
|
+
},
|
|
1315
|
+
"otherCentralHeatingFuelType": {
|
|
1316
|
+
"baspiRef": "A7.5.1b",
|
|
1329
1317
|
"lawSocietyRef": "TA6/12.3a",
|
|
1330
|
-
"title": "
|
|
1318
|
+
"title": "Please describe the other fuel type",
|
|
1331
1319
|
"type": "string",
|
|
1332
|
-
"
|
|
1320
|
+
"minLength": 1
|
|
1333
1321
|
}
|
|
1334
1322
|
},
|
|
1335
|
-
"
|
|
1336
|
-
"centralHeatingFuelType": {
|
|
1337
|
-
"oneOf": [
|
|
1338
|
-
{
|
|
1339
|
-
"properties": {
|
|
1340
|
-
"centralHeatingFuelType": {
|
|
1341
|
-
"enum": ["Gas", "Electricity", "Oil", "LPG"]
|
|
1342
|
-
}
|
|
1343
|
-
},
|
|
1344
|
-
"additionalProperties": false
|
|
1345
|
-
},
|
|
1346
|
-
{
|
|
1347
|
-
"properties": {
|
|
1348
|
-
"centralHeatingFuelType": {
|
|
1349
|
-
"enum": ["Other"]
|
|
1350
|
-
},
|
|
1351
|
-
"otherCentralHeatingFuelType": {
|
|
1352
|
-
"baspiRef": "A7.5.1b",
|
|
1353
|
-
"lawSocietyRef": "TA6/12.3a",
|
|
1354
|
-
"title": "Please describe the other fuel type",
|
|
1355
|
-
"type": "string",
|
|
1356
|
-
"minLength": 1
|
|
1357
|
-
}
|
|
1358
|
-
},
|
|
1359
|
-
"required": ["otherCentralHeatingFuelType"]
|
|
1360
|
-
}
|
|
1361
|
-
]
|
|
1362
|
-
}
|
|
1363
|
-
}
|
|
1364
|
-
},
|
|
1365
|
-
"centralHeatingInstalled": {
|
|
1366
|
-
"baspiRef": "A7.5.2",
|
|
1367
|
-
"RDSRef": "Objects/Installed",
|
|
1368
|
-
"lawSocietyRef": "TA6/12.3b",
|
|
1369
|
-
"title": "When was the heating system and boiler installed?",
|
|
1370
|
-
"type": "string",
|
|
1371
|
-
"format": "date"
|
|
1372
|
-
},
|
|
1373
|
-
"boilerInstallationCertificate": {
|
|
1374
|
-
"baspiRef": "A7.5.3",
|
|
1375
|
-
"RDSRef": "Objects/Installation,Objects/Certificates",
|
|
1376
|
-
"lawSocietyRef": "TA6/12.3b",
|
|
1377
|
-
"title": "Was a gas boiler installed after 1st April 2005, or a solid fuel or oil boiler installed after 1st October 2010?",
|
|
1378
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1379
|
-
"description": "If yes, please supply a copy of the installation completion certificate from a competent person qualified under the relevant self-certification scheme e.g. HETAS etc"
|
|
1380
|
-
},
|
|
1381
|
-
"heatingLastServiced": {
|
|
1382
|
-
"baspiRef": "A7.5.4",
|
|
1383
|
-
"RDSRef": "Objects/Maintenance",
|
|
1384
|
-
"lawSocietyRef": "TA6/12.3d",
|
|
1385
|
-
"title": "When was the heating system and boiler last serviced or maintained? Please provide a copy of the service or maintenance works report ",
|
|
1386
|
-
"type": "string",
|
|
1387
|
-
"format": "date"
|
|
1388
|
-
},
|
|
1389
|
-
"heatingInGoodWorkingOrder": {
|
|
1390
|
-
"baspiRef": "A7.5.6",
|
|
1391
|
-
"RDSRef": "Objects/Condition=?",
|
|
1392
|
-
"lawSocietyRef": "TA6/12.3c",
|
|
1393
|
-
"title": "Is the heating system in good working order to your satisfaction?",
|
|
1394
|
-
"$ref": "#/$defs/yesNoDetailIfNo",
|
|
1395
|
-
"description": "If 'No' please provide details"
|
|
1323
|
+
"required": ["otherCentralHeatingFuelType"]
|
|
1396
1324
|
}
|
|
1397
|
-
},
|
|
1398
|
-
"required": [
|
|
1399
|
-
"centralHeatingFuel",
|
|
1400
|
-
"centralHeatingInstalled",
|
|
1401
|
-
"boilerInstallationCertificate",
|
|
1402
|
-
"heatingLastServiced",
|
|
1403
|
-
"heatingInGoodWorkingOrder"
|
|
1404
1325
|
]
|
|
1326
|
+
},
|
|
1327
|
+
"centralHeatingInstalled": {
|
|
1328
|
+
"baspiRef": "A7.5.2",
|
|
1329
|
+
"RDSRef": "Objects/Installed",
|
|
1330
|
+
"lawSocietyRef": "TA6/12.3b",
|
|
1331
|
+
"title": "When was the heating system and boiler installed?",
|
|
1332
|
+
"type": "string",
|
|
1333
|
+
"format": "date"
|
|
1334
|
+
},
|
|
1335
|
+
"boilerInstallationCertificate": {
|
|
1336
|
+
"baspiRef": "A7.5.3",
|
|
1337
|
+
"RDSRef": "Objects/Installation,Objects/Certificates",
|
|
1338
|
+
"lawSocietyRef": "TA6/12.3b",
|
|
1339
|
+
"title": "Was a gas boiler installed after 1st April 2005, or a solid fuel or oil boiler installed after 1st October 2010?",
|
|
1340
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1341
|
+
"description": "If yes, please supply a copy of the installation completion certificate from a competent person qualified under the relevant self-certification scheme e.g. HETAS etc"
|
|
1342
|
+
},
|
|
1343
|
+
"heatingLastServiced": {
|
|
1344
|
+
"baspiRef": "A7.5.4",
|
|
1345
|
+
"RDSRef": "Objects/Maintenance",
|
|
1346
|
+
"lawSocietyRef": "TA6/12.3d",
|
|
1347
|
+
"title": "When was the heating system and boiler last serviced or maintained? Please provide a copy of the service or maintenance works report ",
|
|
1348
|
+
"type": "string",
|
|
1349
|
+
"format": "date"
|
|
1350
|
+
},
|
|
1351
|
+
"heatingInGoodWorkingOrder": {
|
|
1352
|
+
"baspiRef": "A7.5.6",
|
|
1353
|
+
"RDSRef": "Objects/Condition=?",
|
|
1354
|
+
"lawSocietyRef": "TA6/12.3c",
|
|
1355
|
+
"title": "Is the heating system in good working order to your satisfaction?",
|
|
1356
|
+
"$ref": "#/$defs/yesNoDetailIfNo",
|
|
1357
|
+
"description": "If 'No' please provide details"
|
|
1405
1358
|
}
|
|
1406
1359
|
},
|
|
1407
|
-
"required": [
|
|
1360
|
+
"required": [
|
|
1361
|
+
"centralHeatingFuel",
|
|
1362
|
+
"centralHeatingInstalled",
|
|
1363
|
+
"boilerInstallationCertificate",
|
|
1364
|
+
"heatingLastServiced",
|
|
1365
|
+
"heatingInGoodWorkingOrder"
|
|
1366
|
+
]
|
|
1408
1367
|
}
|
|
1409
|
-
|
|
1368
|
+
},
|
|
1369
|
+
"required": ["centralHeatingDetails"]
|
|
1410
1370
|
}
|
|
1411
|
-
|
|
1371
|
+
]
|
|
1412
1372
|
},
|
|
1413
1373
|
"insurance": {
|
|
1414
1374
|
"baspiRef": "A8",
|
|
@@ -1426,48 +1386,44 @@
|
|
|
1426
1386
|
"enum": ["Yes", "No"]
|
|
1427
1387
|
}
|
|
1428
1388
|
},
|
|
1429
|
-
"
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
"enum": ["No"]
|
|
1436
|
-
},
|
|
1437
|
-
"details": {
|
|
1438
|
-
"title": "Why not?",
|
|
1439
|
-
"type": "string",
|
|
1440
|
-
"minLength": 1
|
|
1441
|
-
}
|
|
1442
|
-
},
|
|
1443
|
-
"required": ["details"],
|
|
1444
|
-
"additionalProperties": false
|
|
1389
|
+
"discriminator": { "propertyName": "isInsured" },
|
|
1390
|
+
"oneOf": [
|
|
1391
|
+
{
|
|
1392
|
+
"properties": {
|
|
1393
|
+
"isInsured": {
|
|
1394
|
+
"enum": ["No"]
|
|
1445
1395
|
},
|
|
1446
|
-
{
|
|
1447
|
-
"
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
},
|
|
1451
|
-
"difficultiesObtainingInsurance": {
|
|
1452
|
-
"baspiRef": "A8.2",
|
|
1453
|
-
"RDSRef": "Insurance/Flags,Insurance/refusalReason=?",
|
|
1454
|
-
"lawSocietyRef": "TA6/6.4",
|
|
1455
|
-
"title": "Have you had any difficulty obtaining competitively priced building insurance due to the structure or location of the property or had insurance refused (e.g. high premiums, excess over £1,500, special conditions etc)",
|
|
1456
|
-
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1457
|
-
},
|
|
1458
|
-
"insuranceClaims": {
|
|
1459
|
-
"baspiRef": "A8.3",
|
|
1460
|
-
"RDSRef": "Insurance/Claims",
|
|
1461
|
-
"lawSocietyRef": "TA6/6.5",
|
|
1462
|
-
"title": "Have you ever made a claim against your building insurance in relation to the property?",
|
|
1463
|
-
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1464
|
-
}
|
|
1465
|
-
},
|
|
1466
|
-
"required": ["difficultiesObtainingInsurance", "insuranceClaims"]
|
|
1396
|
+
"details": {
|
|
1397
|
+
"title": "Why not?",
|
|
1398
|
+
"type": "string",
|
|
1399
|
+
"minLength": 1
|
|
1467
1400
|
}
|
|
1468
|
-
|
|
1401
|
+
},
|
|
1402
|
+
"required": ["details"]
|
|
1403
|
+
},
|
|
1404
|
+
{
|
|
1405
|
+
"properties": {
|
|
1406
|
+
"isInsured": {
|
|
1407
|
+
"enum": ["Yes"]
|
|
1408
|
+
},
|
|
1409
|
+
"difficultiesObtainingInsurance": {
|
|
1410
|
+
"baspiRef": "A8.2",
|
|
1411
|
+
"RDSRef": "Insurance/Flags,Insurance/refusalReason=?",
|
|
1412
|
+
"lawSocietyRef": "TA6/6.4",
|
|
1413
|
+
"title": "Have you had any difficulty obtaining competitively priced building insurance due to the structure or location of the property or had insurance refused (e.g. high premiums, excess over £1,500, special conditions etc)",
|
|
1414
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1415
|
+
},
|
|
1416
|
+
"insuranceClaims": {
|
|
1417
|
+
"baspiRef": "A8.3",
|
|
1418
|
+
"RDSRef": "Insurance/Claims",
|
|
1419
|
+
"lawSocietyRef": "TA6/6.5",
|
|
1420
|
+
"title": "Have you ever made a claim against your building insurance in relation to the property?",
|
|
1421
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1422
|
+
}
|
|
1423
|
+
},
|
|
1424
|
+
"required": ["difficultiesObtainingInsurance", "insuranceClaims"]
|
|
1469
1425
|
}
|
|
1470
|
-
|
|
1426
|
+
]
|
|
1471
1427
|
},
|
|
1472
1428
|
"boundaries": {
|
|
1473
1429
|
"baspiRef": "A9",
|
|
@@ -1644,79 +1600,76 @@
|
|
|
1644
1600
|
"enum": ["Yes", "No"]
|
|
1645
1601
|
}
|
|
1646
1602
|
},
|
|
1647
|
-
"
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1603
|
+
"discriminator": { "propertyName": "hasBeenFlooded" },
|
|
1604
|
+
"oneOf": [
|
|
1605
|
+
{
|
|
1606
|
+
"properties": {
|
|
1607
|
+
"hasBeenFlooded": {
|
|
1608
|
+
"enum": ["No"]
|
|
1609
|
+
}
|
|
1610
|
+
}
|
|
1611
|
+
},
|
|
1612
|
+
{
|
|
1613
|
+
"properties": {
|
|
1614
|
+
"hasBeenFlooded": {
|
|
1615
|
+
"enum": ["Yes"]
|
|
1656
1616
|
},
|
|
1657
|
-
{
|
|
1617
|
+
"details": {
|
|
1618
|
+
"lawSocietyRef": "TA6/7.1",
|
|
1619
|
+
"type": "string",
|
|
1620
|
+
"minLength": 1
|
|
1621
|
+
},
|
|
1622
|
+
"typeOfFlooding": {
|
|
1623
|
+
"baspiRef": "A11.1",
|
|
1624
|
+
"RDSRef": "Sustainability/Environmental|Natural|Situational",
|
|
1625
|
+
"lawSocietyRef": "TA6/7.2",
|
|
1626
|
+
"title": "What type of flooding occurred?",
|
|
1627
|
+
"type": "object",
|
|
1658
1628
|
"properties": {
|
|
1659
|
-
"
|
|
1660
|
-
"
|
|
1629
|
+
"groundWater": {
|
|
1630
|
+
"lawSocietyRef": "TA6/7.2a",
|
|
1631
|
+
"title": "Ground water",
|
|
1632
|
+
"$ref": "#/$defs/yesNo"
|
|
1661
1633
|
},
|
|
1662
|
-
"
|
|
1663
|
-
"lawSocietyRef": "TA6/7.
|
|
1664
|
-
"
|
|
1665
|
-
"
|
|
1634
|
+
"sewer": {
|
|
1635
|
+
"lawSocietyRef": "TA6/7.2b",
|
|
1636
|
+
"title": "Sewer",
|
|
1637
|
+
"$ref": "#/$defs/yesNo"
|
|
1666
1638
|
},
|
|
1667
|
-
"
|
|
1668
|
-
"
|
|
1669
|
-
"
|
|
1670
|
-
"
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
"
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
"title": "Surface water",
|
|
1687
|
-
"$ref": "#/$defs/yesNo"
|
|
1688
|
-
},
|
|
1689
|
-
"coastal": {
|
|
1690
|
-
"lawSocietyRef": "TA6/7.2d",
|
|
1691
|
-
"title": "Coastal flooding",
|
|
1692
|
-
"$ref": "#/$defs/yesNo"
|
|
1693
|
-
},
|
|
1694
|
-
"river": {
|
|
1695
|
-
"lawSocietyRef": "TA6/7.2e",
|
|
1696
|
-
"title": "River flooding",
|
|
1697
|
-
"$ref": "#/$defs/yesNo"
|
|
1698
|
-
},
|
|
1699
|
-
"other": {
|
|
1700
|
-
"title": "Other",
|
|
1701
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1702
|
-
"description": "Please state"
|
|
1703
|
-
}
|
|
1704
|
-
},
|
|
1705
|
-
"required": [
|
|
1706
|
-
"groundWater",
|
|
1707
|
-
"sewer",
|
|
1708
|
-
"surfaceWater",
|
|
1709
|
-
"coastal",
|
|
1710
|
-
"river",
|
|
1711
|
-
"other"
|
|
1712
|
-
]
|
|
1639
|
+
"surfaceWater": {
|
|
1640
|
+
"lawSocietyRef": "TA6/7.2c",
|
|
1641
|
+
"title": "Surface water",
|
|
1642
|
+
"$ref": "#/$defs/yesNo"
|
|
1643
|
+
},
|
|
1644
|
+
"coastal": {
|
|
1645
|
+
"lawSocietyRef": "TA6/7.2d",
|
|
1646
|
+
"title": "Coastal flooding",
|
|
1647
|
+
"$ref": "#/$defs/yesNo"
|
|
1648
|
+
},
|
|
1649
|
+
"river": {
|
|
1650
|
+
"lawSocietyRef": "TA6/7.2e",
|
|
1651
|
+
"title": "River flooding",
|
|
1652
|
+
"$ref": "#/$defs/yesNo"
|
|
1653
|
+
},
|
|
1654
|
+
"other": {
|
|
1655
|
+
"title": "Other",
|
|
1656
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1657
|
+
"description": "Please state"
|
|
1713
1658
|
}
|
|
1714
1659
|
},
|
|
1715
|
-
"required": [
|
|
1660
|
+
"required": [
|
|
1661
|
+
"groundWater",
|
|
1662
|
+
"sewer",
|
|
1663
|
+
"surfaceWater",
|
|
1664
|
+
"coastal",
|
|
1665
|
+
"river",
|
|
1666
|
+
"other"
|
|
1667
|
+
]
|
|
1716
1668
|
}
|
|
1717
|
-
|
|
1669
|
+
},
|
|
1670
|
+
"required": ["typeOfFlooding", "details"]
|
|
1718
1671
|
}
|
|
1719
|
-
|
|
1672
|
+
]
|
|
1720
1673
|
},
|
|
1721
1674
|
"radon": {
|
|
1722
1675
|
"baspiRef": "A11.1",
|
|
@@ -1831,33 +1784,29 @@
|
|
|
1831
1784
|
}
|
|
1832
1785
|
},
|
|
1833
1786
|
"required": ["yesNo"],
|
|
1834
|
-
"
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1787
|
+
"discriminator": { "propertyName": "yesNo" },
|
|
1788
|
+
"oneOf": [
|
|
1789
|
+
{
|
|
1790
|
+
"properties": {
|
|
1791
|
+
"yesNo": {
|
|
1792
|
+
"enum": ["No"]
|
|
1793
|
+
}
|
|
1794
|
+
}
|
|
1795
|
+
},
|
|
1796
|
+
{
|
|
1797
|
+
"properties": {
|
|
1798
|
+
"yesNo": {
|
|
1799
|
+
"enum": ["Yes"]
|
|
1844
1800
|
},
|
|
1845
|
-
{
|
|
1846
|
-
"
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
},
|
|
1850
|
-
"details": {
|
|
1851
|
-
"title": "Details",
|
|
1852
|
-
"type": "string",
|
|
1853
|
-
"minLength": 1
|
|
1854
|
-
}
|
|
1855
|
-
},
|
|
1856
|
-
"required": ["details"]
|
|
1801
|
+
"details": {
|
|
1802
|
+
"title": "Details",
|
|
1803
|
+
"type": "string",
|
|
1804
|
+
"minLength": 1
|
|
1857
1805
|
}
|
|
1858
|
-
|
|
1806
|
+
},
|
|
1807
|
+
"required": ["details"]
|
|
1859
1808
|
}
|
|
1860
|
-
|
|
1809
|
+
]
|
|
1861
1810
|
},
|
|
1862
1811
|
"yesNoDetailIfNo": {
|
|
1863
1812
|
"type": "object",
|
|
@@ -1869,33 +1818,29 @@
|
|
|
1869
1818
|
}
|
|
1870
1819
|
},
|
|
1871
1820
|
"required": ["yesNo"],
|
|
1872
|
-
"
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1821
|
+
"discriminator": { "propertyName": "yesNo" },
|
|
1822
|
+
"oneOf": [
|
|
1823
|
+
{
|
|
1824
|
+
"properties": {
|
|
1825
|
+
"yesNo": {
|
|
1826
|
+
"enum": ["Yes"]
|
|
1827
|
+
}
|
|
1828
|
+
}
|
|
1829
|
+
},
|
|
1830
|
+
{
|
|
1831
|
+
"properties": {
|
|
1832
|
+
"yesNo": {
|
|
1833
|
+
"enum": ["No"]
|
|
1882
1834
|
},
|
|
1883
|
-
{
|
|
1884
|
-
"
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
},
|
|
1888
|
-
"details": {
|
|
1889
|
-
"title": "Details",
|
|
1890
|
-
"type": "string",
|
|
1891
|
-
"minLength": 1
|
|
1892
|
-
}
|
|
1893
|
-
},
|
|
1894
|
-
"required": ["details"]
|
|
1835
|
+
"details": {
|
|
1836
|
+
"title": "Details",
|
|
1837
|
+
"type": "string",
|
|
1838
|
+
"minLength": 1
|
|
1895
1839
|
}
|
|
1896
|
-
|
|
1840
|
+
},
|
|
1841
|
+
"required": ["details"]
|
|
1897
1842
|
}
|
|
1898
|
-
|
|
1843
|
+
]
|
|
1899
1844
|
},
|
|
1900
1845
|
"yesNoNotRequiredDetailIfNo": {
|
|
1901
1846
|
"type": "object",
|
|
@@ -1907,33 +1852,29 @@
|
|
|
1907
1852
|
}
|
|
1908
1853
|
},
|
|
1909
1854
|
"required": ["yesNo"],
|
|
1910
|
-
"
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1855
|
+
"discriminator": { "propertyName": "yesNo" },
|
|
1856
|
+
"oneOf": [
|
|
1857
|
+
{
|
|
1858
|
+
"properties": {
|
|
1859
|
+
"yesNo": {
|
|
1860
|
+
"enum": ["Yes", "Not required"]
|
|
1861
|
+
}
|
|
1862
|
+
}
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"properties": {
|
|
1866
|
+
"yesNo": {
|
|
1867
|
+
"enum": ["No"]
|
|
1920
1868
|
},
|
|
1921
|
-
{
|
|
1922
|
-
"
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
},
|
|
1926
|
-
"details": {
|
|
1927
|
-
"title": "Please outline the reasons why",
|
|
1928
|
-
"type": "string",
|
|
1929
|
-
"minLength": 1
|
|
1930
|
-
}
|
|
1931
|
-
},
|
|
1932
|
-
"required": ["details"]
|
|
1869
|
+
"details": {
|
|
1870
|
+
"title": "Please outline the reasons why",
|
|
1871
|
+
"type": "string",
|
|
1872
|
+
"minLength": 1
|
|
1933
1873
|
}
|
|
1934
|
-
|
|
1874
|
+
},
|
|
1875
|
+
"required": ["details"]
|
|
1935
1876
|
}
|
|
1936
|
-
|
|
1877
|
+
]
|
|
1937
1878
|
},
|
|
1938
1879
|
"yesNoConnectedSupplier": {
|
|
1939
1880
|
"type": "object",
|
|
@@ -1945,61 +1886,57 @@
|
|
|
1945
1886
|
}
|
|
1946
1887
|
},
|
|
1947
1888
|
"required": ["yesNo"],
|
|
1948
|
-
"
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1889
|
+
"discriminator": { "propertyName": "yesNo" },
|
|
1890
|
+
"oneOf": [
|
|
1891
|
+
{
|
|
1892
|
+
"properties": {
|
|
1893
|
+
"yesNo": {
|
|
1894
|
+
"enum": ["No"]
|
|
1895
|
+
}
|
|
1896
|
+
}
|
|
1897
|
+
},
|
|
1898
|
+
{
|
|
1899
|
+
"properties": {
|
|
1900
|
+
"yesNo": {
|
|
1901
|
+
"enum": ["Yes"]
|
|
1958
1902
|
},
|
|
1959
|
-
{
|
|
1960
|
-
"
|
|
1961
|
-
|
|
1962
|
-
"enum": ["Yes"]
|
|
1963
|
-
},
|
|
1964
|
-
"supplier": {
|
|
1965
|
-
"title": "Supplier (if known)",
|
|
1966
|
-
"type": "string"
|
|
1967
|
-
},
|
|
1968
|
-
"maintenanceAgreements": {
|
|
1969
|
-
"baspiRef": "A7.2",
|
|
1970
|
-
"RDSRef": "Services/Certificates,Services/OtherServices/Certificates",
|
|
1971
|
-
"title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to this service?",
|
|
1972
|
-
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1973
|
-
}
|
|
1974
|
-
},
|
|
1975
|
-
"required": ["maintenanceAgreements"]
|
|
1903
|
+
"supplier": {
|
|
1904
|
+
"title": "Supplier (if known)",
|
|
1905
|
+
"type": "string"
|
|
1976
1906
|
},
|
|
1977
|
-
{
|
|
1978
|
-
"
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
"dateToBeConnected": {
|
|
1983
|
-
"title": "Date to be connected",
|
|
1984
|
-
"type": "string",
|
|
1985
|
-
"format": "date"
|
|
1986
|
-
},
|
|
1987
|
-
"supplier": {
|
|
1988
|
-
"title": "Supplier (if known)",
|
|
1989
|
-
"type": "string"
|
|
1990
|
-
},
|
|
1991
|
-
"maintenanceAgreements": {
|
|
1992
|
-
"baspiRef": "A7.2",
|
|
1993
|
-
"RDSRef": "Services/Certificates,Services/OtherServices/Certificates",
|
|
1994
|
-
"title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to this service?",
|
|
1995
|
-
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1996
|
-
}
|
|
1997
|
-
},
|
|
1998
|
-
"required": ["dateToBeConnected", "maintenanceAgreements"]
|
|
1907
|
+
"maintenanceAgreements": {
|
|
1908
|
+
"baspiRef": "A7.2",
|
|
1909
|
+
"RDSRef": "Services/Certificates,Services/OtherServices/Certificates",
|
|
1910
|
+
"title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to this service?",
|
|
1911
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1999
1912
|
}
|
|
2000
|
-
|
|
1913
|
+
},
|
|
1914
|
+
"required": ["maintenanceAgreements"]
|
|
1915
|
+
},
|
|
1916
|
+
{
|
|
1917
|
+
"properties": {
|
|
1918
|
+
"yesNo": {
|
|
1919
|
+
"enum": ["To be connected"]
|
|
1920
|
+
},
|
|
1921
|
+
"dateToBeConnected": {
|
|
1922
|
+
"title": "Date to be connected",
|
|
1923
|
+
"type": "string",
|
|
1924
|
+
"format": "date"
|
|
1925
|
+
},
|
|
1926
|
+
"supplier": {
|
|
1927
|
+
"title": "Supplier (if known)",
|
|
1928
|
+
"type": "string"
|
|
1929
|
+
},
|
|
1930
|
+
"maintenanceAgreements": {
|
|
1931
|
+
"baspiRef": "A7.2",
|
|
1932
|
+
"RDSRef": "Services/Certificates,Services/OtherServices/Certificates",
|
|
1933
|
+
"title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to this service?",
|
|
1934
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1935
|
+
}
|
|
1936
|
+
},
|
|
1937
|
+
"required": ["dateToBeConnected", "maintenanceAgreements"]
|
|
2001
1938
|
}
|
|
2002
|
-
|
|
1939
|
+
]
|
|
2003
1940
|
},
|
|
2004
1941
|
"yesNoDetailConsents": {
|
|
2005
1942
|
"type": "object",
|
|
@@ -2011,75 +1948,71 @@
|
|
|
2011
1948
|
}
|
|
2012
1949
|
},
|
|
2013
1950
|
"required": ["yesNo"],
|
|
2014
|
-
"
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
1951
|
+
"discriminator": { "propertyName": "yesNo" },
|
|
1952
|
+
"oneOf": [
|
|
1953
|
+
{
|
|
1954
|
+
"properties": {
|
|
1955
|
+
"yesNo": {
|
|
1956
|
+
"enum": ["No"]
|
|
1957
|
+
}
|
|
1958
|
+
}
|
|
1959
|
+
},
|
|
1960
|
+
{
|
|
1961
|
+
"properties": {
|
|
1962
|
+
"yesNo": {
|
|
1963
|
+
"enum": ["Yes"]
|
|
2024
1964
|
},
|
|
2025
|
-
{
|
|
2026
|
-
"
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
"baspiRef": "A3.5",
|
|
2065
|
-
"RDSRef": "WorksAlterationsChanges/isIncomplete",
|
|
2066
|
-
"lawSocietyRef": "TA6/4.3",
|
|
2067
|
-
"title": "Are any of the works listed above unfinished?",
|
|
2068
|
-
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
2069
|
-
}
|
|
2070
|
-
},
|
|
2071
|
-
"required": [
|
|
2072
|
-
"details",
|
|
2073
|
-
"buildingRegApproval",
|
|
2074
|
-
"planningPermission",
|
|
2075
|
-
"listedBuildingConsent",
|
|
2076
|
-
"deedRestrictionConsent",
|
|
2077
|
-
"unfinished"
|
|
2078
|
-
]
|
|
1965
|
+
"details": {
|
|
1966
|
+
"title": "Details",
|
|
1967
|
+
"type": "string",
|
|
1968
|
+
"minLength": 1
|
|
1969
|
+
},
|
|
1970
|
+
"buildingRegApproval": {
|
|
1971
|
+
"baspiRef": "A3.4.1",
|
|
1972
|
+
"RDSRef": "WorksAlterationsChanges/ConsentApproval",
|
|
1973
|
+
"lawSocietyRef": "TA6/4.2",
|
|
1974
|
+
"title": "Was building regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
|
|
1975
|
+
"$ref": "#/$defs/yesNoNotRequiredDetailIfNo"
|
|
1976
|
+
},
|
|
1977
|
+
"planningPermission": {
|
|
1978
|
+
"baspiRef": "A3.4.2",
|
|
1979
|
+
"RDSRef": "WorksAlterationsChanges/ConsentApproval",
|
|
1980
|
+
"lawSocietyRef": "TA6/4.4",
|
|
1981
|
+
"title": "Was planning permission obtained?",
|
|
1982
|
+
"$ref": "#/$defs/yesNoNotRequiredDetailIfNo"
|
|
1983
|
+
},
|
|
1984
|
+
"listedBuildingConsent": {
|
|
1985
|
+
"baspiRef": "A3.4.3",
|
|
1986
|
+
"RDSRef": "WorksAlterationsChanges/ConsentApproval",
|
|
1987
|
+
"lawSocietyRef": "TA6/4.2",
|
|
1988
|
+
"title": "Was listed building consent obtained?",
|
|
1989
|
+
"$ref": "#/$defs/yesNoNotRequiredDetailIfNo"
|
|
1990
|
+
},
|
|
1991
|
+
"deedRestrictionConsent": {
|
|
1992
|
+
"baspiRef": "A3.4.4",
|
|
1993
|
+
"RDSRef": "WorksAlterationsChanges/ConsentApproval",
|
|
1994
|
+
"lawSocietyRef": "TA6/4.2",
|
|
1995
|
+
"title": "Was any consent under a restriction in the deeds obtained? E.g. if your deeds require consent from someone else to alter or extend the property",
|
|
1996
|
+
"$ref": "#/$defs/yesNoNotRequiredDetailIfNo"
|
|
1997
|
+
},
|
|
1998
|
+
"unfinished": {
|
|
1999
|
+
"baspiRef": "A3.5",
|
|
2000
|
+
"RDSRef": "WorksAlterationsChanges/isIncomplete",
|
|
2001
|
+
"lawSocietyRef": "TA6/4.3",
|
|
2002
|
+
"title": "Are any of the works listed above unfinished?",
|
|
2003
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
2079
2004
|
}
|
|
2005
|
+
},
|
|
2006
|
+
"required": [
|
|
2007
|
+
"details",
|
|
2008
|
+
"buildingRegApproval",
|
|
2009
|
+
"planningPermission",
|
|
2010
|
+
"listedBuildingConsent",
|
|
2011
|
+
"deedRestrictionConsent",
|
|
2012
|
+
"unfinished"
|
|
2080
2013
|
]
|
|
2081
2014
|
}
|
|
2082
|
-
|
|
2015
|
+
]
|
|
2083
2016
|
},
|
|
2084
2017
|
"address": {
|
|
2085
2018
|
"type": "object",
|