@pdtf/schemas 2.0.0-3 → 2.0.0-30
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 +1 -1
- package/src/examples/v2/exampleTransaction.json +163 -128
- package/src/schemas/v2/combined.json +9027 -1466
- package/src/schemas/v2/overlays/baspi.json +1969 -1014
- 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 -452
- package/src/schemas/v2/overlays/ta10.json +847 -1
- package/src/schemas/v2/overlays/ta6.json +3736 -564
- package/src/schemas/v2/overlays/ta7.json +98 -33
- package/src/schemas/v2/{core.json → pdtf-transaction.json} +7876 -1292
- package/src/schemas/v2/skeleton.json +3646 -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
|
}
|
|
@@ -1147,17 +1448,18 @@
|
|
|
1147
1448
|
"Yes"
|
|
1148
1449
|
]
|
|
1149
1450
|
},
|
|
1150
|
-
"
|
|
1451
|
+
"consentsObtained": {
|
|
1151
1452
|
"baspiRef": "A1.7.3.2.2",
|
|
1152
|
-
"title": "Were the relevant consents obtained?
|
|
1453
|
+
"title": "Were the relevant consents obtained?",
|
|
1153
1454
|
"enum": [
|
|
1154
1455
|
"Yes",
|
|
1155
|
-
"No"
|
|
1456
|
+
"No",
|
|
1457
|
+
"Not known"
|
|
1156
1458
|
]
|
|
1157
1459
|
},
|
|
1158
1460
|
"attachments": {
|
|
1159
1461
|
"baspiRef": "A1.7.3.4",
|
|
1160
|
-
"title": "
|
|
1462
|
+
"title": "Provide any relevant documentation",
|
|
1161
1463
|
"enum": [
|
|
1162
1464
|
"Attached",
|
|
1163
1465
|
"To follow"
|
|
@@ -1165,7 +1467,7 @@
|
|
|
1165
1467
|
}
|
|
1166
1468
|
},
|
|
1167
1469
|
"required": [
|
|
1168
|
-
"
|
|
1470
|
+
"consentsObtained"
|
|
1169
1471
|
]
|
|
1170
1472
|
}
|
|
1171
1473
|
],
|
|
@@ -1193,7 +1495,8 @@
|
|
|
1193
1495
|
"baspiRef": "A1.7.3.1",
|
|
1194
1496
|
"enum": [
|
|
1195
1497
|
"Yes",
|
|
1196
|
-
"No"
|
|
1498
|
+
"No",
|
|
1499
|
+
"Not known"
|
|
1197
1500
|
]
|
|
1198
1501
|
}
|
|
1199
1502
|
}
|
|
@@ -1372,7 +1675,8 @@
|
|
|
1372
1675
|
"baspiRef": "A1.8.3",
|
|
1373
1676
|
"title": "Energy Efficiency",
|
|
1374
1677
|
"required": [
|
|
1375
|
-
"certificate"
|
|
1678
|
+
"certificate",
|
|
1679
|
+
"greenDealLoan"
|
|
1376
1680
|
],
|
|
1377
1681
|
"properties": {
|
|
1378
1682
|
"certificate": {
|
|
@@ -1399,6 +1703,70 @@
|
|
|
1399
1703
|
]
|
|
1400
1704
|
}
|
|
1401
1705
|
}
|
|
1706
|
+
},
|
|
1707
|
+
"greenDealLoan": {
|
|
1708
|
+
"baspiRef": "A7.3",
|
|
1709
|
+
"title": "Green Deal Loan",
|
|
1710
|
+
"required": [
|
|
1711
|
+
"hasGreenDealLoan"
|
|
1712
|
+
],
|
|
1713
|
+
"properties": {
|
|
1714
|
+
"hasGreenDealLoan": {
|
|
1715
|
+
"baspiRef": "A7.3",
|
|
1716
|
+
"title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
|
|
1717
|
+
"discriminator": {
|
|
1718
|
+
"propertyName": "yesNo"
|
|
1719
|
+
},
|
|
1720
|
+
"oneOf": [
|
|
1721
|
+
{
|
|
1722
|
+
"properties": {
|
|
1723
|
+
"yesNo": {
|
|
1724
|
+
"enum": [
|
|
1725
|
+
"No"
|
|
1726
|
+
]
|
|
1727
|
+
}
|
|
1728
|
+
}
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
"properties": {
|
|
1732
|
+
"yesNo": {
|
|
1733
|
+
"enum": [
|
|
1734
|
+
"Yes"
|
|
1735
|
+
]
|
|
1736
|
+
},
|
|
1737
|
+
"details": {
|
|
1738
|
+
"baspiRef": "A7.3.2",
|
|
1739
|
+
"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"
|
|
1740
|
+
},
|
|
1741
|
+
"attachments": {
|
|
1742
|
+
"baspiRef": "A7.3.3",
|
|
1743
|
+
"title": "Attachments",
|
|
1744
|
+
"enum": [
|
|
1745
|
+
"Attached",
|
|
1746
|
+
"To follow"
|
|
1747
|
+
]
|
|
1748
|
+
}
|
|
1749
|
+
},
|
|
1750
|
+
"required": [
|
|
1751
|
+
"details",
|
|
1752
|
+
"attachments"
|
|
1753
|
+
]
|
|
1754
|
+
}
|
|
1755
|
+
],
|
|
1756
|
+
"required": [
|
|
1757
|
+
"yesNo"
|
|
1758
|
+
],
|
|
1759
|
+
"properties": {
|
|
1760
|
+
"yesNo": {
|
|
1761
|
+
"baspiRef": "A7.3.1",
|
|
1762
|
+
"enum": [
|
|
1763
|
+
"Yes",
|
|
1764
|
+
"No"
|
|
1765
|
+
]
|
|
1766
|
+
}
|
|
1767
|
+
}
|
|
1768
|
+
}
|
|
1769
|
+
}
|
|
1402
1770
|
}
|
|
1403
1771
|
}
|
|
1404
1772
|
},
|
|
@@ -1486,7 +1854,8 @@
|
|
|
1486
1854
|
"baspiRef": "A2",
|
|
1487
1855
|
"title": "Disputes and Complaints",
|
|
1488
1856
|
"required": [
|
|
1489
|
-
"hasDisputesAndComplaints"
|
|
1857
|
+
"hasDisputesAndComplaints",
|
|
1858
|
+
"leadingToDisputesAndComplaints"
|
|
1490
1859
|
],
|
|
1491
1860
|
"properties": {
|
|
1492
1861
|
"hasDisputesAndComplaints": {
|
|
@@ -1593,6 +1962,7 @@
|
|
|
1593
1962
|
"changeOfUse",
|
|
1594
1963
|
"windowReplacementsSince2002",
|
|
1595
1964
|
"hasAddedConservatory",
|
|
1965
|
+
"worksUnfinished",
|
|
1596
1966
|
"planningPermissionBreaches",
|
|
1597
1967
|
"unresolvedPlanningIssues"
|
|
1598
1968
|
],
|
|
@@ -1887,7 +2257,7 @@
|
|
|
1887
2257
|
},
|
|
1888
2258
|
"changeOfUse": {
|
|
1889
2259
|
"baspiRef": "A3.2",
|
|
1890
|
-
"title": "Has there been any change of use (e.g. from an office to a residence?",
|
|
2260
|
+
"title": "Has there been any change of use (e.g. from an office to a residence)?",
|
|
1891
2261
|
"discriminator": {
|
|
1892
2262
|
"propertyName": "yesNo"
|
|
1893
2263
|
},
|
|
@@ -2007,7 +2377,8 @@
|
|
|
2007
2377
|
"properties": {
|
|
2008
2378
|
"yesNo": {
|
|
2009
2379
|
"enum": [
|
|
2010
|
-
"No"
|
|
2380
|
+
"No",
|
|
2381
|
+
"Not required"
|
|
2011
2382
|
]
|
|
2012
2383
|
},
|
|
2013
2384
|
"details": {
|
|
@@ -2766,7 +3137,6 @@
|
|
|
2766
3137
|
"worksUnfinished": {
|
|
2767
3138
|
"baspiRef": "A3.6",
|
|
2768
3139
|
"title": "Are any of the works listed above unfinished?",
|
|
2769
|
-
"description": "If yes, please provide details and explain why.",
|
|
2770
3140
|
"discriminator": {
|
|
2771
3141
|
"propertyName": "yesNo"
|
|
2772
3142
|
},
|
|
@@ -2789,7 +3159,7 @@
|
|
|
2789
3159
|
},
|
|
2790
3160
|
"details": {
|
|
2791
3161
|
"baspiRef": "A3.6.2",
|
|
2792
|
-
"title": "
|
|
3162
|
+
"title": "Please provide details and explain why"
|
|
2793
3163
|
},
|
|
2794
3164
|
"attachments": {
|
|
2795
3165
|
"baspiRef": "A3.6.3",
|
|
@@ -2844,7 +3214,7 @@
|
|
|
2844
3214
|
},
|
|
2845
3215
|
"details": {
|
|
2846
3216
|
"baspiRef": "A3.7.2",
|
|
2847
|
-
"title": "
|
|
3217
|
+
"title": "Please give details"
|
|
2848
3218
|
},
|
|
2849
3219
|
"willingToInsure": {
|
|
2850
3220
|
"baspiRef": "A3.9",
|
|
@@ -2908,7 +3278,7 @@
|
|
|
2908
3278
|
},
|
|
2909
3279
|
"details": {
|
|
2910
3280
|
"baspiRef": "A3.8.2",
|
|
2911
|
-
"title": "
|
|
3281
|
+
"title": "Please give details"
|
|
2912
3282
|
},
|
|
2913
3283
|
"willingToInsure": {
|
|
2914
3284
|
"baspiRef": "A3.9",
|
|
@@ -3295,7 +3665,7 @@
|
|
|
3295
3665
|
},
|
|
3296
3666
|
"otherNotices": {
|
|
3297
3667
|
"baspiRef": "A4.7",
|
|
3298
|
-
"title": "Any other type of notice",
|
|
3668
|
+
"title": "Any other type of notice?",
|
|
3299
3669
|
"discriminator": {
|
|
3300
3670
|
"propertyName": "yesNo"
|
|
3301
3671
|
},
|
|
@@ -3419,7 +3789,6 @@
|
|
|
3419
3789
|
"containsAsbestos": {
|
|
3420
3790
|
"baspiRef": "A5.2",
|
|
3421
3791
|
"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
3792
|
"discriminator": {
|
|
3424
3793
|
"propertyName": "yesNo"
|
|
3425
3794
|
},
|
|
@@ -3442,7 +3811,7 @@
|
|
|
3442
3811
|
},
|
|
3443
3812
|
"details": {
|
|
3444
3813
|
"baspiRef": "A5.2.2",
|
|
3445
|
-
"title": "
|
|
3814
|
+
"title": "Please state whether there is a management plan in place and attach a copy"
|
|
3446
3815
|
},
|
|
3447
3816
|
"attachments": {
|
|
3448
3817
|
"baspiRef": "A5.2.3",
|
|
@@ -3475,7 +3844,6 @@
|
|
|
3475
3844
|
"japaneseKnotweed": {
|
|
3476
3845
|
"baspiRef": "A5.3",
|
|
3477
3846
|
"title": "To your knowledge, is the property or neighbouring land, affected by Japanese knotweed or other invasive species?",
|
|
3478
|
-
"description": "If so ",
|
|
3479
3847
|
"discriminator": {
|
|
3480
3848
|
"propertyName": "yesNo"
|
|
3481
3849
|
},
|
|
@@ -3484,7 +3852,8 @@
|
|
|
3484
3852
|
"properties": {
|
|
3485
3853
|
"yesNo": {
|
|
3486
3854
|
"enum": [
|
|
3487
|
-
"No"
|
|
3855
|
+
"No",
|
|
3856
|
+
"Not known"
|
|
3488
3857
|
]
|
|
3489
3858
|
}
|
|
3490
3859
|
}
|
|
@@ -3496,13 +3865,18 @@
|
|
|
3496
3865
|
"Yes"
|
|
3497
3866
|
]
|
|
3498
3867
|
},
|
|
3499
|
-
"
|
|
3868
|
+
"managementPlanInPlace": {
|
|
3500
3869
|
"baspiRef": "A5.3.2",
|
|
3501
|
-
"title": "
|
|
3870
|
+
"title": "Is there a Japanese Knotweed management and treatment plan in place?",
|
|
3871
|
+
"enum": [
|
|
3872
|
+
"Yes",
|
|
3873
|
+
"No",
|
|
3874
|
+
"Not known"
|
|
3875
|
+
]
|
|
3502
3876
|
},
|
|
3503
3877
|
"attachments": {
|
|
3504
3878
|
"baspiRef": "A5.3.3",
|
|
3505
|
-
"title": "
|
|
3879
|
+
"title": "Please supply a copy with any insurance cover linked to the plan",
|
|
3506
3880
|
"enum": [
|
|
3507
3881
|
"Attached",
|
|
3508
3882
|
"To follow"
|
|
@@ -3510,8 +3884,7 @@
|
|
|
3510
3884
|
}
|
|
3511
3885
|
},
|
|
3512
3886
|
"required": [
|
|
3513
|
-
"
|
|
3514
|
-
"attachments"
|
|
3887
|
+
"managementPlanInPlace"
|
|
3515
3888
|
]
|
|
3516
3889
|
}
|
|
3517
3890
|
],
|
|
@@ -3523,7 +3896,8 @@
|
|
|
3523
3896
|
"baspiRef": "A5.3.1",
|
|
3524
3897
|
"enum": [
|
|
3525
3898
|
"Yes",
|
|
3526
|
-
"No"
|
|
3899
|
+
"No",
|
|
3900
|
+
"Not known"
|
|
3527
3901
|
]
|
|
3528
3902
|
}
|
|
3529
3903
|
}
|
|
@@ -3748,15 +4122,16 @@
|
|
|
3748
4122
|
"title": "Connected utilities",
|
|
3749
4123
|
"description": "Please indicate which utilities are are connected to the property.",
|
|
3750
4124
|
"required": [
|
|
3751
|
-
"
|
|
3752
|
-
"
|
|
4125
|
+
"mainsElectricity",
|
|
4126
|
+
"mainsGas",
|
|
3753
4127
|
"lpg",
|
|
3754
4128
|
"oil",
|
|
3755
4129
|
"telephone",
|
|
3756
4130
|
"cableSatelliteTV",
|
|
3757
4131
|
"broadband",
|
|
3758
4132
|
"solarPanels",
|
|
3759
|
-
"otherServices"
|
|
4133
|
+
"otherServices",
|
|
4134
|
+
"maintenanceAgreements"
|
|
3760
4135
|
],
|
|
3761
4136
|
"properties": {
|
|
3762
4137
|
"mainsElectricity": {
|
|
@@ -3784,7 +4159,7 @@
|
|
|
3784
4159
|
},
|
|
3785
4160
|
"supplier": {
|
|
3786
4161
|
"baspiRef": "A7.1.0.1.2",
|
|
3787
|
-
"title": "Supplier
|
|
4162
|
+
"title": "Supplier"
|
|
3788
4163
|
}
|
|
3789
4164
|
}
|
|
3790
4165
|
},
|
|
@@ -3801,7 +4176,7 @@
|
|
|
3801
4176
|
},
|
|
3802
4177
|
"supplier": {
|
|
3803
4178
|
"baspiRef": "A7.1.0.1.2",
|
|
3804
|
-
"title": "Supplier
|
|
4179
|
+
"title": "Supplier"
|
|
3805
4180
|
}
|
|
3806
4181
|
},
|
|
3807
4182
|
"required": [
|
|
@@ -3848,7 +4223,7 @@
|
|
|
3848
4223
|
},
|
|
3849
4224
|
"supplier": {
|
|
3850
4225
|
"baspiRef": "A7.1.0.2.2",
|
|
3851
|
-
"title": "Supplier
|
|
4226
|
+
"title": "Supplier"
|
|
3852
4227
|
}
|
|
3853
4228
|
}
|
|
3854
4229
|
},
|
|
@@ -3865,7 +4240,7 @@
|
|
|
3865
4240
|
},
|
|
3866
4241
|
"supplier": {
|
|
3867
4242
|
"baspiRef": "A7.1.0.2.2",
|
|
3868
|
-
"title": "Supplier
|
|
4243
|
+
"title": "Supplier"
|
|
3869
4244
|
}
|
|
3870
4245
|
},
|
|
3871
4246
|
"required": [
|
|
@@ -3912,7 +4287,7 @@
|
|
|
3912
4287
|
},
|
|
3913
4288
|
"supplier": {
|
|
3914
4289
|
"baspiRef": "A7.1.0.3.2",
|
|
3915
|
-
"title": "Supplier
|
|
4290
|
+
"title": "Supplier"
|
|
3916
4291
|
}
|
|
3917
4292
|
}
|
|
3918
4293
|
},
|
|
@@ -3929,7 +4304,7 @@
|
|
|
3929
4304
|
},
|
|
3930
4305
|
"supplier": {
|
|
3931
4306
|
"baspiRef": "A7.1.0.3.2",
|
|
3932
|
-
"title": "Supplier
|
|
4307
|
+
"title": "Supplier"
|
|
3933
4308
|
}
|
|
3934
4309
|
},
|
|
3935
4310
|
"required": [
|
|
@@ -3976,7 +4351,7 @@
|
|
|
3976
4351
|
},
|
|
3977
4352
|
"supplier": {
|
|
3978
4353
|
"baspiRef": "A7.1.0.4.2",
|
|
3979
|
-
"title": "Supplier
|
|
4354
|
+
"title": "Supplier"
|
|
3980
4355
|
}
|
|
3981
4356
|
}
|
|
3982
4357
|
},
|
|
@@ -3993,7 +4368,7 @@
|
|
|
3993
4368
|
},
|
|
3994
4369
|
"supplier": {
|
|
3995
4370
|
"baspiRef": "A7.1.0.4.2",
|
|
3996
|
-
"title": "Supplier
|
|
4371
|
+
"title": "Supplier"
|
|
3997
4372
|
}
|
|
3998
4373
|
},
|
|
3999
4374
|
"required": [
|
|
@@ -4040,7 +4415,7 @@
|
|
|
4040
4415
|
},
|
|
4041
4416
|
"supplier": {
|
|
4042
4417
|
"baspiRef": "A7.1.0.5.2",
|
|
4043
|
-
"title": "Supplier
|
|
4418
|
+
"title": "Supplier"
|
|
4044
4419
|
}
|
|
4045
4420
|
}
|
|
4046
4421
|
},
|
|
@@ -4057,7 +4432,7 @@
|
|
|
4057
4432
|
},
|
|
4058
4433
|
"supplier": {
|
|
4059
4434
|
"baspiRef": "A7.1.0.5.2",
|
|
4060
|
-
"title": "Supplier
|
|
4435
|
+
"title": "Supplier"
|
|
4061
4436
|
}
|
|
4062
4437
|
},
|
|
4063
4438
|
"required": [
|
|
@@ -4104,7 +4479,7 @@
|
|
|
4104
4479
|
},
|
|
4105
4480
|
"supplier": {
|
|
4106
4481
|
"baspiRef": "A7.1.0.6.2",
|
|
4107
|
-
"title": "Supplier
|
|
4482
|
+
"title": "Supplier"
|
|
4108
4483
|
}
|
|
4109
4484
|
}
|
|
4110
4485
|
},
|
|
@@ -4121,7 +4496,7 @@
|
|
|
4121
4496
|
},
|
|
4122
4497
|
"supplier": {
|
|
4123
4498
|
"baspiRef": "A7.1.0.6.2",
|
|
4124
|
-
"title": "Supplier
|
|
4499
|
+
"title": "Supplier"
|
|
4125
4500
|
}
|
|
4126
4501
|
},
|
|
4127
4502
|
"required": [
|
|
@@ -4168,7 +4543,7 @@
|
|
|
4168
4543
|
},
|
|
4169
4544
|
"supplier": {
|
|
4170
4545
|
"baspiRef": "A7.1.0.7.2",
|
|
4171
|
-
"title": "Supplier
|
|
4546
|
+
"title": "Supplier"
|
|
4172
4547
|
}
|
|
4173
4548
|
}
|
|
4174
4549
|
},
|
|
@@ -4185,7 +4560,7 @@
|
|
|
4185
4560
|
},
|
|
4186
4561
|
"supplier": {
|
|
4187
4562
|
"baspiRef": "A7.1.0.7.2",
|
|
4188
|
-
"title": "Supplier
|
|
4563
|
+
"title": "Supplier"
|
|
4189
4564
|
}
|
|
4190
4565
|
},
|
|
4191
4566
|
"required": [
|
|
@@ -4232,7 +4607,7 @@
|
|
|
4232
4607
|
},
|
|
4233
4608
|
"supplier": {
|
|
4234
4609
|
"baspiRef": "A7.1.0.8.2",
|
|
4235
|
-
"title": "Supplier
|
|
4610
|
+
"title": "Supplier"
|
|
4236
4611
|
}
|
|
4237
4612
|
}
|
|
4238
4613
|
},
|
|
@@ -4249,7 +4624,7 @@
|
|
|
4249
4624
|
},
|
|
4250
4625
|
"supplier": {
|
|
4251
4626
|
"baspiRef": "A7.1.0.8.2",
|
|
4252
|
-
"title": "Supplier
|
|
4627
|
+
"title": "Supplier"
|
|
4253
4628
|
}
|
|
4254
4629
|
},
|
|
4255
4630
|
"required": [
|
|
@@ -4297,7 +4672,7 @@
|
|
|
4297
4672
|
},
|
|
4298
4673
|
"supplier": {
|
|
4299
4674
|
"baspiRef": "A7.1.0.9.2",
|
|
4300
|
-
"title": "Supplier
|
|
4675
|
+
"title": "Supplier"
|
|
4301
4676
|
}
|
|
4302
4677
|
}
|
|
4303
4678
|
},
|
|
@@ -4314,7 +4689,7 @@
|
|
|
4314
4689
|
},
|
|
4315
4690
|
"supplier": {
|
|
4316
4691
|
"baspiRef": "A7.1.0.9.2",
|
|
4317
|
-
"title": "Supplier
|
|
4692
|
+
"title": "Supplier"
|
|
4318
4693
|
}
|
|
4319
4694
|
},
|
|
4320
4695
|
"required": [
|
|
@@ -4394,512 +4769,815 @@
|
|
|
4394
4769
|
}
|
|
4395
4770
|
},
|
|
4396
4771
|
"waterAndDrainage": {
|
|
4397
|
-
"baspiRef": "A7",
|
|
4772
|
+
"baspiRef": "A7.1.0",
|
|
4398
4773
|
"title": "Water and Drainage",
|
|
4399
4774
|
"description": "Please describe the water and drainage services that are connected to the property.",
|
|
4400
4775
|
"required": [
|
|
4401
|
-
"
|
|
4402
|
-
"
|
|
4403
|
-
"
|
|
4776
|
+
"water",
|
|
4777
|
+
"drainage",
|
|
4778
|
+
"maintenanceAgreements"
|
|
4404
4779
|
],
|
|
4405
4780
|
"properties": {
|
|
4406
|
-
"
|
|
4781
|
+
"water": {
|
|
4407
4782
|
"baspiRef": "A7.1.0.10",
|
|
4408
|
-
"title": "
|
|
4409
|
-
"
|
|
4410
|
-
"
|
|
4411
|
-
|
|
4412
|
-
"
|
|
4413
|
-
{
|
|
4414
|
-
"
|
|
4415
|
-
|
|
4416
|
-
|
|
4417
|
-
|
|
4783
|
+
"title": "Water",
|
|
4784
|
+
"required": [
|
|
4785
|
+
"mainsWater"
|
|
4786
|
+
],
|
|
4787
|
+
"properties": {
|
|
4788
|
+
"mainsWater": {
|
|
4789
|
+
"baspiRef": "A7.1.0.10.0",
|
|
4790
|
+
"title": "Mains water",
|
|
4791
|
+
"discriminator": {
|
|
4792
|
+
"propertyName": "yesNo"
|
|
4793
|
+
},
|
|
4794
|
+
"oneOf": [
|
|
4795
|
+
{
|
|
4796
|
+
"properties": {
|
|
4797
|
+
"yesNo": {
|
|
4798
|
+
"enum": [
|
|
4799
|
+
"No"
|
|
4800
|
+
]
|
|
4801
|
+
}
|
|
4802
|
+
}
|
|
4803
|
+
},
|
|
4804
|
+
{
|
|
4805
|
+
"properties": {
|
|
4806
|
+
"yesNo": {
|
|
4807
|
+
"enum": [
|
|
4808
|
+
"Yes"
|
|
4809
|
+
]
|
|
4810
|
+
},
|
|
4811
|
+
"supplier": {
|
|
4812
|
+
"baspiRef": "A7.1.0.10.2",
|
|
4813
|
+
"title": "Supplier"
|
|
4814
|
+
}
|
|
4815
|
+
}
|
|
4816
|
+
},
|
|
4817
|
+
{
|
|
4818
|
+
"properties": {
|
|
4819
|
+
"yesNo": {
|
|
4820
|
+
"enum": [
|
|
4821
|
+
"To be connected"
|
|
4822
|
+
]
|
|
4823
|
+
},
|
|
4824
|
+
"dateToBeConnected": {
|
|
4825
|
+
"baspiRef": "A7.1.0.10.3",
|
|
4826
|
+
"title": "Date to be connected"
|
|
4827
|
+
},
|
|
4828
|
+
"supplier": {
|
|
4829
|
+
"baspiRef": "A7.1.0.10.2",
|
|
4830
|
+
"title": "Supplier"
|
|
4831
|
+
}
|
|
4832
|
+
},
|
|
4833
|
+
"required": [
|
|
4834
|
+
"dateToBeConnected"
|
|
4418
4835
|
]
|
|
4419
4836
|
}
|
|
4420
|
-
|
|
4421
|
-
|
|
4422
|
-
|
|
4837
|
+
],
|
|
4838
|
+
"required": [
|
|
4839
|
+
"yesNo"
|
|
4840
|
+
],
|
|
4423
4841
|
"properties": {
|
|
4424
4842
|
"yesNo": {
|
|
4843
|
+
"baspiRef": "A7.1.0.10.1",
|
|
4425
4844
|
"enum": [
|
|
4426
|
-
"Yes"
|
|
4845
|
+
"Yes",
|
|
4846
|
+
"To be connected",
|
|
4847
|
+
"No"
|
|
4427
4848
|
]
|
|
4428
|
-
},
|
|
4429
|
-
"supplier": {
|
|
4430
|
-
"baspiRef": "A7.1.0.10.2",
|
|
4431
|
-
"title": "Supplier (if known)"
|
|
4432
4849
|
}
|
|
4433
4850
|
}
|
|
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
4851
|
}
|
|
4468
4852
|
}
|
|
4469
4853
|
},
|
|
4470
|
-
"
|
|
4854
|
+
"drainage": {
|
|
4471
4855
|
"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
|
-
]
|
|
4856
|
+
"title": "Drainage",
|
|
4857
|
+
"required": [
|
|
4858
|
+
"mainsSurfaceWaterDrainage",
|
|
4859
|
+
"mainsFoulDrainage"
|
|
4860
|
+
],
|
|
4861
|
+
"properties": {
|
|
4862
|
+
"mainsSurfaceWaterDrainage": {
|
|
4863
|
+
"baspiRef": "A7.1.0.12.0",
|
|
4864
|
+
"title": "Mains surface water drainage",
|
|
4865
|
+
"discriminator": {
|
|
4866
|
+
"propertyName": "yesNo"
|
|
4867
|
+
},
|
|
4868
|
+
"oneOf": [
|
|
4869
|
+
{
|
|
4870
|
+
"properties": {
|
|
4871
|
+
"yesNo": {
|
|
4872
|
+
"enum": [
|
|
4873
|
+
"No",
|
|
4874
|
+
"Not known"
|
|
4875
|
+
]
|
|
4876
|
+
}
|
|
4877
|
+
}
|
|
4505
4878
|
},
|
|
4506
|
-
|
|
4507
|
-
"
|
|
4508
|
-
|
|
4879
|
+
{
|
|
4880
|
+
"properties": {
|
|
4881
|
+
"yesNo": {
|
|
4882
|
+
"enum": [
|
|
4883
|
+
"Yes"
|
|
4884
|
+
]
|
|
4885
|
+
},
|
|
4886
|
+
"supplier": {
|
|
4887
|
+
"baspiRef": "A7.1.0.12.2",
|
|
4888
|
+
"title": "Supplier"
|
|
4889
|
+
}
|
|
4890
|
+
}
|
|
4509
4891
|
},
|
|
4510
|
-
|
|
4511
|
-
"
|
|
4512
|
-
|
|
4892
|
+
{
|
|
4893
|
+
"properties": {
|
|
4894
|
+
"yesNo": {
|
|
4895
|
+
"enum": [
|
|
4896
|
+
"To be connected"
|
|
4897
|
+
]
|
|
4898
|
+
},
|
|
4899
|
+
"dateToBeConnected": {
|
|
4900
|
+
"baspiRef": "A7.1.0.12.3",
|
|
4901
|
+
"title": "Date to be connected"
|
|
4902
|
+
},
|
|
4903
|
+
"supplier": {
|
|
4904
|
+
"baspiRef": "A7.1.0.12.2",
|
|
4905
|
+
"title": "Supplier"
|
|
4906
|
+
}
|
|
4907
|
+
},
|
|
4908
|
+
"required": [
|
|
4909
|
+
"dateToBeConnected"
|
|
4910
|
+
]
|
|
4513
4911
|
}
|
|
4514
|
-
|
|
4912
|
+
],
|
|
4515
4913
|
"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
|
-
{
|
|
4914
|
+
"yesNo"
|
|
4915
|
+
],
|
|
4542
4916
|
"properties": {
|
|
4543
4917
|
"yesNo": {
|
|
4918
|
+
"baspiRef": "A7.1.0.12.1",
|
|
4544
4919
|
"enum": [
|
|
4545
|
-
"Yes"
|
|
4920
|
+
"Yes",
|
|
4921
|
+
"To be connected",
|
|
4922
|
+
"No",
|
|
4923
|
+
"Not known"
|
|
4546
4924
|
]
|
|
4547
|
-
},
|
|
4548
|
-
"supplier": {
|
|
4549
|
-
"baspiRef": "A7.1.0.11.3",
|
|
4550
|
-
"title": "Supplier (if known)"
|
|
4551
4925
|
}
|
|
4552
4926
|
}
|
|
4553
4927
|
},
|
|
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
|
-
}
|
|
4928
|
+
"mainsFoulDrainage": {
|
|
4929
|
+
"baspiRef": "A7.1.0.11",
|
|
4930
|
+
"title": "Mains foul drainage",
|
|
4931
|
+
"discriminator": {
|
|
4932
|
+
"propertyName": "yesNo"
|
|
4569
4933
|
},
|
|
4570
|
-
"
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4575
|
-
|
|
4576
|
-
|
|
4577
|
-
|
|
4578
|
-
"
|
|
4579
|
-
|
|
4934
|
+
"oneOf": [
|
|
4935
|
+
{
|
|
4936
|
+
"properties": {
|
|
4937
|
+
"yesNo": {
|
|
4938
|
+
"enum": [
|
|
4939
|
+
"Yes"
|
|
4940
|
+
]
|
|
4941
|
+
},
|
|
4942
|
+
"supplier": {
|
|
4943
|
+
"baspiRef": "A7.1.0.11.3",
|
|
4944
|
+
"title": "Supplier"
|
|
4945
|
+
}
|
|
4946
|
+
}
|
|
4580
4947
|
},
|
|
4581
|
-
|
|
4582
|
-
"
|
|
4583
|
-
|
|
4584
|
-
|
|
4585
|
-
|
|
4948
|
+
{
|
|
4949
|
+
"properties": {
|
|
4950
|
+
"yesNo": {
|
|
4951
|
+
"enum": [
|
|
4952
|
+
"To be connected"
|
|
4953
|
+
]
|
|
4954
|
+
},
|
|
4955
|
+
"dateToBeConnected": {
|
|
4956
|
+
"baspiRef": "A7.1.0.11.2",
|
|
4957
|
+
"title": "Date to be connected"
|
|
4958
|
+
},
|
|
4959
|
+
"supplier": {
|
|
4960
|
+
"baspiRef": "A7.1.0.11.3",
|
|
4961
|
+
"title": "Supplier"
|
|
4962
|
+
}
|
|
4586
4963
|
},
|
|
4587
|
-
"
|
|
4588
|
-
|
|
4964
|
+
"required": [
|
|
4965
|
+
"dateToBeConnected"
|
|
4966
|
+
]
|
|
4967
|
+
},
|
|
4968
|
+
{
|
|
4969
|
+
"properties": {
|
|
4970
|
+
"yesNo": {
|
|
4971
|
+
"enum": [
|
|
4972
|
+
"No",
|
|
4973
|
+
"Not known"
|
|
4974
|
+
]
|
|
4975
|
+
},
|
|
4976
|
+
"sustainableDrainageSystem": {
|
|
4977
|
+
"baspiRef": "A7.1.0.13",
|
|
4978
|
+
"title": "Sustainable Drainage System",
|
|
4979
|
+
"discriminator": {
|
|
4980
|
+
"propertyName": "yesNo"
|
|
4981
|
+
},
|
|
4982
|
+
"oneOf": [
|
|
4983
|
+
{
|
|
4984
|
+
"properties": {
|
|
4985
|
+
"yesNo": {
|
|
4986
|
+
"enum": [
|
|
4987
|
+
"No"
|
|
4988
|
+
]
|
|
4989
|
+
}
|
|
4990
|
+
}
|
|
4991
|
+
},
|
|
4992
|
+
{
|
|
4993
|
+
"properties": {
|
|
4994
|
+
"yesNo": {
|
|
4995
|
+
"enum": [
|
|
4996
|
+
"Yes"
|
|
4997
|
+
]
|
|
4998
|
+
},
|
|
4999
|
+
"supplier": {
|
|
5000
|
+
"baspiRef": "A7.1.0.13.3",
|
|
5001
|
+
"title": "Supplier"
|
|
5002
|
+
}
|
|
5003
|
+
}
|
|
5004
|
+
},
|
|
5005
|
+
{
|
|
5006
|
+
"properties": {
|
|
5007
|
+
"yesNo": {
|
|
5008
|
+
"enum": [
|
|
5009
|
+
"To be connected"
|
|
5010
|
+
]
|
|
5011
|
+
},
|
|
5012
|
+
"dateToBeConnected": {
|
|
5013
|
+
"baspiRef": "A7.1.0.13.2",
|
|
5014
|
+
"title": "Date to be connected"
|
|
5015
|
+
},
|
|
5016
|
+
"supplier": {
|
|
5017
|
+
"baspiRef": "A7.1.0.13.3",
|
|
5018
|
+
"title": "Supplier"
|
|
5019
|
+
}
|
|
5020
|
+
},
|
|
5021
|
+
"required": [
|
|
5022
|
+
"dateToBeConnected"
|
|
5023
|
+
]
|
|
5024
|
+
}
|
|
5025
|
+
],
|
|
5026
|
+
"required": [
|
|
5027
|
+
"yesNo"
|
|
5028
|
+
],
|
|
4589
5029
|
"properties": {
|
|
4590
5030
|
"yesNo": {
|
|
5031
|
+
"baspiRef": "A7.1.0.13.1",
|
|
4591
5032
|
"enum": [
|
|
5033
|
+
"Yes",
|
|
5034
|
+
"To be connected",
|
|
4592
5035
|
"No"
|
|
4593
5036
|
]
|
|
4594
5037
|
}
|
|
4595
5038
|
}
|
|
4596
5039
|
},
|
|
4597
|
-
{
|
|
5040
|
+
"septicTank": {
|
|
5041
|
+
"baspiRef": "A7.1.0.14",
|
|
5042
|
+
"title": "Septic tank",
|
|
5043
|
+
"discriminator": {
|
|
5044
|
+
"propertyName": "yesNo"
|
|
5045
|
+
},
|
|
5046
|
+
"oneOf": [
|
|
5047
|
+
{
|
|
5048
|
+
"properties": {
|
|
5049
|
+
"yesNo": {
|
|
5050
|
+
"enum": [
|
|
5051
|
+
"No"
|
|
5052
|
+
]
|
|
5053
|
+
}
|
|
5054
|
+
}
|
|
5055
|
+
},
|
|
5056
|
+
{
|
|
5057
|
+
"properties": {
|
|
5058
|
+
"yesNo": {
|
|
5059
|
+
"enum": [
|
|
5060
|
+
"Yes"
|
|
5061
|
+
]
|
|
5062
|
+
},
|
|
5063
|
+
"dateReplaced": {
|
|
5064
|
+
"baspiRef": "A7.1.0.14.2",
|
|
5065
|
+
"title": "Date replaced or upgraded"
|
|
5066
|
+
},
|
|
5067
|
+
"dateLastEmptied": {
|
|
5068
|
+
"baspiRef": "A7.1.0.14.3",
|
|
5069
|
+
"title": "Date last emptied"
|
|
5070
|
+
}
|
|
5071
|
+
},
|
|
5072
|
+
"required": [
|
|
5073
|
+
"dateReplaced",
|
|
5074
|
+
"dateLastEmptied"
|
|
5075
|
+
]
|
|
5076
|
+
}
|
|
5077
|
+
],
|
|
5078
|
+
"required": [
|
|
5079
|
+
"yesNo"
|
|
5080
|
+
],
|
|
4598
5081
|
"properties": {
|
|
4599
5082
|
"yesNo": {
|
|
5083
|
+
"baspiRef": "A7.1.0.14.1",
|
|
4600
5084
|
"enum": [
|
|
4601
|
-
"Yes"
|
|
5085
|
+
"Yes",
|
|
5086
|
+
"No"
|
|
4602
5087
|
]
|
|
4603
|
-
},
|
|
4604
|
-
"supplier": {
|
|
4605
|
-
"baspiRef": "A7.1.0.13.3",
|
|
4606
|
-
"title": "Supplier (if known)"
|
|
4607
5088
|
}
|
|
4608
5089
|
}
|
|
4609
5090
|
},
|
|
4610
|
-
{
|
|
4611
|
-
"
|
|
4612
|
-
|
|
4613
|
-
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
"
|
|
4619
|
-
|
|
5091
|
+
"cesspit": {
|
|
5092
|
+
"baspiRef": "A7.1.0.15",
|
|
5093
|
+
"title": "Cesspit",
|
|
5094
|
+
"discriminator": {
|
|
5095
|
+
"propertyName": "yesNo"
|
|
5096
|
+
},
|
|
5097
|
+
"oneOf": [
|
|
5098
|
+
{
|
|
5099
|
+
"properties": {
|
|
5100
|
+
"yesNo": {
|
|
5101
|
+
"enum": [
|
|
5102
|
+
"No"
|
|
5103
|
+
]
|
|
5104
|
+
}
|
|
5105
|
+
}
|
|
4620
5106
|
},
|
|
4621
|
-
|
|
4622
|
-
"
|
|
4623
|
-
|
|
5107
|
+
{
|
|
5108
|
+
"properties": {
|
|
5109
|
+
"yesNo": {
|
|
5110
|
+
"enum": [
|
|
5111
|
+
"Yes"
|
|
5112
|
+
]
|
|
5113
|
+
},
|
|
5114
|
+
"dateLastEmptied": {
|
|
5115
|
+
"baspiRef": "A7.1.0.15.2",
|
|
5116
|
+
"title": "Date last emptied"
|
|
5117
|
+
}
|
|
5118
|
+
},
|
|
5119
|
+
"required": [
|
|
5120
|
+
"dateLastEmptied"
|
|
5121
|
+
]
|
|
4624
5122
|
}
|
|
4625
|
-
|
|
5123
|
+
],
|
|
4626
5124
|
"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
|
-
{
|
|
5125
|
+
"yesNo"
|
|
5126
|
+
],
|
|
4653
5127
|
"properties": {
|
|
4654
5128
|
"yesNo": {
|
|
5129
|
+
"baspiRef": "A7.1.0.15.1",
|
|
4655
5130
|
"enum": [
|
|
5131
|
+
"Yes",
|
|
4656
5132
|
"No"
|
|
4657
5133
|
]
|
|
4658
5134
|
}
|
|
4659
5135
|
}
|
|
4660
5136
|
},
|
|
4661
|
-
{
|
|
4662
|
-
"
|
|
4663
|
-
|
|
4664
|
-
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
"
|
|
4670
|
-
|
|
5137
|
+
"sewerageTreatmentPlant": {
|
|
5138
|
+
"baspiRef": "A7.1.0.16",
|
|
5139
|
+
"title": "Sewerage treatment plant",
|
|
5140
|
+
"discriminator": {
|
|
5141
|
+
"propertyName": "yesNo"
|
|
5142
|
+
},
|
|
5143
|
+
"oneOf": [
|
|
5144
|
+
{
|
|
5145
|
+
"properties": {
|
|
5146
|
+
"yesNo": {
|
|
5147
|
+
"enum": [
|
|
5148
|
+
"No"
|
|
5149
|
+
]
|
|
5150
|
+
}
|
|
5151
|
+
}
|
|
4671
5152
|
},
|
|
4672
|
-
|
|
4673
|
-
"
|
|
4674
|
-
|
|
5153
|
+
{
|
|
5154
|
+
"properties": {
|
|
5155
|
+
"yesNo": {
|
|
5156
|
+
"enum": [
|
|
5157
|
+
"Yes"
|
|
5158
|
+
]
|
|
5159
|
+
},
|
|
5160
|
+
"dateInstalled": {
|
|
5161
|
+
"baspiRef": "A7.1.0.16.2",
|
|
5162
|
+
"title": "Date installed"
|
|
5163
|
+
},
|
|
5164
|
+
"dateLastServiced": {
|
|
5165
|
+
"baspiRef": "A7.1.0.16.3",
|
|
5166
|
+
"title": "Date last serviced"
|
|
5167
|
+
},
|
|
5168
|
+
"attachments": {
|
|
5169
|
+
"baspiRef": "A7.1.0.16.3",
|
|
5170
|
+
"title": "If installed after Jan 1991 supply the Building Regulations approval or equivalent",
|
|
5171
|
+
"enum": [
|
|
5172
|
+
"Attached",
|
|
5173
|
+
"To follow",
|
|
5174
|
+
"Not applicable"
|
|
5175
|
+
]
|
|
5176
|
+
}
|
|
5177
|
+
},
|
|
5178
|
+
"required": [
|
|
5179
|
+
"dateInstalled",
|
|
5180
|
+
"dateLastServiced",
|
|
5181
|
+
"attachments"
|
|
5182
|
+
]
|
|
4675
5183
|
}
|
|
4676
|
-
|
|
5184
|
+
],
|
|
4677
5185
|
"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
|
-
{
|
|
5186
|
+
"yesNo"
|
|
5187
|
+
],
|
|
4704
5188
|
"properties": {
|
|
4705
5189
|
"yesNo": {
|
|
5190
|
+
"baspiRef": "A7.1.0.16.1",
|
|
4706
5191
|
"enum": [
|
|
5192
|
+
"Yes",
|
|
4707
5193
|
"No"
|
|
4708
5194
|
]
|
|
4709
5195
|
}
|
|
4710
5196
|
}
|
|
4711
5197
|
},
|
|
4712
|
-
{
|
|
5198
|
+
"otherConnectedProperties": {
|
|
5199
|
+
"baspiRef": "A7.1.1",
|
|
5200
|
+
"title": "Do other properties connect to the septic tank, cesspit or sewerage treatment plant?",
|
|
5201
|
+
"discriminator": {
|
|
5202
|
+
"propertyName": "yesNo"
|
|
5203
|
+
},
|
|
5204
|
+
"oneOf": [
|
|
5205
|
+
{
|
|
5206
|
+
"properties": {
|
|
5207
|
+
"yesNo": {
|
|
5208
|
+
"enum": [
|
|
5209
|
+
"No"
|
|
5210
|
+
]
|
|
5211
|
+
}
|
|
5212
|
+
}
|
|
5213
|
+
},
|
|
5214
|
+
{
|
|
5215
|
+
"properties": {
|
|
5216
|
+
"yesNo": {
|
|
5217
|
+
"enum": [
|
|
5218
|
+
"Yes"
|
|
5219
|
+
]
|
|
5220
|
+
},
|
|
5221
|
+
"numberOfPropertiesSharing": {
|
|
5222
|
+
"baspiRef": "A7.1.1.1",
|
|
5223
|
+
"title": "How many other properties?"
|
|
5224
|
+
},
|
|
5225
|
+
"details": {
|
|
5226
|
+
"baspiRef": "A7.1.1.2",
|
|
5227
|
+
"title": "Provide details of the properties sharing the system and explain how maintenance of the system is arranged and paid for"
|
|
5228
|
+
}
|
|
5229
|
+
},
|
|
5230
|
+
"required": [
|
|
5231
|
+
"numberOfPropertiesSharing",
|
|
5232
|
+
"details"
|
|
5233
|
+
]
|
|
5234
|
+
}
|
|
5235
|
+
],
|
|
5236
|
+
"required": [
|
|
5237
|
+
"yesNo"
|
|
5238
|
+
],
|
|
4713
5239
|
"properties": {
|
|
4714
5240
|
"yesNo": {
|
|
5241
|
+
"baspiRef": "A7.1.1.1",
|
|
4715
5242
|
"enum": [
|
|
4716
|
-
"Yes"
|
|
5243
|
+
"Yes",
|
|
5244
|
+
"No"
|
|
4717
5245
|
]
|
|
4718
|
-
},
|
|
4719
|
-
"dateLastEmptied": {
|
|
4720
|
-
"baspiRef": "A7.1.0.15.2",
|
|
4721
|
-
"title": "Date last emptied"
|
|
4722
5246
|
}
|
|
5247
|
+
}
|
|
5248
|
+
},
|
|
5249
|
+
"plantOnOtherLand": {
|
|
5250
|
+
"baspiRef": "A7.1.2",
|
|
5251
|
+
"title": "Is any part of the septic tank, cesspit or sewerage treatment plant located on someone else’s land?",
|
|
5252
|
+
"discriminator": {
|
|
5253
|
+
"propertyName": "yesNo"
|
|
4723
5254
|
},
|
|
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
|
-
|
|
5255
|
+
"oneOf": [
|
|
5256
|
+
{
|
|
5257
|
+
"properties": {
|
|
5258
|
+
"yesNo": {
|
|
5259
|
+
"enum": [
|
|
5260
|
+
"No"
|
|
5261
|
+
]
|
|
5262
|
+
}
|
|
5263
|
+
}
|
|
5264
|
+
},
|
|
5265
|
+
{
|
|
5266
|
+
"properties": {
|
|
5267
|
+
"yesNo": {
|
|
5268
|
+
"enum": [
|
|
5269
|
+
"Yes"
|
|
5270
|
+
]
|
|
5271
|
+
},
|
|
5272
|
+
"attachments": {
|
|
5273
|
+
"baspiRef": "7.1.2.2",
|
|
5274
|
+
"title": "Please supply a plan showing the location of the system and how access is obtained.",
|
|
5275
|
+
"enum": [
|
|
5276
|
+
"Attached",
|
|
5277
|
+
"To follow"
|
|
5278
|
+
]
|
|
5279
|
+
}
|
|
5280
|
+
},
|
|
5281
|
+
"required": [
|
|
5282
|
+
"attachments"
|
|
5283
|
+
]
|
|
5284
|
+
}
|
|
5285
|
+
],
|
|
5286
|
+
"required": [
|
|
5287
|
+
"yesNo"
|
|
5288
|
+
],
|
|
4750
5289
|
"properties": {
|
|
4751
5290
|
"yesNo": {
|
|
5291
|
+
"baspiRef": "7.1.2.1",
|
|
4752
5292
|
"enum": [
|
|
5293
|
+
"Yes",
|
|
4753
5294
|
"No"
|
|
4754
5295
|
]
|
|
4755
5296
|
}
|
|
4756
5297
|
}
|
|
4757
5298
|
},
|
|
4758
|
-
{
|
|
4759
|
-
"
|
|
4760
|
-
|
|
4761
|
-
|
|
4762
|
-
|
|
4763
|
-
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
"
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
5299
|
+
"plantRegistered": {
|
|
5300
|
+
"baspiRef": "A7.1.3",
|
|
5301
|
+
"title": "Is the septic tank, cesspit or sewerage treatment plant registered with the Environment Agency or exempted?",
|
|
5302
|
+
"discriminator": {
|
|
5303
|
+
"propertyName": "yesNo"
|
|
5304
|
+
},
|
|
5305
|
+
"oneOf": [
|
|
5306
|
+
{
|
|
5307
|
+
"properties": {
|
|
5308
|
+
"yesNo": {
|
|
5309
|
+
"enum": [
|
|
5310
|
+
"No"
|
|
5311
|
+
]
|
|
5312
|
+
}
|
|
5313
|
+
}
|
|
4772
5314
|
},
|
|
4773
|
-
|
|
4774
|
-
"
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
5315
|
+
{
|
|
5316
|
+
"properties": {
|
|
5317
|
+
"yesNo": {
|
|
5318
|
+
"enum": [
|
|
5319
|
+
"Yes"
|
|
5320
|
+
]
|
|
5321
|
+
},
|
|
5322
|
+
"attachments": {
|
|
5323
|
+
"baspiRef": "A7.1.3.2",
|
|
5324
|
+
"title": "Please supply the appropriate permit to discharge or exemption certificate",
|
|
5325
|
+
"enum": [
|
|
5326
|
+
"Attached",
|
|
5327
|
+
"To follow"
|
|
5328
|
+
]
|
|
5329
|
+
}
|
|
5330
|
+
},
|
|
5331
|
+
"required": [
|
|
5332
|
+
"attachments"
|
|
4780
5333
|
]
|
|
4781
5334
|
}
|
|
4782
|
-
|
|
5335
|
+
],
|
|
4783
5336
|
"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
|
-
{
|
|
5337
|
+
"yesNo"
|
|
5338
|
+
],
|
|
4811
5339
|
"properties": {
|
|
4812
5340
|
"yesNo": {
|
|
5341
|
+
"baspiRef": "A7.1.3.1",
|
|
4813
5342
|
"enum": [
|
|
5343
|
+
"Yes",
|
|
4814
5344
|
"No"
|
|
4815
5345
|
]
|
|
4816
5346
|
}
|
|
4817
5347
|
}
|
|
4818
5348
|
},
|
|
4819
|
-
{
|
|
5349
|
+
"plantDrainsIntoWaterway": {
|
|
5350
|
+
"baspiRef": "A7.1.4",
|
|
5351
|
+
"title": "Does the septic tank, cesspit or sewerage treatment plant drain into a waterway (lake, river, stream etc)",
|
|
5352
|
+
"discriminator": {
|
|
5353
|
+
"propertyName": "yesNo"
|
|
5354
|
+
},
|
|
5355
|
+
"oneOf": [
|
|
5356
|
+
{
|
|
5357
|
+
"properties": {
|
|
5358
|
+
"yesNo": {
|
|
5359
|
+
"enum": [
|
|
5360
|
+
"No, the effluent is discharged through a soakaway system."
|
|
5361
|
+
]
|
|
5362
|
+
}
|
|
5363
|
+
}
|
|
5364
|
+
},
|
|
5365
|
+
{
|
|
5366
|
+
"properties": {
|
|
5367
|
+
"yesNo": {
|
|
5368
|
+
"enum": [
|
|
5369
|
+
"Yes"
|
|
5370
|
+
]
|
|
5371
|
+
},
|
|
5372
|
+
"dischargeCompliesWithGBR": {
|
|
5373
|
+
"baspiRef": "A7.1.4.1",
|
|
5374
|
+
"title": "Does it comply with the General Binding Rules for discharge into a waterway?",
|
|
5375
|
+
"enum": [
|
|
5376
|
+
"Yes",
|
|
5377
|
+
"No, it does not comply with the rules for discharge into a waterway."
|
|
5378
|
+
]
|
|
5379
|
+
}
|
|
5380
|
+
},
|
|
5381
|
+
"required": [
|
|
5382
|
+
"dischargeCompliesWithGBR"
|
|
5383
|
+
]
|
|
5384
|
+
}
|
|
5385
|
+
],
|
|
5386
|
+
"required": [
|
|
5387
|
+
"yesNo"
|
|
5388
|
+
],
|
|
4820
5389
|
"properties": {
|
|
4821
5390
|
"yesNo": {
|
|
5391
|
+
"baspiRef": "A7.1.4.1",
|
|
4822
5392
|
"enum": [
|
|
4823
|
-
"Yes"
|
|
5393
|
+
"Yes",
|
|
5394
|
+
"No, the effluent is discharged through a soakaway system."
|
|
4824
5395
|
]
|
|
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
5396
|
}
|
|
4830
|
-
}
|
|
4831
|
-
"required": [
|
|
4832
|
-
"details",
|
|
4833
|
-
"attachments"
|
|
4834
|
-
]
|
|
5397
|
+
}
|
|
4835
5398
|
}
|
|
4836
|
-
|
|
5399
|
+
},
|
|
4837
5400
|
"required": [
|
|
4838
|
-
"
|
|
4839
|
-
|
|
4840
|
-
|
|
4841
|
-
"
|
|
4842
|
-
|
|
4843
|
-
|
|
4844
|
-
|
|
4845
|
-
|
|
4846
|
-
|
|
4847
|
-
|
|
4848
|
-
|
|
5401
|
+
"sustainableDrainageSystem",
|
|
5402
|
+
"septicTank",
|
|
5403
|
+
"cesspit",
|
|
5404
|
+
"sewerageTreatmentPlant",
|
|
5405
|
+
"otherConnectedProperties",
|
|
5406
|
+
"plantOnOtherLand",
|
|
5407
|
+
"plantRegistered",
|
|
5408
|
+
"plantDrainsIntoWaterway"
|
|
5409
|
+
]
|
|
5410
|
+
}
|
|
5411
|
+
],
|
|
5412
|
+
"required": [
|
|
5413
|
+
"yesNo"
|
|
5414
|
+
],
|
|
5415
|
+
"properties": {
|
|
5416
|
+
"yesNo": {
|
|
5417
|
+
"baspiRef": "A7.1.0.11.1",
|
|
5418
|
+
"enum": [
|
|
5419
|
+
"Yes",
|
|
5420
|
+
"To be connected",
|
|
5421
|
+
"No",
|
|
5422
|
+
"Not known"
|
|
5423
|
+
]
|
|
5424
|
+
}
|
|
5425
|
+
}
|
|
5426
|
+
}
|
|
5427
|
+
}
|
|
5428
|
+
},
|
|
5429
|
+
"maintenanceAgreements": {
|
|
5430
|
+
"baspiRef": "A7.2",
|
|
5431
|
+
"title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to these services?",
|
|
5432
|
+
"discriminator": {
|
|
5433
|
+
"propertyName": "yesNo"
|
|
5434
|
+
},
|
|
5435
|
+
"oneOf": [
|
|
5436
|
+
{
|
|
5437
|
+
"properties": {
|
|
5438
|
+
"yesNo": {
|
|
5439
|
+
"enum": [
|
|
5440
|
+
"No"
|
|
5441
|
+
]
|
|
5442
|
+
}
|
|
5443
|
+
}
|
|
5444
|
+
},
|
|
5445
|
+
{
|
|
5446
|
+
"properties": {
|
|
5447
|
+
"yesNo": {
|
|
5448
|
+
"enum": [
|
|
5449
|
+
"Yes"
|
|
5450
|
+
]
|
|
5451
|
+
},
|
|
5452
|
+
"details": {
|
|
5453
|
+
"baspiRef": "A7.2.2",
|
|
5454
|
+
"title": "Details"
|
|
4849
5455
|
},
|
|
4850
|
-
"
|
|
4851
|
-
"baspiRef": "A7.
|
|
4852
|
-
"title": "
|
|
5456
|
+
"attachments": {
|
|
5457
|
+
"baspiRef": "A7.2.3",
|
|
5458
|
+
"title": "Attachments",
|
|
5459
|
+
"enum": [
|
|
5460
|
+
"Attached",
|
|
5461
|
+
"To follow"
|
|
5462
|
+
]
|
|
5463
|
+
}
|
|
5464
|
+
},
|
|
5465
|
+
"required": [
|
|
5466
|
+
"details",
|
|
5467
|
+
"attachments"
|
|
5468
|
+
]
|
|
5469
|
+
}
|
|
5470
|
+
],
|
|
5471
|
+
"required": [
|
|
5472
|
+
"yesNo"
|
|
5473
|
+
],
|
|
5474
|
+
"properties": {
|
|
5475
|
+
"yesNo": {
|
|
5476
|
+
"baspiRef": "A7.2.1",
|
|
5477
|
+
"enum": [
|
|
5478
|
+
"Yes",
|
|
5479
|
+
"No"
|
|
5480
|
+
]
|
|
5481
|
+
}
|
|
5482
|
+
}
|
|
5483
|
+
}
|
|
5484
|
+
}
|
|
5485
|
+
},
|
|
5486
|
+
"centralHeating": {
|
|
5487
|
+
"baspiRef": "A7.4",
|
|
5488
|
+
"title": "Central Heating",
|
|
5489
|
+
"discriminator": {
|
|
5490
|
+
"propertyName": "hasCentralHeating"
|
|
5491
|
+
},
|
|
5492
|
+
"oneOf": [
|
|
5493
|
+
{
|
|
5494
|
+
"properties": {
|
|
5495
|
+
"hasCentralHeating": {
|
|
5496
|
+
"enum": [
|
|
5497
|
+
"No"
|
|
5498
|
+
]
|
|
5499
|
+
}
|
|
5500
|
+
}
|
|
5501
|
+
},
|
|
5502
|
+
{
|
|
5503
|
+
"properties": {
|
|
5504
|
+
"hasCentralHeating": {
|
|
5505
|
+
"enum": [
|
|
5506
|
+
"Yes"
|
|
5507
|
+
]
|
|
5508
|
+
},
|
|
5509
|
+
"centralHeatingDetails": {
|
|
5510
|
+
"baspiRef": "A7.4.0.0",
|
|
5511
|
+
"title": "Central Heating Details",
|
|
5512
|
+
"required": [
|
|
5513
|
+
"centralHeatingFuel",
|
|
5514
|
+
"centralHeatingInstalled",
|
|
5515
|
+
"boilerInstallationCertificate",
|
|
5516
|
+
"heatingLastServicedDate",
|
|
5517
|
+
"heatingLastServicedReport",
|
|
5518
|
+
"heatingInGoodWorkingOrder"
|
|
5519
|
+
],
|
|
5520
|
+
"properties": {
|
|
5521
|
+
"centralHeatingFuel": {
|
|
5522
|
+
"baspiRef": "A7.4.0.1",
|
|
5523
|
+
"title": "Central Heating Fuel",
|
|
4853
5524
|
"discriminator": {
|
|
4854
|
-
"propertyName": "
|
|
5525
|
+
"propertyName": "centralHeatingFuelType"
|
|
4855
5526
|
},
|
|
4856
5527
|
"oneOf": [
|
|
4857
5528
|
{
|
|
4858
5529
|
"properties": {
|
|
4859
|
-
"
|
|
5530
|
+
"centralHeatingFuelType": {
|
|
4860
5531
|
"enum": [
|
|
4861
|
-
"
|
|
5532
|
+
"Gas",
|
|
5533
|
+
"Electricity",
|
|
5534
|
+
"Oil",
|
|
5535
|
+
"LPG"
|
|
4862
5536
|
]
|
|
4863
5537
|
}
|
|
4864
5538
|
}
|
|
4865
5539
|
},
|
|
4866
5540
|
{
|
|
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.",
|
|
5541
|
+
"properties": {
|
|
5542
|
+
"centralHeatingFuelType": {
|
|
4876
5543
|
"enum": [
|
|
4877
|
-
"
|
|
4878
|
-
"To follow"
|
|
5544
|
+
"Other"
|
|
4879
5545
|
]
|
|
5546
|
+
},
|
|
5547
|
+
"otherCentralHeatingFuelType": {
|
|
5548
|
+
"baspiRef": "A7.4.0.3",
|
|
5549
|
+
"title": "Please describe the other fuel type"
|
|
4880
5550
|
}
|
|
4881
5551
|
},
|
|
4882
5552
|
"required": [
|
|
4883
|
-
"
|
|
5553
|
+
"otherCentralHeatingFuelType"
|
|
4884
5554
|
]
|
|
4885
5555
|
}
|
|
4886
5556
|
],
|
|
4887
5557
|
"required": [
|
|
4888
|
-
"
|
|
5558
|
+
"centralHeatingFuelType"
|
|
4889
5559
|
],
|
|
4890
5560
|
"properties": {
|
|
4891
|
-
"
|
|
4892
|
-
"baspiRef": "
|
|
5561
|
+
"centralHeatingFuelType": {
|
|
5562
|
+
"baspiRef": "A7.4.0.2",
|
|
5563
|
+
"title": "What type of fuel does the system run on?",
|
|
4893
5564
|
"enum": [
|
|
4894
|
-
"
|
|
4895
|
-
"
|
|
5565
|
+
"Gas",
|
|
5566
|
+
"Electricity",
|
|
5567
|
+
"Oil",
|
|
5568
|
+
"LPG",
|
|
5569
|
+
"Other"
|
|
4896
5570
|
]
|
|
4897
5571
|
}
|
|
4898
5572
|
}
|
|
4899
5573
|
},
|
|
4900
|
-
"
|
|
4901
|
-
"baspiRef": "A7.1
|
|
4902
|
-
"title": "
|
|
5574
|
+
"centralHeatingInstalled": {
|
|
5575
|
+
"baspiRef": "A7.4.1",
|
|
5576
|
+
"title": "When was the heating system installed?"
|
|
5577
|
+
},
|
|
5578
|
+
"boilerInstallationCertificate": {
|
|
5579
|
+
"baspiRef": "A7.4.1.1",
|
|
5580
|
+
"title": "Was a gas boiler installed after 1st April 2005, or a solid fuel or oil boiler installed after 1st October 2010?",
|
|
4903
5581
|
"discriminator": {
|
|
4904
5582
|
"propertyName": "yesNo"
|
|
4905
5583
|
},
|
|
@@ -4921,8 +5599,8 @@
|
|
|
4921
5599
|
]
|
|
4922
5600
|
},
|
|
4923
5601
|
"attachments": {
|
|
4924
|
-
"baspiRef": "A7.1.
|
|
4925
|
-
"title": "Please supply the
|
|
5602
|
+
"baspiRef": "A7.4.1.2",
|
|
5603
|
+
"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
5604
|
"enum": [
|
|
4927
5605
|
"Attached",
|
|
4928
5606
|
"To follow"
|
|
@@ -4939,7 +5617,7 @@
|
|
|
4939
5617
|
],
|
|
4940
5618
|
"properties": {
|
|
4941
5619
|
"yesNo": {
|
|
4942
|
-
"baspiRef": "
|
|
5620
|
+
"baspiRef": "A10.1.1",
|
|
4943
5621
|
"enum": [
|
|
4944
5622
|
"Yes",
|
|
4945
5623
|
"No"
|
|
@@ -4947,9 +5625,22 @@
|
|
|
4947
5625
|
}
|
|
4948
5626
|
}
|
|
4949
5627
|
},
|
|
4950
|
-
"
|
|
4951
|
-
"baspiRef": "A7.1
|
|
4952
|
-
"title": "
|
|
5628
|
+
"heatingLastServicedDate": {
|
|
5629
|
+
"baspiRef": "A7.4.2.1",
|
|
5630
|
+
"title": "When was the heating system last serviced or maintained?"
|
|
5631
|
+
},
|
|
5632
|
+
"heatingLastServicedReport": {
|
|
5633
|
+
"baspiRef": "A7.4.2.2",
|
|
5634
|
+
"title": "Please provide a copy of the service or maintenance works report.",
|
|
5635
|
+
"enum": [
|
|
5636
|
+
"Attached",
|
|
5637
|
+
"To follow",
|
|
5638
|
+
"Not available"
|
|
5639
|
+
]
|
|
5640
|
+
},
|
|
5641
|
+
"heatingInGoodWorkingOrder": {
|
|
5642
|
+
"baspiRef": "A7.4.3",
|
|
5643
|
+
"title": "Is the heating system in good working order to your satisfaction?",
|
|
4953
5644
|
"discriminator": {
|
|
4954
5645
|
"propertyName": "yesNo"
|
|
4955
5646
|
},
|
|
@@ -4958,7 +5649,7 @@
|
|
|
4958
5649
|
"properties": {
|
|
4959
5650
|
"yesNo": {
|
|
4960
5651
|
"enum": [
|
|
4961
|
-
"
|
|
5652
|
+
"Yes"
|
|
4962
5653
|
]
|
|
4963
5654
|
}
|
|
4964
5655
|
}
|
|
@@ -4967,20 +5658,16 @@
|
|
|
4967
5658
|
"properties": {
|
|
4968
5659
|
"yesNo": {
|
|
4969
5660
|
"enum": [
|
|
4970
|
-
"
|
|
5661
|
+
"No"
|
|
4971
5662
|
]
|
|
4972
5663
|
},
|
|
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
|
-
]
|
|
5664
|
+
"details": {
|
|
5665
|
+
"baspiRef": "A7.4.3.2",
|
|
5666
|
+
"title": "Please provide details"
|
|
4980
5667
|
}
|
|
4981
5668
|
},
|
|
4982
5669
|
"required": [
|
|
4983
|
-
"
|
|
5670
|
+
"details"
|
|
4984
5671
|
]
|
|
4985
5672
|
}
|
|
4986
5673
|
],
|
|
@@ -4989,257 +5676,181 @@
|
|
|
4989
5676
|
],
|
|
4990
5677
|
"properties": {
|
|
4991
5678
|
"yesNo": {
|
|
4992
|
-
"baspiRef": "A7.
|
|
5679
|
+
"baspiRef": "A7.4.3.1",
|
|
4993
5680
|
"enum": [
|
|
4994
5681
|
"Yes",
|
|
4995
|
-
"No
|
|
5682
|
+
"No"
|
|
4996
5683
|
]
|
|
4997
5684
|
}
|
|
4998
5685
|
}
|
|
4999
5686
|
}
|
|
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
5687
|
}
|
|
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
5688
|
}
|
|
5069
|
-
|
|
5689
|
+
},
|
|
5070
5690
|
"required": [
|
|
5071
|
-
"
|
|
5072
|
-
]
|
|
5073
|
-
"properties": {
|
|
5074
|
-
"yesNo": {
|
|
5075
|
-
"baspiRef": "A7.2.1",
|
|
5076
|
-
"enum": [
|
|
5077
|
-
"Yes",
|
|
5078
|
-
"No"
|
|
5079
|
-
]
|
|
5080
|
-
}
|
|
5081
|
-
}
|
|
5691
|
+
"centralHeatingDetails"
|
|
5692
|
+
]
|
|
5082
5693
|
}
|
|
5083
|
-
|
|
5084
|
-
},
|
|
5085
|
-
"greenDealLoan": {
|
|
5086
|
-
"baspiRef": "A7.3",
|
|
5087
|
-
"title": "Green Deal Loan",
|
|
5694
|
+
],
|
|
5088
5695
|
"required": [
|
|
5089
|
-
"
|
|
5696
|
+
"hasCentralHeating"
|
|
5090
5697
|
],
|
|
5091
5698
|
"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
|
-
}
|
|
5699
|
+
"hasCentralHeating": {
|
|
5700
|
+
"baspiRef": "A7.4.0",
|
|
5701
|
+
"title": "Is there full/partial central heating in your property?",
|
|
5702
|
+
"enum": [
|
|
5703
|
+
"Yes",
|
|
5704
|
+
"No"
|
|
5705
|
+
]
|
|
5147
5706
|
}
|
|
5148
5707
|
}
|
|
5149
5708
|
},
|
|
5150
|
-
"
|
|
5151
|
-
"baspiRef": "
|
|
5152
|
-
"title": "
|
|
5709
|
+
"insurance": {
|
|
5710
|
+
"baspiRef": "A8",
|
|
5711
|
+
"title": "Insurance",
|
|
5153
5712
|
"discriminator": {
|
|
5154
|
-
"propertyName": "
|
|
5713
|
+
"propertyName": "isInsured"
|
|
5155
5714
|
},
|
|
5156
5715
|
"oneOf": [
|
|
5157
5716
|
{
|
|
5158
5717
|
"properties": {
|
|
5159
|
-
"
|
|
5718
|
+
"isInsured": {
|
|
5160
5719
|
"enum": [
|
|
5161
5720
|
"No"
|
|
5162
5721
|
]
|
|
5722
|
+
},
|
|
5723
|
+
"details": {
|
|
5724
|
+
"baspiRef": "A8.1.1",
|
|
5725
|
+
"title": "Why not?"
|
|
5726
|
+
},
|
|
5727
|
+
"landlordInsuresIfFlat": {
|
|
5728
|
+
"baspiRef": "A8.1.2",
|
|
5729
|
+
"title": "If the property is a flat, does the landlord insure the building?",
|
|
5730
|
+
"enum": [
|
|
5731
|
+
"Yes",
|
|
5732
|
+
"No",
|
|
5733
|
+
"Not applicable"
|
|
5734
|
+
]
|
|
5163
5735
|
}
|
|
5164
|
-
}
|
|
5736
|
+
},
|
|
5737
|
+
"required": [
|
|
5738
|
+
"details",
|
|
5739
|
+
"landlordInsuresIfFlat"
|
|
5740
|
+
]
|
|
5165
5741
|
},
|
|
5166
5742
|
{
|
|
5167
5743
|
"properties": {
|
|
5168
|
-
"
|
|
5744
|
+
"isInsured": {
|
|
5169
5745
|
"enum": [
|
|
5170
5746
|
"Yes"
|
|
5171
5747
|
]
|
|
5172
5748
|
},
|
|
5173
|
-
"
|
|
5749
|
+
"difficultiesObtainingInsurance": {
|
|
5750
|
+
"baspiRef": "A8.1.2.1",
|
|
5751
|
+
"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
5752
|
"required": [
|
|
5175
|
-
"
|
|
5176
|
-
"
|
|
5177
|
-
"
|
|
5178
|
-
"
|
|
5179
|
-
"heatingInGoodWorkingOrder"
|
|
5753
|
+
"abnormalRiseInPremiums",
|
|
5754
|
+
"subjectToHighExcesses",
|
|
5755
|
+
"subjectToUnusualConditions",
|
|
5756
|
+
"refused"
|
|
5180
5757
|
],
|
|
5181
5758
|
"properties": {
|
|
5182
|
-
"
|
|
5183
|
-
"baspiRef": "
|
|
5184
|
-
"title": "
|
|
5759
|
+
"abnormalRiseInPremiums": {
|
|
5760
|
+
"baspiRef": "A8.1.2.1.1",
|
|
5761
|
+
"title": "Subject to abnormal rise in premiums?",
|
|
5762
|
+
"discriminator": {
|
|
5763
|
+
"propertyName": "yesNo"
|
|
5764
|
+
},
|
|
5765
|
+
"oneOf": [
|
|
5766
|
+
{
|
|
5767
|
+
"properties": {
|
|
5768
|
+
"yesNo": {
|
|
5769
|
+
"enum": [
|
|
5770
|
+
"No"
|
|
5771
|
+
]
|
|
5772
|
+
}
|
|
5773
|
+
}
|
|
5774
|
+
},
|
|
5775
|
+
{
|
|
5776
|
+
"properties": {
|
|
5777
|
+
"yesNo": {
|
|
5778
|
+
"enum": [
|
|
5779
|
+
"Yes"
|
|
5780
|
+
]
|
|
5781
|
+
},
|
|
5782
|
+
"details": {
|
|
5783
|
+
"baspiRef": "A8.1.2.1.3",
|
|
5784
|
+
"title": "Provide details"
|
|
5785
|
+
}
|
|
5786
|
+
},
|
|
5787
|
+
"required": [
|
|
5788
|
+
"details"
|
|
5789
|
+
]
|
|
5790
|
+
}
|
|
5791
|
+
],
|
|
5792
|
+
"required": [
|
|
5793
|
+
"yesNo"
|
|
5794
|
+
],
|
|
5795
|
+
"properties": {
|
|
5796
|
+
"yesNo": {
|
|
5797
|
+
"baspiRef": "A8.1.2.1.2",
|
|
5798
|
+
"enum": [
|
|
5799
|
+
"Yes",
|
|
5800
|
+
"No"
|
|
5801
|
+
]
|
|
5802
|
+
}
|
|
5803
|
+
}
|
|
5804
|
+
},
|
|
5805
|
+
"subjectToHighExcesses": {
|
|
5806
|
+
"baspiRef": "A8.1.1.2",
|
|
5807
|
+
"title": "Subject to high excesses?",
|
|
5185
5808
|
"discriminator": {
|
|
5186
|
-
"propertyName": "
|
|
5809
|
+
"propertyName": "yesNo"
|
|
5187
5810
|
},
|
|
5188
5811
|
"oneOf": [
|
|
5189
5812
|
{
|
|
5190
5813
|
"properties": {
|
|
5191
|
-
"
|
|
5814
|
+
"yesNo": {
|
|
5192
5815
|
"enum": [
|
|
5193
|
-
"
|
|
5194
|
-
"Electricity",
|
|
5195
|
-
"Oil",
|
|
5196
|
-
"LPG"
|
|
5816
|
+
"No"
|
|
5197
5817
|
]
|
|
5198
5818
|
}
|
|
5199
5819
|
}
|
|
5200
5820
|
},
|
|
5201
5821
|
{
|
|
5202
5822
|
"properties": {
|
|
5203
|
-
"
|
|
5823
|
+
"yesNo": {
|
|
5204
5824
|
"enum": [
|
|
5205
|
-
"
|
|
5825
|
+
"Yes"
|
|
5206
5826
|
]
|
|
5207
5827
|
},
|
|
5208
|
-
"
|
|
5209
|
-
"baspiRef": "
|
|
5210
|
-
"title": "
|
|
5828
|
+
"details": {
|
|
5829
|
+
"baspiRef": "A8.1.2.1.2.2",
|
|
5830
|
+
"title": "Provide details"
|
|
5211
5831
|
}
|
|
5212
5832
|
},
|
|
5213
5833
|
"required": [
|
|
5214
|
-
"
|
|
5834
|
+
"details"
|
|
5215
5835
|
]
|
|
5216
5836
|
}
|
|
5217
5837
|
],
|
|
5218
5838
|
"required": [
|
|
5219
|
-
"
|
|
5839
|
+
"yesNo"
|
|
5220
5840
|
],
|
|
5221
5841
|
"properties": {
|
|
5222
|
-
"
|
|
5223
|
-
"baspiRef": "
|
|
5224
|
-
"title": "What type of fuel does the system and boiler run on?",
|
|
5842
|
+
"yesNo": {
|
|
5843
|
+
"baspiRef": "A8.1.1.2.1",
|
|
5225
5844
|
"enum": [
|
|
5226
|
-
"
|
|
5227
|
-
"
|
|
5228
|
-
"Oil",
|
|
5229
|
-
"LPG",
|
|
5230
|
-
"Other"
|
|
5845
|
+
"Yes",
|
|
5846
|
+
"No"
|
|
5231
5847
|
]
|
|
5232
5848
|
}
|
|
5233
5849
|
}
|
|
5234
5850
|
},
|
|
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, ",
|
|
5851
|
+
"subjectToUnusualConditions": {
|
|
5852
|
+
"baspiRef": "A8.1.2.1.3",
|
|
5853
|
+
"title": "Subject to unusual conditions?",
|
|
5243
5854
|
"discriminator": {
|
|
5244
5855
|
"propertyName": "yesNo"
|
|
5245
5856
|
},
|
|
@@ -5260,17 +5871,13 @@
|
|
|
5260
5871
|
"Yes"
|
|
5261
5872
|
]
|
|
5262
5873
|
},
|
|
5263
|
-
"
|
|
5264
|
-
"baspiRef": "
|
|
5265
|
-
"title": "
|
|
5266
|
-
"enum": [
|
|
5267
|
-
"Attached",
|
|
5268
|
-
"To follow"
|
|
5269
|
-
]
|
|
5874
|
+
"details": {
|
|
5875
|
+
"baspiRef": "A8.1.2.1.3.2",
|
|
5876
|
+
"title": "Provide details"
|
|
5270
5877
|
}
|
|
5271
5878
|
},
|
|
5272
5879
|
"required": [
|
|
5273
|
-
"
|
|
5880
|
+
"details"
|
|
5274
5881
|
]
|
|
5275
5882
|
}
|
|
5276
5883
|
],
|
|
@@ -5279,7 +5886,7 @@
|
|
|
5279
5886
|
],
|
|
5280
5887
|
"properties": {
|
|
5281
5888
|
"yesNo": {
|
|
5282
|
-
"baspiRef": "
|
|
5889
|
+
"baspiRef": "A8.1.2.1.3.1",
|
|
5283
5890
|
"enum": [
|
|
5284
5891
|
"Yes",
|
|
5285
5892
|
"No"
|
|
@@ -5287,22 +5894,9 @@
|
|
|
5287
5894
|
}
|
|
5288
5895
|
}
|
|
5289
5896
|
},
|
|
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?",
|
|
5897
|
+
"refused": {
|
|
5898
|
+
"baspiRef": "A8.1.2.1.4",
|
|
5899
|
+
"title": "Refused?",
|
|
5306
5900
|
"discriminator": {
|
|
5307
5901
|
"propertyName": "yesNo"
|
|
5308
5902
|
},
|
|
@@ -5311,7 +5905,7 @@
|
|
|
5311
5905
|
"properties": {
|
|
5312
5906
|
"yesNo": {
|
|
5313
5907
|
"enum": [
|
|
5314
|
-
"
|
|
5908
|
+
"No"
|
|
5315
5909
|
]
|
|
5316
5910
|
}
|
|
5317
5911
|
}
|
|
@@ -5320,12 +5914,12 @@
|
|
|
5320
5914
|
"properties": {
|
|
5321
5915
|
"yesNo": {
|
|
5322
5916
|
"enum": [
|
|
5323
|
-
"
|
|
5917
|
+
"Yes"
|
|
5324
5918
|
]
|
|
5325
5919
|
},
|
|
5326
5920
|
"details": {
|
|
5327
|
-
"baspiRef": "
|
|
5328
|
-
"title": "
|
|
5921
|
+
"baspiRef": "A8.1.2.1.4.2",
|
|
5922
|
+
"title": "Provide details"
|
|
5329
5923
|
}
|
|
5330
5924
|
},
|
|
5331
5925
|
"required": [
|
|
@@ -5338,7 +5932,7 @@
|
|
|
5338
5932
|
],
|
|
5339
5933
|
"properties": {
|
|
5340
5934
|
"yesNo": {
|
|
5341
|
-
"baspiRef": "
|
|
5935
|
+
"baspiRef": "A8.1.2.1.4.1",
|
|
5342
5936
|
"enum": [
|
|
5343
5937
|
"Yes",
|
|
5344
5938
|
"No"
|
|
@@ -5347,103 +5941,6 @@
|
|
|
5347
5941
|
}
|
|
5348
5942
|
}
|
|
5349
5943
|
}
|
|
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
5944
|
},
|
|
5448
5945
|
"insuranceClaims": {
|
|
5449
5946
|
"baspiRef": "A8.2",
|
|
@@ -5777,7 +6274,6 @@
|
|
|
5777
6274
|
"neighbouringLandRights": {
|
|
5778
6275
|
"baspiRef": "A10.2",
|
|
5779
6276
|
"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
6277
|
"discriminator": {
|
|
5782
6278
|
"propertyName": "yesNo"
|
|
5783
6279
|
},
|
|
@@ -5881,10 +6377,12 @@
|
|
|
5881
6377
|
"title": "Do you know if any of the following rights or arrangements affect the property?",
|
|
5882
6378
|
"required": [
|
|
5883
6379
|
"publicRightOfWay",
|
|
5884
|
-
"
|
|
6380
|
+
"rightsOfLight",
|
|
6381
|
+
"rightsOfSupport",
|
|
5885
6382
|
"rightsCreatedThroughCustom",
|
|
5886
6383
|
"minesAndMinerals",
|
|
5887
6384
|
"churchChancel",
|
|
6385
|
+
"rightsToTakeFromLand",
|
|
5888
6386
|
"otherRights"
|
|
5889
6387
|
],
|
|
5890
6388
|
"properties": {
|
|
@@ -5943,9 +6441,101 @@
|
|
|
5943
6441
|
}
|
|
5944
6442
|
}
|
|
5945
6443
|
},
|
|
5946
|
-
"
|
|
5947
|
-
"baspiRef": "A10.4.
|
|
5948
|
-
"title": "Rights of light
|
|
6444
|
+
"rightsOfLight": {
|
|
6445
|
+
"baspiRef": "A10.4.2a",
|
|
6446
|
+
"title": "Rights of light",
|
|
6447
|
+
"discriminator": {
|
|
6448
|
+
"propertyName": "yesNo"
|
|
6449
|
+
},
|
|
6450
|
+
"oneOf": [
|
|
6451
|
+
{
|
|
6452
|
+
"properties": {
|
|
6453
|
+
"yesNo": {
|
|
6454
|
+
"enum": [
|
|
6455
|
+
"No"
|
|
6456
|
+
]
|
|
6457
|
+
}
|
|
6458
|
+
}
|
|
6459
|
+
},
|
|
6460
|
+
{
|
|
6461
|
+
"properties": {
|
|
6462
|
+
"yesNo": {
|
|
6463
|
+
"enum": [
|
|
6464
|
+
"Yes"
|
|
6465
|
+
]
|
|
6466
|
+
},
|
|
6467
|
+
"details": {
|
|
6468
|
+
"baspiRef": "A10.4.2a.2",
|
|
6469
|
+
"title": "Details"
|
|
6470
|
+
}
|
|
6471
|
+
},
|
|
6472
|
+
"required": [
|
|
6473
|
+
"details"
|
|
6474
|
+
]
|
|
6475
|
+
}
|
|
6476
|
+
],
|
|
6477
|
+
"required": [
|
|
6478
|
+
"yesNo"
|
|
6479
|
+
],
|
|
6480
|
+
"properties": {
|
|
6481
|
+
"yesNo": {
|
|
6482
|
+
"baspiRef": "A10.4.2a.1",
|
|
6483
|
+
"enum": [
|
|
6484
|
+
"Yes",
|
|
6485
|
+
"No"
|
|
6486
|
+
]
|
|
6487
|
+
}
|
|
6488
|
+
}
|
|
6489
|
+
},
|
|
6490
|
+
"rightsOfSupport": {
|
|
6491
|
+
"baspiRef": "A10.4.2b",
|
|
6492
|
+
"title": "Rights of support from ajoining properties",
|
|
6493
|
+
"discriminator": {
|
|
6494
|
+
"propertyName": "yesNo"
|
|
6495
|
+
},
|
|
6496
|
+
"oneOf": [
|
|
6497
|
+
{
|
|
6498
|
+
"properties": {
|
|
6499
|
+
"yesNo": {
|
|
6500
|
+
"enum": [
|
|
6501
|
+
"No"
|
|
6502
|
+
]
|
|
6503
|
+
}
|
|
6504
|
+
}
|
|
6505
|
+
},
|
|
6506
|
+
{
|
|
6507
|
+
"properties": {
|
|
6508
|
+
"yesNo": {
|
|
6509
|
+
"enum": [
|
|
6510
|
+
"Yes"
|
|
6511
|
+
]
|
|
6512
|
+
},
|
|
6513
|
+
"details": {
|
|
6514
|
+
"baspiRef": "A10.4.2b.2",
|
|
6515
|
+
"title": "Details"
|
|
6516
|
+
}
|
|
6517
|
+
},
|
|
6518
|
+
"required": [
|
|
6519
|
+
"details"
|
|
6520
|
+
]
|
|
6521
|
+
}
|
|
6522
|
+
],
|
|
6523
|
+
"required": [
|
|
6524
|
+
"yesNo"
|
|
6525
|
+
],
|
|
6526
|
+
"properties": {
|
|
6527
|
+
"yesNo": {
|
|
6528
|
+
"baspiRef": "A10.4.2b.1",
|
|
6529
|
+
"enum": [
|
|
6530
|
+
"Yes",
|
|
6531
|
+
"No"
|
|
6532
|
+
]
|
|
6533
|
+
}
|
|
6534
|
+
}
|
|
6535
|
+
},
|
|
6536
|
+
"rightsCreatedThroughCustom": {
|
|
6537
|
+
"baspiRef": "A10.4.3a",
|
|
6538
|
+
"title": "Rights created through custom or use (e.g. rights to graze on other land or forage)",
|
|
5949
6539
|
"discriminator": {
|
|
5950
6540
|
"propertyName": "yesNo"
|
|
5951
6541
|
},
|
|
@@ -5967,7 +6557,7 @@
|
|
|
5967
6557
|
]
|
|
5968
6558
|
},
|
|
5969
6559
|
"details": {
|
|
5970
|
-
"baspiRef": "A10.4.
|
|
6560
|
+
"baspiRef": "A10.4.3a2",
|
|
5971
6561
|
"title": "Details"
|
|
5972
6562
|
}
|
|
5973
6563
|
},
|
|
@@ -5981,7 +6571,7 @@
|
|
|
5981
6571
|
],
|
|
5982
6572
|
"properties": {
|
|
5983
6573
|
"yesNo": {
|
|
5984
|
-
"baspiRef": "A10.4.
|
|
6574
|
+
"baspiRef": "A10.4.3a1",
|
|
5985
6575
|
"enum": [
|
|
5986
6576
|
"Yes",
|
|
5987
6577
|
"No"
|
|
@@ -5989,9 +6579,9 @@
|
|
|
5989
6579
|
}
|
|
5990
6580
|
}
|
|
5991
6581
|
},
|
|
5992
|
-
"
|
|
5993
|
-
"baspiRef": "A10.4.
|
|
5994
|
-
"title": "
|
|
6582
|
+
"rightsToTakeFromLand": {
|
|
6583
|
+
"baspiRef": "A10.4.3b",
|
|
6584
|
+
"title": "Other people's rights to take things from the land (such as timber, hay or fish)",
|
|
5995
6585
|
"discriminator": {
|
|
5996
6586
|
"propertyName": "yesNo"
|
|
5997
6587
|
},
|
|
@@ -6013,7 +6603,7 @@
|
|
|
6013
6603
|
]
|
|
6014
6604
|
},
|
|
6015
6605
|
"details": {
|
|
6016
|
-
"baspiRef": "A10.4.
|
|
6606
|
+
"baspiRef": "A10.4.3b2",
|
|
6017
6607
|
"title": "Details"
|
|
6018
6608
|
}
|
|
6019
6609
|
},
|
|
@@ -6027,7 +6617,7 @@
|
|
|
6027
6617
|
],
|
|
6028
6618
|
"properties": {
|
|
6029
6619
|
"yesNo": {
|
|
6030
|
-
"baspiRef": "A10.4.
|
|
6620
|
+
"baspiRef": "A10.4.3b1",
|
|
6031
6621
|
"enum": [
|
|
6032
6622
|
"Yes",
|
|
6033
6623
|
"No"
|
|
@@ -6228,42 +6818,46 @@
|
|
|
6228
6818
|
"groundWater": {
|
|
6229
6819
|
"baspiRef": "A11.1.2.2.1",
|
|
6230
6820
|
"title": "Ground water",
|
|
6231
|
-
"
|
|
6232
|
-
"
|
|
6821
|
+
"enum": [
|
|
6822
|
+
"Yes",
|
|
6823
|
+
"No"
|
|
6233
6824
|
]
|
|
6234
6825
|
},
|
|
6235
6826
|
"sewer": {
|
|
6236
6827
|
"baspiRef": "A11.1.2.2.2",
|
|
6237
6828
|
"title": "Sewer",
|
|
6238
|
-
"
|
|
6239
|
-
"
|
|
6829
|
+
"enum": [
|
|
6830
|
+
"Yes",
|
|
6831
|
+
"No"
|
|
6240
6832
|
]
|
|
6241
6833
|
},
|
|
6242
6834
|
"surfaceWater": {
|
|
6243
6835
|
"baspiRef": "A11.1.2.2.3",
|
|
6244
6836
|
"title": "Surface water",
|
|
6245
|
-
"
|
|
6246
|
-
"
|
|
6837
|
+
"enum": [
|
|
6838
|
+
"Yes",
|
|
6839
|
+
"No"
|
|
6247
6840
|
]
|
|
6248
6841
|
},
|
|
6249
6842
|
"coastal": {
|
|
6250
6843
|
"baspiRef": "A11.1.2.2.4",
|
|
6251
6844
|
"title": "Coastal flooding",
|
|
6252
|
-
"
|
|
6253
|
-
"
|
|
6845
|
+
"enum": [
|
|
6846
|
+
"Yes",
|
|
6847
|
+
"No"
|
|
6254
6848
|
]
|
|
6255
6849
|
},
|
|
6256
6850
|
"river": {
|
|
6257
6851
|
"baspiRef": "A11.1.2.2.5",
|
|
6258
6852
|
"title": "River flooding",
|
|
6259
|
-
"
|
|
6260
|
-
"
|
|
6853
|
+
"enum": [
|
|
6854
|
+
"Yes",
|
|
6855
|
+
"No"
|
|
6261
6856
|
]
|
|
6262
6857
|
},
|
|
6263
6858
|
"other": {
|
|
6264
6859
|
"baspiRef": "A11.1.2.2.6",
|
|
6265
6860
|
"title": "Other",
|
|
6266
|
-
"description": "Please state",
|
|
6267
6861
|
"discriminator": {
|
|
6268
6862
|
"propertyName": "yesNo"
|
|
6269
6863
|
},
|
|
@@ -6285,7 +6879,7 @@
|
|
|
6285
6879
|
]
|
|
6286
6880
|
},
|
|
6287
6881
|
"details": {
|
|
6288
|
-
"baspiRef": "A11.1.2.2.6.
|
|
6882
|
+
"baspiRef": "A11.1.2.2.6.2",
|
|
6289
6883
|
"title": "Please stata"
|
|
6290
6884
|
}
|
|
6291
6885
|
},
|
|
@@ -6296,7 +6890,16 @@
|
|
|
6296
6890
|
],
|
|
6297
6891
|
"required": [
|
|
6298
6892
|
"yesNo"
|
|
6299
|
-
]
|
|
6893
|
+
],
|
|
6894
|
+
"properties": {
|
|
6895
|
+
"yesNo": {
|
|
6896
|
+
"baspiRef": "A11.1.2.2.6.1",
|
|
6897
|
+
"enum": [
|
|
6898
|
+
"Yes",
|
|
6899
|
+
"No"
|
|
6900
|
+
]
|
|
6901
|
+
}
|
|
6902
|
+
}
|
|
6300
6903
|
}
|
|
6301
6904
|
}
|
|
6302
6905
|
}
|
|
@@ -6405,11 +7008,15 @@
|
|
|
6405
7008
|
},
|
|
6406
7009
|
"details": {
|
|
6407
7010
|
"baspiRef": "A11.1.3.2",
|
|
6408
|
-
"title": "
|
|
7011
|
+
"title": "Was the test result was below the recommended level?",
|
|
7012
|
+
"enum": [
|
|
7013
|
+
"Yes",
|
|
7014
|
+
"No"
|
|
7015
|
+
]
|
|
6409
7016
|
},
|
|
6410
7017
|
"attachments": {
|
|
6411
7018
|
"baspiRef": "A11.1.3.3",
|
|
6412
|
-
"title": "
|
|
7019
|
+
"title": "Please supply a copy of the report",
|
|
6413
7020
|
"enum": [
|
|
6414
7021
|
"Attached",
|
|
6415
7022
|
"To follow"
|
|
@@ -6436,15 +7043,18 @@
|
|
|
6436
7043
|
}
|
|
6437
7044
|
},
|
|
6438
7045
|
"remedialMeasuresOnConstruction": {
|
|
7046
|
+
"baspiRef": "A11.1.3.4",
|
|
7047
|
+
"title": "Were any remedial measures undertaken on construction to reduce Radon gas levels on the property?",
|
|
6439
7048
|
"required": [
|
|
6440
7049
|
"yesNo"
|
|
6441
7050
|
],
|
|
6442
7051
|
"properties": {
|
|
6443
7052
|
"yesNo": {
|
|
6444
|
-
"baspiRef": "A11.1.3.4",
|
|
7053
|
+
"baspiRef": "A11.1.3.4.1",
|
|
6445
7054
|
"enum": [
|
|
6446
7055
|
"Yes",
|
|
6447
|
-
"No"
|
|
7056
|
+
"No",
|
|
7057
|
+
"Not known"
|
|
6448
7058
|
]
|
|
6449
7059
|
}
|
|
6450
7060
|
}
|
|
@@ -6462,7 +7072,8 @@
|
|
|
6462
7072
|
"properties": {
|
|
6463
7073
|
"yesNo": {
|
|
6464
7074
|
"enum": [
|
|
6465
|
-
"No"
|
|
7075
|
+
"No",
|
|
7076
|
+
"Not known"
|
|
6466
7077
|
]
|
|
6467
7078
|
}
|
|
6468
7079
|
}
|
|
@@ -6732,7 +7343,8 @@
|
|
|
6732
7343
|
"title": "Additional Information",
|
|
6733
7344
|
"required": [
|
|
6734
7345
|
"restrictionsOnUseNotCompliedWith",
|
|
6735
|
-
"otherMaterialIssue"
|
|
7346
|
+
"otherMaterialIssue",
|
|
7347
|
+
"otherCharges"
|
|
6736
7348
|
],
|
|
6737
7349
|
"properties": {
|
|
6738
7350
|
"restrictionsOnUseNotCompliedWith": {
|
|
@@ -6815,7 +7427,7 @@
|
|
|
6815
7427
|
},
|
|
6816
7428
|
"details": {
|
|
6817
7429
|
"baspiRef": "A12.2.2",
|
|
6818
|
-
"title": "
|
|
7430
|
+
"title": "Please describe this issue and any action that has been taken, if applicable."
|
|
6819
7431
|
},
|
|
6820
7432
|
"attachments": {
|
|
6821
7433
|
"baspiRef": "A12.2.3",
|
|
@@ -6843,6 +7455,52 @@
|
|
|
6843
7455
|
]
|
|
6844
7456
|
}
|
|
6845
7457
|
}
|
|
7458
|
+
},
|
|
7459
|
+
"otherCharges": {
|
|
7460
|
+
"baspiRef": "A12.3",
|
|
7461
|
+
"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?",
|
|
7462
|
+
"discriminator": {
|
|
7463
|
+
"propertyName": "yesNo"
|
|
7464
|
+
},
|
|
7465
|
+
"oneOf": [
|
|
7466
|
+
{
|
|
7467
|
+
"properties": {
|
|
7468
|
+
"yesNo": {
|
|
7469
|
+
"enum": [
|
|
7470
|
+
"No"
|
|
7471
|
+
]
|
|
7472
|
+
}
|
|
7473
|
+
}
|
|
7474
|
+
},
|
|
7475
|
+
{
|
|
7476
|
+
"properties": {
|
|
7477
|
+
"yesNo": {
|
|
7478
|
+
"enum": [
|
|
7479
|
+
"Yes"
|
|
7480
|
+
]
|
|
7481
|
+
},
|
|
7482
|
+
"details": {
|
|
7483
|
+
"baspiRef": "A12.3.2",
|
|
7484
|
+
"title": "Please give details"
|
|
7485
|
+
}
|
|
7486
|
+
},
|
|
7487
|
+
"required": [
|
|
7488
|
+
"details"
|
|
7489
|
+
]
|
|
7490
|
+
}
|
|
7491
|
+
],
|
|
7492
|
+
"required": [
|
|
7493
|
+
"yesNo"
|
|
7494
|
+
],
|
|
7495
|
+
"properties": {
|
|
7496
|
+
"yesNo": {
|
|
7497
|
+
"baspiRef": "A12.3.1",
|
|
7498
|
+
"enum": [
|
|
7499
|
+
"Yes",
|
|
7500
|
+
"No"
|
|
7501
|
+
]
|
|
7502
|
+
}
|
|
7503
|
+
}
|
|
6846
7504
|
}
|
|
6847
7505
|
}
|
|
6848
7506
|
},
|
|
@@ -7053,6 +7711,14 @@
|
|
|
7053
7711
|
]
|
|
7054
7712
|
},
|
|
7055
7713
|
"uniformBoundaries": {
|
|
7714
|
+
"baspiRef": "B2.1.0.2",
|
|
7715
|
+
"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.",
|
|
7716
|
+
"required": [
|
|
7717
|
+
"left",
|
|
7718
|
+
"right",
|
|
7719
|
+
"rear",
|
|
7720
|
+
"front"
|
|
7721
|
+
],
|
|
7056
7722
|
"properties": {
|
|
7057
7723
|
"left": {
|
|
7058
7724
|
"baspiRef": "B2.1.1",
|
|
@@ -7096,13 +7762,7 @@
|
|
|
7096
7762
|
}
|
|
7097
7763
|
}
|
|
7098
7764
|
}
|
|
7099
|
-
}
|
|
7100
|
-
"required": [
|
|
7101
|
-
"left",
|
|
7102
|
-
"right",
|
|
7103
|
-
"rear",
|
|
7104
|
-
"front"
|
|
7105
|
-
]
|
|
7765
|
+
}
|
|
7106
7766
|
},
|
|
7107
7767
|
{
|
|
7108
7768
|
"properties": {
|
|
@@ -7133,7 +7793,7 @@
|
|
|
7133
7793
|
"properties": {
|
|
7134
7794
|
"areBoundariesUniform": {
|
|
7135
7795
|
"enum": [
|
|
7136
|
-
"
|
|
7796
|
+
"Not applicable"
|
|
7137
7797
|
]
|
|
7138
7798
|
}
|
|
7139
7799
|
}
|
|
@@ -7145,10 +7805,11 @@
|
|
|
7145
7805
|
"properties": {
|
|
7146
7806
|
"areBoundariesUniform": {
|
|
7147
7807
|
"baspiRef": "B2.1.0.1",
|
|
7808
|
+
"title": "Are the boundaries uniform?",
|
|
7148
7809
|
"enum": [
|
|
7149
7810
|
"Yes",
|
|
7150
7811
|
"No",
|
|
7151
|
-
"
|
|
7812
|
+
"Not applicable"
|
|
7152
7813
|
]
|
|
7153
7814
|
}
|
|
7154
7815
|
}
|
|
@@ -7165,7 +7826,7 @@
|
|
|
7165
7826
|
"yesNo": {
|
|
7166
7827
|
"enum": [
|
|
7167
7828
|
"No",
|
|
7168
|
-
"
|
|
7829
|
+
"Not applicable"
|
|
7169
7830
|
]
|
|
7170
7831
|
}
|
|
7171
7832
|
}
|
|
@@ -7196,7 +7857,7 @@
|
|
|
7196
7857
|
"enum": [
|
|
7197
7858
|
"Yes",
|
|
7198
7859
|
"No",
|
|
7199
|
-
"
|
|
7860
|
+
"Not applicable"
|
|
7200
7861
|
]
|
|
7201
7862
|
}
|
|
7202
7863
|
}
|
|
@@ -7213,7 +7874,7 @@
|
|
|
7213
7874
|
"yesNo": {
|
|
7214
7875
|
"enum": [
|
|
7215
7876
|
"No",
|
|
7216
|
-
"
|
|
7877
|
+
"Not applicable"
|
|
7217
7878
|
]
|
|
7218
7879
|
}
|
|
7219
7880
|
}
|
|
@@ -7244,7 +7905,7 @@
|
|
|
7244
7905
|
"enum": [
|
|
7245
7906
|
"Yes",
|
|
7246
7907
|
"No",
|
|
7247
|
-
"
|
|
7908
|
+
"Not applicable"
|
|
7248
7909
|
]
|
|
7249
7910
|
}
|
|
7250
7911
|
}
|
|
@@ -7252,7 +7913,7 @@
|
|
|
7252
7913
|
"flyingFreehold": {
|
|
7253
7914
|
"baspiRef": "B2.5",
|
|
7254
7915
|
"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 -
|
|
7916
|
+
"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
7917
|
"discriminator": {
|
|
7257
7918
|
"propertyName": "yesNo"
|
|
7258
7919
|
},
|
|
@@ -7262,7 +7923,7 @@
|
|
|
7262
7923
|
"yesNo": {
|
|
7263
7924
|
"enum": [
|
|
7264
7925
|
"No",
|
|
7265
|
-
"
|
|
7926
|
+
"Not applicable"
|
|
7266
7927
|
]
|
|
7267
7928
|
}
|
|
7268
7929
|
}
|
|
@@ -7293,7 +7954,7 @@
|
|
|
7293
7954
|
"enum": [
|
|
7294
7955
|
"Yes",
|
|
7295
7956
|
"No",
|
|
7296
|
-
"
|
|
7957
|
+
"Not applicable"
|
|
7297
7958
|
]
|
|
7298
7959
|
}
|
|
7299
7960
|
}
|
|
@@ -7320,7 +7981,8 @@
|
|
|
7320
7981
|
"properties": {
|
|
7321
7982
|
"yesNo": {
|
|
7322
7983
|
"enum": [
|
|
7323
|
-
"No"
|
|
7984
|
+
"No",
|
|
7985
|
+
"Not known"
|
|
7324
7986
|
]
|
|
7325
7987
|
}
|
|
7326
7988
|
}
|
|
@@ -7358,7 +8020,8 @@
|
|
|
7358
8020
|
"baspiRef": "B3.1.1",
|
|
7359
8021
|
"enum": [
|
|
7360
8022
|
"Yes",
|
|
7361
|
-
"No"
|
|
8023
|
+
"No",
|
|
8024
|
+
"Not known"
|
|
7362
8025
|
]
|
|
7363
8026
|
}
|
|
7364
8027
|
}
|
|
@@ -7374,7 +8037,8 @@
|
|
|
7374
8037
|
"properties": {
|
|
7375
8038
|
"yesNo": {
|
|
7376
8039
|
"enum": [
|
|
7377
|
-
"No"
|
|
8040
|
+
"No",
|
|
8041
|
+
"Not known"
|
|
7378
8042
|
]
|
|
7379
8043
|
}
|
|
7380
8044
|
}
|
|
@@ -7412,7 +8076,8 @@
|
|
|
7412
8076
|
"baspiRef": "B3.2.1",
|
|
7413
8077
|
"enum": [
|
|
7414
8078
|
"Yes",
|
|
7415
|
-
"No"
|
|
8079
|
+
"No",
|
|
8080
|
+
"Not known"
|
|
7416
8081
|
]
|
|
7417
8082
|
}
|
|
7418
8083
|
}
|
|
@@ -7428,7 +8093,8 @@
|
|
|
7428
8093
|
"properties": {
|
|
7429
8094
|
"yesNo": {
|
|
7430
8095
|
"enum": [
|
|
7431
|
-
"No"
|
|
8096
|
+
"No",
|
|
8097
|
+
"Not known"
|
|
7432
8098
|
]
|
|
7433
8099
|
}
|
|
7434
8100
|
}
|
|
@@ -7466,7 +8132,8 @@
|
|
|
7466
8132
|
"baspiRef": "B3.3.1",
|
|
7467
8133
|
"enum": [
|
|
7468
8134
|
"Yes",
|
|
7469
|
-
"No"
|
|
8135
|
+
"No",
|
|
8136
|
+
"Not known"
|
|
7470
8137
|
]
|
|
7471
8138
|
}
|
|
7472
8139
|
}
|
|
@@ -7507,11 +8174,11 @@
|
|
|
7507
8174
|
},
|
|
7508
8175
|
"yearTested": {
|
|
7509
8176
|
"baspiRef": "B4.1.2",
|
|
7510
|
-
"title": "State the year they were last tested
|
|
8177
|
+
"title": "State the year they were last tested"
|
|
7511
8178
|
},
|
|
7512
8179
|
"attachments": {
|
|
7513
8180
|
"baspiRef": "B4.1.3",
|
|
7514
|
-
"title": "
|
|
8181
|
+
"title": "Please upload the test certificate.",
|
|
7515
8182
|
"enum": [
|
|
7516
8183
|
"Attached",
|
|
7517
8184
|
"To follow"
|
|
@@ -7519,7 +8186,7 @@
|
|
|
7519
8186
|
}
|
|
7520
8187
|
},
|
|
7521
8188
|
"required": [
|
|
7522
|
-
"
|
|
8189
|
+
"yearTested",
|
|
7523
8190
|
"attachments"
|
|
7524
8191
|
]
|
|
7525
8192
|
}
|
|
@@ -7548,7 +8215,8 @@
|
|
|
7548
8215
|
"properties": {
|
|
7549
8216
|
"yesNo": {
|
|
7550
8217
|
"enum": [
|
|
7551
|
-
"No"
|
|
8218
|
+
"No",
|
|
8219
|
+
"Not known"
|
|
7552
8220
|
]
|
|
7553
8221
|
}
|
|
7554
8222
|
}
|
|
@@ -7578,6 +8246,7 @@
|
|
|
7578
8246
|
}
|
|
7579
8247
|
},
|
|
7580
8248
|
"required": [
|
|
8249
|
+
"yearWorkCarriedOut",
|
|
7581
8250
|
"details",
|
|
7582
8251
|
"attachments"
|
|
7583
8252
|
]
|
|
@@ -7591,7 +8260,8 @@
|
|
|
7591
8260
|
"baspiRef": "B4.2.1",
|
|
7592
8261
|
"enum": [
|
|
7593
8262
|
"Yes",
|
|
7594
|
-
"No"
|
|
8263
|
+
"No",
|
|
8264
|
+
"Not known"
|
|
7595
8265
|
]
|
|
7596
8266
|
}
|
|
7597
8267
|
}
|
|
@@ -7707,7 +8377,7 @@
|
|
|
7707
8377
|
},
|
|
7708
8378
|
"attachments": {
|
|
7709
8379
|
"baspiRef": "4.3.3.3",
|
|
7710
|
-
"title": "
|
|
8380
|
+
"title": "Please supply copies of the relevant documents",
|
|
7711
8381
|
"enum": [
|
|
7712
8382
|
"Attached",
|
|
7713
8383
|
"To follow"
|
|
@@ -7899,7 +8569,7 @@
|
|
|
7899
8569
|
},
|
|
7900
8570
|
"attachments": {
|
|
7901
8571
|
"baspiRef": "4.6.1.2",
|
|
7902
|
-
"title": "Photograph of
|
|
8572
|
+
"title": "Photograph of stopcock location",
|
|
7903
8573
|
"enum": [
|
|
7904
8574
|
"Attached",
|
|
7905
8575
|
"To follow"
|
|
@@ -8146,9 +8816,161 @@
|
|
|
8146
8816
|
"Yes"
|
|
8147
8817
|
]
|
|
8148
8818
|
},
|
|
8149
|
-
"newHomeWarranty": {
|
|
8150
|
-
"baspiRef": "B5.1.1",
|
|
8151
|
-
"title": "New Home Warranty (NHBC or similar)",
|
|
8819
|
+
"newHomeWarranty": {
|
|
8820
|
+
"baspiRef": "B5.1.1",
|
|
8821
|
+
"title": "New Home Warranty (NHBC or similar)",
|
|
8822
|
+
"discriminator": {
|
|
8823
|
+
"propertyName": "yesNo"
|
|
8824
|
+
},
|
|
8825
|
+
"oneOf": [
|
|
8826
|
+
{
|
|
8827
|
+
"properties": {
|
|
8828
|
+
"yesNo": {
|
|
8829
|
+
"enum": [
|
|
8830
|
+
"No"
|
|
8831
|
+
]
|
|
8832
|
+
}
|
|
8833
|
+
}
|
|
8834
|
+
},
|
|
8835
|
+
{
|
|
8836
|
+
"properties": {
|
|
8837
|
+
"yesNo": {
|
|
8838
|
+
"enum": [
|
|
8839
|
+
"Yes"
|
|
8840
|
+
]
|
|
8841
|
+
},
|
|
8842
|
+
"details": {
|
|
8843
|
+
"baspiRef": "B5.1.1.2",
|
|
8844
|
+
"title": "Please confirm the name of the warranty provider and the date of the warranty"
|
|
8845
|
+
},
|
|
8846
|
+
"attachments": {
|
|
8847
|
+
"baspiRef": "B5.1.1.3",
|
|
8848
|
+
"enum": [
|
|
8849
|
+
"Attached",
|
|
8850
|
+
"To follow"
|
|
8851
|
+
]
|
|
8852
|
+
}
|
|
8853
|
+
},
|
|
8854
|
+
"required": [
|
|
8855
|
+
"details",
|
|
8856
|
+
"attachments"
|
|
8857
|
+
]
|
|
8858
|
+
}
|
|
8859
|
+
],
|
|
8860
|
+
"required": [
|
|
8861
|
+
"yesNo"
|
|
8862
|
+
],
|
|
8863
|
+
"properties": {
|
|
8864
|
+
"yesNo": {
|
|
8865
|
+
"baspiRef": "B5.1.1.1",
|
|
8866
|
+
"enum": [
|
|
8867
|
+
"Yes",
|
|
8868
|
+
"No"
|
|
8869
|
+
]
|
|
8870
|
+
}
|
|
8871
|
+
}
|
|
8872
|
+
},
|
|
8873
|
+
"roofingWork": {
|
|
8874
|
+
"baspiRef": "B5.1.2",
|
|
8875
|
+
"title": "Roofing work",
|
|
8876
|
+
"discriminator": {
|
|
8877
|
+
"propertyName": "yesNo"
|
|
8878
|
+
},
|
|
8879
|
+
"oneOf": [
|
|
8880
|
+
{
|
|
8881
|
+
"properties": {
|
|
8882
|
+
"yesNo": {
|
|
8883
|
+
"enum": [
|
|
8884
|
+
"No"
|
|
8885
|
+
]
|
|
8886
|
+
}
|
|
8887
|
+
}
|
|
8888
|
+
},
|
|
8889
|
+
{
|
|
8890
|
+
"properties": {
|
|
8891
|
+
"yesNo": {
|
|
8892
|
+
"enum": [
|
|
8893
|
+
"Yes"
|
|
8894
|
+
]
|
|
8895
|
+
},
|
|
8896
|
+
"attachments": {
|
|
8897
|
+
"baspiRef": "B5.1.1.2",
|
|
8898
|
+
"enum": [
|
|
8899
|
+
"Attached",
|
|
8900
|
+
"To follow"
|
|
8901
|
+
]
|
|
8902
|
+
}
|
|
8903
|
+
},
|
|
8904
|
+
"required": [
|
|
8905
|
+
"attachments"
|
|
8906
|
+
]
|
|
8907
|
+
}
|
|
8908
|
+
],
|
|
8909
|
+
"required": [
|
|
8910
|
+
"yesNo"
|
|
8911
|
+
],
|
|
8912
|
+
"properties": {
|
|
8913
|
+
"yesNo": {
|
|
8914
|
+
"baspiRef": "B5.1.2.1",
|
|
8915
|
+
"enum": [
|
|
8916
|
+
"Yes",
|
|
8917
|
+
"No"
|
|
8918
|
+
]
|
|
8919
|
+
}
|
|
8920
|
+
}
|
|
8921
|
+
},
|
|
8922
|
+
"dampProofingTreatment": {
|
|
8923
|
+
"baspiRef": "B5.1.3",
|
|
8924
|
+
"title": "Damp proofing treatment",
|
|
8925
|
+
"discriminator": {
|
|
8926
|
+
"propertyName": "yesNo"
|
|
8927
|
+
},
|
|
8928
|
+
"oneOf": [
|
|
8929
|
+
{
|
|
8930
|
+
"properties": {
|
|
8931
|
+
"yesNo": {
|
|
8932
|
+
"enum": [
|
|
8933
|
+
"No"
|
|
8934
|
+
]
|
|
8935
|
+
}
|
|
8936
|
+
}
|
|
8937
|
+
},
|
|
8938
|
+
{
|
|
8939
|
+
"properties": {
|
|
8940
|
+
"yesNo": {
|
|
8941
|
+
"enum": [
|
|
8942
|
+
"Yes"
|
|
8943
|
+
]
|
|
8944
|
+
},
|
|
8945
|
+
"attachments": {
|
|
8946
|
+
"baspiRef": "B5.1.1.2",
|
|
8947
|
+
"enum": [
|
|
8948
|
+
"Attached",
|
|
8949
|
+
"To follow"
|
|
8950
|
+
]
|
|
8951
|
+
}
|
|
8952
|
+
},
|
|
8953
|
+
"required": [
|
|
8954
|
+
"attachments"
|
|
8955
|
+
]
|
|
8956
|
+
}
|
|
8957
|
+
],
|
|
8958
|
+
"required": [
|
|
8959
|
+
"yesNo"
|
|
8960
|
+
],
|
|
8961
|
+
"properties": {
|
|
8962
|
+
"yesNo": {
|
|
8963
|
+
"baspiRef": "B5.1.3.1",
|
|
8964
|
+
"enum": [
|
|
8965
|
+
"Yes",
|
|
8966
|
+
"No"
|
|
8967
|
+
]
|
|
8968
|
+
}
|
|
8969
|
+
}
|
|
8970
|
+
},
|
|
8971
|
+
"timberRotOrInfestationTreatment": {
|
|
8972
|
+
"baspiRef": "B5.1.4",
|
|
8973
|
+
"title": "Timber rot or infestation treatment",
|
|
8152
8974
|
"discriminator": {
|
|
8153
8975
|
"propertyName": "yesNo"
|
|
8154
8976
|
},
|
|
@@ -8169,12 +8991,8 @@
|
|
|
8169
8991
|
"Yes"
|
|
8170
8992
|
]
|
|
8171
8993
|
},
|
|
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
8994
|
"attachments": {
|
|
8177
|
-
"baspiRef": "B5.1.1.
|
|
8995
|
+
"baspiRef": "B5.1.1.2",
|
|
8178
8996
|
"enum": [
|
|
8179
8997
|
"Attached",
|
|
8180
8998
|
"To follow"
|
|
@@ -8182,7 +9000,6 @@
|
|
|
8182
9000
|
}
|
|
8183
9001
|
},
|
|
8184
9002
|
"required": [
|
|
8185
|
-
"details",
|
|
8186
9003
|
"attachments"
|
|
8187
9004
|
]
|
|
8188
9005
|
}
|
|
@@ -8190,54 +9007,6 @@
|
|
|
8190
9007
|
"required": [
|
|
8191
9008
|
"yesNo"
|
|
8192
9009
|
],
|
|
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
9010
|
"properties": {
|
|
8242
9011
|
"yesNo": {
|
|
8243
9012
|
"baspiRef": "B5.1.4.1",
|
|
@@ -8251,6 +9020,39 @@
|
|
|
8251
9020
|
"centralHeatingAndorPlumbing": {
|
|
8252
9021
|
"baspiRef": "B5.1.5",
|
|
8253
9022
|
"title": "Central heating and/or plumbing",
|
|
9023
|
+
"discriminator": {
|
|
9024
|
+
"propertyName": "yesNo"
|
|
9025
|
+
},
|
|
9026
|
+
"oneOf": [
|
|
9027
|
+
{
|
|
9028
|
+
"properties": {
|
|
9029
|
+
"yesNo": {
|
|
9030
|
+
"enum": [
|
|
9031
|
+
"No"
|
|
9032
|
+
]
|
|
9033
|
+
}
|
|
9034
|
+
}
|
|
9035
|
+
},
|
|
9036
|
+
{
|
|
9037
|
+
"properties": {
|
|
9038
|
+
"yesNo": {
|
|
9039
|
+
"enum": [
|
|
9040
|
+
"Yes"
|
|
9041
|
+
]
|
|
9042
|
+
},
|
|
9043
|
+
"attachments": {
|
|
9044
|
+
"baspiRef": "B5.1.1.2",
|
|
9045
|
+
"enum": [
|
|
9046
|
+
"Attached",
|
|
9047
|
+
"To follow"
|
|
9048
|
+
]
|
|
9049
|
+
}
|
|
9050
|
+
},
|
|
9051
|
+
"required": [
|
|
9052
|
+
"attachments"
|
|
9053
|
+
]
|
|
9054
|
+
}
|
|
9055
|
+
],
|
|
8254
9056
|
"required": [
|
|
8255
9057
|
"yesNo"
|
|
8256
9058
|
],
|
|
@@ -8267,6 +9069,39 @@
|
|
|
8267
9069
|
"doubleGlazing": {
|
|
8268
9070
|
"baspiRef": "B5.1.6",
|
|
8269
9071
|
"title": "Double glazing (windows, doors, roof lights, conservatory etc)",
|
|
9072
|
+
"discriminator": {
|
|
9073
|
+
"propertyName": "yesNo"
|
|
9074
|
+
},
|
|
9075
|
+
"oneOf": [
|
|
9076
|
+
{
|
|
9077
|
+
"properties": {
|
|
9078
|
+
"yesNo": {
|
|
9079
|
+
"enum": [
|
|
9080
|
+
"No"
|
|
9081
|
+
]
|
|
9082
|
+
}
|
|
9083
|
+
}
|
|
9084
|
+
},
|
|
9085
|
+
{
|
|
9086
|
+
"properties": {
|
|
9087
|
+
"yesNo": {
|
|
9088
|
+
"enum": [
|
|
9089
|
+
"Yes"
|
|
9090
|
+
]
|
|
9091
|
+
},
|
|
9092
|
+
"attachments": {
|
|
9093
|
+
"baspiRef": "B5.1.1.2",
|
|
9094
|
+
"enum": [
|
|
9095
|
+
"Attached",
|
|
9096
|
+
"To follow"
|
|
9097
|
+
]
|
|
9098
|
+
}
|
|
9099
|
+
},
|
|
9100
|
+
"required": [
|
|
9101
|
+
"attachments"
|
|
9102
|
+
]
|
|
9103
|
+
}
|
|
9104
|
+
],
|
|
8270
9105
|
"required": [
|
|
8271
9106
|
"yesNo"
|
|
8272
9107
|
],
|
|
@@ -8283,6 +9118,39 @@
|
|
|
8283
9118
|
"electricalRepairOrInstallation": {
|
|
8284
9119
|
"baspiRef": "B5.1.7",
|
|
8285
9120
|
"title": "Electrical repair or installation",
|
|
9121
|
+
"discriminator": {
|
|
9122
|
+
"propertyName": "yesNo"
|
|
9123
|
+
},
|
|
9124
|
+
"oneOf": [
|
|
9125
|
+
{
|
|
9126
|
+
"properties": {
|
|
9127
|
+
"yesNo": {
|
|
9128
|
+
"enum": [
|
|
9129
|
+
"No"
|
|
9130
|
+
]
|
|
9131
|
+
}
|
|
9132
|
+
}
|
|
9133
|
+
},
|
|
9134
|
+
{
|
|
9135
|
+
"properties": {
|
|
9136
|
+
"yesNo": {
|
|
9137
|
+
"enum": [
|
|
9138
|
+
"Yes"
|
|
9139
|
+
]
|
|
9140
|
+
},
|
|
9141
|
+
"attachments": {
|
|
9142
|
+
"baspiRef": "B5.1.1.2",
|
|
9143
|
+
"enum": [
|
|
9144
|
+
"Attached",
|
|
9145
|
+
"To follow"
|
|
9146
|
+
]
|
|
9147
|
+
}
|
|
9148
|
+
},
|
|
9149
|
+
"required": [
|
|
9150
|
+
"attachments"
|
|
9151
|
+
]
|
|
9152
|
+
}
|
|
9153
|
+
],
|
|
8286
9154
|
"required": [
|
|
8287
9155
|
"yesNo"
|
|
8288
9156
|
],
|
|
@@ -8299,6 +9167,39 @@
|
|
|
8299
9167
|
"subsidenceWork": {
|
|
8300
9168
|
"baspiRef": "B5.1.8",
|
|
8301
9169
|
"title": "Underpinning or other preventative work and/or remedial action relating to subsidence",
|
|
9170
|
+
"discriminator": {
|
|
9171
|
+
"propertyName": "yesNo"
|
|
9172
|
+
},
|
|
9173
|
+
"oneOf": [
|
|
9174
|
+
{
|
|
9175
|
+
"properties": {
|
|
9176
|
+
"yesNo": {
|
|
9177
|
+
"enum": [
|
|
9178
|
+
"No"
|
|
9179
|
+
]
|
|
9180
|
+
}
|
|
9181
|
+
}
|
|
9182
|
+
},
|
|
9183
|
+
{
|
|
9184
|
+
"properties": {
|
|
9185
|
+
"yesNo": {
|
|
9186
|
+
"enum": [
|
|
9187
|
+
"Yes"
|
|
9188
|
+
]
|
|
9189
|
+
},
|
|
9190
|
+
"attachments": {
|
|
9191
|
+
"baspiRef": "B5.1.1.2",
|
|
9192
|
+
"enum": [
|
|
9193
|
+
"Attached",
|
|
9194
|
+
"To follow"
|
|
9195
|
+
]
|
|
9196
|
+
}
|
|
9197
|
+
},
|
|
9198
|
+
"required": [
|
|
9199
|
+
"attachments"
|
|
9200
|
+
]
|
|
9201
|
+
}
|
|
9202
|
+
],
|
|
8302
9203
|
"required": [
|
|
8303
9204
|
"yesNo"
|
|
8304
9205
|
],
|
|
@@ -8315,6 +9216,39 @@
|
|
|
8315
9216
|
"solarPanels": {
|
|
8316
9217
|
"baspiRef": "B5.1.9",
|
|
8317
9218
|
"title": "Solar panels",
|
|
9219
|
+
"discriminator": {
|
|
9220
|
+
"propertyName": "yesNo"
|
|
9221
|
+
},
|
|
9222
|
+
"oneOf": [
|
|
9223
|
+
{
|
|
9224
|
+
"properties": {
|
|
9225
|
+
"yesNo": {
|
|
9226
|
+
"enum": [
|
|
9227
|
+
"No"
|
|
9228
|
+
]
|
|
9229
|
+
}
|
|
9230
|
+
}
|
|
9231
|
+
},
|
|
9232
|
+
{
|
|
9233
|
+
"properties": {
|
|
9234
|
+
"yesNo": {
|
|
9235
|
+
"enum": [
|
|
9236
|
+
"Yes"
|
|
9237
|
+
]
|
|
9238
|
+
},
|
|
9239
|
+
"attachments": {
|
|
9240
|
+
"baspiRef": "B5.1.1.2",
|
|
9241
|
+
"enum": [
|
|
9242
|
+
"Attached",
|
|
9243
|
+
"To follow"
|
|
9244
|
+
]
|
|
9245
|
+
}
|
|
9246
|
+
},
|
|
9247
|
+
"required": [
|
|
9248
|
+
"attachments"
|
|
9249
|
+
]
|
|
9250
|
+
}
|
|
9251
|
+
],
|
|
8318
9252
|
"required": [
|
|
8319
9253
|
"yesNo"
|
|
8320
9254
|
],
|
|
@@ -8374,10 +9308,6 @@
|
|
|
8374
9308
|
}
|
|
8375
9309
|
}
|
|
8376
9310
|
},
|
|
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
9311
|
"outstandingClaimsOrApplications": {
|
|
8382
9312
|
"baspiRef": "B5.2",
|
|
8383
9313
|
"title": "Are there any outstanding claims or current applications relating to any of the above?",
|
|
@@ -8499,7 +9429,6 @@
|
|
|
8499
9429
|
"subsidenceWork",
|
|
8500
9430
|
"solarPanels",
|
|
8501
9431
|
"otherGuarantees",
|
|
8502
|
-
"willLeaveGuaranteePaperwork",
|
|
8503
9432
|
"outstandingClaimsOrApplications",
|
|
8504
9433
|
"titleDefectInsurance"
|
|
8505
9434
|
]
|
|
@@ -8600,7 +9529,7 @@
|
|
|
8600
9529
|
},
|
|
8601
9530
|
"details": {
|
|
8602
9531
|
"baspiRef": "B6.4.1",
|
|
8603
|
-
"title": "Please provide details (
|
|
9532
|
+
"title": "Please provide details (e.g. the property is sold let to tenants)"
|
|
8604
9533
|
},
|
|
8605
9534
|
"attachments": {
|
|
8606
9535
|
"baspiRef": "B6.4.2",
|
|
@@ -8627,7 +9556,16 @@
|
|
|
8627
9556
|
"title": "Have all occupiers aged 17 or over agreed to leave prior to completion?",
|
|
8628
9557
|
"required": [
|
|
8629
9558
|
"yesNo"
|
|
8630
|
-
]
|
|
9559
|
+
],
|
|
9560
|
+
"properties": {
|
|
9561
|
+
"yesNo": {
|
|
9562
|
+
"baspiRef": "B6.3.1.1",
|
|
9563
|
+
"enum": [
|
|
9564
|
+
"Yes",
|
|
9565
|
+
"No"
|
|
9566
|
+
]
|
|
9567
|
+
}
|
|
9568
|
+
}
|
|
8631
9569
|
},
|
|
8632
9570
|
"aged17OrOverWillSignToConfirmWillVacate": {
|
|
8633
9571
|
"baspiRef": "B6.3.2",
|
|
@@ -8654,11 +9592,11 @@
|
|
|
8654
9592
|
},
|
|
8655
9593
|
"details": {
|
|
8656
9594
|
"baspiRef": "B6.3.2.2",
|
|
8657
|
-
"title": "Please
|
|
9595
|
+
"title": "Please provide details (eg the property is sold let to tenants)"
|
|
8658
9596
|
},
|
|
8659
9597
|
"attachments": {
|
|
8660
9598
|
"baspiRef": "B6.3.2.3",
|
|
8661
|
-
"title": "
|
|
9599
|
+
"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
9600
|
"enum": [
|
|
8663
9601
|
"Attached",
|
|
8664
9602
|
"To follow"
|
|
@@ -8666,7 +9604,8 @@
|
|
|
8666
9604
|
}
|
|
8667
9605
|
},
|
|
8668
9606
|
"required": [
|
|
8669
|
-
"details"
|
|
9607
|
+
"details",
|
|
9608
|
+
"attachments"
|
|
8670
9609
|
]
|
|
8671
9610
|
}
|
|
8672
9611
|
],
|
|
@@ -8732,16 +9671,34 @@
|
|
|
8732
9671
|
"baspiRef": "B7",
|
|
8733
9672
|
"title": "Completion and Moving",
|
|
8734
9673
|
"required": [
|
|
8735
|
-
"
|
|
9674
|
+
"sellerWillEnsure",
|
|
8736
9675
|
"otherPropertyInChain",
|
|
8737
9676
|
"moveRestrictionDates",
|
|
8738
|
-
"digitalPropertyLogbook"
|
|
9677
|
+
"digitalPropertyLogbook",
|
|
9678
|
+
"sufficientToRepayAllMortgages"
|
|
8739
9679
|
],
|
|
8740
9680
|
"properties": {
|
|
8741
|
-
"
|
|
9681
|
+
"sellerWillEnsure": {
|
|
8742
9682
|
"baspiRef": "B7.1",
|
|
8743
|
-
"title": "Please confirm that on completion you will
|
|
8744
|
-
"
|
|
9683
|
+
"title": "Please confirm that on completion you will:",
|
|
9684
|
+
"properties": {
|
|
9685
|
+
"removeRubbish": {
|
|
9686
|
+
"baspiRef": "B7.1.1",
|
|
9687
|
+
"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."
|
|
9688
|
+
},
|
|
9689
|
+
"replaceLightFittings": {
|
|
9690
|
+
"baspiRef": "B7.1.2",
|
|
9691
|
+
"title": "If light fittings are removed, the fittings will be replaced with ceiling rose, flex, bulb holder and bulb."
|
|
9692
|
+
},
|
|
9693
|
+
"takeReasonableCare": {
|
|
9694
|
+
"baspiRef": "B7.1.3",
|
|
9695
|
+
"title": "Take reasonable care when removing any other fittings or contents."
|
|
9696
|
+
},
|
|
9697
|
+
"leaveKeys": {
|
|
9698
|
+
"baspiRef": "B7.1.4",
|
|
9699
|
+
"title": "Leave keys for all door and window locks, along with any alarm codes, for the buyer on the day of completion."
|
|
9700
|
+
}
|
|
9701
|
+
}
|
|
8745
9702
|
},
|
|
8746
9703
|
"otherPropertyInChain": {
|
|
8747
9704
|
"baspiRef": "B7.2",
|
|
@@ -8848,15 +9805,12 @@
|
|
|
8848
9805
|
"Yes"
|
|
8849
9806
|
]
|
|
8850
9807
|
},
|
|
8851
|
-
"
|
|
8852
|
-
"baspiRef": "B7.3.2"
|
|
8853
|
-
"items": {
|
|
8854
|
-
"baspiRef": "B7.3.2.1"
|
|
8855
|
-
}
|
|
9808
|
+
"details": {
|
|
9809
|
+
"baspiRef": "B7.3.2"
|
|
8856
9810
|
}
|
|
8857
9811
|
},
|
|
8858
9812
|
"required": [
|
|
8859
|
-
"
|
|
9813
|
+
"details"
|
|
8860
9814
|
]
|
|
8861
9815
|
}
|
|
8862
9816
|
],
|
|
@@ -8936,7 +9890,8 @@
|
|
|
8936
9890
|
"baspiRef": "A7.6.1",
|
|
8937
9891
|
"enum": [
|
|
8938
9892
|
"Yes",
|
|
8939
|
-
"No"
|
|
9893
|
+
"No",
|
|
9894
|
+
"No mortgage"
|
|
8940
9895
|
]
|
|
8941
9896
|
}
|
|
8942
9897
|
}
|
|
@@ -8957,7 +9912,7 @@
|
|
|
8957
9912
|
},
|
|
8958
9913
|
"confirmInformationIsAccurate": {
|
|
8959
9914
|
"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
|
|
9915
|
+
"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
9916
|
}
|
|
8962
9917
|
}
|
|
8963
9918
|
}
|