@pdtf/schemas 2.0.0-3 → 2.0.0-31
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 +50 -33
- package/package.json +2 -1
- package/src/examples/v2/exampleTransaction.json +165 -129
- package/src/schemas/v2/combined.json +9022 -1468
- package/src/schemas/v2/overlays/baspi.json +1971 -1020
- package/src/schemas/v2/overlays/con29DW.json +256 -127
- package/src/schemas/v2/overlays/con29R.json +1 -1
- package/src/schemas/v2/overlays/fme1.json +46 -212
- package/src/schemas/v2/overlays/lpe1.json +92 -63
- package/src/schemas/v2/overlays/nts.json +39 -43
- package/src/schemas/v2/overlays/rds.json +679 -456
- package/src/schemas/v2/overlays/ta10.json +847 -1
- package/src/schemas/v2/overlays/ta6.json +3727 -559
- package/src/schemas/v2/overlays/ta7.json +98 -33
- package/src/schemas/v2/{core.json → pdtf-transaction.json} +7938 -1356
- package/src/schemas/v2/skeleton.json +3645 -0
- package/src/tests/v2/transactionSchema.test.js +84 -5
- package/src/tests/v2/verifiedClaimsValidator.test.js +128 -0
- package/src/utils/extractOverlay.js +48 -10
- package/src/utils/extractProperties.js +44 -0
- package/src/utils/hmlrLLC1.json +275 -0
- package/src/schemas/v2/merged.json +0 -28697
|
@@ -2,8 +2,6 @@
|
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
3
|
"$id": "https://trust.propdata.org.uk/schemas/v2/overlays/baspi.json",
|
|
4
4
|
"required": [
|
|
5
|
-
"transactionId",
|
|
6
|
-
"status",
|
|
7
5
|
"participants",
|
|
8
6
|
"propertyPack"
|
|
9
7
|
],
|
|
@@ -32,8 +30,12 @@
|
|
|
32
30
|
}
|
|
33
31
|
},
|
|
34
32
|
"propertyPack": {
|
|
35
|
-
"baspiRef": "
|
|
33
|
+
"baspiRef": "0",
|
|
36
34
|
"title": "Property Pack",
|
|
35
|
+
"required": [
|
|
36
|
+
"materialFacts",
|
|
37
|
+
"additionalLegalInfo"
|
|
38
|
+
],
|
|
37
39
|
"properties": {
|
|
38
40
|
"materialFacts": {
|
|
39
41
|
"baspiRef": "A",
|
|
@@ -55,8 +57,7 @@
|
|
|
55
57
|
"specialistIssues",
|
|
56
58
|
"fixturesAndFittings",
|
|
57
59
|
"waterAndDrainage",
|
|
58
|
-
"
|
|
59
|
-
"greenDealLoan",
|
|
60
|
+
"connectedUtilities",
|
|
60
61
|
"centralHeating",
|
|
61
62
|
"insurance",
|
|
62
63
|
"boundaries",
|
|
@@ -110,7 +111,7 @@
|
|
|
110
111
|
},
|
|
111
112
|
"delayFactors": {
|
|
112
113
|
"baspiRef": "A1.2",
|
|
113
|
-
"title": "Delay
|
|
114
|
+
"title": "Delay factors",
|
|
114
115
|
"required": [
|
|
115
116
|
"hasDelayFactors"
|
|
116
117
|
],
|
|
@@ -118,7 +119,7 @@
|
|
|
118
119
|
"hasDelayFactors": {
|
|
119
120
|
"baspiRef": "A1.2.1",
|
|
120
121
|
"title": "Are you aware of any factors which might delay or complicate the sale?",
|
|
121
|
-
"description": "E.g. family split, pending application for grant of probate, absent seller or unregistered title?
|
|
122
|
+
"description": "E.g. family split, pending application for grant of probate, absent seller or unregistered title?",
|
|
122
123
|
"discriminator": {
|
|
123
124
|
"propertyName": "yesNo"
|
|
124
125
|
},
|
|
@@ -141,7 +142,7 @@
|
|
|
141
142
|
},
|
|
142
143
|
"details": {
|
|
143
144
|
"baspiRef": "A1.2.2",
|
|
144
|
-
"title": "
|
|
145
|
+
"title": "Provide details and likely timescale for delay"
|
|
145
146
|
},
|
|
146
147
|
"attachments": {
|
|
147
148
|
"baspiRef": "A1.2.3",
|
|
@@ -223,7 +224,7 @@
|
|
|
223
224
|
},
|
|
224
225
|
"details": {
|
|
225
226
|
"baspiRef": "A1.3.0.2.2",
|
|
226
|
-
"title": "
|
|
227
|
+
"title": "Describe the share for sale (e.g. Ground floor flat only)"
|
|
227
228
|
}
|
|
228
229
|
},
|
|
229
230
|
"required": [
|
|
@@ -233,7 +234,16 @@
|
|
|
233
234
|
],
|
|
234
235
|
"required": [
|
|
235
236
|
"yesNo"
|
|
236
|
-
]
|
|
237
|
+
],
|
|
238
|
+
"properties": {
|
|
239
|
+
"yesNo": {
|
|
240
|
+
"baspiRef": "A1.3.0.2.1",
|
|
241
|
+
"enum": [
|
|
242
|
+
"Yes",
|
|
243
|
+
"No"
|
|
244
|
+
]
|
|
245
|
+
}
|
|
246
|
+
}
|
|
237
247
|
}
|
|
238
248
|
},
|
|
239
249
|
"required": [
|
|
@@ -257,17 +267,85 @@
|
|
|
257
267
|
],
|
|
258
268
|
"properties": {
|
|
259
269
|
"contactDetails": {
|
|
270
|
+
"baspiRef": "A1.5.1",
|
|
271
|
+
"title": "Contact Details",
|
|
272
|
+
"description": "Complete the details for the relevant parties",
|
|
273
|
+
"required": [
|
|
274
|
+
"rentchargeOwner",
|
|
275
|
+
"managingAgent"
|
|
276
|
+
],
|
|
260
277
|
"properties": {
|
|
261
278
|
"rentchargeOwner": {
|
|
262
279
|
"baspiRef": "A1.5.4",
|
|
263
|
-
"title": "Rentcharge Owner"
|
|
280
|
+
"title": "Rentcharge Owner",
|
|
281
|
+
"required": [
|
|
282
|
+
"contact"
|
|
283
|
+
],
|
|
284
|
+
"properties": {
|
|
285
|
+
"contact": {
|
|
286
|
+
"baspiRef": "A1.5.4.1",
|
|
287
|
+
"required": [
|
|
288
|
+
"nameOrOrganisation",
|
|
289
|
+
"address",
|
|
290
|
+
"emailAddress"
|
|
291
|
+
],
|
|
292
|
+
"properties": {
|
|
293
|
+
"nameOrOrganisation": {
|
|
294
|
+
"baspiRef": "A1.5.4.1.1",
|
|
295
|
+
"title": "Name or organisation"
|
|
296
|
+
},
|
|
297
|
+
"address": {
|
|
298
|
+
"baspiRef": "A1.5.4.1.2",
|
|
299
|
+
"title": "Address",
|
|
300
|
+
"required": [
|
|
301
|
+
"line1",
|
|
302
|
+
"postcode"
|
|
303
|
+
],
|
|
304
|
+
"properties": {
|
|
305
|
+
"line1": {
|
|
306
|
+
"baspiRef": "A1.5.4.1.2.1",
|
|
307
|
+
"title": "Address line 1"
|
|
308
|
+
},
|
|
309
|
+
"line2": {
|
|
310
|
+
"baspiRef": "A1.5.4.1.2.2",
|
|
311
|
+
"title": "Address line 2"
|
|
312
|
+
},
|
|
313
|
+
"line3": {
|
|
314
|
+
"baspiRef": "A1.5.4.1.2.3",
|
|
315
|
+
"title": "Address line 3"
|
|
316
|
+
},
|
|
317
|
+
"town": {
|
|
318
|
+
"baspiRef": "A1.5.4.1.2.4",
|
|
319
|
+
"title": "Town"
|
|
320
|
+
},
|
|
321
|
+
"postcode": {
|
|
322
|
+
"baspiRef": "A1.5.4.1.2.5",
|
|
323
|
+
"title": "Postcode"
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
"emailAddress": {
|
|
328
|
+
"baspiRef": "A1.5.5.1.3",
|
|
329
|
+
"title": "Email address"
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
}
|
|
264
334
|
},
|
|
265
335
|
"managingAgent": {
|
|
266
336
|
"baspiRef": "A1.5.5",
|
|
267
337
|
"title": "Managing Agent",
|
|
338
|
+
"required": [
|
|
339
|
+
"contact"
|
|
340
|
+
],
|
|
268
341
|
"properties": {
|
|
269
342
|
"contact": {
|
|
270
343
|
"baspiRef": "A1.5.5.1",
|
|
344
|
+
"required": [
|
|
345
|
+
"nameOrOrganisation",
|
|
346
|
+
"telephone",
|
|
347
|
+
"emailAddress"
|
|
348
|
+
],
|
|
271
349
|
"properties": {
|
|
272
350
|
"nameOrOrganisation": {
|
|
273
351
|
"baspiRef": "A1.5.5.1.1",
|
|
@@ -276,6 +354,10 @@
|
|
|
276
354
|
"address": {
|
|
277
355
|
"baspiRef": "A1.5.5.1.2",
|
|
278
356
|
"title": "Address",
|
|
357
|
+
"required": [
|
|
358
|
+
"line1",
|
|
359
|
+
"postcode"
|
|
360
|
+
],
|
|
279
361
|
"properties": {
|
|
280
362
|
"line1": {
|
|
281
363
|
"baspiRef": "A1.5.5.1.2.1",
|
|
@@ -308,6 +390,154 @@
|
|
|
308
390
|
}
|
|
309
391
|
}
|
|
310
392
|
}
|
|
393
|
+
},
|
|
394
|
+
"transferAndRegistration": {
|
|
395
|
+
"properties": {
|
|
396
|
+
"requirementsToBeMemberOfManagementCompany": {
|
|
397
|
+
"baspiRef": "A1.5.6",
|
|
398
|
+
"title": "Is the incoming Owner required to take a share in, or become a member of, the Management Company?",
|
|
399
|
+
"discriminator": {
|
|
400
|
+
"propertyName": "yesNo"
|
|
401
|
+
},
|
|
402
|
+
"oneOf": [
|
|
403
|
+
{
|
|
404
|
+
"properties": {
|
|
405
|
+
"yesNo": {
|
|
406
|
+
"enum": [
|
|
407
|
+
"No"
|
|
408
|
+
]
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"properties": {
|
|
414
|
+
"yesNo": {
|
|
415
|
+
"enum": [
|
|
416
|
+
"Yes"
|
|
417
|
+
]
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
],
|
|
422
|
+
"required": [
|
|
423
|
+
"yesNo"
|
|
424
|
+
],
|
|
425
|
+
"properties": {
|
|
426
|
+
"yesNo": {
|
|
427
|
+
"baspiRef": "A1.5.6.1",
|
|
428
|
+
"enum": [
|
|
429
|
+
"Yes",
|
|
430
|
+
"No"
|
|
431
|
+
]
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
"serviceCharge": {
|
|
438
|
+
"baspiRef": "A1.5.1",
|
|
439
|
+
"title": "Service Charge",
|
|
440
|
+
"required": [
|
|
441
|
+
"annualServiceCharge",
|
|
442
|
+
"largeAdditionalExpense",
|
|
443
|
+
"reserveFund"
|
|
444
|
+
],
|
|
445
|
+
"properties": {
|
|
446
|
+
"annualServiceCharge": {
|
|
447
|
+
"baspiRef": "A1.5.1.1.2",
|
|
448
|
+
"title": "What is the annual Service Charge payable by this Property?",
|
|
449
|
+
"description": "This should include any sums payable for the maintenance of the managed area"
|
|
450
|
+
},
|
|
451
|
+
"largeAdditionalExpense": {
|
|
452
|
+
"baspiRef": "A1.5.2.1",
|
|
453
|
+
"title": "Does the seller know of any expense (e.g. the cost of redecoration of outside or communal areas not usually incurred annually) likely to be shown in the service charge accounts within the next three years?",
|
|
454
|
+
"discriminator": {
|
|
455
|
+
"propertyName": "yesNo"
|
|
456
|
+
},
|
|
457
|
+
"oneOf": [
|
|
458
|
+
{
|
|
459
|
+
"properties": {
|
|
460
|
+
"yesNo": {
|
|
461
|
+
"enum": [
|
|
462
|
+
"No"
|
|
463
|
+
]
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"properties": {
|
|
469
|
+
"yesNo": {
|
|
470
|
+
"enum": [
|
|
471
|
+
"Yes"
|
|
472
|
+
]
|
|
473
|
+
},
|
|
474
|
+
"details": {
|
|
475
|
+
"baspiRef": "A1.5.2.3",
|
|
476
|
+
"title": "Details"
|
|
477
|
+
}
|
|
478
|
+
},
|
|
479
|
+
"required": [
|
|
480
|
+
"details"
|
|
481
|
+
]
|
|
482
|
+
}
|
|
483
|
+
],
|
|
484
|
+
"required": [
|
|
485
|
+
"yesNo"
|
|
486
|
+
],
|
|
487
|
+
"properties": {
|
|
488
|
+
"yesNo": {
|
|
489
|
+
"baspiRef": "A1.5.2.2",
|
|
490
|
+
"enum": [
|
|
491
|
+
"Yes",
|
|
492
|
+
"No"
|
|
493
|
+
]
|
|
494
|
+
}
|
|
495
|
+
}
|
|
496
|
+
},
|
|
497
|
+
"transferFees": {
|
|
498
|
+
"baspiRef": "A1.5.3",
|
|
499
|
+
"title": "Are there any transfer fees, deferred charges or similar fees, expressed as a percentage of the Property's value payable on an event such as resale or subletting?",
|
|
500
|
+
"discriminator": {
|
|
501
|
+
"propertyName": "yesNo"
|
|
502
|
+
},
|
|
503
|
+
"oneOf": [
|
|
504
|
+
{
|
|
505
|
+
"properties": {
|
|
506
|
+
"yesNo": {
|
|
507
|
+
"enum": [
|
|
508
|
+
"No"
|
|
509
|
+
]
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
"properties": {
|
|
515
|
+
"yesNo": {
|
|
516
|
+
"enum": [
|
|
517
|
+
"Yes"
|
|
518
|
+
]
|
|
519
|
+
},
|
|
520
|
+
"details": {
|
|
521
|
+
"baspiRef": "A1.5.3.2",
|
|
522
|
+
"title": "Provide details."
|
|
523
|
+
}
|
|
524
|
+
}
|
|
525
|
+
}
|
|
526
|
+
],
|
|
527
|
+
"required": [
|
|
528
|
+
"yesNo"
|
|
529
|
+
],
|
|
530
|
+
"properties": {
|
|
531
|
+
"yesNo": {
|
|
532
|
+
"baspiRef": "A1.5.3.1",
|
|
533
|
+
"enum": [
|
|
534
|
+
"Yes",
|
|
535
|
+
"No"
|
|
536
|
+
]
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
}
|
|
311
541
|
}
|
|
312
542
|
}
|
|
313
543
|
}
|
|
@@ -327,13 +557,95 @@
|
|
|
327
557
|
"baspiRef": "A1.5",
|
|
328
558
|
"title": "Leasehold information",
|
|
329
559
|
"required": [
|
|
560
|
+
"typeOfLeasehold",
|
|
561
|
+
"leaseTerm",
|
|
330
562
|
"contactDetails",
|
|
331
563
|
"groundRent",
|
|
332
564
|
"transferAndRegistration",
|
|
333
|
-
"serviceCharge"
|
|
334
|
-
"general"
|
|
565
|
+
"serviceCharge"
|
|
335
566
|
],
|
|
336
567
|
"properties": {
|
|
568
|
+
"typeOfLeasehold": {
|
|
569
|
+
"baspiRef": "A1.3.1",
|
|
570
|
+
"discriminator": {
|
|
571
|
+
"propertyName": "leaseholdType"
|
|
572
|
+
},
|
|
573
|
+
"oneOf": [
|
|
574
|
+
{
|
|
575
|
+
"properties": {
|
|
576
|
+
"leaseholdType": {
|
|
577
|
+
"enum": [
|
|
578
|
+
"Flat",
|
|
579
|
+
"Long leasehold house"
|
|
580
|
+
]
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"properties": {
|
|
586
|
+
"leaseholdType": {
|
|
587
|
+
"enum": [
|
|
588
|
+
"Shared ownership"
|
|
589
|
+
]
|
|
590
|
+
},
|
|
591
|
+
"sharedOwnershipPercentage": {
|
|
592
|
+
"baspiRef": "A1.3.1.1",
|
|
593
|
+
"title": "Shared ownership percentage"
|
|
594
|
+
},
|
|
595
|
+
"sharedOwnershipRent": {
|
|
596
|
+
"baspiRef": "A1.3.1.2",
|
|
597
|
+
"title": "Shared ownership rent (£)"
|
|
598
|
+
},
|
|
599
|
+
"sharedOwnershipRentFrequency": {
|
|
600
|
+
"baspiRef": "A1.3.1.3",
|
|
601
|
+
"title": "Shared ownership rent frequency",
|
|
602
|
+
"enum": [
|
|
603
|
+
"Yearly",
|
|
604
|
+
"Monthly",
|
|
605
|
+
"Weekly"
|
|
606
|
+
]
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
"required": [
|
|
610
|
+
"sharedOwnershipPercentage",
|
|
611
|
+
"sharedOwnershipRent",
|
|
612
|
+
"sharedOwnershipRentFrequency"
|
|
613
|
+
]
|
|
614
|
+
}
|
|
615
|
+
],
|
|
616
|
+
"required": [
|
|
617
|
+
"leaseholdType"
|
|
618
|
+
],
|
|
619
|
+
"properties": {
|
|
620
|
+
"leaseholdType": {
|
|
621
|
+
"baspiRef": "A1.3.1",
|
|
622
|
+
"title": "What type of leasehold property does the seller own?",
|
|
623
|
+
"description": "‘Flat’ includes maisonette and apartment.",
|
|
624
|
+
"enum": [
|
|
625
|
+
"Flat",
|
|
626
|
+
"Shared ownership",
|
|
627
|
+
"Long leasehold house"
|
|
628
|
+
]
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
"leaseTerm": {
|
|
633
|
+
"baspiRef": "A1.4.1",
|
|
634
|
+
"required": [
|
|
635
|
+
"startYearOfLease",
|
|
636
|
+
"lengthOfLeaseInYears"
|
|
637
|
+
],
|
|
638
|
+
"properties": {
|
|
639
|
+
"startYearOfLease": {
|
|
640
|
+
"baspiRef": "A1.4.1.1",
|
|
641
|
+
"title": "Year that the lease commenced"
|
|
642
|
+
},
|
|
643
|
+
"lengthOfLeaseInYears": {
|
|
644
|
+
"baspiRef": "A1.4.1.2",
|
|
645
|
+
"title": "Length of lease (years)"
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
},
|
|
337
649
|
"contactDetails": {
|
|
338
650
|
"baspiRef": "A1.5.4",
|
|
339
651
|
"title": "Contact Details",
|
|
@@ -355,13 +667,16 @@
|
|
|
355
667
|
"title": "Landlord",
|
|
356
668
|
"description": "The landlord (or freeholder) may be, for example, a private individual, a housing association, or a management company owned by the residents",
|
|
357
669
|
"required": [
|
|
358
|
-
"
|
|
359
|
-
"address",
|
|
360
|
-
"emailAddress"
|
|
670
|
+
"contact"
|
|
361
671
|
],
|
|
362
672
|
"properties": {
|
|
363
673
|
"contact": {
|
|
364
674
|
"baspiRef": "A1.5.4.1",
|
|
675
|
+
"required": [
|
|
676
|
+
"nameOrOrganisation",
|
|
677
|
+
"address",
|
|
678
|
+
"emailAddress"
|
|
679
|
+
],
|
|
365
680
|
"properties": {
|
|
366
681
|
"nameOrOrganisation": {
|
|
367
682
|
"baspiRef": "A1.5.4.1.1",
|
|
@@ -409,6 +724,9 @@
|
|
|
409
724
|
"baspiRef": "A1.5.5",
|
|
410
725
|
"title": "Managing Agent",
|
|
411
726
|
"description": "A managing agent may be employed by the landlord or by the tenants’ management company to collect the rent and/or manage the building.",
|
|
727
|
+
"required": [
|
|
728
|
+
"contact"
|
|
729
|
+
],
|
|
412
730
|
"properties": {
|
|
413
731
|
"contact": {
|
|
414
732
|
"baspiRef": "A1.5.5.1",
|
|
@@ -494,7 +812,7 @@
|
|
|
494
812
|
"yesNoNotApplicable": {
|
|
495
813
|
"enum": [
|
|
496
814
|
"No",
|
|
497
|
-
"
|
|
815
|
+
"Not applicable"
|
|
498
816
|
]
|
|
499
817
|
}
|
|
500
818
|
}
|
|
@@ -511,7 +829,17 @@
|
|
|
511
829
|
],
|
|
512
830
|
"required": [
|
|
513
831
|
"yesNoNotApplicable"
|
|
514
|
-
]
|
|
832
|
+
],
|
|
833
|
+
"properties": {
|
|
834
|
+
"yesNoNotApplicable": {
|
|
835
|
+
"baspiRef": "A1.5.6.1",
|
|
836
|
+
"enum": [
|
|
837
|
+
"Yes",
|
|
838
|
+
"No",
|
|
839
|
+
"Not applicable"
|
|
840
|
+
]
|
|
841
|
+
}
|
|
842
|
+
}
|
|
515
843
|
}
|
|
516
844
|
}
|
|
517
845
|
},
|
|
@@ -540,7 +868,7 @@
|
|
|
540
868
|
},
|
|
541
869
|
"annualGroundRent": {
|
|
542
870
|
"baspiRef": "A1.4.2.2",
|
|
543
|
-
"title": "What is the annual ground rent payable?"
|
|
871
|
+
"title": "What is the annual ground rent payable? (£)"
|
|
544
872
|
},
|
|
545
873
|
"rentSubjectToIncrease": {
|
|
546
874
|
"baspiRef": "A1.4.2.3",
|
|
@@ -566,13 +894,13 @@
|
|
|
566
894
|
]
|
|
567
895
|
},
|
|
568
896
|
"rentReviewFrequency": {
|
|
569
|
-
"baspiRef": "A1.4.2.3.
|
|
897
|
+
"baspiRef": "A1.4.2.3.2",
|
|
570
898
|
"title": "How often is the rent reviewed?"
|
|
571
899
|
},
|
|
572
900
|
"rentIncreaseCalculated": {
|
|
573
|
-
"baspiRef": "A1.4.2.3.
|
|
901
|
+
"baspiRef": "A1.4.2.3.3",
|
|
574
902
|
"title": "How is the increase calculated?",
|
|
575
|
-
"description": "
|
|
903
|
+
"description": "e.g. set figure, doubling, in line with Retail Price Index, Consumer Price Index, etc"
|
|
576
904
|
}
|
|
577
905
|
},
|
|
578
906
|
"required": [
|
|
@@ -583,7 +911,16 @@
|
|
|
583
911
|
],
|
|
584
912
|
"required": [
|
|
585
913
|
"yesNo"
|
|
586
|
-
]
|
|
914
|
+
],
|
|
915
|
+
"properties": {
|
|
916
|
+
"yesNo": {
|
|
917
|
+
"baspiRef": "A1.4.2.3.1",
|
|
918
|
+
"enum": [
|
|
919
|
+
"Yes",
|
|
920
|
+
"No"
|
|
921
|
+
]
|
|
922
|
+
}
|
|
923
|
+
}
|
|
587
924
|
}
|
|
588
925
|
},
|
|
589
926
|
"required": [
|
|
@@ -660,10 +997,13 @@
|
|
|
660
997
|
"baspiRef": "A1.5.2.3",
|
|
661
998
|
"title": "Details"
|
|
662
999
|
}
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
1000
|
+
},
|
|
1001
|
+
"required": [
|
|
1002
|
+
"details"
|
|
1003
|
+
]
|
|
1004
|
+
}
|
|
1005
|
+
],
|
|
1006
|
+
"required": [
|
|
667
1007
|
"yesNo"
|
|
668
1008
|
],
|
|
669
1009
|
"properties": {
|
|
@@ -682,6 +1022,45 @@
|
|
|
682
1022
|
"discriminator": {
|
|
683
1023
|
"propertyName": "yesNo"
|
|
684
1024
|
},
|
|
1025
|
+
"oneOf": [
|
|
1026
|
+
{
|
|
1027
|
+
"properties": {
|
|
1028
|
+
"yesNo": {
|
|
1029
|
+
"enum": [
|
|
1030
|
+
"No"
|
|
1031
|
+
]
|
|
1032
|
+
}
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"properties": {
|
|
1037
|
+
"yesNo": {
|
|
1038
|
+
"enum": [
|
|
1039
|
+
"Yes"
|
|
1040
|
+
]
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
],
|
|
1045
|
+
"required": [
|
|
1046
|
+
"yesNo"
|
|
1047
|
+
],
|
|
1048
|
+
"properties": {
|
|
1049
|
+
"yesNo": {
|
|
1050
|
+
"baspiRef": "1.5.2.1.1",
|
|
1051
|
+
"enum": [
|
|
1052
|
+
"Yes",
|
|
1053
|
+
"No"
|
|
1054
|
+
]
|
|
1055
|
+
}
|
|
1056
|
+
}
|
|
1057
|
+
},
|
|
1058
|
+
"transferFees": {
|
|
1059
|
+
"baspiRef": "A1.5.3",
|
|
1060
|
+
"title": "Are there any transfer fees deferred service charges or similar fees, expressed as a percentage of the Property's value, payable on an event such as resale or subletting?",
|
|
1061
|
+
"discriminator": {
|
|
1062
|
+
"propertyName": "yesNo"
|
|
1063
|
+
},
|
|
685
1064
|
"oneOf": [
|
|
686
1065
|
{
|
|
687
1066
|
"properties": {
|
|
@@ -700,13 +1079,10 @@
|
|
|
700
1079
|
]
|
|
701
1080
|
},
|
|
702
1081
|
"details": {
|
|
703
|
-
"baspiRef": "
|
|
704
|
-
"title": "Provide details"
|
|
1082
|
+
"baspiRef": "A1.5.3.2",
|
|
1083
|
+
"title": "Provide details."
|
|
705
1084
|
}
|
|
706
|
-
}
|
|
707
|
-
"required": [
|
|
708
|
-
"details"
|
|
709
|
-
]
|
|
1085
|
+
}
|
|
710
1086
|
}
|
|
711
1087
|
],
|
|
712
1088
|
"required": [
|
|
@@ -714,7 +1090,7 @@
|
|
|
714
1090
|
],
|
|
715
1091
|
"properties": {
|
|
716
1092
|
"yesNo": {
|
|
717
|
-
"baspiRef": "
|
|
1093
|
+
"baspiRef": "A1.5.3.1",
|
|
718
1094
|
"enum": [
|
|
719
1095
|
"Yes",
|
|
720
1096
|
"No"
|
|
@@ -743,87 +1119,6 @@
|
|
|
743
1119
|
]
|
|
744
1120
|
}
|
|
745
1121
|
}
|
|
746
|
-
},
|
|
747
|
-
"general": {
|
|
748
|
-
"properties": {
|
|
749
|
-
"typeOfLeasehold": {
|
|
750
|
-
"baspiRef": "A1.3.1",
|
|
751
|
-
"discriminator": {
|
|
752
|
-
"propertyName": "leaseholdType"
|
|
753
|
-
},
|
|
754
|
-
"oneOf": [
|
|
755
|
-
{
|
|
756
|
-
"properties": {
|
|
757
|
-
"leaseholdType": {
|
|
758
|
-
"enum": [
|
|
759
|
-
"Flat",
|
|
760
|
-
"Long leasehold house"
|
|
761
|
-
]
|
|
762
|
-
}
|
|
763
|
-
}
|
|
764
|
-
},
|
|
765
|
-
{
|
|
766
|
-
"properties": {
|
|
767
|
-
"leaseholdType": {
|
|
768
|
-
"enum": [
|
|
769
|
-
"Shared ownership"
|
|
770
|
-
]
|
|
771
|
-
},
|
|
772
|
-
"sharedOwnershipPercentage": {
|
|
773
|
-
"baspiRef": "A1.3.1.1",
|
|
774
|
-
"title": "Shared ownership percentage"
|
|
775
|
-
},
|
|
776
|
-
"sharedOwnershipRent": {
|
|
777
|
-
"baspiRef": "A1.3.1.2",
|
|
778
|
-
"title": "Shared ownership rent (£)"
|
|
779
|
-
},
|
|
780
|
-
"sharedOwnershipRentFrequency": {
|
|
781
|
-
"baspiRef": "A1.3.1.3",
|
|
782
|
-
"title": "Shared ownership rent frequency",
|
|
783
|
-
"enum": [
|
|
784
|
-
"Yearly",
|
|
785
|
-
"Monthly",
|
|
786
|
-
"Weekly"
|
|
787
|
-
]
|
|
788
|
-
}
|
|
789
|
-
},
|
|
790
|
-
"required": [
|
|
791
|
-
"sharedOwnershipPercentage",
|
|
792
|
-
"sharedOwnershipRent",
|
|
793
|
-
"sharedOwnershipRentFrequency"
|
|
794
|
-
]
|
|
795
|
-
}
|
|
796
|
-
],
|
|
797
|
-
"required": [
|
|
798
|
-
"leaseholdType"
|
|
799
|
-
],
|
|
800
|
-
"properties": {
|
|
801
|
-
"leaseholdType": {
|
|
802
|
-
"baspiRef": "A1.3.1",
|
|
803
|
-
"title": "What type of leasehold property does the seller own?",
|
|
804
|
-
"description": "‘Flat’ includes maisonette and apartment.",
|
|
805
|
-
"enum": [
|
|
806
|
-
"Flat",
|
|
807
|
-
"Shared ownership",
|
|
808
|
-
"Long leasehold house"
|
|
809
|
-
]
|
|
810
|
-
}
|
|
811
|
-
}
|
|
812
|
-
},
|
|
813
|
-
"leaseTerm": {
|
|
814
|
-
"baspiRef": "A1.4.1",
|
|
815
|
-
"properties": {
|
|
816
|
-
"startYearOfLease": {
|
|
817
|
-
"baspiRef": "A1.4.1.1",
|
|
818
|
-
"title": "Year that the lease commenced"
|
|
819
|
-
},
|
|
820
|
-
"lengthOfLeaseInYears": {
|
|
821
|
-
"baspiRef": "A1.4.1.2",
|
|
822
|
-
"title": "Length of lease (years)"
|
|
823
|
-
}
|
|
824
|
-
}
|
|
825
|
-
}
|
|
826
|
-
}
|
|
827
1122
|
}
|
|
828
1123
|
}
|
|
829
1124
|
}
|
|
@@ -955,7 +1250,8 @@
|
|
|
955
1250
|
"baspiRef": "A1.6.2.1",
|
|
956
1251
|
"enum": [
|
|
957
1252
|
"Yes",
|
|
958
|
-
"No"
|
|
1253
|
+
"No",
|
|
1254
|
+
"Not known"
|
|
959
1255
|
]
|
|
960
1256
|
}
|
|
961
1257
|
}
|
|
@@ -998,7 +1294,8 @@
|
|
|
998
1294
|
"properties": {
|
|
999
1295
|
"yesNo": {
|
|
1000
1296
|
"enum": [
|
|
1001
|
-
"No"
|
|
1297
|
+
"No",
|
|
1298
|
+
"Not known"
|
|
1002
1299
|
]
|
|
1003
1300
|
}
|
|
1004
1301
|
}
|
|
@@ -1037,7 +1334,8 @@
|
|
|
1037
1334
|
"baspiRef": "A1.7.1.1",
|
|
1038
1335
|
"enum": [
|
|
1039
1336
|
"Yes",
|
|
1040
|
-
"No"
|
|
1337
|
+
"No",
|
|
1338
|
+
"Not known"
|
|
1041
1339
|
]
|
|
1042
1340
|
}
|
|
1043
1341
|
}
|
|
@@ -1053,7 +1351,8 @@
|
|
|
1053
1351
|
"properties": {
|
|
1054
1352
|
"yesNo": {
|
|
1055
1353
|
"enum": [
|
|
1056
|
-
"No"
|
|
1354
|
+
"No",
|
|
1355
|
+
"Not known"
|
|
1057
1356
|
]
|
|
1058
1357
|
}
|
|
1059
1358
|
}
|
|
@@ -1092,7 +1391,8 @@
|
|
|
1092
1391
|
"baspiRef": "A1.7.2.1",
|
|
1093
1392
|
"enum": [
|
|
1094
1393
|
"Yes",
|
|
1095
|
-
"No"
|
|
1394
|
+
"No",
|
|
1395
|
+
"Not known"
|
|
1096
1396
|
]
|
|
1097
1397
|
}
|
|
1098
1398
|
}
|
|
@@ -1108,7 +1408,8 @@
|
|
|
1108
1408
|
"properties": {
|
|
1109
1409
|
"yesNo": {
|
|
1110
1410
|
"enum": [
|
|
1111
|
-
"No"
|
|
1411
|
+
"No",
|
|
1412
|
+
"Not known"
|
|
1112
1413
|
]
|
|
1113
1414
|
}
|
|
1114
1415
|
}
|
|
@@ -1120,12 +1421,8 @@
|
|
|
1120
1421
|
"Yes"
|
|
1121
1422
|
]
|
|
1122
1423
|
},
|
|
1123
|
-
"details": {
|
|
1124
|
-
"baspiRef": "A1.7.3.2",
|
|
1125
|
-
"title": "Details"
|
|
1126
|
-
},
|
|
1127
1424
|
"workCarriedOut": {
|
|
1128
|
-
"baspiRef": "A1.7.3.
|
|
1425
|
+
"baspiRef": "A1.7.3.2",
|
|
1129
1426
|
"title": "Has work been carried out to any trees which are protected by the order?",
|
|
1130
1427
|
"discriminator": {
|
|
1131
1428
|
"propertyName": "yesNo"
|
|
@@ -1147,17 +1444,18 @@
|
|
|
1147
1444
|
"Yes"
|
|
1148
1445
|
]
|
|
1149
1446
|
},
|
|
1150
|
-
"
|
|
1151
|
-
"baspiRef": "A1.7.3.
|
|
1152
|
-
"title": "Were the relevant consents obtained?
|
|
1447
|
+
"consentsObtained": {
|
|
1448
|
+
"baspiRef": "A1.7.3.3",
|
|
1449
|
+
"title": "Were the relevant consents obtained?",
|
|
1153
1450
|
"enum": [
|
|
1154
1451
|
"Yes",
|
|
1155
|
-
"No"
|
|
1452
|
+
"No",
|
|
1453
|
+
"Not known"
|
|
1156
1454
|
]
|
|
1157
1455
|
},
|
|
1158
1456
|
"attachments": {
|
|
1159
1457
|
"baspiRef": "A1.7.3.4",
|
|
1160
|
-
"title": "
|
|
1458
|
+
"title": "Provide any relevant documentation",
|
|
1161
1459
|
"enum": [
|
|
1162
1460
|
"Attached",
|
|
1163
1461
|
"To follow"
|
|
@@ -1165,7 +1463,7 @@
|
|
|
1165
1463
|
}
|
|
1166
1464
|
},
|
|
1167
1465
|
"required": [
|
|
1168
|
-
"
|
|
1466
|
+
"consentsObtained"
|
|
1169
1467
|
]
|
|
1170
1468
|
}
|
|
1171
1469
|
],
|
|
@@ -1193,7 +1491,8 @@
|
|
|
1193
1491
|
"baspiRef": "A1.7.3.1",
|
|
1194
1492
|
"enum": [
|
|
1195
1493
|
"Yes",
|
|
1196
|
-
"No"
|
|
1494
|
+
"No",
|
|
1495
|
+
"Not known"
|
|
1197
1496
|
]
|
|
1198
1497
|
}
|
|
1199
1498
|
}
|
|
@@ -1372,7 +1671,8 @@
|
|
|
1372
1671
|
"baspiRef": "A1.8.3",
|
|
1373
1672
|
"title": "Energy Efficiency",
|
|
1374
1673
|
"required": [
|
|
1375
|
-
"certificate"
|
|
1674
|
+
"certificate",
|
|
1675
|
+
"greenDealLoan"
|
|
1376
1676
|
],
|
|
1377
1677
|
"properties": {
|
|
1378
1678
|
"certificate": {
|
|
@@ -1399,6 +1699,70 @@
|
|
|
1399
1699
|
]
|
|
1400
1700
|
}
|
|
1401
1701
|
}
|
|
1702
|
+
},
|
|
1703
|
+
"greenDealLoan": {
|
|
1704
|
+
"baspiRef": "A7.3",
|
|
1705
|
+
"title": "Green Deal Loan",
|
|
1706
|
+
"required": [
|
|
1707
|
+
"hasGreenDealLoan"
|
|
1708
|
+
],
|
|
1709
|
+
"properties": {
|
|
1710
|
+
"hasGreenDealLoan": {
|
|
1711
|
+
"baspiRef": "A7.3",
|
|
1712
|
+
"title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
|
|
1713
|
+
"discriminator": {
|
|
1714
|
+
"propertyName": "yesNo"
|
|
1715
|
+
},
|
|
1716
|
+
"oneOf": [
|
|
1717
|
+
{
|
|
1718
|
+
"properties": {
|
|
1719
|
+
"yesNo": {
|
|
1720
|
+
"enum": [
|
|
1721
|
+
"No"
|
|
1722
|
+
]
|
|
1723
|
+
}
|
|
1724
|
+
}
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
"properties": {
|
|
1728
|
+
"yesNo": {
|
|
1729
|
+
"enum": [
|
|
1730
|
+
"Yes"
|
|
1731
|
+
]
|
|
1732
|
+
},
|
|
1733
|
+
"details": {
|
|
1734
|
+
"baspiRef": "A7.3.2",
|
|
1735
|
+
"title": "Please provide details below including any outstanding payments for the renewable devices and any feed-in tariffs and a copy of your last electricity bill"
|
|
1736
|
+
},
|
|
1737
|
+
"attachments": {
|
|
1738
|
+
"baspiRef": "A7.3.3",
|
|
1739
|
+
"title": "Attachments",
|
|
1740
|
+
"enum": [
|
|
1741
|
+
"Attached",
|
|
1742
|
+
"To follow"
|
|
1743
|
+
]
|
|
1744
|
+
}
|
|
1745
|
+
},
|
|
1746
|
+
"required": [
|
|
1747
|
+
"details",
|
|
1748
|
+
"attachments"
|
|
1749
|
+
]
|
|
1750
|
+
}
|
|
1751
|
+
],
|
|
1752
|
+
"required": [
|
|
1753
|
+
"yesNo"
|
|
1754
|
+
],
|
|
1755
|
+
"properties": {
|
|
1756
|
+
"yesNo": {
|
|
1757
|
+
"baspiRef": "A7.3.1",
|
|
1758
|
+
"enum": [
|
|
1759
|
+
"Yes",
|
|
1760
|
+
"No"
|
|
1761
|
+
]
|
|
1762
|
+
}
|
|
1763
|
+
}
|
|
1764
|
+
}
|
|
1765
|
+
}
|
|
1402
1766
|
}
|
|
1403
1767
|
}
|
|
1404
1768
|
},
|
|
@@ -1486,7 +1850,8 @@
|
|
|
1486
1850
|
"baspiRef": "A2",
|
|
1487
1851
|
"title": "Disputes and Complaints",
|
|
1488
1852
|
"required": [
|
|
1489
|
-
"hasDisputesAndComplaints"
|
|
1853
|
+
"hasDisputesAndComplaints",
|
|
1854
|
+
"leadingToDisputesAndComplaints"
|
|
1490
1855
|
],
|
|
1491
1856
|
"properties": {
|
|
1492
1857
|
"hasDisputesAndComplaints": {
|
|
@@ -1593,6 +1958,7 @@
|
|
|
1593
1958
|
"changeOfUse",
|
|
1594
1959
|
"windowReplacementsSince2002",
|
|
1595
1960
|
"hasAddedConservatory",
|
|
1961
|
+
"worksUnfinished",
|
|
1596
1962
|
"planningPermissionBreaches",
|
|
1597
1963
|
"unresolvedPlanningIssues"
|
|
1598
1964
|
],
|
|
@@ -1887,7 +2253,7 @@
|
|
|
1887
2253
|
},
|
|
1888
2254
|
"changeOfUse": {
|
|
1889
2255
|
"baspiRef": "A3.2",
|
|
1890
|
-
"title": "Has there been any change of use (e.g. from an office to a residence?",
|
|
2256
|
+
"title": "Has there been any change of use (e.g. from an office to a residence)?",
|
|
1891
2257
|
"discriminator": {
|
|
1892
2258
|
"propertyName": "yesNo"
|
|
1893
2259
|
},
|
|
@@ -2007,7 +2373,8 @@
|
|
|
2007
2373
|
"properties": {
|
|
2008
2374
|
"yesNo": {
|
|
2009
2375
|
"enum": [
|
|
2010
|
-
"No"
|
|
2376
|
+
"No",
|
|
2377
|
+
"Not required"
|
|
2011
2378
|
]
|
|
2012
2379
|
},
|
|
2013
2380
|
"details": {
|
|
@@ -2766,7 +3133,6 @@
|
|
|
2766
3133
|
"worksUnfinished": {
|
|
2767
3134
|
"baspiRef": "A3.6",
|
|
2768
3135
|
"title": "Are any of the works listed above unfinished?",
|
|
2769
|
-
"description": "If yes, please provide details and explain why.",
|
|
2770
3136
|
"discriminator": {
|
|
2771
3137
|
"propertyName": "yesNo"
|
|
2772
3138
|
},
|
|
@@ -2789,7 +3155,7 @@
|
|
|
2789
3155
|
},
|
|
2790
3156
|
"details": {
|
|
2791
3157
|
"baspiRef": "A3.6.2",
|
|
2792
|
-
"title": "
|
|
3158
|
+
"title": "Please provide details and explain why"
|
|
2793
3159
|
},
|
|
2794
3160
|
"attachments": {
|
|
2795
3161
|
"baspiRef": "A3.6.3",
|
|
@@ -2844,7 +3210,7 @@
|
|
|
2844
3210
|
},
|
|
2845
3211
|
"details": {
|
|
2846
3212
|
"baspiRef": "A3.7.2",
|
|
2847
|
-
"title": "
|
|
3213
|
+
"title": "Please give details"
|
|
2848
3214
|
},
|
|
2849
3215
|
"willingToInsure": {
|
|
2850
3216
|
"baspiRef": "A3.9",
|
|
@@ -2908,7 +3274,7 @@
|
|
|
2908
3274
|
},
|
|
2909
3275
|
"details": {
|
|
2910
3276
|
"baspiRef": "A3.8.2",
|
|
2911
|
-
"title": "
|
|
3277
|
+
"title": "Please give details"
|
|
2912
3278
|
},
|
|
2913
3279
|
"willingToInsure": {
|
|
2914
3280
|
"baspiRef": "A3.9",
|
|
@@ -3295,7 +3661,7 @@
|
|
|
3295
3661
|
},
|
|
3296
3662
|
"otherNotices": {
|
|
3297
3663
|
"baspiRef": "A4.7",
|
|
3298
|
-
"title": "Any other type of notice",
|
|
3664
|
+
"title": "Any other type of notice?",
|
|
3299
3665
|
"discriminator": {
|
|
3300
3666
|
"propertyName": "yesNo"
|
|
3301
3667
|
},
|
|
@@ -3419,7 +3785,6 @@
|
|
|
3419
3785
|
"containsAsbestos": {
|
|
3420
3786
|
"baspiRef": "A5.2",
|
|
3421
3787
|
"title": "To your knowledge, does any part of your property contain asbestos?",
|
|
3422
|
-
"description": "If yes, please state whether there is a management plan in place and attach a copy",
|
|
3423
3788
|
"discriminator": {
|
|
3424
3789
|
"propertyName": "yesNo"
|
|
3425
3790
|
},
|
|
@@ -3442,7 +3807,7 @@
|
|
|
3442
3807
|
},
|
|
3443
3808
|
"details": {
|
|
3444
3809
|
"baspiRef": "A5.2.2",
|
|
3445
|
-
"title": "
|
|
3810
|
+
"title": "Please state whether there is a management plan in place and attach a copy"
|
|
3446
3811
|
},
|
|
3447
3812
|
"attachments": {
|
|
3448
3813
|
"baspiRef": "A5.2.3",
|
|
@@ -3475,7 +3840,6 @@
|
|
|
3475
3840
|
"japaneseKnotweed": {
|
|
3476
3841
|
"baspiRef": "A5.3",
|
|
3477
3842
|
"title": "To your knowledge, is the property or neighbouring land, affected by Japanese knotweed or other invasive species?",
|
|
3478
|
-
"description": "If so ",
|
|
3479
3843
|
"discriminator": {
|
|
3480
3844
|
"propertyName": "yesNo"
|
|
3481
3845
|
},
|
|
@@ -3484,7 +3848,8 @@
|
|
|
3484
3848
|
"properties": {
|
|
3485
3849
|
"yesNo": {
|
|
3486
3850
|
"enum": [
|
|
3487
|
-
"No"
|
|
3851
|
+
"No",
|
|
3852
|
+
"Not known"
|
|
3488
3853
|
]
|
|
3489
3854
|
}
|
|
3490
3855
|
}
|
|
@@ -3496,13 +3861,18 @@
|
|
|
3496
3861
|
"Yes"
|
|
3497
3862
|
]
|
|
3498
3863
|
},
|
|
3499
|
-
"
|
|
3864
|
+
"managementPlanInPlace": {
|
|
3500
3865
|
"baspiRef": "A5.3.2",
|
|
3501
|
-
"title": "
|
|
3866
|
+
"title": "Is there a Japanese Knotweed management and treatment plan in place?",
|
|
3867
|
+
"enum": [
|
|
3868
|
+
"Yes",
|
|
3869
|
+
"No",
|
|
3870
|
+
"Not known"
|
|
3871
|
+
]
|
|
3502
3872
|
},
|
|
3503
3873
|
"attachments": {
|
|
3504
3874
|
"baspiRef": "A5.3.3",
|
|
3505
|
-
"title": "
|
|
3875
|
+
"title": "Please supply a copy with any insurance cover linked to the plan",
|
|
3506
3876
|
"enum": [
|
|
3507
3877
|
"Attached",
|
|
3508
3878
|
"To follow"
|
|
@@ -3510,8 +3880,7 @@
|
|
|
3510
3880
|
}
|
|
3511
3881
|
},
|
|
3512
3882
|
"required": [
|
|
3513
|
-
"
|
|
3514
|
-
"attachments"
|
|
3883
|
+
"managementPlanInPlace"
|
|
3515
3884
|
]
|
|
3516
3885
|
}
|
|
3517
3886
|
],
|
|
@@ -3523,7 +3892,8 @@
|
|
|
3523
3892
|
"baspiRef": "A5.3.1",
|
|
3524
3893
|
"enum": [
|
|
3525
3894
|
"Yes",
|
|
3526
|
-
"No"
|
|
3895
|
+
"No",
|
|
3896
|
+
"Not known"
|
|
3527
3897
|
]
|
|
3528
3898
|
}
|
|
3529
3899
|
}
|
|
@@ -3748,15 +4118,16 @@
|
|
|
3748
4118
|
"title": "Connected utilities",
|
|
3749
4119
|
"description": "Please indicate which utilities are are connected to the property.",
|
|
3750
4120
|
"required": [
|
|
3751
|
-
"
|
|
3752
|
-
"
|
|
4121
|
+
"mainsElectricity",
|
|
4122
|
+
"mainsGas",
|
|
3753
4123
|
"lpg",
|
|
3754
4124
|
"oil",
|
|
3755
4125
|
"telephone",
|
|
3756
4126
|
"cableSatelliteTV",
|
|
3757
4127
|
"broadband",
|
|
3758
4128
|
"solarPanels",
|
|
3759
|
-
"otherServices"
|
|
4129
|
+
"otherServices",
|
|
4130
|
+
"maintenanceAgreements"
|
|
3760
4131
|
],
|
|
3761
4132
|
"properties": {
|
|
3762
4133
|
"mainsElectricity": {
|
|
@@ -3784,7 +4155,7 @@
|
|
|
3784
4155
|
},
|
|
3785
4156
|
"supplier": {
|
|
3786
4157
|
"baspiRef": "A7.1.0.1.2",
|
|
3787
|
-
"title": "Supplier
|
|
4158
|
+
"title": "Supplier"
|
|
3788
4159
|
}
|
|
3789
4160
|
}
|
|
3790
4161
|
},
|
|
@@ -3801,7 +4172,7 @@
|
|
|
3801
4172
|
},
|
|
3802
4173
|
"supplier": {
|
|
3803
4174
|
"baspiRef": "A7.1.0.1.2",
|
|
3804
|
-
"title": "Supplier
|
|
4175
|
+
"title": "Supplier"
|
|
3805
4176
|
}
|
|
3806
4177
|
},
|
|
3807
4178
|
"required": [
|
|
@@ -3848,7 +4219,7 @@
|
|
|
3848
4219
|
},
|
|
3849
4220
|
"supplier": {
|
|
3850
4221
|
"baspiRef": "A7.1.0.2.2",
|
|
3851
|
-
"title": "Supplier
|
|
4222
|
+
"title": "Supplier"
|
|
3852
4223
|
}
|
|
3853
4224
|
}
|
|
3854
4225
|
},
|
|
@@ -3865,7 +4236,7 @@
|
|
|
3865
4236
|
},
|
|
3866
4237
|
"supplier": {
|
|
3867
4238
|
"baspiRef": "A7.1.0.2.2",
|
|
3868
|
-
"title": "Supplier
|
|
4239
|
+
"title": "Supplier"
|
|
3869
4240
|
}
|
|
3870
4241
|
},
|
|
3871
4242
|
"required": [
|
|
@@ -3912,7 +4283,7 @@
|
|
|
3912
4283
|
},
|
|
3913
4284
|
"supplier": {
|
|
3914
4285
|
"baspiRef": "A7.1.0.3.2",
|
|
3915
|
-
"title": "Supplier
|
|
4286
|
+
"title": "Supplier"
|
|
3916
4287
|
}
|
|
3917
4288
|
}
|
|
3918
4289
|
},
|
|
@@ -3929,7 +4300,7 @@
|
|
|
3929
4300
|
},
|
|
3930
4301
|
"supplier": {
|
|
3931
4302
|
"baspiRef": "A7.1.0.3.2",
|
|
3932
|
-
"title": "Supplier
|
|
4303
|
+
"title": "Supplier"
|
|
3933
4304
|
}
|
|
3934
4305
|
},
|
|
3935
4306
|
"required": [
|
|
@@ -3976,7 +4347,7 @@
|
|
|
3976
4347
|
},
|
|
3977
4348
|
"supplier": {
|
|
3978
4349
|
"baspiRef": "A7.1.0.4.2",
|
|
3979
|
-
"title": "Supplier
|
|
4350
|
+
"title": "Supplier"
|
|
3980
4351
|
}
|
|
3981
4352
|
}
|
|
3982
4353
|
},
|
|
@@ -3993,7 +4364,7 @@
|
|
|
3993
4364
|
},
|
|
3994
4365
|
"supplier": {
|
|
3995
4366
|
"baspiRef": "A7.1.0.4.2",
|
|
3996
|
-
"title": "Supplier
|
|
4367
|
+
"title": "Supplier"
|
|
3997
4368
|
}
|
|
3998
4369
|
},
|
|
3999
4370
|
"required": [
|
|
@@ -4040,7 +4411,7 @@
|
|
|
4040
4411
|
},
|
|
4041
4412
|
"supplier": {
|
|
4042
4413
|
"baspiRef": "A7.1.0.5.2",
|
|
4043
|
-
"title": "Supplier
|
|
4414
|
+
"title": "Supplier"
|
|
4044
4415
|
}
|
|
4045
4416
|
}
|
|
4046
4417
|
},
|
|
@@ -4057,7 +4428,7 @@
|
|
|
4057
4428
|
},
|
|
4058
4429
|
"supplier": {
|
|
4059
4430
|
"baspiRef": "A7.1.0.5.2",
|
|
4060
|
-
"title": "Supplier
|
|
4431
|
+
"title": "Supplier"
|
|
4061
4432
|
}
|
|
4062
4433
|
},
|
|
4063
4434
|
"required": [
|
|
@@ -4104,7 +4475,7 @@
|
|
|
4104
4475
|
},
|
|
4105
4476
|
"supplier": {
|
|
4106
4477
|
"baspiRef": "A7.1.0.6.2",
|
|
4107
|
-
"title": "Supplier
|
|
4478
|
+
"title": "Supplier"
|
|
4108
4479
|
}
|
|
4109
4480
|
}
|
|
4110
4481
|
},
|
|
@@ -4121,7 +4492,7 @@
|
|
|
4121
4492
|
},
|
|
4122
4493
|
"supplier": {
|
|
4123
4494
|
"baspiRef": "A7.1.0.6.2",
|
|
4124
|
-
"title": "Supplier
|
|
4495
|
+
"title": "Supplier"
|
|
4125
4496
|
}
|
|
4126
4497
|
},
|
|
4127
4498
|
"required": [
|
|
@@ -4168,7 +4539,7 @@
|
|
|
4168
4539
|
},
|
|
4169
4540
|
"supplier": {
|
|
4170
4541
|
"baspiRef": "A7.1.0.7.2",
|
|
4171
|
-
"title": "Supplier
|
|
4542
|
+
"title": "Supplier"
|
|
4172
4543
|
}
|
|
4173
4544
|
}
|
|
4174
4545
|
},
|
|
@@ -4185,7 +4556,7 @@
|
|
|
4185
4556
|
},
|
|
4186
4557
|
"supplier": {
|
|
4187
4558
|
"baspiRef": "A7.1.0.7.2",
|
|
4188
|
-
"title": "Supplier
|
|
4559
|
+
"title": "Supplier"
|
|
4189
4560
|
}
|
|
4190
4561
|
},
|
|
4191
4562
|
"required": [
|
|
@@ -4232,7 +4603,7 @@
|
|
|
4232
4603
|
},
|
|
4233
4604
|
"supplier": {
|
|
4234
4605
|
"baspiRef": "A7.1.0.8.2",
|
|
4235
|
-
"title": "Supplier
|
|
4606
|
+
"title": "Supplier"
|
|
4236
4607
|
}
|
|
4237
4608
|
}
|
|
4238
4609
|
},
|
|
@@ -4249,7 +4620,7 @@
|
|
|
4249
4620
|
},
|
|
4250
4621
|
"supplier": {
|
|
4251
4622
|
"baspiRef": "A7.1.0.8.2",
|
|
4252
|
-
"title": "Supplier
|
|
4623
|
+
"title": "Supplier"
|
|
4253
4624
|
}
|
|
4254
4625
|
},
|
|
4255
4626
|
"required": [
|
|
@@ -4297,7 +4668,7 @@
|
|
|
4297
4668
|
},
|
|
4298
4669
|
"supplier": {
|
|
4299
4670
|
"baspiRef": "A7.1.0.9.2",
|
|
4300
|
-
"title": "Supplier
|
|
4671
|
+
"title": "Supplier"
|
|
4301
4672
|
}
|
|
4302
4673
|
}
|
|
4303
4674
|
},
|
|
@@ -4314,7 +4685,7 @@
|
|
|
4314
4685
|
},
|
|
4315
4686
|
"supplier": {
|
|
4316
4687
|
"baspiRef": "A7.1.0.9.2",
|
|
4317
|
-
"title": "Supplier
|
|
4688
|
+
"title": "Supplier"
|
|
4318
4689
|
}
|
|
4319
4690
|
},
|
|
4320
4691
|
"required": [
|
|
@@ -4394,512 +4765,815 @@
|
|
|
4394
4765
|
}
|
|
4395
4766
|
},
|
|
4396
4767
|
"waterAndDrainage": {
|
|
4397
|
-
"baspiRef": "A7",
|
|
4768
|
+
"baspiRef": "A7.1.0",
|
|
4398
4769
|
"title": "Water and Drainage",
|
|
4399
4770
|
"description": "Please describe the water and drainage services that are connected to the property.",
|
|
4400
4771
|
"required": [
|
|
4401
|
-
"
|
|
4402
|
-
"
|
|
4403
|
-
"
|
|
4772
|
+
"water",
|
|
4773
|
+
"drainage",
|
|
4774
|
+
"maintenanceAgreements"
|
|
4404
4775
|
],
|
|
4405
4776
|
"properties": {
|
|
4406
|
-
"
|
|
4777
|
+
"water": {
|
|
4407
4778
|
"baspiRef": "A7.1.0.10",
|
|
4408
|
-
"title": "
|
|
4409
|
-
"
|
|
4410
|
-
"
|
|
4411
|
-
|
|
4412
|
-
"
|
|
4413
|
-
{
|
|
4414
|
-
"
|
|
4415
|
-
|
|
4416
|
-
|
|
4417
|
-
|
|
4779
|
+
"title": "Water",
|
|
4780
|
+
"required": [
|
|
4781
|
+
"mainsWater"
|
|
4782
|
+
],
|
|
4783
|
+
"properties": {
|
|
4784
|
+
"mainsWater": {
|
|
4785
|
+
"baspiRef": "A7.1.0.10.0",
|
|
4786
|
+
"title": "Mains water",
|
|
4787
|
+
"discriminator": {
|
|
4788
|
+
"propertyName": "yesNo"
|
|
4789
|
+
},
|
|
4790
|
+
"oneOf": [
|
|
4791
|
+
{
|
|
4792
|
+
"properties": {
|
|
4793
|
+
"yesNo": {
|
|
4794
|
+
"enum": [
|
|
4795
|
+
"No"
|
|
4796
|
+
]
|
|
4797
|
+
}
|
|
4798
|
+
}
|
|
4799
|
+
},
|
|
4800
|
+
{
|
|
4801
|
+
"properties": {
|
|
4802
|
+
"yesNo": {
|
|
4803
|
+
"enum": [
|
|
4804
|
+
"Yes"
|
|
4805
|
+
]
|
|
4806
|
+
},
|
|
4807
|
+
"supplier": {
|
|
4808
|
+
"baspiRef": "A7.1.0.10.2",
|
|
4809
|
+
"title": "Supplier"
|
|
4810
|
+
}
|
|
4811
|
+
}
|
|
4812
|
+
},
|
|
4813
|
+
{
|
|
4814
|
+
"properties": {
|
|
4815
|
+
"yesNo": {
|
|
4816
|
+
"enum": [
|
|
4817
|
+
"To be connected"
|
|
4818
|
+
]
|
|
4819
|
+
},
|
|
4820
|
+
"dateToBeConnected": {
|
|
4821
|
+
"baspiRef": "A7.1.0.10.3",
|
|
4822
|
+
"title": "Date to be connected"
|
|
4823
|
+
},
|
|
4824
|
+
"supplier": {
|
|
4825
|
+
"baspiRef": "A7.1.0.10.2",
|
|
4826
|
+
"title": "Supplier"
|
|
4827
|
+
}
|
|
4828
|
+
},
|
|
4829
|
+
"required": [
|
|
4830
|
+
"dateToBeConnected"
|
|
4418
4831
|
]
|
|
4419
4832
|
}
|
|
4420
|
-
|
|
4421
|
-
|
|
4422
|
-
|
|
4833
|
+
],
|
|
4834
|
+
"required": [
|
|
4835
|
+
"yesNo"
|
|
4836
|
+
],
|
|
4423
4837
|
"properties": {
|
|
4424
4838
|
"yesNo": {
|
|
4839
|
+
"baspiRef": "A7.1.0.10.1",
|
|
4425
4840
|
"enum": [
|
|
4426
|
-
"Yes"
|
|
4841
|
+
"Yes",
|
|
4842
|
+
"To be connected",
|
|
4843
|
+
"No"
|
|
4427
4844
|
]
|
|
4428
|
-
},
|
|
4429
|
-
"supplier": {
|
|
4430
|
-
"baspiRef": "A7.1.0.10.2",
|
|
4431
|
-
"title": "Supplier (if known)"
|
|
4432
4845
|
}
|
|
4433
4846
|
}
|
|
4434
|
-
},
|
|
4435
|
-
{
|
|
4436
|
-
"properties": {
|
|
4437
|
-
"yesNo": {
|
|
4438
|
-
"enum": [
|
|
4439
|
-
"To be connected"
|
|
4440
|
-
]
|
|
4441
|
-
},
|
|
4442
|
-
"dateToBeConnected": {
|
|
4443
|
-
"baspiRef": "A7.1.0.10.3",
|
|
4444
|
-
"title": "Date to be connected"
|
|
4445
|
-
},
|
|
4446
|
-
"supplier": {
|
|
4447
|
-
"baspiRef": "A7.1.0.10.2",
|
|
4448
|
-
"title": "Supplier (if known)"
|
|
4449
|
-
}
|
|
4450
|
-
},
|
|
4451
|
-
"required": [
|
|
4452
|
-
"dateToBeConnected"
|
|
4453
|
-
]
|
|
4454
|
-
}
|
|
4455
|
-
],
|
|
4456
|
-
"required": [
|
|
4457
|
-
"yesNo"
|
|
4458
|
-
],
|
|
4459
|
-
"properties": {
|
|
4460
|
-
"yesNo": {
|
|
4461
|
-
"baspiRef": "A7.1.0.10.1",
|
|
4462
|
-
"enum": [
|
|
4463
|
-
"Yes",
|
|
4464
|
-
"To be connected",
|
|
4465
|
-
"No"
|
|
4466
|
-
]
|
|
4467
4847
|
}
|
|
4468
4848
|
}
|
|
4469
4849
|
},
|
|
4470
|
-
"
|
|
4850
|
+
"drainage": {
|
|
4471
4851
|
"baspiRef": "A7.1.0.12",
|
|
4472
|
-
"title": "
|
|
4473
|
-
"
|
|
4474
|
-
"
|
|
4475
|
-
|
|
4476
|
-
|
|
4477
|
-
|
|
4478
|
-
|
|
4479
|
-
|
|
4480
|
-
|
|
4481
|
-
|
|
4482
|
-
|
|
4483
|
-
|
|
4484
|
-
|
|
4485
|
-
|
|
4486
|
-
|
|
4487
|
-
|
|
4488
|
-
|
|
4489
|
-
|
|
4490
|
-
|
|
4491
|
-
|
|
4492
|
-
|
|
4493
|
-
|
|
4494
|
-
"baspiRef": "A7.1.0.12.2",
|
|
4495
|
-
"title": "Supplier (if known)"
|
|
4496
|
-
}
|
|
4497
|
-
}
|
|
4498
|
-
},
|
|
4499
|
-
{
|
|
4500
|
-
"properties": {
|
|
4501
|
-
"yesNo": {
|
|
4502
|
-
"enum": [
|
|
4503
|
-
"To be connected"
|
|
4504
|
-
]
|
|
4852
|
+
"title": "Drainage",
|
|
4853
|
+
"required": [
|
|
4854
|
+
"mainsSurfaceWaterDrainage",
|
|
4855
|
+
"mainsFoulDrainage"
|
|
4856
|
+
],
|
|
4857
|
+
"properties": {
|
|
4858
|
+
"mainsSurfaceWaterDrainage": {
|
|
4859
|
+
"baspiRef": "A7.1.0.12.0",
|
|
4860
|
+
"title": "Mains surface water drainage",
|
|
4861
|
+
"discriminator": {
|
|
4862
|
+
"propertyName": "yesNo"
|
|
4863
|
+
},
|
|
4864
|
+
"oneOf": [
|
|
4865
|
+
{
|
|
4866
|
+
"properties": {
|
|
4867
|
+
"yesNo": {
|
|
4868
|
+
"enum": [
|
|
4869
|
+
"No",
|
|
4870
|
+
"Not known"
|
|
4871
|
+
]
|
|
4872
|
+
}
|
|
4873
|
+
}
|
|
4505
4874
|
},
|
|
4506
|
-
|
|
4507
|
-
"
|
|
4508
|
-
|
|
4875
|
+
{
|
|
4876
|
+
"properties": {
|
|
4877
|
+
"yesNo": {
|
|
4878
|
+
"enum": [
|
|
4879
|
+
"Yes"
|
|
4880
|
+
]
|
|
4881
|
+
},
|
|
4882
|
+
"supplier": {
|
|
4883
|
+
"baspiRef": "A7.1.0.12.2",
|
|
4884
|
+
"title": "Supplier"
|
|
4885
|
+
}
|
|
4886
|
+
}
|
|
4509
4887
|
},
|
|
4510
|
-
|
|
4511
|
-
"
|
|
4512
|
-
|
|
4888
|
+
{
|
|
4889
|
+
"properties": {
|
|
4890
|
+
"yesNo": {
|
|
4891
|
+
"enum": [
|
|
4892
|
+
"To be connected"
|
|
4893
|
+
]
|
|
4894
|
+
},
|
|
4895
|
+
"dateToBeConnected": {
|
|
4896
|
+
"baspiRef": "A7.1.0.12.3",
|
|
4897
|
+
"title": "Date to be connected"
|
|
4898
|
+
},
|
|
4899
|
+
"supplier": {
|
|
4900
|
+
"baspiRef": "A7.1.0.12.2",
|
|
4901
|
+
"title": "Supplier"
|
|
4902
|
+
}
|
|
4903
|
+
},
|
|
4904
|
+
"required": [
|
|
4905
|
+
"dateToBeConnected"
|
|
4906
|
+
]
|
|
4513
4907
|
}
|
|
4514
|
-
|
|
4908
|
+
],
|
|
4515
4909
|
"required": [
|
|
4516
|
-
"
|
|
4517
|
-
]
|
|
4518
|
-
}
|
|
4519
|
-
],
|
|
4520
|
-
"required": [
|
|
4521
|
-
"yesNo"
|
|
4522
|
-
],
|
|
4523
|
-
"properties": {
|
|
4524
|
-
"yesNo": {
|
|
4525
|
-
"baspiRef": "A7.1.0.12.1",
|
|
4526
|
-
"enum": [
|
|
4527
|
-
"Yes",
|
|
4528
|
-
"To be connected",
|
|
4529
|
-
"No"
|
|
4530
|
-
]
|
|
4531
|
-
}
|
|
4532
|
-
}
|
|
4533
|
-
},
|
|
4534
|
-
"mainsFoulDrainage": {
|
|
4535
|
-
"baspiRef": "A7.1.0.11",
|
|
4536
|
-
"title": "Mains foul drainage",
|
|
4537
|
-
"discriminator": {
|
|
4538
|
-
"propertyName": "yesNo"
|
|
4539
|
-
},
|
|
4540
|
-
"oneOf": [
|
|
4541
|
-
{
|
|
4910
|
+
"yesNo"
|
|
4911
|
+
],
|
|
4542
4912
|
"properties": {
|
|
4543
4913
|
"yesNo": {
|
|
4914
|
+
"baspiRef": "A7.1.0.12.1",
|
|
4544
4915
|
"enum": [
|
|
4545
|
-
"Yes"
|
|
4916
|
+
"Yes",
|
|
4917
|
+
"To be connected",
|
|
4918
|
+
"No",
|
|
4919
|
+
"Not known"
|
|
4546
4920
|
]
|
|
4547
|
-
},
|
|
4548
|
-
"supplier": {
|
|
4549
|
-
"baspiRef": "A7.1.0.11.3",
|
|
4550
|
-
"title": "Supplier (if known)"
|
|
4551
4921
|
}
|
|
4552
4922
|
}
|
|
4553
4923
|
},
|
|
4554
|
-
{
|
|
4555
|
-
"
|
|
4556
|
-
|
|
4557
|
-
|
|
4558
|
-
|
|
4559
|
-
]
|
|
4560
|
-
},
|
|
4561
|
-
"dateToBeConnected": {
|
|
4562
|
-
"baspiRef": "A7.1.0.11.2",
|
|
4563
|
-
"title": "Date to be connected"
|
|
4564
|
-
},
|
|
4565
|
-
"supplier": {
|
|
4566
|
-
"baspiRef": "A7.1.0.11.2",
|
|
4567
|
-
"title": "Supplier (if known)"
|
|
4568
|
-
}
|
|
4924
|
+
"mainsFoulDrainage": {
|
|
4925
|
+
"baspiRef": "A7.1.0.11",
|
|
4926
|
+
"title": "Mains foul drainage",
|
|
4927
|
+
"discriminator": {
|
|
4928
|
+
"propertyName": "yesNo"
|
|
4569
4929
|
},
|
|
4570
|
-
"
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
"
|
|
4579
|
-
|
|
4930
|
+
"oneOf": [
|
|
4931
|
+
{
|
|
4932
|
+
"properties": {
|
|
4933
|
+
"yesNo": {
|
|
4934
|
+
"enum": [
|
|
4935
|
+
"Yes"
|
|
4936
|
+
]
|
|
4937
|
+
},
|
|
4938
|
+
"supplier": {
|
|
4939
|
+
"baspiRef": "A7.1.0.11.3",
|
|
4940
|
+
"title": "Supplier"
|
|
4941
|
+
}
|
|
4942
|
+
}
|
|
4580
4943
|
},
|
|
4581
|
-
|
|
4582
|
-
"
|
|
4583
|
-
|
|
4584
|
-
|
|
4585
|
-
|
|
4944
|
+
{
|
|
4945
|
+
"properties": {
|
|
4946
|
+
"yesNo": {
|
|
4947
|
+
"enum": [
|
|
4948
|
+
"To be connected"
|
|
4949
|
+
]
|
|
4950
|
+
},
|
|
4951
|
+
"dateToBeConnected": {
|
|
4952
|
+
"baspiRef": "A7.1.0.11.2",
|
|
4953
|
+
"title": "Date to be connected"
|
|
4954
|
+
},
|
|
4955
|
+
"supplier": {
|
|
4956
|
+
"baspiRef": "A7.1.0.11.3",
|
|
4957
|
+
"title": "Supplier"
|
|
4958
|
+
}
|
|
4586
4959
|
},
|
|
4587
|
-
"
|
|
4588
|
-
|
|
4960
|
+
"required": [
|
|
4961
|
+
"dateToBeConnected"
|
|
4962
|
+
]
|
|
4963
|
+
},
|
|
4964
|
+
{
|
|
4965
|
+
"properties": {
|
|
4966
|
+
"yesNo": {
|
|
4967
|
+
"enum": [
|
|
4968
|
+
"No",
|
|
4969
|
+
"Not known"
|
|
4970
|
+
]
|
|
4971
|
+
},
|
|
4972
|
+
"sustainableDrainageSystem": {
|
|
4973
|
+
"baspiRef": "A7.1.0.13",
|
|
4974
|
+
"title": "Sustainable Drainage System",
|
|
4975
|
+
"discriminator": {
|
|
4976
|
+
"propertyName": "yesNo"
|
|
4977
|
+
},
|
|
4978
|
+
"oneOf": [
|
|
4979
|
+
{
|
|
4980
|
+
"properties": {
|
|
4981
|
+
"yesNo": {
|
|
4982
|
+
"enum": [
|
|
4983
|
+
"No"
|
|
4984
|
+
]
|
|
4985
|
+
}
|
|
4986
|
+
}
|
|
4987
|
+
},
|
|
4988
|
+
{
|
|
4989
|
+
"properties": {
|
|
4990
|
+
"yesNo": {
|
|
4991
|
+
"enum": [
|
|
4992
|
+
"Yes"
|
|
4993
|
+
]
|
|
4994
|
+
},
|
|
4995
|
+
"supplier": {
|
|
4996
|
+
"baspiRef": "A7.1.0.13.3",
|
|
4997
|
+
"title": "Supplier"
|
|
4998
|
+
}
|
|
4999
|
+
}
|
|
5000
|
+
},
|
|
5001
|
+
{
|
|
5002
|
+
"properties": {
|
|
5003
|
+
"yesNo": {
|
|
5004
|
+
"enum": [
|
|
5005
|
+
"To be connected"
|
|
5006
|
+
]
|
|
5007
|
+
},
|
|
5008
|
+
"dateToBeConnected": {
|
|
5009
|
+
"baspiRef": "A7.1.0.13.2",
|
|
5010
|
+
"title": "Date to be connected"
|
|
5011
|
+
},
|
|
5012
|
+
"supplier": {
|
|
5013
|
+
"baspiRef": "A7.1.0.13.3",
|
|
5014
|
+
"title": "Supplier"
|
|
5015
|
+
}
|
|
5016
|
+
},
|
|
5017
|
+
"required": [
|
|
5018
|
+
"dateToBeConnected"
|
|
5019
|
+
]
|
|
5020
|
+
}
|
|
5021
|
+
],
|
|
5022
|
+
"required": [
|
|
5023
|
+
"yesNo"
|
|
5024
|
+
],
|
|
4589
5025
|
"properties": {
|
|
4590
5026
|
"yesNo": {
|
|
5027
|
+
"baspiRef": "A7.1.0.13.1",
|
|
4591
5028
|
"enum": [
|
|
5029
|
+
"Yes",
|
|
5030
|
+
"To be connected",
|
|
4592
5031
|
"No"
|
|
4593
5032
|
]
|
|
4594
5033
|
}
|
|
4595
5034
|
}
|
|
4596
5035
|
},
|
|
4597
|
-
{
|
|
5036
|
+
"septicTank": {
|
|
5037
|
+
"baspiRef": "A7.1.0.14",
|
|
5038
|
+
"title": "Septic tank",
|
|
5039
|
+
"discriminator": {
|
|
5040
|
+
"propertyName": "yesNo"
|
|
5041
|
+
},
|
|
5042
|
+
"oneOf": [
|
|
5043
|
+
{
|
|
5044
|
+
"properties": {
|
|
5045
|
+
"yesNo": {
|
|
5046
|
+
"enum": [
|
|
5047
|
+
"No"
|
|
5048
|
+
]
|
|
5049
|
+
}
|
|
5050
|
+
}
|
|
5051
|
+
},
|
|
5052
|
+
{
|
|
5053
|
+
"properties": {
|
|
5054
|
+
"yesNo": {
|
|
5055
|
+
"enum": [
|
|
5056
|
+
"Yes"
|
|
5057
|
+
]
|
|
5058
|
+
},
|
|
5059
|
+
"dateReplaced": {
|
|
5060
|
+
"baspiRef": "A7.1.0.14.2",
|
|
5061
|
+
"title": "Date replaced or upgraded"
|
|
5062
|
+
},
|
|
5063
|
+
"dateLastEmptied": {
|
|
5064
|
+
"baspiRef": "A7.1.0.14.3",
|
|
5065
|
+
"title": "Date last emptied"
|
|
5066
|
+
}
|
|
5067
|
+
},
|
|
5068
|
+
"required": [
|
|
5069
|
+
"dateReplaced",
|
|
5070
|
+
"dateLastEmptied"
|
|
5071
|
+
]
|
|
5072
|
+
}
|
|
5073
|
+
],
|
|
5074
|
+
"required": [
|
|
5075
|
+
"yesNo"
|
|
5076
|
+
],
|
|
4598
5077
|
"properties": {
|
|
4599
5078
|
"yesNo": {
|
|
5079
|
+
"baspiRef": "A7.1.0.14.1",
|
|
4600
5080
|
"enum": [
|
|
4601
|
-
"Yes"
|
|
5081
|
+
"Yes",
|
|
5082
|
+
"No"
|
|
4602
5083
|
]
|
|
4603
|
-
},
|
|
4604
|
-
"supplier": {
|
|
4605
|
-
"baspiRef": "A7.1.0.13.3",
|
|
4606
|
-
"title": "Supplier (if known)"
|
|
4607
5084
|
}
|
|
4608
5085
|
}
|
|
4609
5086
|
},
|
|
4610
|
-
{
|
|
4611
|
-
"
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
"
|
|
4619
|
-
|
|
5087
|
+
"cesspit": {
|
|
5088
|
+
"baspiRef": "A7.1.0.15",
|
|
5089
|
+
"title": "Cesspit",
|
|
5090
|
+
"discriminator": {
|
|
5091
|
+
"propertyName": "yesNo"
|
|
5092
|
+
},
|
|
5093
|
+
"oneOf": [
|
|
5094
|
+
{
|
|
5095
|
+
"properties": {
|
|
5096
|
+
"yesNo": {
|
|
5097
|
+
"enum": [
|
|
5098
|
+
"No"
|
|
5099
|
+
]
|
|
5100
|
+
}
|
|
5101
|
+
}
|
|
4620
5102
|
},
|
|
4621
|
-
|
|
4622
|
-
"
|
|
4623
|
-
|
|
5103
|
+
{
|
|
5104
|
+
"properties": {
|
|
5105
|
+
"yesNo": {
|
|
5106
|
+
"enum": [
|
|
5107
|
+
"Yes"
|
|
5108
|
+
]
|
|
5109
|
+
},
|
|
5110
|
+
"dateLastEmptied": {
|
|
5111
|
+
"baspiRef": "A7.1.0.15.2",
|
|
5112
|
+
"title": "Date last emptied"
|
|
5113
|
+
}
|
|
5114
|
+
},
|
|
5115
|
+
"required": [
|
|
5116
|
+
"dateLastEmptied"
|
|
5117
|
+
]
|
|
4624
5118
|
}
|
|
4625
|
-
|
|
5119
|
+
],
|
|
4626
5120
|
"required": [
|
|
4627
|
-
"
|
|
4628
|
-
]
|
|
4629
|
-
}
|
|
4630
|
-
],
|
|
4631
|
-
"required": [
|
|
4632
|
-
"yesNo"
|
|
4633
|
-
],
|
|
4634
|
-
"properties": {
|
|
4635
|
-
"yesNo": {
|
|
4636
|
-
"baspiRef": "A7.1.0.13.1",
|
|
4637
|
-
"enum": [
|
|
4638
|
-
"Yes",
|
|
4639
|
-
"To be connected",
|
|
4640
|
-
"No"
|
|
4641
|
-
]
|
|
4642
|
-
}
|
|
4643
|
-
}
|
|
4644
|
-
},
|
|
4645
|
-
"septicTank": {
|
|
4646
|
-
"baspiRef": "A7.1.0.14",
|
|
4647
|
-
"title": "Septic tank",
|
|
4648
|
-
"discriminator": {
|
|
4649
|
-
"propertyName": "yesNo"
|
|
4650
|
-
},
|
|
4651
|
-
"oneOf": [
|
|
4652
|
-
{
|
|
5121
|
+
"yesNo"
|
|
5122
|
+
],
|
|
4653
5123
|
"properties": {
|
|
4654
5124
|
"yesNo": {
|
|
5125
|
+
"baspiRef": "A7.1.0.15.1",
|
|
4655
5126
|
"enum": [
|
|
5127
|
+
"Yes",
|
|
4656
5128
|
"No"
|
|
4657
5129
|
]
|
|
4658
5130
|
}
|
|
4659
5131
|
}
|
|
4660
5132
|
},
|
|
4661
|
-
{
|
|
4662
|
-
"
|
|
4663
|
-
|
|
4664
|
-
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
"
|
|
4670
|
-
|
|
5133
|
+
"sewerageTreatmentPlant": {
|
|
5134
|
+
"baspiRef": "A7.1.0.16",
|
|
5135
|
+
"title": "Sewerage treatment plant",
|
|
5136
|
+
"discriminator": {
|
|
5137
|
+
"propertyName": "yesNo"
|
|
5138
|
+
},
|
|
5139
|
+
"oneOf": [
|
|
5140
|
+
{
|
|
5141
|
+
"properties": {
|
|
5142
|
+
"yesNo": {
|
|
5143
|
+
"enum": [
|
|
5144
|
+
"No"
|
|
5145
|
+
]
|
|
5146
|
+
}
|
|
5147
|
+
}
|
|
4671
5148
|
},
|
|
4672
|
-
|
|
4673
|
-
"
|
|
4674
|
-
|
|
5149
|
+
{
|
|
5150
|
+
"properties": {
|
|
5151
|
+
"yesNo": {
|
|
5152
|
+
"enum": [
|
|
5153
|
+
"Yes"
|
|
5154
|
+
]
|
|
5155
|
+
},
|
|
5156
|
+
"dateInstalled": {
|
|
5157
|
+
"baspiRef": "A7.1.0.16.2",
|
|
5158
|
+
"title": "Date installed"
|
|
5159
|
+
},
|
|
5160
|
+
"dateLastServiced": {
|
|
5161
|
+
"baspiRef": "A7.1.0.16.3",
|
|
5162
|
+
"title": "Date last serviced"
|
|
5163
|
+
},
|
|
5164
|
+
"attachments": {
|
|
5165
|
+
"baspiRef": "A7.1.0.16.3",
|
|
5166
|
+
"title": "If installed after Jan 1991 supply the Building Regulations approval or equivalent",
|
|
5167
|
+
"enum": [
|
|
5168
|
+
"Attached",
|
|
5169
|
+
"To follow",
|
|
5170
|
+
"Not applicable"
|
|
5171
|
+
]
|
|
5172
|
+
}
|
|
5173
|
+
},
|
|
5174
|
+
"required": [
|
|
5175
|
+
"dateInstalled",
|
|
5176
|
+
"dateLastServiced",
|
|
5177
|
+
"attachments"
|
|
5178
|
+
]
|
|
4675
5179
|
}
|
|
4676
|
-
|
|
5180
|
+
],
|
|
4677
5181
|
"required": [
|
|
4678
|
-
"
|
|
4679
|
-
|
|
4680
|
-
]
|
|
4681
|
-
}
|
|
4682
|
-
],
|
|
4683
|
-
"required": [
|
|
4684
|
-
"yesNo"
|
|
4685
|
-
],
|
|
4686
|
-
"properties": {
|
|
4687
|
-
"yesNo": {
|
|
4688
|
-
"baspiRef": "A7.1.0.14.1",
|
|
4689
|
-
"enum": [
|
|
4690
|
-
"Yes",
|
|
4691
|
-
"No"
|
|
4692
|
-
]
|
|
4693
|
-
}
|
|
4694
|
-
}
|
|
4695
|
-
},
|
|
4696
|
-
"cesspit": {
|
|
4697
|
-
"baspiRef": "A7.1.0.15",
|
|
4698
|
-
"title": "Cesspit",
|
|
4699
|
-
"discriminator": {
|
|
4700
|
-
"propertyName": "yesNo"
|
|
4701
|
-
},
|
|
4702
|
-
"oneOf": [
|
|
4703
|
-
{
|
|
5182
|
+
"yesNo"
|
|
5183
|
+
],
|
|
4704
5184
|
"properties": {
|
|
4705
5185
|
"yesNo": {
|
|
5186
|
+
"baspiRef": "A7.1.0.16.1",
|
|
4706
5187
|
"enum": [
|
|
5188
|
+
"Yes",
|
|
4707
5189
|
"No"
|
|
4708
5190
|
]
|
|
4709
5191
|
}
|
|
4710
5192
|
}
|
|
4711
5193
|
},
|
|
4712
|
-
{
|
|
5194
|
+
"otherConnectedProperties": {
|
|
5195
|
+
"baspiRef": "A7.1.1",
|
|
5196
|
+
"title": "Do other properties connect to the septic tank, cesspit or sewerage treatment plant?",
|
|
5197
|
+
"discriminator": {
|
|
5198
|
+
"propertyName": "yesNo"
|
|
5199
|
+
},
|
|
5200
|
+
"oneOf": [
|
|
5201
|
+
{
|
|
5202
|
+
"properties": {
|
|
5203
|
+
"yesNo": {
|
|
5204
|
+
"enum": [
|
|
5205
|
+
"No"
|
|
5206
|
+
]
|
|
5207
|
+
}
|
|
5208
|
+
}
|
|
5209
|
+
},
|
|
5210
|
+
{
|
|
5211
|
+
"properties": {
|
|
5212
|
+
"yesNo": {
|
|
5213
|
+
"enum": [
|
|
5214
|
+
"Yes"
|
|
5215
|
+
]
|
|
5216
|
+
},
|
|
5217
|
+
"numberOfPropertiesSharing": {
|
|
5218
|
+
"baspiRef": "A7.1.1.1",
|
|
5219
|
+
"title": "How many other properties?"
|
|
5220
|
+
},
|
|
5221
|
+
"details": {
|
|
5222
|
+
"baspiRef": "A7.1.1.2",
|
|
5223
|
+
"title": "Provide details of the properties sharing the system and explain how maintenance of the system is arranged and paid for"
|
|
5224
|
+
}
|
|
5225
|
+
},
|
|
5226
|
+
"required": [
|
|
5227
|
+
"numberOfPropertiesSharing",
|
|
5228
|
+
"details"
|
|
5229
|
+
]
|
|
5230
|
+
}
|
|
5231
|
+
],
|
|
5232
|
+
"required": [
|
|
5233
|
+
"yesNo"
|
|
5234
|
+
],
|
|
4713
5235
|
"properties": {
|
|
4714
5236
|
"yesNo": {
|
|
5237
|
+
"baspiRef": "A7.1.1.1",
|
|
4715
5238
|
"enum": [
|
|
4716
|
-
"Yes"
|
|
5239
|
+
"Yes",
|
|
5240
|
+
"No"
|
|
4717
5241
|
]
|
|
4718
|
-
},
|
|
4719
|
-
"dateLastEmptied": {
|
|
4720
|
-
"baspiRef": "A7.1.0.15.2",
|
|
4721
|
-
"title": "Date last emptied"
|
|
4722
5242
|
}
|
|
5243
|
+
}
|
|
5244
|
+
},
|
|
5245
|
+
"plantOnOtherLand": {
|
|
5246
|
+
"baspiRef": "A7.1.2",
|
|
5247
|
+
"title": "Is any part of the septic tank, cesspit or sewerage treatment plant located on someone else’s land?",
|
|
5248
|
+
"discriminator": {
|
|
5249
|
+
"propertyName": "yesNo"
|
|
4723
5250
|
},
|
|
4724
|
-
"
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
|
|
4729
|
-
|
|
4730
|
-
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
|
|
4735
|
-
|
|
4736
|
-
|
|
4737
|
-
|
|
4738
|
-
|
|
4739
|
-
|
|
4740
|
-
|
|
4741
|
-
|
|
4742
|
-
|
|
4743
|
-
|
|
4744
|
-
|
|
4745
|
-
|
|
4746
|
-
|
|
4747
|
-
|
|
4748
|
-
|
|
4749
|
-
|
|
5251
|
+
"oneOf": [
|
|
5252
|
+
{
|
|
5253
|
+
"properties": {
|
|
5254
|
+
"yesNo": {
|
|
5255
|
+
"enum": [
|
|
5256
|
+
"No"
|
|
5257
|
+
]
|
|
5258
|
+
}
|
|
5259
|
+
}
|
|
5260
|
+
},
|
|
5261
|
+
{
|
|
5262
|
+
"properties": {
|
|
5263
|
+
"yesNo": {
|
|
5264
|
+
"enum": [
|
|
5265
|
+
"Yes"
|
|
5266
|
+
]
|
|
5267
|
+
},
|
|
5268
|
+
"attachments": {
|
|
5269
|
+
"baspiRef": "7.1.2.2",
|
|
5270
|
+
"title": "Please supply a plan showing the location of the system and how access is obtained.",
|
|
5271
|
+
"enum": [
|
|
5272
|
+
"Attached",
|
|
5273
|
+
"To follow"
|
|
5274
|
+
]
|
|
5275
|
+
}
|
|
5276
|
+
},
|
|
5277
|
+
"required": [
|
|
5278
|
+
"attachments"
|
|
5279
|
+
]
|
|
5280
|
+
}
|
|
5281
|
+
],
|
|
5282
|
+
"required": [
|
|
5283
|
+
"yesNo"
|
|
5284
|
+
],
|
|
4750
5285
|
"properties": {
|
|
4751
5286
|
"yesNo": {
|
|
5287
|
+
"baspiRef": "7.1.2.1",
|
|
4752
5288
|
"enum": [
|
|
5289
|
+
"Yes",
|
|
4753
5290
|
"No"
|
|
4754
5291
|
]
|
|
4755
5292
|
}
|
|
4756
5293
|
}
|
|
4757
5294
|
},
|
|
4758
|
-
{
|
|
4759
|
-
"
|
|
4760
|
-
|
|
4761
|
-
|
|
4762
|
-
|
|
4763
|
-
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
"
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
5295
|
+
"plantRegistered": {
|
|
5296
|
+
"baspiRef": "A7.1.3",
|
|
5297
|
+
"title": "Is the septic tank, cesspit or sewerage treatment plant registered with the Environment Agency or exempted?",
|
|
5298
|
+
"discriminator": {
|
|
5299
|
+
"propertyName": "yesNo"
|
|
5300
|
+
},
|
|
5301
|
+
"oneOf": [
|
|
5302
|
+
{
|
|
5303
|
+
"properties": {
|
|
5304
|
+
"yesNo": {
|
|
5305
|
+
"enum": [
|
|
5306
|
+
"No"
|
|
5307
|
+
]
|
|
5308
|
+
}
|
|
5309
|
+
}
|
|
4772
5310
|
},
|
|
4773
|
-
|
|
4774
|
-
"
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
5311
|
+
{
|
|
5312
|
+
"properties": {
|
|
5313
|
+
"yesNo": {
|
|
5314
|
+
"enum": [
|
|
5315
|
+
"Yes"
|
|
5316
|
+
]
|
|
5317
|
+
},
|
|
5318
|
+
"attachments": {
|
|
5319
|
+
"baspiRef": "A7.1.3.2",
|
|
5320
|
+
"title": "Please supply the appropriate permit to discharge or exemption certificate",
|
|
5321
|
+
"enum": [
|
|
5322
|
+
"Attached",
|
|
5323
|
+
"To follow"
|
|
5324
|
+
]
|
|
5325
|
+
}
|
|
5326
|
+
},
|
|
5327
|
+
"required": [
|
|
5328
|
+
"attachments"
|
|
4780
5329
|
]
|
|
4781
5330
|
}
|
|
4782
|
-
|
|
5331
|
+
],
|
|
4783
5332
|
"required": [
|
|
4784
|
-
"
|
|
4785
|
-
|
|
4786
|
-
"attachments"
|
|
4787
|
-
]
|
|
4788
|
-
}
|
|
4789
|
-
],
|
|
4790
|
-
"required": [
|
|
4791
|
-
"yesNo"
|
|
4792
|
-
],
|
|
4793
|
-
"properties": {
|
|
4794
|
-
"yesNo": {
|
|
4795
|
-
"baspiRef": "A7.1.0.16.1",
|
|
4796
|
-
"enum": [
|
|
4797
|
-
"Yes",
|
|
4798
|
-
"No"
|
|
4799
|
-
]
|
|
4800
|
-
}
|
|
4801
|
-
}
|
|
4802
|
-
},
|
|
4803
|
-
"otherConnectedProperties": {
|
|
4804
|
-
"baspiRef": "A7.1.1",
|
|
4805
|
-
"title": "Do other properties connect to the septic tank, cesspit or sewerage treatment plant?",
|
|
4806
|
-
"discriminator": {
|
|
4807
|
-
"propertyName": "yesNo"
|
|
4808
|
-
},
|
|
4809
|
-
"oneOf": [
|
|
4810
|
-
{
|
|
5333
|
+
"yesNo"
|
|
5334
|
+
],
|
|
4811
5335
|
"properties": {
|
|
4812
5336
|
"yesNo": {
|
|
5337
|
+
"baspiRef": "A7.1.3.1",
|
|
4813
5338
|
"enum": [
|
|
5339
|
+
"Yes",
|
|
4814
5340
|
"No"
|
|
4815
5341
|
]
|
|
4816
5342
|
}
|
|
4817
5343
|
}
|
|
4818
5344
|
},
|
|
4819
|
-
{
|
|
5345
|
+
"plantDrainsIntoWaterway": {
|
|
5346
|
+
"baspiRef": "A7.1.4",
|
|
5347
|
+
"title": "Does the septic tank, cesspit or sewerage treatment plant drain into a waterway (lake, river, stream etc)",
|
|
5348
|
+
"discriminator": {
|
|
5349
|
+
"propertyName": "yesNo"
|
|
5350
|
+
},
|
|
5351
|
+
"oneOf": [
|
|
5352
|
+
{
|
|
5353
|
+
"properties": {
|
|
5354
|
+
"yesNo": {
|
|
5355
|
+
"enum": [
|
|
5356
|
+
"No, the effluent is discharged through a soakaway system."
|
|
5357
|
+
]
|
|
5358
|
+
}
|
|
5359
|
+
}
|
|
5360
|
+
},
|
|
5361
|
+
{
|
|
5362
|
+
"properties": {
|
|
5363
|
+
"yesNo": {
|
|
5364
|
+
"enum": [
|
|
5365
|
+
"Yes"
|
|
5366
|
+
]
|
|
5367
|
+
},
|
|
5368
|
+
"dischargeCompliesWithGBR": {
|
|
5369
|
+
"baspiRef": "A7.1.4.1",
|
|
5370
|
+
"title": "Does it comply with the General Binding Rules for discharge into a waterway?",
|
|
5371
|
+
"enum": [
|
|
5372
|
+
"Yes",
|
|
5373
|
+
"No, it does not comply with the rules for discharge into a waterway."
|
|
5374
|
+
]
|
|
5375
|
+
}
|
|
5376
|
+
},
|
|
5377
|
+
"required": [
|
|
5378
|
+
"dischargeCompliesWithGBR"
|
|
5379
|
+
]
|
|
5380
|
+
}
|
|
5381
|
+
],
|
|
5382
|
+
"required": [
|
|
5383
|
+
"yesNo"
|
|
5384
|
+
],
|
|
4820
5385
|
"properties": {
|
|
4821
5386
|
"yesNo": {
|
|
5387
|
+
"baspiRef": "A7.1.4.1",
|
|
4822
5388
|
"enum": [
|
|
4823
|
-
"Yes"
|
|
5389
|
+
"Yes",
|
|
5390
|
+
"No, the effluent is discharged through a soakaway system."
|
|
4824
5391
|
]
|
|
4825
|
-
},
|
|
4826
|
-
"details": {
|
|
4827
|
-
"baspiRef": "A7.1.1.2",
|
|
4828
|
-
"title": "Provide details of the properties sharing the system and explain how maintenance of the system is arranged and paid for"
|
|
4829
5392
|
}
|
|
4830
|
-
}
|
|
4831
|
-
"required": [
|
|
4832
|
-
"details",
|
|
4833
|
-
"attachments"
|
|
4834
|
-
]
|
|
5393
|
+
}
|
|
4835
5394
|
}
|
|
4836
|
-
|
|
5395
|
+
},
|
|
4837
5396
|
"required": [
|
|
4838
|
-
"
|
|
4839
|
-
|
|
4840
|
-
|
|
4841
|
-
"
|
|
4842
|
-
|
|
4843
|
-
|
|
4844
|
-
|
|
4845
|
-
|
|
4846
|
-
|
|
4847
|
-
|
|
4848
|
-
|
|
5397
|
+
"sustainableDrainageSystem",
|
|
5398
|
+
"septicTank",
|
|
5399
|
+
"cesspit",
|
|
5400
|
+
"sewerageTreatmentPlant",
|
|
5401
|
+
"otherConnectedProperties",
|
|
5402
|
+
"plantOnOtherLand",
|
|
5403
|
+
"plantRegistered",
|
|
5404
|
+
"plantDrainsIntoWaterway"
|
|
5405
|
+
]
|
|
5406
|
+
}
|
|
5407
|
+
],
|
|
5408
|
+
"required": [
|
|
5409
|
+
"yesNo"
|
|
5410
|
+
],
|
|
5411
|
+
"properties": {
|
|
5412
|
+
"yesNo": {
|
|
5413
|
+
"baspiRef": "A7.1.0.11.1",
|
|
5414
|
+
"enum": [
|
|
5415
|
+
"Yes",
|
|
5416
|
+
"To be connected",
|
|
5417
|
+
"No",
|
|
5418
|
+
"Not known"
|
|
5419
|
+
]
|
|
5420
|
+
}
|
|
5421
|
+
}
|
|
5422
|
+
}
|
|
5423
|
+
}
|
|
5424
|
+
},
|
|
5425
|
+
"maintenanceAgreements": {
|
|
5426
|
+
"baspiRef": "A7.2",
|
|
5427
|
+
"title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to these services?",
|
|
5428
|
+
"discriminator": {
|
|
5429
|
+
"propertyName": "yesNo"
|
|
5430
|
+
},
|
|
5431
|
+
"oneOf": [
|
|
5432
|
+
{
|
|
5433
|
+
"properties": {
|
|
5434
|
+
"yesNo": {
|
|
5435
|
+
"enum": [
|
|
5436
|
+
"No"
|
|
5437
|
+
]
|
|
5438
|
+
}
|
|
5439
|
+
}
|
|
5440
|
+
},
|
|
5441
|
+
{
|
|
5442
|
+
"properties": {
|
|
5443
|
+
"yesNo": {
|
|
5444
|
+
"enum": [
|
|
5445
|
+
"Yes"
|
|
5446
|
+
]
|
|
5447
|
+
},
|
|
5448
|
+
"details": {
|
|
5449
|
+
"baspiRef": "A7.2.2",
|
|
5450
|
+
"title": "Details"
|
|
4849
5451
|
},
|
|
4850
|
-
"
|
|
4851
|
-
"baspiRef": "A7.
|
|
4852
|
-
"title": "
|
|
5452
|
+
"attachments": {
|
|
5453
|
+
"baspiRef": "A7.2.3",
|
|
5454
|
+
"title": "Attachments",
|
|
5455
|
+
"enum": [
|
|
5456
|
+
"Attached",
|
|
5457
|
+
"To follow"
|
|
5458
|
+
]
|
|
5459
|
+
}
|
|
5460
|
+
},
|
|
5461
|
+
"required": [
|
|
5462
|
+
"details",
|
|
5463
|
+
"attachments"
|
|
5464
|
+
]
|
|
5465
|
+
}
|
|
5466
|
+
],
|
|
5467
|
+
"required": [
|
|
5468
|
+
"yesNo"
|
|
5469
|
+
],
|
|
5470
|
+
"properties": {
|
|
5471
|
+
"yesNo": {
|
|
5472
|
+
"baspiRef": "A7.2.1",
|
|
5473
|
+
"enum": [
|
|
5474
|
+
"Yes",
|
|
5475
|
+
"No"
|
|
5476
|
+
]
|
|
5477
|
+
}
|
|
5478
|
+
}
|
|
5479
|
+
}
|
|
5480
|
+
}
|
|
5481
|
+
},
|
|
5482
|
+
"centralHeating": {
|
|
5483
|
+
"baspiRef": "A7.4",
|
|
5484
|
+
"title": "Central Heating",
|
|
5485
|
+
"discriminator": {
|
|
5486
|
+
"propertyName": "hasCentralHeating"
|
|
5487
|
+
},
|
|
5488
|
+
"oneOf": [
|
|
5489
|
+
{
|
|
5490
|
+
"properties": {
|
|
5491
|
+
"hasCentralHeating": {
|
|
5492
|
+
"enum": [
|
|
5493
|
+
"No"
|
|
5494
|
+
]
|
|
5495
|
+
}
|
|
5496
|
+
}
|
|
5497
|
+
},
|
|
5498
|
+
{
|
|
5499
|
+
"properties": {
|
|
5500
|
+
"hasCentralHeating": {
|
|
5501
|
+
"enum": [
|
|
5502
|
+
"Yes"
|
|
5503
|
+
]
|
|
5504
|
+
},
|
|
5505
|
+
"centralHeatingDetails": {
|
|
5506
|
+
"baspiRef": "A7.4.0.0",
|
|
5507
|
+
"title": "Central Heating Details",
|
|
5508
|
+
"required": [
|
|
5509
|
+
"centralHeatingFuel",
|
|
5510
|
+
"centralHeatingInstalled",
|
|
5511
|
+
"boilerInstallationCertificate",
|
|
5512
|
+
"heatingLastServicedDate",
|
|
5513
|
+
"heatingLastServicedReport",
|
|
5514
|
+
"heatingInGoodWorkingOrder"
|
|
5515
|
+
],
|
|
5516
|
+
"properties": {
|
|
5517
|
+
"centralHeatingFuel": {
|
|
5518
|
+
"baspiRef": "A7.4.0.1",
|
|
5519
|
+
"title": "Central Heating Fuel",
|
|
4853
5520
|
"discriminator": {
|
|
4854
|
-
"propertyName": "
|
|
5521
|
+
"propertyName": "centralHeatingFuelType"
|
|
4855
5522
|
},
|
|
4856
5523
|
"oneOf": [
|
|
4857
5524
|
{
|
|
4858
5525
|
"properties": {
|
|
4859
|
-
"
|
|
5526
|
+
"centralHeatingFuelType": {
|
|
4860
5527
|
"enum": [
|
|
4861
|
-
"
|
|
5528
|
+
"Gas",
|
|
5529
|
+
"Electricity",
|
|
5530
|
+
"Oil",
|
|
5531
|
+
"LPG"
|
|
4862
5532
|
]
|
|
4863
5533
|
}
|
|
4864
5534
|
}
|
|
4865
5535
|
},
|
|
4866
5536
|
{
|
|
4867
|
-
"properties": {
|
|
4868
|
-
"
|
|
4869
|
-
"enum": [
|
|
4870
|
-
"Yes"
|
|
4871
|
-
]
|
|
4872
|
-
},
|
|
4873
|
-
"attachments": {
|
|
4874
|
-
"baspiRef": "7.1.2.2",
|
|
4875
|
-
"title": "Please supply a plan showing the location of the system and how access is obtained.",
|
|
5537
|
+
"properties": {
|
|
5538
|
+
"centralHeatingFuelType": {
|
|
4876
5539
|
"enum": [
|
|
4877
|
-
"
|
|
4878
|
-
"To follow"
|
|
5540
|
+
"Other"
|
|
4879
5541
|
]
|
|
5542
|
+
},
|
|
5543
|
+
"otherCentralHeatingFuelType": {
|
|
5544
|
+
"baspiRef": "A7.4.0.3",
|
|
5545
|
+
"title": "Please describe the other fuel type"
|
|
4880
5546
|
}
|
|
4881
5547
|
},
|
|
4882
5548
|
"required": [
|
|
4883
|
-
"
|
|
5549
|
+
"otherCentralHeatingFuelType"
|
|
4884
5550
|
]
|
|
4885
5551
|
}
|
|
4886
5552
|
],
|
|
4887
5553
|
"required": [
|
|
4888
|
-
"
|
|
5554
|
+
"centralHeatingFuelType"
|
|
4889
5555
|
],
|
|
4890
5556
|
"properties": {
|
|
4891
|
-
"
|
|
4892
|
-
"baspiRef": "
|
|
5557
|
+
"centralHeatingFuelType": {
|
|
5558
|
+
"baspiRef": "A7.4.0.2",
|
|
5559
|
+
"title": "What type of fuel does the system run on?",
|
|
4893
5560
|
"enum": [
|
|
4894
|
-
"
|
|
4895
|
-
"
|
|
5561
|
+
"Gas",
|
|
5562
|
+
"Electricity",
|
|
5563
|
+
"Oil",
|
|
5564
|
+
"LPG",
|
|
5565
|
+
"Other"
|
|
4896
5566
|
]
|
|
4897
5567
|
}
|
|
4898
5568
|
}
|
|
4899
5569
|
},
|
|
4900
|
-
"
|
|
4901
|
-
"baspiRef": "A7.1
|
|
4902
|
-
"title": "
|
|
5570
|
+
"centralHeatingInstalled": {
|
|
5571
|
+
"baspiRef": "A7.4.1",
|
|
5572
|
+
"title": "When was the heating system installed?"
|
|
5573
|
+
},
|
|
5574
|
+
"boilerInstallationCertificate": {
|
|
5575
|
+
"baspiRef": "A7.4.1.1",
|
|
5576
|
+
"title": "Was a gas boiler installed after 1st April 2005, or a solid fuel or oil boiler installed after 1st October 2010?",
|
|
4903
5577
|
"discriminator": {
|
|
4904
5578
|
"propertyName": "yesNo"
|
|
4905
5579
|
},
|
|
@@ -4921,8 +5595,8 @@
|
|
|
4921
5595
|
]
|
|
4922
5596
|
},
|
|
4923
5597
|
"attachments": {
|
|
4924
|
-
"baspiRef": "A7.1.
|
|
4925
|
-
"title": "Please supply the
|
|
5598
|
+
"baspiRef": "A7.4.1.2",
|
|
5599
|
+
"title": "Please supply a copy of the installation completion certificate from a competent person qualified under the relevant self-certification scheme e.g. HETAS etc",
|
|
4926
5600
|
"enum": [
|
|
4927
5601
|
"Attached",
|
|
4928
5602
|
"To follow"
|
|
@@ -4939,7 +5613,7 @@
|
|
|
4939
5613
|
],
|
|
4940
5614
|
"properties": {
|
|
4941
5615
|
"yesNo": {
|
|
4942
|
-
"baspiRef": "
|
|
5616
|
+
"baspiRef": "A10.1.1",
|
|
4943
5617
|
"enum": [
|
|
4944
5618
|
"Yes",
|
|
4945
5619
|
"No"
|
|
@@ -4947,9 +5621,22 @@
|
|
|
4947
5621
|
}
|
|
4948
5622
|
}
|
|
4949
5623
|
},
|
|
4950
|
-
"
|
|
4951
|
-
"baspiRef": "A7.1
|
|
4952
|
-
"title": "
|
|
5624
|
+
"heatingLastServicedDate": {
|
|
5625
|
+
"baspiRef": "A7.4.2.1",
|
|
5626
|
+
"title": "When was the heating system last serviced or maintained?"
|
|
5627
|
+
},
|
|
5628
|
+
"heatingLastServicedReport": {
|
|
5629
|
+
"baspiRef": "A7.4.2.2",
|
|
5630
|
+
"title": "Please provide a copy of the service or maintenance works report.",
|
|
5631
|
+
"enum": [
|
|
5632
|
+
"Attached",
|
|
5633
|
+
"To follow",
|
|
5634
|
+
"Not available"
|
|
5635
|
+
]
|
|
5636
|
+
},
|
|
5637
|
+
"heatingInGoodWorkingOrder": {
|
|
5638
|
+
"baspiRef": "A7.4.3",
|
|
5639
|
+
"title": "Is the heating system in good working order to your satisfaction?",
|
|
4953
5640
|
"discriminator": {
|
|
4954
5641
|
"propertyName": "yesNo"
|
|
4955
5642
|
},
|
|
@@ -4958,7 +5645,7 @@
|
|
|
4958
5645
|
"properties": {
|
|
4959
5646
|
"yesNo": {
|
|
4960
5647
|
"enum": [
|
|
4961
|
-
"
|
|
5648
|
+
"Yes"
|
|
4962
5649
|
]
|
|
4963
5650
|
}
|
|
4964
5651
|
}
|
|
@@ -4967,20 +5654,16 @@
|
|
|
4967
5654
|
"properties": {
|
|
4968
5655
|
"yesNo": {
|
|
4969
5656
|
"enum": [
|
|
4970
|
-
"
|
|
5657
|
+
"No"
|
|
4971
5658
|
]
|
|
4972
5659
|
},
|
|
4973
|
-
"
|
|
4974
|
-
"baspiRef": "A7.
|
|
4975
|
-
"title": "
|
|
4976
|
-
"enum": [
|
|
4977
|
-
"Yes",
|
|
4978
|
-
"No, it does not comply with the rules for discharge into a waterway."
|
|
4979
|
-
]
|
|
5660
|
+
"details": {
|
|
5661
|
+
"baspiRef": "A7.4.3.2",
|
|
5662
|
+
"title": "Please provide details"
|
|
4980
5663
|
}
|
|
4981
5664
|
},
|
|
4982
5665
|
"required": [
|
|
4983
|
-
"
|
|
5666
|
+
"details"
|
|
4984
5667
|
]
|
|
4985
5668
|
}
|
|
4986
5669
|
],
|
|
@@ -4989,257 +5672,181 @@
|
|
|
4989
5672
|
],
|
|
4990
5673
|
"properties": {
|
|
4991
5674
|
"yesNo": {
|
|
4992
|
-
"baspiRef": "A7.
|
|
5675
|
+
"baspiRef": "A7.4.3.1",
|
|
4993
5676
|
"enum": [
|
|
4994
5677
|
"Yes",
|
|
4995
|
-
"No
|
|
5678
|
+
"No"
|
|
4996
5679
|
]
|
|
4997
5680
|
}
|
|
4998
5681
|
}
|
|
4999
5682
|
}
|
|
5000
|
-
},
|
|
5001
|
-
"required": [
|
|
5002
|
-
"sustainableDrainageSystem",
|
|
5003
|
-
"septicTank",
|
|
5004
|
-
"cesspit",
|
|
5005
|
-
"sewerageTreatmentPlant",
|
|
5006
|
-
"otherConnectedProperties",
|
|
5007
|
-
"yearSystemInstalled",
|
|
5008
|
-
"plantOnOtherLand",
|
|
5009
|
-
"plantRegistered",
|
|
5010
|
-
"plantDrainsIntoWaterway"
|
|
5011
|
-
]
|
|
5012
|
-
}
|
|
5013
|
-
],
|
|
5014
|
-
"required": [
|
|
5015
|
-
"yesNo"
|
|
5016
|
-
],
|
|
5017
|
-
"properties": {
|
|
5018
|
-
"yesNo": {
|
|
5019
|
-
"baspiRef": "A7.1.0.11.1",
|
|
5020
|
-
"enum": [
|
|
5021
|
-
"Yes",
|
|
5022
|
-
"To be connected",
|
|
5023
|
-
"No"
|
|
5024
|
-
]
|
|
5025
|
-
}
|
|
5026
|
-
}
|
|
5027
|
-
},
|
|
5028
|
-
"maintenanceAgreements": {
|
|
5029
|
-
"baspiRef": "A7.2",
|
|
5030
|
-
"title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to these services?",
|
|
5031
|
-
"discriminator": {
|
|
5032
|
-
"propertyName": "yesNo"
|
|
5033
|
-
},
|
|
5034
|
-
"oneOf": [
|
|
5035
|
-
{
|
|
5036
|
-
"properties": {
|
|
5037
|
-
"yesNo": {
|
|
5038
|
-
"enum": [
|
|
5039
|
-
"No"
|
|
5040
|
-
]
|
|
5041
|
-
}
|
|
5042
5683
|
}
|
|
5043
|
-
},
|
|
5044
|
-
{
|
|
5045
|
-
"properties": {
|
|
5046
|
-
"yesNo": {
|
|
5047
|
-
"enum": [
|
|
5048
|
-
"Yes"
|
|
5049
|
-
]
|
|
5050
|
-
},
|
|
5051
|
-
"details": {
|
|
5052
|
-
"baspiRef": "A7.2.2",
|
|
5053
|
-
"title": "Details"
|
|
5054
|
-
},
|
|
5055
|
-
"attachments": {
|
|
5056
|
-
"baspiRef": "A7.2.3",
|
|
5057
|
-
"title": "Attachments",
|
|
5058
|
-
"enum": [
|
|
5059
|
-
"Attached",
|
|
5060
|
-
"To follow"
|
|
5061
|
-
]
|
|
5062
|
-
}
|
|
5063
|
-
},
|
|
5064
|
-
"required": [
|
|
5065
|
-
"details",
|
|
5066
|
-
"attachments"
|
|
5067
|
-
]
|
|
5068
5684
|
}
|
|
5069
|
-
|
|
5685
|
+
},
|
|
5070
5686
|
"required": [
|
|
5071
|
-
"
|
|
5072
|
-
]
|
|
5073
|
-
"properties": {
|
|
5074
|
-
"yesNo": {
|
|
5075
|
-
"baspiRef": "A7.2.1",
|
|
5076
|
-
"enum": [
|
|
5077
|
-
"Yes",
|
|
5078
|
-
"No"
|
|
5079
|
-
]
|
|
5080
|
-
}
|
|
5081
|
-
}
|
|
5687
|
+
"centralHeatingDetails"
|
|
5688
|
+
]
|
|
5082
5689
|
}
|
|
5083
|
-
|
|
5084
|
-
},
|
|
5085
|
-
"greenDealLoan": {
|
|
5086
|
-
"baspiRef": "A7.3",
|
|
5087
|
-
"title": "Green Deal Loan",
|
|
5690
|
+
],
|
|
5088
5691
|
"required": [
|
|
5089
|
-
"
|
|
5692
|
+
"hasCentralHeating"
|
|
5090
5693
|
],
|
|
5091
5694
|
"properties": {
|
|
5092
|
-
"
|
|
5093
|
-
"baspiRef": "A7.
|
|
5094
|
-
"title": "Is
|
|
5095
|
-
"
|
|
5096
|
-
|
|
5097
|
-
"
|
|
5098
|
-
|
|
5099
|
-
"oneOf": [
|
|
5100
|
-
{
|
|
5101
|
-
"properties": {
|
|
5102
|
-
"yesNo": {
|
|
5103
|
-
"enum": [
|
|
5104
|
-
"No"
|
|
5105
|
-
]
|
|
5106
|
-
}
|
|
5107
|
-
}
|
|
5108
|
-
},
|
|
5109
|
-
{
|
|
5110
|
-
"properties": {
|
|
5111
|
-
"yesNo": {
|
|
5112
|
-
"enum": [
|
|
5113
|
-
"Yes"
|
|
5114
|
-
]
|
|
5115
|
-
},
|
|
5116
|
-
"details": {
|
|
5117
|
-
"baspiRef": "A7.3.2",
|
|
5118
|
-
"title": "Details"
|
|
5119
|
-
},
|
|
5120
|
-
"attachments": {
|
|
5121
|
-
"baspiRef": "A7.3.3",
|
|
5122
|
-
"title": "Attachments",
|
|
5123
|
-
"enum": [
|
|
5124
|
-
"Attached",
|
|
5125
|
-
"To follow"
|
|
5126
|
-
]
|
|
5127
|
-
}
|
|
5128
|
-
},
|
|
5129
|
-
"required": [
|
|
5130
|
-
"details",
|
|
5131
|
-
"attachments"
|
|
5132
|
-
]
|
|
5133
|
-
}
|
|
5134
|
-
],
|
|
5135
|
-
"required": [
|
|
5136
|
-
"yesNo"
|
|
5137
|
-
],
|
|
5138
|
-
"properties": {
|
|
5139
|
-
"yesNo": {
|
|
5140
|
-
"baspiRef": "A7.3.1",
|
|
5141
|
-
"enum": [
|
|
5142
|
-
"Yes",
|
|
5143
|
-
"No"
|
|
5144
|
-
]
|
|
5145
|
-
}
|
|
5146
|
-
}
|
|
5695
|
+
"hasCentralHeating": {
|
|
5696
|
+
"baspiRef": "A7.4.0",
|
|
5697
|
+
"title": "Is there full/partial central heating in your property?",
|
|
5698
|
+
"enum": [
|
|
5699
|
+
"Yes",
|
|
5700
|
+
"No"
|
|
5701
|
+
]
|
|
5147
5702
|
}
|
|
5148
5703
|
}
|
|
5149
5704
|
},
|
|
5150
|
-
"
|
|
5151
|
-
"baspiRef": "
|
|
5152
|
-
"title": "
|
|
5705
|
+
"insurance": {
|
|
5706
|
+
"baspiRef": "A8",
|
|
5707
|
+
"title": "Insurance",
|
|
5153
5708
|
"discriminator": {
|
|
5154
|
-
"propertyName": "
|
|
5709
|
+
"propertyName": "isInsured"
|
|
5155
5710
|
},
|
|
5156
5711
|
"oneOf": [
|
|
5157
5712
|
{
|
|
5158
5713
|
"properties": {
|
|
5159
|
-
"
|
|
5714
|
+
"isInsured": {
|
|
5160
5715
|
"enum": [
|
|
5161
5716
|
"No"
|
|
5162
5717
|
]
|
|
5718
|
+
},
|
|
5719
|
+
"details": {
|
|
5720
|
+
"baspiRef": "A8.1.1",
|
|
5721
|
+
"title": "Why not?"
|
|
5722
|
+
},
|
|
5723
|
+
"landlordInsuresIfFlat": {
|
|
5724
|
+
"baspiRef": "A8.1.2",
|
|
5725
|
+
"title": "If the property is a flat, does the landlord insure the building?",
|
|
5726
|
+
"enum": [
|
|
5727
|
+
"Yes",
|
|
5728
|
+
"No",
|
|
5729
|
+
"Not applicable"
|
|
5730
|
+
]
|
|
5163
5731
|
}
|
|
5164
|
-
}
|
|
5732
|
+
},
|
|
5733
|
+
"required": [
|
|
5734
|
+
"details",
|
|
5735
|
+
"landlordInsuresIfFlat"
|
|
5736
|
+
]
|
|
5165
5737
|
},
|
|
5166
5738
|
{
|
|
5167
5739
|
"properties": {
|
|
5168
|
-
"
|
|
5740
|
+
"isInsured": {
|
|
5169
5741
|
"enum": [
|
|
5170
5742
|
"Yes"
|
|
5171
5743
|
]
|
|
5172
5744
|
},
|
|
5173
|
-
"
|
|
5745
|
+
"difficultiesObtainingInsurance": {
|
|
5746
|
+
"baspiRef": "A8.1.2.1",
|
|
5747
|
+
"title": "Have you had any difficulty obtaining competitively priced building insurance due to the structure or location of the property or had insurance refused?",
|
|
5174
5748
|
"required": [
|
|
5175
|
-
"
|
|
5176
|
-
"
|
|
5177
|
-
"
|
|
5178
|
-
"
|
|
5179
|
-
"heatingInGoodWorkingOrder"
|
|
5749
|
+
"abnormalRiseInPremiums",
|
|
5750
|
+
"subjectToHighExcesses",
|
|
5751
|
+
"subjectToUnusualConditions",
|
|
5752
|
+
"refused"
|
|
5180
5753
|
],
|
|
5181
5754
|
"properties": {
|
|
5182
|
-
"
|
|
5183
|
-
"baspiRef": "
|
|
5184
|
-
"title": "
|
|
5755
|
+
"abnormalRiseInPremiums": {
|
|
5756
|
+
"baspiRef": "A8.1.2.1.1",
|
|
5757
|
+
"title": "Subject to abnormal rise in premiums?",
|
|
5758
|
+
"discriminator": {
|
|
5759
|
+
"propertyName": "yesNo"
|
|
5760
|
+
},
|
|
5761
|
+
"oneOf": [
|
|
5762
|
+
{
|
|
5763
|
+
"properties": {
|
|
5764
|
+
"yesNo": {
|
|
5765
|
+
"enum": [
|
|
5766
|
+
"No"
|
|
5767
|
+
]
|
|
5768
|
+
}
|
|
5769
|
+
}
|
|
5770
|
+
},
|
|
5771
|
+
{
|
|
5772
|
+
"properties": {
|
|
5773
|
+
"yesNo": {
|
|
5774
|
+
"enum": [
|
|
5775
|
+
"Yes"
|
|
5776
|
+
]
|
|
5777
|
+
},
|
|
5778
|
+
"details": {
|
|
5779
|
+
"baspiRef": "A8.1.2.1.3",
|
|
5780
|
+
"title": "Provide details"
|
|
5781
|
+
}
|
|
5782
|
+
},
|
|
5783
|
+
"required": [
|
|
5784
|
+
"details"
|
|
5785
|
+
]
|
|
5786
|
+
}
|
|
5787
|
+
],
|
|
5788
|
+
"required": [
|
|
5789
|
+
"yesNo"
|
|
5790
|
+
],
|
|
5791
|
+
"properties": {
|
|
5792
|
+
"yesNo": {
|
|
5793
|
+
"baspiRef": "A8.1.2.1.2",
|
|
5794
|
+
"enum": [
|
|
5795
|
+
"Yes",
|
|
5796
|
+
"No"
|
|
5797
|
+
]
|
|
5798
|
+
}
|
|
5799
|
+
}
|
|
5800
|
+
},
|
|
5801
|
+
"subjectToHighExcesses": {
|
|
5802
|
+
"baspiRef": "A8.1.1.2",
|
|
5803
|
+
"title": "Subject to high excesses?",
|
|
5185
5804
|
"discriminator": {
|
|
5186
|
-
"propertyName": "
|
|
5805
|
+
"propertyName": "yesNo"
|
|
5187
5806
|
},
|
|
5188
5807
|
"oneOf": [
|
|
5189
5808
|
{
|
|
5190
5809
|
"properties": {
|
|
5191
|
-
"
|
|
5810
|
+
"yesNo": {
|
|
5192
5811
|
"enum": [
|
|
5193
|
-
"
|
|
5194
|
-
"Electricity",
|
|
5195
|
-
"Oil",
|
|
5196
|
-
"LPG"
|
|
5812
|
+
"No"
|
|
5197
5813
|
]
|
|
5198
5814
|
}
|
|
5199
5815
|
}
|
|
5200
5816
|
},
|
|
5201
5817
|
{
|
|
5202
5818
|
"properties": {
|
|
5203
|
-
"
|
|
5819
|
+
"yesNo": {
|
|
5204
5820
|
"enum": [
|
|
5205
|
-
"
|
|
5821
|
+
"Yes"
|
|
5206
5822
|
]
|
|
5207
5823
|
},
|
|
5208
|
-
"
|
|
5209
|
-
"baspiRef": "
|
|
5210
|
-
"title": "
|
|
5824
|
+
"details": {
|
|
5825
|
+
"baspiRef": "A8.1.2.1.2.2",
|
|
5826
|
+
"title": "Provide details"
|
|
5211
5827
|
}
|
|
5212
5828
|
},
|
|
5213
5829
|
"required": [
|
|
5214
|
-
"
|
|
5830
|
+
"details"
|
|
5215
5831
|
]
|
|
5216
5832
|
}
|
|
5217
5833
|
],
|
|
5218
5834
|
"required": [
|
|
5219
|
-
"
|
|
5835
|
+
"yesNo"
|
|
5220
5836
|
],
|
|
5221
5837
|
"properties": {
|
|
5222
|
-
"
|
|
5223
|
-
"baspiRef": "
|
|
5224
|
-
"title": "What type of fuel does the system and boiler run on?",
|
|
5838
|
+
"yesNo": {
|
|
5839
|
+
"baspiRef": "A8.1.1.2.1",
|
|
5225
5840
|
"enum": [
|
|
5226
|
-
"
|
|
5227
|
-
"
|
|
5228
|
-
"Oil",
|
|
5229
|
-
"LPG",
|
|
5230
|
-
"Other"
|
|
5841
|
+
"Yes",
|
|
5842
|
+
"No"
|
|
5231
5843
|
]
|
|
5232
5844
|
}
|
|
5233
5845
|
}
|
|
5234
5846
|
},
|
|
5235
|
-
"
|
|
5236
|
-
"baspiRef": "
|
|
5237
|
-
"title": "
|
|
5238
|
-
},
|
|
5239
|
-
"boilerInstallationCertificate": {
|
|
5240
|
-
"baspiRef": "A7.4.1.1",
|
|
5241
|
-
"title": "Was a gas boiler installed after 1st April 2005, or a solid fuel or oil boiler installed after 1st October 2010?",
|
|
5242
|
-
"description": "If yes, ",
|
|
5847
|
+
"subjectToUnusualConditions": {
|
|
5848
|
+
"baspiRef": "A8.1.2.1.3",
|
|
5849
|
+
"title": "Subject to unusual conditions?",
|
|
5243
5850
|
"discriminator": {
|
|
5244
5851
|
"propertyName": "yesNo"
|
|
5245
5852
|
},
|
|
@@ -5260,17 +5867,13 @@
|
|
|
5260
5867
|
"Yes"
|
|
5261
5868
|
]
|
|
5262
5869
|
},
|
|
5263
|
-
"
|
|
5264
|
-
"baspiRef": "
|
|
5265
|
-
"title": "
|
|
5266
|
-
"enum": [
|
|
5267
|
-
"Attached",
|
|
5268
|
-
"To follow"
|
|
5269
|
-
]
|
|
5870
|
+
"details": {
|
|
5871
|
+
"baspiRef": "A8.1.2.1.3.2",
|
|
5872
|
+
"title": "Provide details"
|
|
5270
5873
|
}
|
|
5271
5874
|
},
|
|
5272
5875
|
"required": [
|
|
5273
|
-
"
|
|
5876
|
+
"details"
|
|
5274
5877
|
]
|
|
5275
5878
|
}
|
|
5276
5879
|
],
|
|
@@ -5279,7 +5882,7 @@
|
|
|
5279
5882
|
],
|
|
5280
5883
|
"properties": {
|
|
5281
5884
|
"yesNo": {
|
|
5282
|
-
"baspiRef": "
|
|
5885
|
+
"baspiRef": "A8.1.2.1.3.1",
|
|
5283
5886
|
"enum": [
|
|
5284
5887
|
"Yes",
|
|
5285
5888
|
"No"
|
|
@@ -5287,22 +5890,9 @@
|
|
|
5287
5890
|
}
|
|
5288
5891
|
}
|
|
5289
5892
|
},
|
|
5290
|
-
"
|
|
5291
|
-
"baspiRef": "
|
|
5292
|
-
"title": "
|
|
5293
|
-
},
|
|
5294
|
-
"heatingLastServicedReport": {
|
|
5295
|
-
"baspiRef": "A7.4.2.2",
|
|
5296
|
-
"title": "Please provide a copy of the service or maintenance works report.",
|
|
5297
|
-
"enum": [
|
|
5298
|
-
"Attached",
|
|
5299
|
-
"To follow",
|
|
5300
|
-
"N/A"
|
|
5301
|
-
]
|
|
5302
|
-
},
|
|
5303
|
-
"heatingInGoodWorkingOrder": {
|
|
5304
|
-
"baspiRef": "A7.4.3",
|
|
5305
|
-
"title": "Is the heating system in good working order to your satisfaction?",
|
|
5893
|
+
"refused": {
|
|
5894
|
+
"baspiRef": "A8.1.2.1.4",
|
|
5895
|
+
"title": "Refused?",
|
|
5306
5896
|
"discriminator": {
|
|
5307
5897
|
"propertyName": "yesNo"
|
|
5308
5898
|
},
|
|
@@ -5311,7 +5901,7 @@
|
|
|
5311
5901
|
"properties": {
|
|
5312
5902
|
"yesNo": {
|
|
5313
5903
|
"enum": [
|
|
5314
|
-
"
|
|
5904
|
+
"No"
|
|
5315
5905
|
]
|
|
5316
5906
|
}
|
|
5317
5907
|
}
|
|
@@ -5320,12 +5910,12 @@
|
|
|
5320
5910
|
"properties": {
|
|
5321
5911
|
"yesNo": {
|
|
5322
5912
|
"enum": [
|
|
5323
|
-
"
|
|
5913
|
+
"Yes"
|
|
5324
5914
|
]
|
|
5325
5915
|
},
|
|
5326
5916
|
"details": {
|
|
5327
|
-
"baspiRef": "
|
|
5328
|
-
"title": "
|
|
5917
|
+
"baspiRef": "A8.1.2.1.4.2",
|
|
5918
|
+
"title": "Provide details"
|
|
5329
5919
|
}
|
|
5330
5920
|
},
|
|
5331
5921
|
"required": [
|
|
@@ -5338,7 +5928,7 @@
|
|
|
5338
5928
|
],
|
|
5339
5929
|
"properties": {
|
|
5340
5930
|
"yesNo": {
|
|
5341
|
-
"baspiRef": "
|
|
5931
|
+
"baspiRef": "A8.1.2.1.4.1",
|
|
5342
5932
|
"enum": [
|
|
5343
5933
|
"Yes",
|
|
5344
5934
|
"No"
|
|
@@ -5347,103 +5937,6 @@
|
|
|
5347
5937
|
}
|
|
5348
5938
|
}
|
|
5349
5939
|
}
|
|
5350
|
-
}
|
|
5351
|
-
},
|
|
5352
|
-
"required": [
|
|
5353
|
-
"centralHeatingDetails"
|
|
5354
|
-
]
|
|
5355
|
-
}
|
|
5356
|
-
],
|
|
5357
|
-
"required": [
|
|
5358
|
-
"hasCentralHeating"
|
|
5359
|
-
],
|
|
5360
|
-
"properties": {
|
|
5361
|
-
"hasCentralHeating": {
|
|
5362
|
-
"baspiRef": "A7.4.0",
|
|
5363
|
-
"title": "Is there full/partial central heating in your property?",
|
|
5364
|
-
"enum": [
|
|
5365
|
-
"Yes",
|
|
5366
|
-
"No"
|
|
5367
|
-
]
|
|
5368
|
-
}
|
|
5369
|
-
}
|
|
5370
|
-
},
|
|
5371
|
-
"insurance": {
|
|
5372
|
-
"baspiRef": "A8",
|
|
5373
|
-
"title": "Insurance",
|
|
5374
|
-
"discriminator": {
|
|
5375
|
-
"propertyName": "isInsured"
|
|
5376
|
-
},
|
|
5377
|
-
"oneOf": [
|
|
5378
|
-
{
|
|
5379
|
-
"properties": {
|
|
5380
|
-
"isInsured": {
|
|
5381
|
-
"enum": [
|
|
5382
|
-
"No"
|
|
5383
|
-
]
|
|
5384
|
-
},
|
|
5385
|
-
"details": {
|
|
5386
|
-
"baspiRef": "A8.1.1",
|
|
5387
|
-
"title": "Why not?"
|
|
5388
|
-
}
|
|
5389
|
-
},
|
|
5390
|
-
"required": [
|
|
5391
|
-
"details"
|
|
5392
|
-
]
|
|
5393
|
-
},
|
|
5394
|
-
{
|
|
5395
|
-
"properties": {
|
|
5396
|
-
"isInsured": {
|
|
5397
|
-
"enum": [
|
|
5398
|
-
"Yes"
|
|
5399
|
-
]
|
|
5400
|
-
},
|
|
5401
|
-
"difficultiesObtainingInsurance": {
|
|
5402
|
-
"baspiRef": "A8.1.2",
|
|
5403
|
-
"title": "Have you had any difficulty obtaining competitively priced building insurance due to the structure or location of the property or had insurance refused?",
|
|
5404
|
-
"description": "(e.g. high premiums, excess over £1,500, special conditions etc)",
|
|
5405
|
-
"discriminator": {
|
|
5406
|
-
"propertyName": "yesNo"
|
|
5407
|
-
},
|
|
5408
|
-
"oneOf": [
|
|
5409
|
-
{
|
|
5410
|
-
"properties": {
|
|
5411
|
-
"yesNo": {
|
|
5412
|
-
"enum": [
|
|
5413
|
-
"No"
|
|
5414
|
-
]
|
|
5415
|
-
}
|
|
5416
|
-
}
|
|
5417
|
-
},
|
|
5418
|
-
{
|
|
5419
|
-
"properties": {
|
|
5420
|
-
"yesNo": {
|
|
5421
|
-
"enum": [
|
|
5422
|
-
"Yes"
|
|
5423
|
-
]
|
|
5424
|
-
},
|
|
5425
|
-
"details": {
|
|
5426
|
-
"baspiRef": "A8.1.2.2",
|
|
5427
|
-
"title": "Provide details"
|
|
5428
|
-
}
|
|
5429
|
-
},
|
|
5430
|
-
"required": [
|
|
5431
|
-
"details"
|
|
5432
|
-
]
|
|
5433
|
-
}
|
|
5434
|
-
],
|
|
5435
|
-
"required": [
|
|
5436
|
-
"yesNo"
|
|
5437
|
-
],
|
|
5438
|
-
"properties": {
|
|
5439
|
-
"yesNo": {
|
|
5440
|
-
"baspiRef": "A8.1.2.1",
|
|
5441
|
-
"enum": [
|
|
5442
|
-
"Yes",
|
|
5443
|
-
"No"
|
|
5444
|
-
]
|
|
5445
|
-
}
|
|
5446
|
-
}
|
|
5447
5940
|
},
|
|
5448
5941
|
"insuranceClaims": {
|
|
5449
5942
|
"baspiRef": "A8.2",
|
|
@@ -5777,7 +6270,6 @@
|
|
|
5777
6270
|
"neighbouringLandRights": {
|
|
5778
6271
|
"baspiRef": "A10.2",
|
|
5779
6272
|
"title": "Do any rights and arrangements exist over neighbouring land from which the property benefits? (e.g. taking wheelie bins along an accessway through a neighbour’s back garden, parking, access to maintain the boundaries from the neighbour’s side etc)",
|
|
5780
|
-
"description": "If yes,",
|
|
5781
6273
|
"discriminator": {
|
|
5782
6274
|
"propertyName": "yesNo"
|
|
5783
6275
|
},
|
|
@@ -5881,10 +6373,12 @@
|
|
|
5881
6373
|
"title": "Do you know if any of the following rights or arrangements affect the property?",
|
|
5882
6374
|
"required": [
|
|
5883
6375
|
"publicRightOfWay",
|
|
5884
|
-
"
|
|
6376
|
+
"rightsOfLight",
|
|
6377
|
+
"rightsOfSupport",
|
|
5885
6378
|
"rightsCreatedThroughCustom",
|
|
5886
6379
|
"minesAndMinerals",
|
|
5887
6380
|
"churchChancel",
|
|
6381
|
+
"rightsToTakeFromLand",
|
|
5888
6382
|
"otherRights"
|
|
5889
6383
|
],
|
|
5890
6384
|
"properties": {
|
|
@@ -5943,9 +6437,101 @@
|
|
|
5943
6437
|
}
|
|
5944
6438
|
}
|
|
5945
6439
|
},
|
|
5946
|
-
"
|
|
5947
|
-
"baspiRef": "A10.4.
|
|
5948
|
-
"title": "Rights of light
|
|
6440
|
+
"rightsOfLight": {
|
|
6441
|
+
"baspiRef": "A10.4.2a",
|
|
6442
|
+
"title": "Rights of light",
|
|
6443
|
+
"discriminator": {
|
|
6444
|
+
"propertyName": "yesNo"
|
|
6445
|
+
},
|
|
6446
|
+
"oneOf": [
|
|
6447
|
+
{
|
|
6448
|
+
"properties": {
|
|
6449
|
+
"yesNo": {
|
|
6450
|
+
"enum": [
|
|
6451
|
+
"No"
|
|
6452
|
+
]
|
|
6453
|
+
}
|
|
6454
|
+
}
|
|
6455
|
+
},
|
|
6456
|
+
{
|
|
6457
|
+
"properties": {
|
|
6458
|
+
"yesNo": {
|
|
6459
|
+
"enum": [
|
|
6460
|
+
"Yes"
|
|
6461
|
+
]
|
|
6462
|
+
},
|
|
6463
|
+
"details": {
|
|
6464
|
+
"baspiRef": "A10.4.2a.2",
|
|
6465
|
+
"title": "Details"
|
|
6466
|
+
}
|
|
6467
|
+
},
|
|
6468
|
+
"required": [
|
|
6469
|
+
"details"
|
|
6470
|
+
]
|
|
6471
|
+
}
|
|
6472
|
+
],
|
|
6473
|
+
"required": [
|
|
6474
|
+
"yesNo"
|
|
6475
|
+
],
|
|
6476
|
+
"properties": {
|
|
6477
|
+
"yesNo": {
|
|
6478
|
+
"baspiRef": "A10.4.2a.1",
|
|
6479
|
+
"enum": [
|
|
6480
|
+
"Yes",
|
|
6481
|
+
"No"
|
|
6482
|
+
]
|
|
6483
|
+
}
|
|
6484
|
+
}
|
|
6485
|
+
},
|
|
6486
|
+
"rightsOfSupport": {
|
|
6487
|
+
"baspiRef": "A10.4.2b",
|
|
6488
|
+
"title": "Rights of support from ajoining properties",
|
|
6489
|
+
"discriminator": {
|
|
6490
|
+
"propertyName": "yesNo"
|
|
6491
|
+
},
|
|
6492
|
+
"oneOf": [
|
|
6493
|
+
{
|
|
6494
|
+
"properties": {
|
|
6495
|
+
"yesNo": {
|
|
6496
|
+
"enum": [
|
|
6497
|
+
"No"
|
|
6498
|
+
]
|
|
6499
|
+
}
|
|
6500
|
+
}
|
|
6501
|
+
},
|
|
6502
|
+
{
|
|
6503
|
+
"properties": {
|
|
6504
|
+
"yesNo": {
|
|
6505
|
+
"enum": [
|
|
6506
|
+
"Yes"
|
|
6507
|
+
]
|
|
6508
|
+
},
|
|
6509
|
+
"details": {
|
|
6510
|
+
"baspiRef": "A10.4.2b.2",
|
|
6511
|
+
"title": "Details"
|
|
6512
|
+
}
|
|
6513
|
+
},
|
|
6514
|
+
"required": [
|
|
6515
|
+
"details"
|
|
6516
|
+
]
|
|
6517
|
+
}
|
|
6518
|
+
],
|
|
6519
|
+
"required": [
|
|
6520
|
+
"yesNo"
|
|
6521
|
+
],
|
|
6522
|
+
"properties": {
|
|
6523
|
+
"yesNo": {
|
|
6524
|
+
"baspiRef": "A10.4.2b.1",
|
|
6525
|
+
"enum": [
|
|
6526
|
+
"Yes",
|
|
6527
|
+
"No"
|
|
6528
|
+
]
|
|
6529
|
+
}
|
|
6530
|
+
}
|
|
6531
|
+
},
|
|
6532
|
+
"rightsCreatedThroughCustom": {
|
|
6533
|
+
"baspiRef": "A10.4.3a",
|
|
6534
|
+
"title": "Rights created through custom or use (e.g. rights to graze on other land or forage)",
|
|
5949
6535
|
"discriminator": {
|
|
5950
6536
|
"propertyName": "yesNo"
|
|
5951
6537
|
},
|
|
@@ -5967,7 +6553,7 @@
|
|
|
5967
6553
|
]
|
|
5968
6554
|
},
|
|
5969
6555
|
"details": {
|
|
5970
|
-
"baspiRef": "A10.4.
|
|
6556
|
+
"baspiRef": "A10.4.3a2",
|
|
5971
6557
|
"title": "Details"
|
|
5972
6558
|
}
|
|
5973
6559
|
},
|
|
@@ -5981,7 +6567,7 @@
|
|
|
5981
6567
|
],
|
|
5982
6568
|
"properties": {
|
|
5983
6569
|
"yesNo": {
|
|
5984
|
-
"baspiRef": "A10.4.
|
|
6570
|
+
"baspiRef": "A10.4.3a1",
|
|
5985
6571
|
"enum": [
|
|
5986
6572
|
"Yes",
|
|
5987
6573
|
"No"
|
|
@@ -5989,9 +6575,9 @@
|
|
|
5989
6575
|
}
|
|
5990
6576
|
}
|
|
5991
6577
|
},
|
|
5992
|
-
"
|
|
5993
|
-
"baspiRef": "A10.4.
|
|
5994
|
-
"title": "
|
|
6578
|
+
"rightsToTakeFromLand": {
|
|
6579
|
+
"baspiRef": "A10.4.3b",
|
|
6580
|
+
"title": "Other people's rights to take things from the land (such as timber, hay or fish)",
|
|
5995
6581
|
"discriminator": {
|
|
5996
6582
|
"propertyName": "yesNo"
|
|
5997
6583
|
},
|
|
@@ -6013,7 +6599,7 @@
|
|
|
6013
6599
|
]
|
|
6014
6600
|
},
|
|
6015
6601
|
"details": {
|
|
6016
|
-
"baspiRef": "A10.4.
|
|
6602
|
+
"baspiRef": "A10.4.3b2",
|
|
6017
6603
|
"title": "Details"
|
|
6018
6604
|
}
|
|
6019
6605
|
},
|
|
@@ -6027,7 +6613,7 @@
|
|
|
6027
6613
|
],
|
|
6028
6614
|
"properties": {
|
|
6029
6615
|
"yesNo": {
|
|
6030
|
-
"baspiRef": "A10.4.
|
|
6616
|
+
"baspiRef": "A10.4.3b1",
|
|
6031
6617
|
"enum": [
|
|
6032
6618
|
"Yes",
|
|
6033
6619
|
"No"
|
|
@@ -6228,42 +6814,46 @@
|
|
|
6228
6814
|
"groundWater": {
|
|
6229
6815
|
"baspiRef": "A11.1.2.2.1",
|
|
6230
6816
|
"title": "Ground water",
|
|
6231
|
-
"
|
|
6232
|
-
"
|
|
6817
|
+
"enum": [
|
|
6818
|
+
"Yes",
|
|
6819
|
+
"No"
|
|
6233
6820
|
]
|
|
6234
6821
|
},
|
|
6235
6822
|
"sewer": {
|
|
6236
6823
|
"baspiRef": "A11.1.2.2.2",
|
|
6237
6824
|
"title": "Sewer",
|
|
6238
|
-
"
|
|
6239
|
-
"
|
|
6825
|
+
"enum": [
|
|
6826
|
+
"Yes",
|
|
6827
|
+
"No"
|
|
6240
6828
|
]
|
|
6241
6829
|
},
|
|
6242
6830
|
"surfaceWater": {
|
|
6243
6831
|
"baspiRef": "A11.1.2.2.3",
|
|
6244
6832
|
"title": "Surface water",
|
|
6245
|
-
"
|
|
6246
|
-
"
|
|
6833
|
+
"enum": [
|
|
6834
|
+
"Yes",
|
|
6835
|
+
"No"
|
|
6247
6836
|
]
|
|
6248
6837
|
},
|
|
6249
6838
|
"coastal": {
|
|
6250
6839
|
"baspiRef": "A11.1.2.2.4",
|
|
6251
6840
|
"title": "Coastal flooding",
|
|
6252
|
-
"
|
|
6253
|
-
"
|
|
6841
|
+
"enum": [
|
|
6842
|
+
"Yes",
|
|
6843
|
+
"No"
|
|
6254
6844
|
]
|
|
6255
6845
|
},
|
|
6256
6846
|
"river": {
|
|
6257
6847
|
"baspiRef": "A11.1.2.2.5",
|
|
6258
6848
|
"title": "River flooding",
|
|
6259
|
-
"
|
|
6260
|
-
"
|
|
6849
|
+
"enum": [
|
|
6850
|
+
"Yes",
|
|
6851
|
+
"No"
|
|
6261
6852
|
]
|
|
6262
6853
|
},
|
|
6263
6854
|
"other": {
|
|
6264
6855
|
"baspiRef": "A11.1.2.2.6",
|
|
6265
6856
|
"title": "Other",
|
|
6266
|
-
"description": "Please state",
|
|
6267
6857
|
"discriminator": {
|
|
6268
6858
|
"propertyName": "yesNo"
|
|
6269
6859
|
},
|
|
@@ -6285,7 +6875,7 @@
|
|
|
6285
6875
|
]
|
|
6286
6876
|
},
|
|
6287
6877
|
"details": {
|
|
6288
|
-
"baspiRef": "A11.1.2.2.6.
|
|
6878
|
+
"baspiRef": "A11.1.2.2.6.2",
|
|
6289
6879
|
"title": "Please stata"
|
|
6290
6880
|
}
|
|
6291
6881
|
},
|
|
@@ -6296,7 +6886,16 @@
|
|
|
6296
6886
|
],
|
|
6297
6887
|
"required": [
|
|
6298
6888
|
"yesNo"
|
|
6299
|
-
]
|
|
6889
|
+
],
|
|
6890
|
+
"properties": {
|
|
6891
|
+
"yesNo": {
|
|
6892
|
+
"baspiRef": "A11.1.2.2.6.1",
|
|
6893
|
+
"enum": [
|
|
6894
|
+
"Yes",
|
|
6895
|
+
"No"
|
|
6896
|
+
]
|
|
6897
|
+
}
|
|
6898
|
+
}
|
|
6300
6899
|
}
|
|
6301
6900
|
}
|
|
6302
6901
|
}
|
|
@@ -6405,11 +7004,15 @@
|
|
|
6405
7004
|
},
|
|
6406
7005
|
"details": {
|
|
6407
7006
|
"baspiRef": "A11.1.3.2",
|
|
6408
|
-
"title": "
|
|
7007
|
+
"title": "Was the test result was below the recommended level?",
|
|
7008
|
+
"enum": [
|
|
7009
|
+
"Yes",
|
|
7010
|
+
"No"
|
|
7011
|
+
]
|
|
6409
7012
|
},
|
|
6410
7013
|
"attachments": {
|
|
6411
7014
|
"baspiRef": "A11.1.3.3",
|
|
6412
|
-
"title": "
|
|
7015
|
+
"title": "Please supply a copy of the report",
|
|
6413
7016
|
"enum": [
|
|
6414
7017
|
"Attached",
|
|
6415
7018
|
"To follow"
|
|
@@ -6436,15 +7039,18 @@
|
|
|
6436
7039
|
}
|
|
6437
7040
|
},
|
|
6438
7041
|
"remedialMeasuresOnConstruction": {
|
|
7042
|
+
"baspiRef": "A11.1.3.4",
|
|
7043
|
+
"title": "Were any remedial measures undertaken on construction to reduce Radon gas levels on the property?",
|
|
6439
7044
|
"required": [
|
|
6440
7045
|
"yesNo"
|
|
6441
7046
|
],
|
|
6442
7047
|
"properties": {
|
|
6443
7048
|
"yesNo": {
|
|
6444
|
-
"baspiRef": "A11.1.3.4",
|
|
7049
|
+
"baspiRef": "A11.1.3.4.1",
|
|
6445
7050
|
"enum": [
|
|
6446
7051
|
"Yes",
|
|
6447
|
-
"No"
|
|
7052
|
+
"No",
|
|
7053
|
+
"Not known"
|
|
6448
7054
|
]
|
|
6449
7055
|
}
|
|
6450
7056
|
}
|
|
@@ -6462,7 +7068,8 @@
|
|
|
6462
7068
|
"properties": {
|
|
6463
7069
|
"yesNo": {
|
|
6464
7070
|
"enum": [
|
|
6465
|
-
"No"
|
|
7071
|
+
"No",
|
|
7072
|
+
"Not known"
|
|
6466
7073
|
]
|
|
6467
7074
|
}
|
|
6468
7075
|
}
|
|
@@ -6732,7 +7339,8 @@
|
|
|
6732
7339
|
"title": "Additional Information",
|
|
6733
7340
|
"required": [
|
|
6734
7341
|
"restrictionsOnUseNotCompliedWith",
|
|
6735
|
-
"otherMaterialIssue"
|
|
7342
|
+
"otherMaterialIssue",
|
|
7343
|
+
"otherCharges"
|
|
6736
7344
|
],
|
|
6737
7345
|
"properties": {
|
|
6738
7346
|
"restrictionsOnUseNotCompliedWith": {
|
|
@@ -6815,7 +7423,7 @@
|
|
|
6815
7423
|
},
|
|
6816
7424
|
"details": {
|
|
6817
7425
|
"baspiRef": "A12.2.2",
|
|
6818
|
-
"title": "
|
|
7426
|
+
"title": "Please describe this issue and any action that has been taken, if applicable."
|
|
6819
7427
|
},
|
|
6820
7428
|
"attachments": {
|
|
6821
7429
|
"baspiRef": "A12.2.3",
|
|
@@ -6843,6 +7451,52 @@
|
|
|
6843
7451
|
]
|
|
6844
7452
|
}
|
|
6845
7453
|
}
|
|
7454
|
+
},
|
|
7455
|
+
"otherCharges": {
|
|
7456
|
+
"baspiRef": "A12.3",
|
|
7457
|
+
"title": "Does the seller have to pay any charges relating to the property (excluding any payments such as council tax, utility charges, etc.), for example payments to a management company?",
|
|
7458
|
+
"discriminator": {
|
|
7459
|
+
"propertyName": "yesNo"
|
|
7460
|
+
},
|
|
7461
|
+
"oneOf": [
|
|
7462
|
+
{
|
|
7463
|
+
"properties": {
|
|
7464
|
+
"yesNo": {
|
|
7465
|
+
"enum": [
|
|
7466
|
+
"No"
|
|
7467
|
+
]
|
|
7468
|
+
}
|
|
7469
|
+
}
|
|
7470
|
+
},
|
|
7471
|
+
{
|
|
7472
|
+
"properties": {
|
|
7473
|
+
"yesNo": {
|
|
7474
|
+
"enum": [
|
|
7475
|
+
"Yes"
|
|
7476
|
+
]
|
|
7477
|
+
},
|
|
7478
|
+
"details": {
|
|
7479
|
+
"baspiRef": "A12.3.2",
|
|
7480
|
+
"title": "Please give details"
|
|
7481
|
+
}
|
|
7482
|
+
},
|
|
7483
|
+
"required": [
|
|
7484
|
+
"details"
|
|
7485
|
+
]
|
|
7486
|
+
}
|
|
7487
|
+
],
|
|
7488
|
+
"required": [
|
|
7489
|
+
"yesNo"
|
|
7490
|
+
],
|
|
7491
|
+
"properties": {
|
|
7492
|
+
"yesNo": {
|
|
7493
|
+
"baspiRef": "A12.3.1",
|
|
7494
|
+
"enum": [
|
|
7495
|
+
"Yes",
|
|
7496
|
+
"No"
|
|
7497
|
+
]
|
|
7498
|
+
}
|
|
7499
|
+
}
|
|
6846
7500
|
}
|
|
6847
7501
|
}
|
|
6848
7502
|
},
|
|
@@ -7053,6 +7707,14 @@
|
|
|
7053
7707
|
]
|
|
7054
7708
|
},
|
|
7055
7709
|
"uniformBoundaries": {
|
|
7710
|
+
"baspiRef": "B2.1.0.2",
|
|
7711
|
+
"title": "Please indicate who has repaired, or treated as belonging to them, each of the boundaries. Identify each boundary as if you were looking at the property from the road.",
|
|
7712
|
+
"required": [
|
|
7713
|
+
"left",
|
|
7714
|
+
"right",
|
|
7715
|
+
"rear",
|
|
7716
|
+
"front"
|
|
7717
|
+
],
|
|
7056
7718
|
"properties": {
|
|
7057
7719
|
"left": {
|
|
7058
7720
|
"baspiRef": "B2.1.1",
|
|
@@ -7096,13 +7758,7 @@
|
|
|
7096
7758
|
}
|
|
7097
7759
|
}
|
|
7098
7760
|
}
|
|
7099
|
-
}
|
|
7100
|
-
"required": [
|
|
7101
|
-
"left",
|
|
7102
|
-
"right",
|
|
7103
|
-
"rear",
|
|
7104
|
-
"front"
|
|
7105
|
-
]
|
|
7761
|
+
}
|
|
7106
7762
|
},
|
|
7107
7763
|
{
|
|
7108
7764
|
"properties": {
|
|
@@ -7133,7 +7789,7 @@
|
|
|
7133
7789
|
"properties": {
|
|
7134
7790
|
"areBoundariesUniform": {
|
|
7135
7791
|
"enum": [
|
|
7136
|
-
"
|
|
7792
|
+
"Not applicable"
|
|
7137
7793
|
]
|
|
7138
7794
|
}
|
|
7139
7795
|
}
|
|
@@ -7145,10 +7801,11 @@
|
|
|
7145
7801
|
"properties": {
|
|
7146
7802
|
"areBoundariesUniform": {
|
|
7147
7803
|
"baspiRef": "B2.1.0.1",
|
|
7804
|
+
"title": "Are the boundaries uniform?",
|
|
7148
7805
|
"enum": [
|
|
7149
7806
|
"Yes",
|
|
7150
7807
|
"No",
|
|
7151
|
-
"
|
|
7808
|
+
"Not applicable"
|
|
7152
7809
|
]
|
|
7153
7810
|
}
|
|
7154
7811
|
}
|
|
@@ -7165,7 +7822,7 @@
|
|
|
7165
7822
|
"yesNo": {
|
|
7166
7823
|
"enum": [
|
|
7167
7824
|
"No",
|
|
7168
|
-
"
|
|
7825
|
+
"Not applicable"
|
|
7169
7826
|
]
|
|
7170
7827
|
}
|
|
7171
7828
|
}
|
|
@@ -7196,7 +7853,7 @@
|
|
|
7196
7853
|
"enum": [
|
|
7197
7854
|
"Yes",
|
|
7198
7855
|
"No",
|
|
7199
|
-
"
|
|
7856
|
+
"Not applicable"
|
|
7200
7857
|
]
|
|
7201
7858
|
}
|
|
7202
7859
|
}
|
|
@@ -7213,7 +7870,7 @@
|
|
|
7213
7870
|
"yesNo": {
|
|
7214
7871
|
"enum": [
|
|
7215
7872
|
"No",
|
|
7216
|
-
"
|
|
7873
|
+
"Not applicable"
|
|
7217
7874
|
]
|
|
7218
7875
|
}
|
|
7219
7876
|
}
|
|
@@ -7244,7 +7901,7 @@
|
|
|
7244
7901
|
"enum": [
|
|
7245
7902
|
"Yes",
|
|
7246
7903
|
"No",
|
|
7247
|
-
"
|
|
7904
|
+
"Not applicable"
|
|
7248
7905
|
]
|
|
7249
7906
|
}
|
|
7250
7907
|
}
|
|
@@ -7252,7 +7909,7 @@
|
|
|
7252
7909
|
"flyingFreehold": {
|
|
7253
7910
|
"baspiRef": "B2.5",
|
|
7254
7911
|
"title": "Is there a flying freehold?",
|
|
7255
|
-
"description": "NOTE: a flying freehold is when part of the property overhangs a neighbour’s property or an accessway -
|
|
7912
|
+
"description": "NOTE: a flying freehold is when part of the property overhangs a neighbour’s property or an accessway - e.g. a terrace house where part of the upstairs is over an accessway which belongs to someone else.",
|
|
7256
7913
|
"discriminator": {
|
|
7257
7914
|
"propertyName": "yesNo"
|
|
7258
7915
|
},
|
|
@@ -7262,7 +7919,7 @@
|
|
|
7262
7919
|
"yesNo": {
|
|
7263
7920
|
"enum": [
|
|
7264
7921
|
"No",
|
|
7265
|
-
"
|
|
7922
|
+
"Not applicable"
|
|
7266
7923
|
]
|
|
7267
7924
|
}
|
|
7268
7925
|
}
|
|
@@ -7293,7 +7950,7 @@
|
|
|
7293
7950
|
"enum": [
|
|
7294
7951
|
"Yes",
|
|
7295
7952
|
"No",
|
|
7296
|
-
"
|
|
7953
|
+
"Not applicable"
|
|
7297
7954
|
]
|
|
7298
7955
|
}
|
|
7299
7956
|
}
|
|
@@ -7320,7 +7977,8 @@
|
|
|
7320
7977
|
"properties": {
|
|
7321
7978
|
"yesNo": {
|
|
7322
7979
|
"enum": [
|
|
7323
|
-
"No"
|
|
7980
|
+
"No",
|
|
7981
|
+
"Not known"
|
|
7324
7982
|
]
|
|
7325
7983
|
}
|
|
7326
7984
|
}
|
|
@@ -7358,7 +8016,8 @@
|
|
|
7358
8016
|
"baspiRef": "B3.1.1",
|
|
7359
8017
|
"enum": [
|
|
7360
8018
|
"Yes",
|
|
7361
|
-
"No"
|
|
8019
|
+
"No",
|
|
8020
|
+
"Not known"
|
|
7362
8021
|
]
|
|
7363
8022
|
}
|
|
7364
8023
|
}
|
|
@@ -7374,7 +8033,8 @@
|
|
|
7374
8033
|
"properties": {
|
|
7375
8034
|
"yesNo": {
|
|
7376
8035
|
"enum": [
|
|
7377
|
-
"No"
|
|
8036
|
+
"No",
|
|
8037
|
+
"Not known"
|
|
7378
8038
|
]
|
|
7379
8039
|
}
|
|
7380
8040
|
}
|
|
@@ -7412,7 +8072,8 @@
|
|
|
7412
8072
|
"baspiRef": "B3.2.1",
|
|
7413
8073
|
"enum": [
|
|
7414
8074
|
"Yes",
|
|
7415
|
-
"No"
|
|
8075
|
+
"No",
|
|
8076
|
+
"Not known"
|
|
7416
8077
|
]
|
|
7417
8078
|
}
|
|
7418
8079
|
}
|
|
@@ -7428,7 +8089,8 @@
|
|
|
7428
8089
|
"properties": {
|
|
7429
8090
|
"yesNo": {
|
|
7430
8091
|
"enum": [
|
|
7431
|
-
"No"
|
|
8092
|
+
"No",
|
|
8093
|
+
"Not known"
|
|
7432
8094
|
]
|
|
7433
8095
|
}
|
|
7434
8096
|
}
|
|
@@ -7466,7 +8128,8 @@
|
|
|
7466
8128
|
"baspiRef": "B3.3.1",
|
|
7467
8129
|
"enum": [
|
|
7468
8130
|
"Yes",
|
|
7469
|
-
"No"
|
|
8131
|
+
"No",
|
|
8132
|
+
"Not known"
|
|
7470
8133
|
]
|
|
7471
8134
|
}
|
|
7472
8135
|
}
|
|
@@ -7507,11 +8170,11 @@
|
|
|
7507
8170
|
},
|
|
7508
8171
|
"yearTested": {
|
|
7509
8172
|
"baspiRef": "B4.1.2",
|
|
7510
|
-
"title": "State the year they were last tested
|
|
8173
|
+
"title": "State the year they were last tested"
|
|
7511
8174
|
},
|
|
7512
8175
|
"attachments": {
|
|
7513
8176
|
"baspiRef": "B4.1.3",
|
|
7514
|
-
"title": "
|
|
8177
|
+
"title": "Please upload the test certificate.",
|
|
7515
8178
|
"enum": [
|
|
7516
8179
|
"Attached",
|
|
7517
8180
|
"To follow"
|
|
@@ -7519,7 +8182,7 @@
|
|
|
7519
8182
|
}
|
|
7520
8183
|
},
|
|
7521
8184
|
"required": [
|
|
7522
|
-
"
|
|
8185
|
+
"yearTested",
|
|
7523
8186
|
"attachments"
|
|
7524
8187
|
]
|
|
7525
8188
|
}
|
|
@@ -7548,7 +8211,8 @@
|
|
|
7548
8211
|
"properties": {
|
|
7549
8212
|
"yesNo": {
|
|
7550
8213
|
"enum": [
|
|
7551
|
-
"No"
|
|
8214
|
+
"No",
|
|
8215
|
+
"Not known"
|
|
7552
8216
|
]
|
|
7553
8217
|
}
|
|
7554
8218
|
}
|
|
@@ -7578,6 +8242,7 @@
|
|
|
7578
8242
|
}
|
|
7579
8243
|
},
|
|
7580
8244
|
"required": [
|
|
8245
|
+
"yearWorkCarriedOut",
|
|
7581
8246
|
"details",
|
|
7582
8247
|
"attachments"
|
|
7583
8248
|
]
|
|
@@ -7591,7 +8256,8 @@
|
|
|
7591
8256
|
"baspiRef": "B4.2.1",
|
|
7592
8257
|
"enum": [
|
|
7593
8258
|
"Yes",
|
|
7594
|
-
"No"
|
|
8259
|
+
"No",
|
|
8260
|
+
"Not known"
|
|
7595
8261
|
]
|
|
7596
8262
|
}
|
|
7597
8263
|
}
|
|
@@ -7707,7 +8373,7 @@
|
|
|
7707
8373
|
},
|
|
7708
8374
|
"attachments": {
|
|
7709
8375
|
"baspiRef": "4.3.3.3",
|
|
7710
|
-
"title": "
|
|
8376
|
+
"title": "Please supply copies of the relevant documents",
|
|
7711
8377
|
"enum": [
|
|
7712
8378
|
"Attached",
|
|
7713
8379
|
"To follow"
|
|
@@ -7899,7 +8565,7 @@
|
|
|
7899
8565
|
},
|
|
7900
8566
|
"attachments": {
|
|
7901
8567
|
"baspiRef": "4.6.1.2",
|
|
7902
|
-
"title": "Photograph of
|
|
8568
|
+
"title": "Photograph of stopcock location",
|
|
7903
8569
|
"enum": [
|
|
7904
8570
|
"Attached",
|
|
7905
8571
|
"To follow"
|
|
@@ -8146,9 +8812,161 @@
|
|
|
8146
8812
|
"Yes"
|
|
8147
8813
|
]
|
|
8148
8814
|
},
|
|
8149
|
-
"newHomeWarranty": {
|
|
8150
|
-
"baspiRef": "B5.1.1",
|
|
8151
|
-
"title": "New Home Warranty (NHBC or similar)",
|
|
8815
|
+
"newHomeWarranty": {
|
|
8816
|
+
"baspiRef": "B5.1.1",
|
|
8817
|
+
"title": "New Home Warranty (NHBC or similar)",
|
|
8818
|
+
"discriminator": {
|
|
8819
|
+
"propertyName": "yesNo"
|
|
8820
|
+
},
|
|
8821
|
+
"oneOf": [
|
|
8822
|
+
{
|
|
8823
|
+
"properties": {
|
|
8824
|
+
"yesNo": {
|
|
8825
|
+
"enum": [
|
|
8826
|
+
"No"
|
|
8827
|
+
]
|
|
8828
|
+
}
|
|
8829
|
+
}
|
|
8830
|
+
},
|
|
8831
|
+
{
|
|
8832
|
+
"properties": {
|
|
8833
|
+
"yesNo": {
|
|
8834
|
+
"enum": [
|
|
8835
|
+
"Yes"
|
|
8836
|
+
]
|
|
8837
|
+
},
|
|
8838
|
+
"details": {
|
|
8839
|
+
"baspiRef": "B5.1.1.2",
|
|
8840
|
+
"title": "Please confirm the name of the warranty provider and the date of the warranty"
|
|
8841
|
+
},
|
|
8842
|
+
"attachments": {
|
|
8843
|
+
"baspiRef": "B5.1.1.3",
|
|
8844
|
+
"enum": [
|
|
8845
|
+
"Attached",
|
|
8846
|
+
"To follow"
|
|
8847
|
+
]
|
|
8848
|
+
}
|
|
8849
|
+
},
|
|
8850
|
+
"required": [
|
|
8851
|
+
"details",
|
|
8852
|
+
"attachments"
|
|
8853
|
+
]
|
|
8854
|
+
}
|
|
8855
|
+
],
|
|
8856
|
+
"required": [
|
|
8857
|
+
"yesNo"
|
|
8858
|
+
],
|
|
8859
|
+
"properties": {
|
|
8860
|
+
"yesNo": {
|
|
8861
|
+
"baspiRef": "B5.1.1.1",
|
|
8862
|
+
"enum": [
|
|
8863
|
+
"Yes",
|
|
8864
|
+
"No"
|
|
8865
|
+
]
|
|
8866
|
+
}
|
|
8867
|
+
}
|
|
8868
|
+
},
|
|
8869
|
+
"roofingWork": {
|
|
8870
|
+
"baspiRef": "B5.1.2",
|
|
8871
|
+
"title": "Roofing work",
|
|
8872
|
+
"discriminator": {
|
|
8873
|
+
"propertyName": "yesNo"
|
|
8874
|
+
},
|
|
8875
|
+
"oneOf": [
|
|
8876
|
+
{
|
|
8877
|
+
"properties": {
|
|
8878
|
+
"yesNo": {
|
|
8879
|
+
"enum": [
|
|
8880
|
+
"No"
|
|
8881
|
+
]
|
|
8882
|
+
}
|
|
8883
|
+
}
|
|
8884
|
+
},
|
|
8885
|
+
{
|
|
8886
|
+
"properties": {
|
|
8887
|
+
"yesNo": {
|
|
8888
|
+
"enum": [
|
|
8889
|
+
"Yes"
|
|
8890
|
+
]
|
|
8891
|
+
},
|
|
8892
|
+
"attachments": {
|
|
8893
|
+
"baspiRef": "B5.1.1.2",
|
|
8894
|
+
"enum": [
|
|
8895
|
+
"Attached",
|
|
8896
|
+
"To follow"
|
|
8897
|
+
]
|
|
8898
|
+
}
|
|
8899
|
+
},
|
|
8900
|
+
"required": [
|
|
8901
|
+
"attachments"
|
|
8902
|
+
]
|
|
8903
|
+
}
|
|
8904
|
+
],
|
|
8905
|
+
"required": [
|
|
8906
|
+
"yesNo"
|
|
8907
|
+
],
|
|
8908
|
+
"properties": {
|
|
8909
|
+
"yesNo": {
|
|
8910
|
+
"baspiRef": "B5.1.2.1",
|
|
8911
|
+
"enum": [
|
|
8912
|
+
"Yes",
|
|
8913
|
+
"No"
|
|
8914
|
+
]
|
|
8915
|
+
}
|
|
8916
|
+
}
|
|
8917
|
+
},
|
|
8918
|
+
"dampProofingTreatment": {
|
|
8919
|
+
"baspiRef": "B5.1.3",
|
|
8920
|
+
"title": "Damp proofing treatment",
|
|
8921
|
+
"discriminator": {
|
|
8922
|
+
"propertyName": "yesNo"
|
|
8923
|
+
},
|
|
8924
|
+
"oneOf": [
|
|
8925
|
+
{
|
|
8926
|
+
"properties": {
|
|
8927
|
+
"yesNo": {
|
|
8928
|
+
"enum": [
|
|
8929
|
+
"No"
|
|
8930
|
+
]
|
|
8931
|
+
}
|
|
8932
|
+
}
|
|
8933
|
+
},
|
|
8934
|
+
{
|
|
8935
|
+
"properties": {
|
|
8936
|
+
"yesNo": {
|
|
8937
|
+
"enum": [
|
|
8938
|
+
"Yes"
|
|
8939
|
+
]
|
|
8940
|
+
},
|
|
8941
|
+
"attachments": {
|
|
8942
|
+
"baspiRef": "B5.1.1.2",
|
|
8943
|
+
"enum": [
|
|
8944
|
+
"Attached",
|
|
8945
|
+
"To follow"
|
|
8946
|
+
]
|
|
8947
|
+
}
|
|
8948
|
+
},
|
|
8949
|
+
"required": [
|
|
8950
|
+
"attachments"
|
|
8951
|
+
]
|
|
8952
|
+
}
|
|
8953
|
+
],
|
|
8954
|
+
"required": [
|
|
8955
|
+
"yesNo"
|
|
8956
|
+
],
|
|
8957
|
+
"properties": {
|
|
8958
|
+
"yesNo": {
|
|
8959
|
+
"baspiRef": "B5.1.3.1",
|
|
8960
|
+
"enum": [
|
|
8961
|
+
"Yes",
|
|
8962
|
+
"No"
|
|
8963
|
+
]
|
|
8964
|
+
}
|
|
8965
|
+
}
|
|
8966
|
+
},
|
|
8967
|
+
"timberRotOrInfestationTreatment": {
|
|
8968
|
+
"baspiRef": "B5.1.4",
|
|
8969
|
+
"title": "Timber rot or infestation treatment",
|
|
8152
8970
|
"discriminator": {
|
|
8153
8971
|
"propertyName": "yesNo"
|
|
8154
8972
|
},
|
|
@@ -8169,12 +8987,8 @@
|
|
|
8169
8987
|
"Yes"
|
|
8170
8988
|
]
|
|
8171
8989
|
},
|
|
8172
|
-
"details": {
|
|
8173
|
-
"baspiRef": "B5.1.1.2",
|
|
8174
|
-
"title": "Please confirm the name of the warranty provider and the date of the warranty"
|
|
8175
|
-
},
|
|
8176
8990
|
"attachments": {
|
|
8177
|
-
"baspiRef": "B5.1.1.
|
|
8991
|
+
"baspiRef": "B5.1.1.2",
|
|
8178
8992
|
"enum": [
|
|
8179
8993
|
"Attached",
|
|
8180
8994
|
"To follow"
|
|
@@ -8182,7 +8996,6 @@
|
|
|
8182
8996
|
}
|
|
8183
8997
|
},
|
|
8184
8998
|
"required": [
|
|
8185
|
-
"details",
|
|
8186
8999
|
"attachments"
|
|
8187
9000
|
]
|
|
8188
9001
|
}
|
|
@@ -8190,54 +9003,6 @@
|
|
|
8190
9003
|
"required": [
|
|
8191
9004
|
"yesNo"
|
|
8192
9005
|
],
|
|
8193
|
-
"properties": {
|
|
8194
|
-
"yesNo": {
|
|
8195
|
-
"baspiRef": "B5.1.1.1",
|
|
8196
|
-
"enum": [
|
|
8197
|
-
"Yes",
|
|
8198
|
-
"No"
|
|
8199
|
-
]
|
|
8200
|
-
}
|
|
8201
|
-
}
|
|
8202
|
-
},
|
|
8203
|
-
"roofingWork": {
|
|
8204
|
-
"baspiRef": "B5.1.2",
|
|
8205
|
-
"title": "Roofing work",
|
|
8206
|
-
"required": [
|
|
8207
|
-
"yesNo"
|
|
8208
|
-
],
|
|
8209
|
-
"properties": {
|
|
8210
|
-
"yesNo": {
|
|
8211
|
-
"baspiRef": "B5.1.2.1",
|
|
8212
|
-
"enum": [
|
|
8213
|
-
"Yes",
|
|
8214
|
-
"No"
|
|
8215
|
-
]
|
|
8216
|
-
}
|
|
8217
|
-
}
|
|
8218
|
-
},
|
|
8219
|
-
"dampProofingTreatment": {
|
|
8220
|
-
"baspiRef": "B5.1.3",
|
|
8221
|
-
"title": "Damp proofing treatment",
|
|
8222
|
-
"required": [
|
|
8223
|
-
"yesNo"
|
|
8224
|
-
],
|
|
8225
|
-
"properties": {
|
|
8226
|
-
"yesNo": {
|
|
8227
|
-
"baspiRef": "B5.1.3.1",
|
|
8228
|
-
"enum": [
|
|
8229
|
-
"Yes",
|
|
8230
|
-
"No"
|
|
8231
|
-
]
|
|
8232
|
-
}
|
|
8233
|
-
}
|
|
8234
|
-
},
|
|
8235
|
-
"timberRotOrInfestationTreatment": {
|
|
8236
|
-
"baspiRef": "B5.1.4",
|
|
8237
|
-
"title": "Timber rot or infestation treatment",
|
|
8238
|
-
"required": [
|
|
8239
|
-
"yesNo"
|
|
8240
|
-
],
|
|
8241
9006
|
"properties": {
|
|
8242
9007
|
"yesNo": {
|
|
8243
9008
|
"baspiRef": "B5.1.4.1",
|
|
@@ -8251,6 +9016,39 @@
|
|
|
8251
9016
|
"centralHeatingAndorPlumbing": {
|
|
8252
9017
|
"baspiRef": "B5.1.5",
|
|
8253
9018
|
"title": "Central heating and/or plumbing",
|
|
9019
|
+
"discriminator": {
|
|
9020
|
+
"propertyName": "yesNo"
|
|
9021
|
+
},
|
|
9022
|
+
"oneOf": [
|
|
9023
|
+
{
|
|
9024
|
+
"properties": {
|
|
9025
|
+
"yesNo": {
|
|
9026
|
+
"enum": [
|
|
9027
|
+
"No"
|
|
9028
|
+
]
|
|
9029
|
+
}
|
|
9030
|
+
}
|
|
9031
|
+
},
|
|
9032
|
+
{
|
|
9033
|
+
"properties": {
|
|
9034
|
+
"yesNo": {
|
|
9035
|
+
"enum": [
|
|
9036
|
+
"Yes"
|
|
9037
|
+
]
|
|
9038
|
+
},
|
|
9039
|
+
"attachments": {
|
|
9040
|
+
"baspiRef": "B5.1.1.2",
|
|
9041
|
+
"enum": [
|
|
9042
|
+
"Attached",
|
|
9043
|
+
"To follow"
|
|
9044
|
+
]
|
|
9045
|
+
}
|
|
9046
|
+
},
|
|
9047
|
+
"required": [
|
|
9048
|
+
"attachments"
|
|
9049
|
+
]
|
|
9050
|
+
}
|
|
9051
|
+
],
|
|
8254
9052
|
"required": [
|
|
8255
9053
|
"yesNo"
|
|
8256
9054
|
],
|
|
@@ -8267,6 +9065,39 @@
|
|
|
8267
9065
|
"doubleGlazing": {
|
|
8268
9066
|
"baspiRef": "B5.1.6",
|
|
8269
9067
|
"title": "Double glazing (windows, doors, roof lights, conservatory etc)",
|
|
9068
|
+
"discriminator": {
|
|
9069
|
+
"propertyName": "yesNo"
|
|
9070
|
+
},
|
|
9071
|
+
"oneOf": [
|
|
9072
|
+
{
|
|
9073
|
+
"properties": {
|
|
9074
|
+
"yesNo": {
|
|
9075
|
+
"enum": [
|
|
9076
|
+
"No"
|
|
9077
|
+
]
|
|
9078
|
+
}
|
|
9079
|
+
}
|
|
9080
|
+
},
|
|
9081
|
+
{
|
|
9082
|
+
"properties": {
|
|
9083
|
+
"yesNo": {
|
|
9084
|
+
"enum": [
|
|
9085
|
+
"Yes"
|
|
9086
|
+
]
|
|
9087
|
+
},
|
|
9088
|
+
"attachments": {
|
|
9089
|
+
"baspiRef": "B5.1.1.2",
|
|
9090
|
+
"enum": [
|
|
9091
|
+
"Attached",
|
|
9092
|
+
"To follow"
|
|
9093
|
+
]
|
|
9094
|
+
}
|
|
9095
|
+
},
|
|
9096
|
+
"required": [
|
|
9097
|
+
"attachments"
|
|
9098
|
+
]
|
|
9099
|
+
}
|
|
9100
|
+
],
|
|
8270
9101
|
"required": [
|
|
8271
9102
|
"yesNo"
|
|
8272
9103
|
],
|
|
@@ -8283,6 +9114,39 @@
|
|
|
8283
9114
|
"electricalRepairOrInstallation": {
|
|
8284
9115
|
"baspiRef": "B5.1.7",
|
|
8285
9116
|
"title": "Electrical repair or installation",
|
|
9117
|
+
"discriminator": {
|
|
9118
|
+
"propertyName": "yesNo"
|
|
9119
|
+
},
|
|
9120
|
+
"oneOf": [
|
|
9121
|
+
{
|
|
9122
|
+
"properties": {
|
|
9123
|
+
"yesNo": {
|
|
9124
|
+
"enum": [
|
|
9125
|
+
"No"
|
|
9126
|
+
]
|
|
9127
|
+
}
|
|
9128
|
+
}
|
|
9129
|
+
},
|
|
9130
|
+
{
|
|
9131
|
+
"properties": {
|
|
9132
|
+
"yesNo": {
|
|
9133
|
+
"enum": [
|
|
9134
|
+
"Yes"
|
|
9135
|
+
]
|
|
9136
|
+
},
|
|
9137
|
+
"attachments": {
|
|
9138
|
+
"baspiRef": "B5.1.1.2",
|
|
9139
|
+
"enum": [
|
|
9140
|
+
"Attached",
|
|
9141
|
+
"To follow"
|
|
9142
|
+
]
|
|
9143
|
+
}
|
|
9144
|
+
},
|
|
9145
|
+
"required": [
|
|
9146
|
+
"attachments"
|
|
9147
|
+
]
|
|
9148
|
+
}
|
|
9149
|
+
],
|
|
8286
9150
|
"required": [
|
|
8287
9151
|
"yesNo"
|
|
8288
9152
|
],
|
|
@@ -8299,6 +9163,39 @@
|
|
|
8299
9163
|
"subsidenceWork": {
|
|
8300
9164
|
"baspiRef": "B5.1.8",
|
|
8301
9165
|
"title": "Underpinning or other preventative work and/or remedial action relating to subsidence",
|
|
9166
|
+
"discriminator": {
|
|
9167
|
+
"propertyName": "yesNo"
|
|
9168
|
+
},
|
|
9169
|
+
"oneOf": [
|
|
9170
|
+
{
|
|
9171
|
+
"properties": {
|
|
9172
|
+
"yesNo": {
|
|
9173
|
+
"enum": [
|
|
9174
|
+
"No"
|
|
9175
|
+
]
|
|
9176
|
+
}
|
|
9177
|
+
}
|
|
9178
|
+
},
|
|
9179
|
+
{
|
|
9180
|
+
"properties": {
|
|
9181
|
+
"yesNo": {
|
|
9182
|
+
"enum": [
|
|
9183
|
+
"Yes"
|
|
9184
|
+
]
|
|
9185
|
+
},
|
|
9186
|
+
"attachments": {
|
|
9187
|
+
"baspiRef": "B5.1.1.2",
|
|
9188
|
+
"enum": [
|
|
9189
|
+
"Attached",
|
|
9190
|
+
"To follow"
|
|
9191
|
+
]
|
|
9192
|
+
}
|
|
9193
|
+
},
|
|
9194
|
+
"required": [
|
|
9195
|
+
"attachments"
|
|
9196
|
+
]
|
|
9197
|
+
}
|
|
9198
|
+
],
|
|
8302
9199
|
"required": [
|
|
8303
9200
|
"yesNo"
|
|
8304
9201
|
],
|
|
@@ -8315,6 +9212,39 @@
|
|
|
8315
9212
|
"solarPanels": {
|
|
8316
9213
|
"baspiRef": "B5.1.9",
|
|
8317
9214
|
"title": "Solar panels",
|
|
9215
|
+
"discriminator": {
|
|
9216
|
+
"propertyName": "yesNo"
|
|
9217
|
+
},
|
|
9218
|
+
"oneOf": [
|
|
9219
|
+
{
|
|
9220
|
+
"properties": {
|
|
9221
|
+
"yesNo": {
|
|
9222
|
+
"enum": [
|
|
9223
|
+
"No"
|
|
9224
|
+
]
|
|
9225
|
+
}
|
|
9226
|
+
}
|
|
9227
|
+
},
|
|
9228
|
+
{
|
|
9229
|
+
"properties": {
|
|
9230
|
+
"yesNo": {
|
|
9231
|
+
"enum": [
|
|
9232
|
+
"Yes"
|
|
9233
|
+
]
|
|
9234
|
+
},
|
|
9235
|
+
"attachments": {
|
|
9236
|
+
"baspiRef": "B5.1.1.2",
|
|
9237
|
+
"enum": [
|
|
9238
|
+
"Attached",
|
|
9239
|
+
"To follow"
|
|
9240
|
+
]
|
|
9241
|
+
}
|
|
9242
|
+
},
|
|
9243
|
+
"required": [
|
|
9244
|
+
"attachments"
|
|
9245
|
+
]
|
|
9246
|
+
}
|
|
9247
|
+
],
|
|
8318
9248
|
"required": [
|
|
8319
9249
|
"yesNo"
|
|
8320
9250
|
],
|
|
@@ -8374,10 +9304,6 @@
|
|
|
8374
9304
|
}
|
|
8375
9305
|
}
|
|
8376
9306
|
},
|
|
8377
|
-
"willLeaveGuaranteePaperwork": {
|
|
8378
|
-
"baspiRef": "B5.1.11",
|
|
8379
|
-
"title": "Please confirm that you will leave all paperwork relating to any guarantee or warranty at the property when you move out"
|
|
8380
|
-
},
|
|
8381
9307
|
"outstandingClaimsOrApplications": {
|
|
8382
9308
|
"baspiRef": "B5.2",
|
|
8383
9309
|
"title": "Are there any outstanding claims or current applications relating to any of the above?",
|
|
@@ -8499,7 +9425,6 @@
|
|
|
8499
9425
|
"subsidenceWork",
|
|
8500
9426
|
"solarPanels",
|
|
8501
9427
|
"otherGuarantees",
|
|
8502
|
-
"willLeaveGuaranteePaperwork",
|
|
8503
9428
|
"outstandingClaimsOrApplications",
|
|
8504
9429
|
"titleDefectInsurance"
|
|
8505
9430
|
]
|
|
@@ -8600,7 +9525,7 @@
|
|
|
8600
9525
|
},
|
|
8601
9526
|
"details": {
|
|
8602
9527
|
"baspiRef": "B6.4.1",
|
|
8603
|
-
"title": "Please provide details (
|
|
9528
|
+
"title": "Please provide details (e.g. the property is sold let to tenants)"
|
|
8604
9529
|
},
|
|
8605
9530
|
"attachments": {
|
|
8606
9531
|
"baspiRef": "B6.4.2",
|
|
@@ -8627,7 +9552,16 @@
|
|
|
8627
9552
|
"title": "Have all occupiers aged 17 or over agreed to leave prior to completion?",
|
|
8628
9553
|
"required": [
|
|
8629
9554
|
"yesNo"
|
|
8630
|
-
]
|
|
9555
|
+
],
|
|
9556
|
+
"properties": {
|
|
9557
|
+
"yesNo": {
|
|
9558
|
+
"baspiRef": "B6.3.1.1",
|
|
9559
|
+
"enum": [
|
|
9560
|
+
"Yes",
|
|
9561
|
+
"No"
|
|
9562
|
+
]
|
|
9563
|
+
}
|
|
9564
|
+
}
|
|
8631
9565
|
},
|
|
8632
9566
|
"aged17OrOverWillSignToConfirmWillVacate": {
|
|
8633
9567
|
"baspiRef": "B6.3.2",
|
|
@@ -8654,11 +9588,11 @@
|
|
|
8654
9588
|
},
|
|
8655
9589
|
"details": {
|
|
8656
9590
|
"baspiRef": "B6.3.2.2",
|
|
8657
|
-
"title": "Please
|
|
9591
|
+
"title": "Please provide details (eg the property is sold let to tenants)"
|
|
8658
9592
|
},
|
|
8659
9593
|
"attachments": {
|
|
8660
9594
|
"baspiRef": "B6.3.2.3",
|
|
8661
|
-
"title": "
|
|
9595
|
+
"title": "Please supply other evidence that the property will be vacant on completion (a copy of the tenancy agreement together with a copy of any notice to quit which has been served upon them).",
|
|
8662
9596
|
"enum": [
|
|
8663
9597
|
"Attached",
|
|
8664
9598
|
"To follow"
|
|
@@ -8666,7 +9600,8 @@
|
|
|
8666
9600
|
}
|
|
8667
9601
|
},
|
|
8668
9602
|
"required": [
|
|
8669
|
-
"details"
|
|
9603
|
+
"details",
|
|
9604
|
+
"attachments"
|
|
8670
9605
|
]
|
|
8671
9606
|
}
|
|
8672
9607
|
],
|
|
@@ -8732,16 +9667,34 @@
|
|
|
8732
9667
|
"baspiRef": "B7",
|
|
8733
9668
|
"title": "Completion and Moving",
|
|
8734
9669
|
"required": [
|
|
8735
|
-
"
|
|
9670
|
+
"sellerWillEnsure",
|
|
8736
9671
|
"otherPropertyInChain",
|
|
8737
9672
|
"moveRestrictionDates",
|
|
8738
|
-
"digitalPropertyLogbook"
|
|
9673
|
+
"digitalPropertyLogbook",
|
|
9674
|
+
"sufficientToRepayAllMortgages"
|
|
8739
9675
|
],
|
|
8740
9676
|
"properties": {
|
|
8741
|
-
"
|
|
9677
|
+
"sellerWillEnsure": {
|
|
8742
9678
|
"baspiRef": "B7.1",
|
|
8743
|
-
"title": "Please confirm that on completion you will
|
|
8744
|
-
"
|
|
9679
|
+
"title": "Please confirm that on completion you will:",
|
|
9680
|
+
"properties": {
|
|
9681
|
+
"removeRubbish": {
|
|
9682
|
+
"baspiRef": "B7.1.1",
|
|
9683
|
+
"title": "Remove all rubbish and items not included in the sale from the property (including its garden, loft and any sheds or outbuildings) and leave the property in a clean and tidy condition."
|
|
9684
|
+
},
|
|
9685
|
+
"replaceLightFittings": {
|
|
9686
|
+
"baspiRef": "B7.1.2",
|
|
9687
|
+
"title": "If light fittings are removed, the fittings will be replaced with ceiling rose, flex, bulb holder and bulb."
|
|
9688
|
+
},
|
|
9689
|
+
"takeReasonableCare": {
|
|
9690
|
+
"baspiRef": "B7.1.3",
|
|
9691
|
+
"title": "Take reasonable care when removing any other fittings or contents."
|
|
9692
|
+
},
|
|
9693
|
+
"leaveKeys": {
|
|
9694
|
+
"baspiRef": "B7.1.4",
|
|
9695
|
+
"title": "Leave keys for all door and window locks, along with any alarm codes, for the buyer on the day of completion."
|
|
9696
|
+
}
|
|
9697
|
+
}
|
|
8745
9698
|
},
|
|
8746
9699
|
"otherPropertyInChain": {
|
|
8747
9700
|
"baspiRef": "B7.2",
|
|
@@ -8848,15 +9801,12 @@
|
|
|
8848
9801
|
"Yes"
|
|
8849
9802
|
]
|
|
8850
9803
|
},
|
|
8851
|
-
"
|
|
8852
|
-
"baspiRef": "B7.3.2"
|
|
8853
|
-
"items": {
|
|
8854
|
-
"baspiRef": "B7.3.2.1"
|
|
8855
|
-
}
|
|
9804
|
+
"details": {
|
|
9805
|
+
"baspiRef": "B7.3.2"
|
|
8856
9806
|
}
|
|
8857
9807
|
},
|
|
8858
9808
|
"required": [
|
|
8859
|
-
"
|
|
9809
|
+
"details"
|
|
8860
9810
|
]
|
|
8861
9811
|
}
|
|
8862
9812
|
],
|
|
@@ -8936,7 +9886,8 @@
|
|
|
8936
9886
|
"baspiRef": "A7.6.1",
|
|
8937
9887
|
"enum": [
|
|
8938
9888
|
"Yes",
|
|
8939
|
-
"No"
|
|
9889
|
+
"No",
|
|
9890
|
+
"No mortgage"
|
|
8940
9891
|
]
|
|
8941
9892
|
}
|
|
8942
9893
|
}
|
|
@@ -8957,7 +9908,7 @@
|
|
|
8957
9908
|
},
|
|
8958
9909
|
"confirmInformationIsAccurate": {
|
|
8959
9910
|
"baspiRef": "B8.2",
|
|
8960
|
-
"title": "I/we confirm that all information provided is accurate to the best of our knowledge and if we become aware of any change to/changes which alter the information supplied/provided prior to exchange of contracts for the sale of the property, I/we will update immediately notify the person marketing the property as well as my/our property lawyer
|
|
9911
|
+
"title": "I/we confirm that all information provided is accurate to the best of our knowledge and if we become aware of any change to/changes which alter the information supplied/provided prior to exchange of contracts for the sale of the property, I/we will update immediately notify the person marketing the property as well as my/our property lawyer"
|
|
8961
9912
|
}
|
|
8962
9913
|
}
|
|
8963
9914
|
}
|