@pdtf/schemas 2.1.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +1 -1
- package/src/examples/v2/exampleTransaction.json +18 -93
- package/src/schemas/v1/material-facts.json +22 -0
- package/src/schemas/v1/searches/local-searches-required.json +2 -2
- package/src/schemas/v1/searches.json +2 -2
- package/src/schemas/v2/combined.json +699 -115
- package/src/schemas/v2/overlays/baspi.json +1 -1
- package/src/schemas/v2/overlays/con29R.json +2 -2
- package/src/schemas/v2/overlays/lpe1.json +24 -9
- package/src/schemas/v2/overlays/piq.json +952 -89
- package/src/schemas/v2/overlays/ta6.json +1 -1
- package/src/schemas/v2/pdtf-transaction.json +639 -113
- package/src/schemas/v2/skeleton.json +98 -7
- package/src/utils/hmlrLLC1.json +38 -119
- package/src/tests/v1/pdtfVerifiedClaims.test.js +0 -75
- package/src/tests/v1/transactionSchema.test.js +0 -227
- package/src/tests/v1/verifiedClaimsValidator.test.js +0 -96
|
@@ -273,6 +273,53 @@
|
|
|
273
273
|
"type": "number",
|
|
274
274
|
"minimum": -180,
|
|
275
275
|
"maximum": 180
|
|
276
|
+
},
|
|
277
|
+
"bng": {
|
|
278
|
+
"title": "British National Grid coordinates",
|
|
279
|
+
"type": "object",
|
|
280
|
+
"required": ["easting", "northing"],
|
|
281
|
+
"properties": {
|
|
282
|
+
"easting": {
|
|
283
|
+
"title": "BNG easting",
|
|
284
|
+
"type": "number"
|
|
285
|
+
},
|
|
286
|
+
"northing": {
|
|
287
|
+
"title": "BNG northing",
|
|
288
|
+
"type": "number"
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
"googleStreetViewPOV": {
|
|
293
|
+
"title": "Street View to render street nearby property in Google Street View",
|
|
294
|
+
"type": "object",
|
|
295
|
+
"properties": {
|
|
296
|
+
"heading": {
|
|
297
|
+
"title": "The heading for the Google Street View camera",
|
|
298
|
+
"type": "number",
|
|
299
|
+
"minimum": -360,
|
|
300
|
+
"maximum": 360
|
|
301
|
+
},
|
|
302
|
+
"pitch": {
|
|
303
|
+
"title": "The pitch for the Google Street View camera",
|
|
304
|
+
"type": "number"
|
|
305
|
+
},
|
|
306
|
+
"zoom": {
|
|
307
|
+
"title": "The zoom level for the Google Street View camera",
|
|
308
|
+
"type": "number"
|
|
309
|
+
},
|
|
310
|
+
"lat": {
|
|
311
|
+
"title": "The latitude for the Google Street View camera",
|
|
312
|
+
"type": "number",
|
|
313
|
+
"minimum": -90,
|
|
314
|
+
"maximum": 90
|
|
315
|
+
},
|
|
316
|
+
"lng": {
|
|
317
|
+
"title": "The longitude for the Google Street View camera",
|
|
318
|
+
"type": "number",
|
|
319
|
+
"minimum": -180,
|
|
320
|
+
"maximum": 180
|
|
321
|
+
}
|
|
322
|
+
}
|
|
276
323
|
}
|
|
277
324
|
}
|
|
278
325
|
},
|
|
@@ -321,6 +368,17 @@
|
|
|
321
368
|
"Offers in region of",
|
|
322
369
|
"Sale by tender"
|
|
323
370
|
]
|
|
371
|
+
},
|
|
372
|
+
"disposal": {
|
|
373
|
+
"title": "Disposal",
|
|
374
|
+
"type": "string",
|
|
375
|
+
"enum": [
|
|
376
|
+
"Auction",
|
|
377
|
+
"Formal tender",
|
|
378
|
+
"Informal tender",
|
|
379
|
+
"Modern Method of Auction",
|
|
380
|
+
"Private treaty"
|
|
381
|
+
]
|
|
324
382
|
}
|
|
325
383
|
}
|
|
326
384
|
},
|
|
@@ -328,6 +386,17 @@
|
|
|
328
386
|
"title": "Summary description",
|
|
329
387
|
"type": "string"
|
|
330
388
|
},
|
|
389
|
+
"marketingTenure": {
|
|
390
|
+
"title": "Type of tenure being marketed",
|
|
391
|
+
"type": "string",
|
|
392
|
+
"enum": [
|
|
393
|
+
"Commonhold",
|
|
394
|
+
"Freehold",
|
|
395
|
+
"Leasehold",
|
|
396
|
+
"Share of Freehold",
|
|
397
|
+
"Shared Ownership"
|
|
398
|
+
]
|
|
399
|
+
},
|
|
331
400
|
"media": {
|
|
332
401
|
"title": "Media",
|
|
333
402
|
"type": "array",
|
|
@@ -360,6 +429,390 @@
|
|
|
360
429
|
}
|
|
361
430
|
}
|
|
362
431
|
},
|
|
432
|
+
"buildInformation": {
|
|
433
|
+
"title": "Information related to property build",
|
|
434
|
+
"type": "object",
|
|
435
|
+
"properties": {
|
|
436
|
+
"internalArea": {
|
|
437
|
+
"title": "Total internal floor area",
|
|
438
|
+
"type": "object",
|
|
439
|
+
"properties": {
|
|
440
|
+
"area": {
|
|
441
|
+
"title": "Internal area value",
|
|
442
|
+
"type": "number",
|
|
443
|
+
"minimum": 0
|
|
444
|
+
},
|
|
445
|
+
"units": {
|
|
446
|
+
"title": "Internal area units",
|
|
447
|
+
"type": "string",
|
|
448
|
+
"enum": ["square metres", "square feet"]
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
},
|
|
452
|
+
"yearOfBuild": {
|
|
453
|
+
"title": "Year the property was built",
|
|
454
|
+
"type": "integer"
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
},
|
|
458
|
+
"residentialPropertyFeatures": {
|
|
459
|
+
"title": "Residential property features",
|
|
460
|
+
"type": "object",
|
|
461
|
+
"properties": {
|
|
462
|
+
"bedrooms": {
|
|
463
|
+
"title": "Number of bedrooms",
|
|
464
|
+
"type": "integer"
|
|
465
|
+
},
|
|
466
|
+
"bathrooms": {
|
|
467
|
+
"title": "Number of bathrooms",
|
|
468
|
+
"type": "integer"
|
|
469
|
+
},
|
|
470
|
+
"receptions": {
|
|
471
|
+
"title": "Number of reception rooms",
|
|
472
|
+
"type": "integer"
|
|
473
|
+
},
|
|
474
|
+
"kitchens": {
|
|
475
|
+
"title": "Number of kitchens",
|
|
476
|
+
"type": "integer"
|
|
477
|
+
},
|
|
478
|
+
"diningAreas": {
|
|
479
|
+
"title": "Number of dining areas",
|
|
480
|
+
"type": "integer"
|
|
481
|
+
},
|
|
482
|
+
"outsideAreas": {
|
|
483
|
+
"title": "Outside areas of the property",
|
|
484
|
+
"type": "array",
|
|
485
|
+
"items": {
|
|
486
|
+
"type": "string"
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
"nearbyFacilities": {
|
|
492
|
+
"title": "Information about nearby facilties like hospital, school etc",
|
|
493
|
+
"type": "object",
|
|
494
|
+
"properties": {
|
|
495
|
+
"schools": {
|
|
496
|
+
"title": "Schools",
|
|
497
|
+
"type": "array",
|
|
498
|
+
"items": {
|
|
499
|
+
"type": "object",
|
|
500
|
+
"properties": {
|
|
501
|
+
"name": {
|
|
502
|
+
"type": "string",
|
|
503
|
+
"title": "Name"
|
|
504
|
+
},
|
|
505
|
+
"contact": {
|
|
506
|
+
"type": "object",
|
|
507
|
+
"title": "Contact Details",
|
|
508
|
+
"properties": {
|
|
509
|
+
"address": {
|
|
510
|
+
"title": "Address",
|
|
511
|
+
"type": "object",
|
|
512
|
+
"properties": {
|
|
513
|
+
"line1": {
|
|
514
|
+
"title": "Address line 1",
|
|
515
|
+
"type": "string",
|
|
516
|
+
"minLength": 1
|
|
517
|
+
},
|
|
518
|
+
"line2": {
|
|
519
|
+
"title": "Address line 2",
|
|
520
|
+
"type": "string"
|
|
521
|
+
},
|
|
522
|
+
"line3": {
|
|
523
|
+
"title": "Address line 3",
|
|
524
|
+
"type": "string"
|
|
525
|
+
},
|
|
526
|
+
"town": {
|
|
527
|
+
"title": "Town",
|
|
528
|
+
"type": "string"
|
|
529
|
+
},
|
|
530
|
+
"postcode": {
|
|
531
|
+
"title": "Postcode",
|
|
532
|
+
"type": "string",
|
|
533
|
+
"minLength": 1
|
|
534
|
+
}
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
"telephone": {
|
|
538
|
+
"title": "Telephone",
|
|
539
|
+
"type": "string",
|
|
540
|
+
"minLength": 1
|
|
541
|
+
},
|
|
542
|
+
"emailAddress": {
|
|
543
|
+
"title": "Email address",
|
|
544
|
+
"type": "string",
|
|
545
|
+
"format": "email"
|
|
546
|
+
},
|
|
547
|
+
"website": {
|
|
548
|
+
"title": "School website",
|
|
549
|
+
"type": "string",
|
|
550
|
+
"format": "uri"
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
},
|
|
554
|
+
"ofstedRating": {
|
|
555
|
+
"type": "string",
|
|
556
|
+
"title": "Ofsted Rating",
|
|
557
|
+
"enum": [
|
|
558
|
+
"Outstanding",
|
|
559
|
+
"Good",
|
|
560
|
+
"Requires Improvement",
|
|
561
|
+
"Inadequate",
|
|
562
|
+
"Other"
|
|
563
|
+
]
|
|
564
|
+
},
|
|
565
|
+
"pupils": {
|
|
566
|
+
"type": "integer",
|
|
567
|
+
"title": "Number of Pupils"
|
|
568
|
+
},
|
|
569
|
+
"distanceInMiles": {
|
|
570
|
+
"type": "number",
|
|
571
|
+
"title": "Distance in miles"
|
|
572
|
+
},
|
|
573
|
+
"ageRange": {
|
|
574
|
+
"type": "string",
|
|
575
|
+
"title": "Age Range of student in format minimumAge-maximimAge"
|
|
576
|
+
},
|
|
577
|
+
"religiousCharacter": {
|
|
578
|
+
"type": "string",
|
|
579
|
+
"title": "Religious character of school, if any"
|
|
580
|
+
},
|
|
581
|
+
"schoolType": {
|
|
582
|
+
"type": "object",
|
|
583
|
+
"title": "Type of School",
|
|
584
|
+
"properties": {
|
|
585
|
+
"nursery": {
|
|
586
|
+
"title": "Nursery",
|
|
587
|
+
"type": "object",
|
|
588
|
+
"yesNoNotKnown": {
|
|
589
|
+
"type": "string",
|
|
590
|
+
"title": "",
|
|
591
|
+
"enum": ["Yes", "No", "Not Known"]
|
|
592
|
+
}
|
|
593
|
+
},
|
|
594
|
+
"primary": {
|
|
595
|
+
"title": "Primary",
|
|
596
|
+
"type": "object",
|
|
597
|
+
"yesNoNotKnown": {
|
|
598
|
+
"type": "string",
|
|
599
|
+
"title": "",
|
|
600
|
+
"enum": ["Yes", "No", "Not Known"]
|
|
601
|
+
}
|
|
602
|
+
},
|
|
603
|
+
"secondary": {
|
|
604
|
+
"title": "Secondary",
|
|
605
|
+
"type": "object",
|
|
606
|
+
"yesNoNotKnown": {
|
|
607
|
+
"type": "string",
|
|
608
|
+
"title": "",
|
|
609
|
+
"enum": ["Yes", "No", "Not Known"]
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
"college": {
|
|
613
|
+
"title": "College",
|
|
614
|
+
"type": "object",
|
|
615
|
+
"yesNoNotKnown": {
|
|
616
|
+
"type": "string",
|
|
617
|
+
"title": "",
|
|
618
|
+
"enum": ["Yes", "No", "Not Known"]
|
|
619
|
+
}
|
|
620
|
+
},
|
|
621
|
+
"private": {
|
|
622
|
+
"title": "Private",
|
|
623
|
+
"type": "object",
|
|
624
|
+
"yesNoNotKnown": {
|
|
625
|
+
"type": "string",
|
|
626
|
+
"title": "",
|
|
627
|
+
"enum": ["Yes", "No", "Not Known"]
|
|
628
|
+
}
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
},
|
|
633
|
+
"discriminator": {
|
|
634
|
+
"propertyName": "ofstedRating"
|
|
635
|
+
},
|
|
636
|
+
"oneOf": [
|
|
637
|
+
{
|
|
638
|
+
"properties": {
|
|
639
|
+
"ofstedRating": {
|
|
640
|
+
"enum": [
|
|
641
|
+
"Outstanding",
|
|
642
|
+
"Good",
|
|
643
|
+
"Requires Improvement",
|
|
644
|
+
"Inadequate"
|
|
645
|
+
]
|
|
646
|
+
}
|
|
647
|
+
}
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"properties": {
|
|
651
|
+
"ofstedRating": {
|
|
652
|
+
"enum": ["Other"]
|
|
653
|
+
},
|
|
654
|
+
"otherRating": {
|
|
655
|
+
"title": "Please describe the other rating",
|
|
656
|
+
"type": "string"
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
}
|
|
660
|
+
]
|
|
661
|
+
}
|
|
662
|
+
},
|
|
663
|
+
"transport": {
|
|
664
|
+
"title": "Transportation facilities",
|
|
665
|
+
"type": "array",
|
|
666
|
+
"items": {
|
|
667
|
+
"type": "object",
|
|
668
|
+
"properties": {
|
|
669
|
+
"name": {
|
|
670
|
+
"title": "Name",
|
|
671
|
+
"type": "string"
|
|
672
|
+
},
|
|
673
|
+
"transportType": {
|
|
674
|
+
"title": "Type of transport service",
|
|
675
|
+
"type": "string",
|
|
676
|
+
"enum": [
|
|
677
|
+
"Local connection",
|
|
678
|
+
"Ferry terminal",
|
|
679
|
+
"Bus stop/station",
|
|
680
|
+
"National rail station",
|
|
681
|
+
"Trunk road/motorway",
|
|
682
|
+
"Airport",
|
|
683
|
+
"Helipad",
|
|
684
|
+
"Other"
|
|
685
|
+
]
|
|
686
|
+
},
|
|
687
|
+
"latitude": {
|
|
688
|
+
"title": "Latitude",
|
|
689
|
+
"type": "number",
|
|
690
|
+
"minimum": -90,
|
|
691
|
+
"maximum": 90
|
|
692
|
+
},
|
|
693
|
+
"longitude": {
|
|
694
|
+
"title": "Longitude",
|
|
695
|
+
"type": "number",
|
|
696
|
+
"minimum": -180,
|
|
697
|
+
"maximum": 180
|
|
698
|
+
},
|
|
699
|
+
"distanceInMiles": {
|
|
700
|
+
"title": "Distance in miles",
|
|
701
|
+
"type": "number"
|
|
702
|
+
}
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
},
|
|
706
|
+
"healthCare": {
|
|
707
|
+
"title": "Nearby healthcare services",
|
|
708
|
+
"type": "array",
|
|
709
|
+
"items": {
|
|
710
|
+
"type": "object",
|
|
711
|
+
"title": "Healthcare service",
|
|
712
|
+
"properties": {
|
|
713
|
+
"name": {
|
|
714
|
+
"title": "Name",
|
|
715
|
+
"type": "string"
|
|
716
|
+
},
|
|
717
|
+
"typeOfHealthCare": {
|
|
718
|
+
"type": "string",
|
|
719
|
+
"title": "Type of healthcare facility: hospital, dental surgery etc"
|
|
720
|
+
},
|
|
721
|
+
"contact": {
|
|
722
|
+
"type": "object",
|
|
723
|
+
"title": "Contact details",
|
|
724
|
+
"properties": {
|
|
725
|
+
"address": {
|
|
726
|
+
"title": "Address",
|
|
727
|
+
"type": "object",
|
|
728
|
+
"properties": {
|
|
729
|
+
"line1": {
|
|
730
|
+
"title": "Address line 1",
|
|
731
|
+
"type": "string",
|
|
732
|
+
"minLength": 1
|
|
733
|
+
},
|
|
734
|
+
"line2": {
|
|
735
|
+
"title": "Address line 2",
|
|
736
|
+
"type": "string"
|
|
737
|
+
},
|
|
738
|
+
"line3": {
|
|
739
|
+
"title": "Address line 3",
|
|
740
|
+
"type": "string"
|
|
741
|
+
},
|
|
742
|
+
"town": {
|
|
743
|
+
"title": "Town",
|
|
744
|
+
"type": "string"
|
|
745
|
+
},
|
|
746
|
+
"postcode": {
|
|
747
|
+
"title": "Postcode",
|
|
748
|
+
"type": "string",
|
|
749
|
+
"minLength": 1
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
},
|
|
753
|
+
"telephone": {
|
|
754
|
+
"title": "Telephone",
|
|
755
|
+
"type": "string",
|
|
756
|
+
"minLength": 1
|
|
757
|
+
},
|
|
758
|
+
"emailAddress": {
|
|
759
|
+
"title": "Email address",
|
|
760
|
+
"type": "string",
|
|
761
|
+
"format": "email"
|
|
762
|
+
},
|
|
763
|
+
"website": {
|
|
764
|
+
"title": "Website Url",
|
|
765
|
+
"type": "string",
|
|
766
|
+
"format": "uri"
|
|
767
|
+
}
|
|
768
|
+
}
|
|
769
|
+
},
|
|
770
|
+
"containsAccidentAndEmergencyFacility": {
|
|
771
|
+
"type": "string",
|
|
772
|
+
"title": "",
|
|
773
|
+
"enum": ["Yes", "No", "Not Known"]
|
|
774
|
+
},
|
|
775
|
+
"distanceInMiles": {
|
|
776
|
+
"title": "Approximate Distance in miles",
|
|
777
|
+
"type": "number"
|
|
778
|
+
},
|
|
779
|
+
"specialties": {
|
|
780
|
+
"type": "array",
|
|
781
|
+
"items": {
|
|
782
|
+
"type": "string"
|
|
783
|
+
},
|
|
784
|
+
"title": "Specialties"
|
|
785
|
+
},
|
|
786
|
+
"openingHours": {
|
|
787
|
+
"type": "array",
|
|
788
|
+
"items": {
|
|
789
|
+
"type": "object",
|
|
790
|
+
"properties": {
|
|
791
|
+
"day": {
|
|
792
|
+
"type": "string",
|
|
793
|
+
"enum": [
|
|
794
|
+
"Sun",
|
|
795
|
+
"Mon",
|
|
796
|
+
"Tue",
|
|
797
|
+
"Wed",
|
|
798
|
+
"Thu",
|
|
799
|
+
"Fri",
|
|
800
|
+
"Sat"
|
|
801
|
+
]
|
|
802
|
+
},
|
|
803
|
+
"hours": {
|
|
804
|
+
"type": "string"
|
|
805
|
+
}
|
|
806
|
+
},
|
|
807
|
+
"required": ["day", "hours"]
|
|
808
|
+
},
|
|
809
|
+
"title": "Opening hours"
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
}
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
},
|
|
363
816
|
"connectivity": {
|
|
364
817
|
"title": "Connectivity",
|
|
365
818
|
"type": "object",
|
|
@@ -1640,6 +2093,7 @@
|
|
|
1640
2093
|
},
|
|
1641
2094
|
"procedureForObtainingCertificate": {
|
|
1642
2095
|
"fme1Ref": "2.4",
|
|
2096
|
+
"lpe1Ref": "2.6",
|
|
1643
2097
|
"title": "What is the procedure and cost for obtaining a certificate in accordance with a restriction in the Proprietorship Register at the Land Registry, if applicable?",
|
|
1644
2098
|
"type": "string"
|
|
1645
2099
|
}
|
|
@@ -4393,7 +4847,7 @@
|
|
|
4393
4847
|
},
|
|
4394
4848
|
"lesseeInCharge": {
|
|
4395
4849
|
"lpe1Ref": "1.10.1",
|
|
4396
|
-
"title": "
|
|
4850
|
+
"title": "If the Lessees, please provide contact details of the Lessee in charge",
|
|
4397
4851
|
"type": "object",
|
|
4398
4852
|
"properties": {
|
|
4399
4853
|
"nameOrOrganisation": {
|
|
@@ -5050,7 +5504,7 @@
|
|
|
5050
5504
|
},
|
|
5051
5505
|
"annualServiceCharge": {
|
|
5052
5506
|
"baspiRef": "A1.5.1.1.2",
|
|
5053
|
-
"lpe1Ref": "4.1.
|
|
5507
|
+
"lpe1Ref": "4.1.1",
|
|
5054
5508
|
"title": "Amount of current annual service charge (£)",
|
|
5055
5509
|
"type": "number"
|
|
5056
5510
|
},
|
|
@@ -5436,7 +5890,7 @@
|
|
|
5436
5890
|
},
|
|
5437
5891
|
"details": {
|
|
5438
5892
|
"lpe1Ref": "4.6.1",
|
|
5439
|
-
"title": "
|
|
5893
|
+
"title": "Confirm the amount collected from Lessees of the Property, currently held in the Reserve Fund:",
|
|
5440
5894
|
"type": "string",
|
|
5441
5895
|
"minLength": 1
|
|
5442
5896
|
},
|
|
@@ -6071,7 +6525,7 @@
|
|
|
6071
6525
|
]
|
|
6072
6526
|
},
|
|
6073
6527
|
"managedAreasCoveredByPolicy": {
|
|
6074
|
-
"lpe1Ref": "
|
|
6528
|
+
"lpe1Ref": "5.6",
|
|
6075
6529
|
"type": "object",
|
|
6076
6530
|
"title": "Are the Managed Areas covered by the policy?",
|
|
6077
6531
|
"properties": {
|
|
@@ -6100,7 +6554,7 @@
|
|
|
6100
6554
|
},
|
|
6101
6555
|
"riskAssessments": {
|
|
6102
6556
|
"lpe1Ref": "5.6.1",
|
|
6103
|
-
"title": "
|
|
6557
|
+
"title": "What risk assessments have been completed?",
|
|
6104
6558
|
"type": "object",
|
|
6105
6559
|
"properties": {
|
|
6106
6560
|
"assessmentsCarriedOut": {
|
|
@@ -6453,7 +6907,7 @@
|
|
|
6453
6907
|
"unresolvedDisputes": {
|
|
6454
6908
|
"lpe1Ref": "6.2",
|
|
6455
6909
|
"type": "object",
|
|
6456
|
-
"title": "Are there any documented unresolved disputes with the
|
|
6910
|
+
"title": "Are there any documented unresolved disputes with the Lessees of any of the properties in the Managed Area?",
|
|
6457
6911
|
"properties": {
|
|
6458
6912
|
"yesNo": {
|
|
6459
6913
|
"type": "string",
|
|
@@ -6518,7 +6972,7 @@
|
|
|
6518
6972
|
"enum": ["Yes"]
|
|
6519
6973
|
},
|
|
6520
6974
|
"details": {
|
|
6521
|
-
"lpe1Ref": "
|
|
6975
|
+
"lpe1Ref": "6.3.1",
|
|
6522
6976
|
"title": "Provide details and copies of relevant documentation",
|
|
6523
6977
|
"type": "string",
|
|
6524
6978
|
"minLength": 1
|
|
@@ -7072,7 +7526,7 @@
|
|
|
7072
7526
|
]
|
|
7073
7527
|
},
|
|
7074
7528
|
"certificateOfComplianceFee": {
|
|
7075
|
-
"lpe1Ref": "8.11",
|
|
7529
|
+
"lpe1Ref": "8.11.1",
|
|
7076
7530
|
"title": "Certificate of Compliance fee.",
|
|
7077
7531
|
"type": "number"
|
|
7078
7532
|
},
|
|
@@ -7282,6 +7736,7 @@
|
|
|
7282
7736
|
"parkingArrangementsType": {
|
|
7283
7737
|
"baspiRef": "A1.6.0.1",
|
|
7284
7738
|
"ta6Ref": "9.1.1",
|
|
7739
|
+
"piqRef": "A1.5.1",
|
|
7285
7740
|
"title": "What type of parking arrangements are there?",
|
|
7286
7741
|
"type": "string",
|
|
7287
7742
|
"enum": [
|
|
@@ -7395,6 +7850,7 @@
|
|
|
7395
7850
|
"yesNo": {
|
|
7396
7851
|
"baspiRef": "A1.7.1.1",
|
|
7397
7852
|
"ta6Ref": "4.7a1",
|
|
7853
|
+
"piqRef": "A1.6.1.1",
|
|
7398
7854
|
"type": "string",
|
|
7399
7855
|
"title": "",
|
|
7400
7856
|
"enum": ["Yes", "No", "Not known"]
|
|
@@ -7448,6 +7904,7 @@
|
|
|
7448
7904
|
"properties": {
|
|
7449
7905
|
"yesNo": {
|
|
7450
7906
|
"baspiRef": "A1.7.2.1",
|
|
7907
|
+
"piqRef": "A1.6.2.1",
|
|
7451
7908
|
"ta6Ref": "4.7b1",
|
|
7452
7909
|
"type": "string",
|
|
7453
7910
|
"title": "",
|
|
@@ -7538,6 +7995,7 @@
|
|
|
7538
7995
|
"yesNo": {
|
|
7539
7996
|
"baspiRef": "A1.7.3.2.1",
|
|
7540
7997
|
"ta6Ref": "4.8a1",
|
|
7998
|
+
"piqRef": "A1.6.4.1",
|
|
7541
7999
|
"type": "string",
|
|
7542
8000
|
"title": "",
|
|
7543
8001
|
"enum": ["Yes", "No"]
|
|
@@ -7609,6 +8067,7 @@
|
|
|
7609
8067
|
"properties": {
|
|
7610
8068
|
"yesNo": {
|
|
7611
8069
|
"baspiRef": "A1.8.1.1",
|
|
8070
|
+
"piqRef": "A5.5.1",
|
|
7612
8071
|
"type": "string",
|
|
7613
8072
|
"title": "",
|
|
7614
8073
|
"enum": ["Yes", "No"]
|
|
@@ -8113,6 +8572,7 @@
|
|
|
8113
8572
|
"yesNo": {
|
|
8114
8573
|
"baspiRef": "A7.3.1",
|
|
8115
8574
|
"ta6Ref": "7.7.1",
|
|
8575
|
+
"piqRef": "A11.4.1",
|
|
8116
8576
|
"type": "string",
|
|
8117
8577
|
"title": "",
|
|
8118
8578
|
"enum": ["Yes", "No"]
|
|
@@ -8175,6 +8635,7 @@
|
|
|
8175
8635
|
"baspiRef": "A1.9.1",
|
|
8176
8636
|
"ntsRef": "A2.1",
|
|
8177
8637
|
"rdsRef": "TenureAgreements/Taxes/{banding=?}",
|
|
8638
|
+
"piqRef": "B2.1",
|
|
8178
8639
|
"title": "Which Council Tax band does this property fall within?",
|
|
8179
8640
|
"description": "Band I relates to Wales only",
|
|
8180
8641
|
"type": "string",
|
|
@@ -8259,6 +8720,7 @@
|
|
|
8259
8720
|
"yesNo": {
|
|
8260
8721
|
"baspiRef": "A2.1.1.1",
|
|
8261
8722
|
"ta6Ref": "2.1.1",
|
|
8723
|
+
"piqRef": "A2.1.1",
|
|
8262
8724
|
"type": "string",
|
|
8263
8725
|
"title": "",
|
|
8264
8726
|
"enum": ["Yes", "No"]
|
|
@@ -8285,6 +8747,7 @@
|
|
|
8285
8747
|
"details": {
|
|
8286
8748
|
"baspiRef": "A2.1.1.2",
|
|
8287
8749
|
"ta6Ref": "2.1.2",
|
|
8750
|
+
"piqRef": "A2.1.1.2",
|
|
8288
8751
|
"title": "Please give details",
|
|
8289
8752
|
"type": "string",
|
|
8290
8753
|
"minLength": 1
|
|
@@ -8379,6 +8842,7 @@
|
|
|
8379
8842
|
"yesNo": {
|
|
8380
8843
|
"baspiRef": "A3.1.1",
|
|
8381
8844
|
"ta6Ref": "4.1a1",
|
|
8845
|
+
"piqRef": "A3.1.1",
|
|
8382
8846
|
"type": "string",
|
|
8383
8847
|
"title": "",
|
|
8384
8848
|
"enum": ["Yes", "No"]
|
|
@@ -8405,6 +8869,7 @@
|
|
|
8405
8869
|
"details": {
|
|
8406
8870
|
"baspiRef": "A3.1.2",
|
|
8407
8871
|
"ta6Ref": "4.1a2",
|
|
8872
|
+
"piqRef": "A3.1.2",
|
|
8408
8873
|
"title": "Please give details including dates of all work undertaken",
|
|
8409
8874
|
"type": "string",
|
|
8410
8875
|
"minLength": 1
|
|
@@ -8906,6 +9371,7 @@
|
|
|
8906
9371
|
"yesNo": {
|
|
8907
9372
|
"baspiRef": "A3.3.1",
|
|
8908
9373
|
"ta6Ref": "4.1c1",
|
|
9374
|
+
"piqRef": "A3.2.1",
|
|
8909
9375
|
"type": "string",
|
|
8910
9376
|
"title": "",
|
|
8911
9377
|
"enum": ["Yes", "No"]
|
|
@@ -8931,12 +9397,14 @@
|
|
|
8931
9397
|
},
|
|
8932
9398
|
"details": {
|
|
8933
9399
|
"baspiRef": "A3.3.2",
|
|
9400
|
+
"piqRef": "A3.2.2",
|
|
8934
9401
|
"title": "For each installation, please outline the nature of the work.",
|
|
8935
9402
|
"type": "string",
|
|
8936
9403
|
"minLength": 1
|
|
8937
9404
|
},
|
|
8938
9405
|
"yearCompleted": {
|
|
8939
9406
|
"baspiRef": "A3.3.3",
|
|
9407
|
+
"piqRef": "A3.2.3",
|
|
8940
9408
|
"ta6Ref": "4.1c2",
|
|
8941
9409
|
"title": "What year was the installation completed?",
|
|
8942
9410
|
"type": "integer"
|
|
@@ -9173,6 +9641,7 @@
|
|
|
9173
9641
|
"yesNo": {
|
|
9174
9642
|
"baspiRef": "A3.4.1",
|
|
9175
9643
|
"ta6Ref": "4.1d1",
|
|
9644
|
+
"piqRef": "A3.4.1",
|
|
9176
9645
|
"type": "string",
|
|
9177
9646
|
"title": "",
|
|
9178
9647
|
"enum": ["Yes", "No"]
|
|
@@ -9198,12 +9667,14 @@
|
|
|
9198
9667
|
},
|
|
9199
9668
|
"details": {
|
|
9200
9669
|
"baspiRef": "A3.4.2",
|
|
9670
|
+
"piqRef": "A3.4.2",
|
|
9201
9671
|
"title": "Confirm whether any walls were removed, an exterior quality door separates the conservatory from the main building and, since the conservatory was added, has any replacement or refurbishment of the roof been undertaken that reduces the glazed area of the roof?",
|
|
9202
9672
|
"type": "string",
|
|
9203
9673
|
"minLength": 1
|
|
9204
9674
|
},
|
|
9205
9675
|
"yearCompleted": {
|
|
9206
9676
|
"baspiRef": "A3.4.3",
|
|
9677
|
+
"piqRef": "A3.4.3",
|
|
9207
9678
|
"ta6Ref": "4.1d2",
|
|
9208
9679
|
"title": "What year was the installation completed?",
|
|
9209
9680
|
"type": "integer"
|
|
@@ -9219,6 +9690,7 @@
|
|
|
9219
9690
|
"yesNo": {
|
|
9220
9691
|
"baspiRef": "A3.5.1.1",
|
|
9221
9692
|
"ta6Ref": "4.2.1",
|
|
9693
|
+
"piqRef": "A3.5.1.1",
|
|
9222
9694
|
"type": "string",
|
|
9223
9695
|
"title": "",
|
|
9224
9696
|
"enum": ["Yes", "No", "Not required"]
|
|
@@ -9254,6 +9726,7 @@
|
|
|
9254
9726
|
"details": {
|
|
9255
9727
|
"baspiRef": "A3.5.1.2",
|
|
9256
9728
|
"ta6Ref": "4.2b",
|
|
9729
|
+
"piqRef": "A3.5.1.2",
|
|
9257
9730
|
"title": "Please outline the reasons why",
|
|
9258
9731
|
"description": "e.g. the work was exempt from Building Regulations",
|
|
9259
9732
|
"type": "string",
|
|
@@ -9276,6 +9749,7 @@
|
|
|
9276
9749
|
"yesNo": {
|
|
9277
9750
|
"baspiRef": "A3.5.2.1",
|
|
9278
9751
|
"ta6Ref": "4.2.1",
|
|
9752
|
+
"piqRef": "A3.5.2.1",
|
|
9279
9753
|
"type": "string",
|
|
9280
9754
|
"title": "",
|
|
9281
9755
|
"enum": ["Yes", "No", "Not required"]
|
|
@@ -9331,6 +9805,7 @@
|
|
|
9331
9805
|
"properties": {
|
|
9332
9806
|
"yesNo": {
|
|
9333
9807
|
"baspiRef": "A3.5.3.1",
|
|
9808
|
+
"piqRef": "A3.5.3.1",
|
|
9334
9809
|
"type": "string",
|
|
9335
9810
|
"title": "",
|
|
9336
9811
|
"enum": ["Yes", "No", "Not required"]
|
|
@@ -9380,6 +9855,7 @@
|
|
|
9380
9855
|
"properties": {
|
|
9381
9856
|
"yesNo": {
|
|
9382
9857
|
"baspiRef": "A3.5.4.1",
|
|
9858
|
+
"piqRef": "A3.5.4.1",
|
|
9383
9859
|
"type": "string",
|
|
9384
9860
|
"title": "",
|
|
9385
9861
|
"enum": ["Yes", "No", "Not required"]
|
|
@@ -9445,6 +9921,7 @@
|
|
|
9445
9921
|
"yesNo": {
|
|
9446
9922
|
"baspiRef": "A3.6.1",
|
|
9447
9923
|
"ta6Ref": "4.3.1",
|
|
9924
|
+
"piqRef": "A3.6.1",
|
|
9448
9925
|
"type": "string",
|
|
9449
9926
|
"title": "",
|
|
9450
9927
|
"enum": ["Yes", "No"]
|
|
@@ -9471,6 +9948,7 @@
|
|
|
9471
9948
|
"details": {
|
|
9472
9949
|
"baspiRef": "A3.6.2",
|
|
9473
9950
|
"ta6Ref": "4.3.2",
|
|
9951
|
+
"piqRef": "A3.6.2",
|
|
9474
9952
|
"title": "Please provide details and explain why",
|
|
9475
9953
|
"type": "string",
|
|
9476
9954
|
"minLength": 1
|
|
@@ -9498,6 +9976,7 @@
|
|
|
9498
9976
|
"yesNo": {
|
|
9499
9977
|
"baspiRef": "A3.7.1",
|
|
9500
9978
|
"ta6Ref": "4.4.1",
|
|
9979
|
+
"piqRef": "A3.7.1",
|
|
9501
9980
|
"type": "string",
|
|
9502
9981
|
"title": "",
|
|
9503
9982
|
"enum": ["Yes", "No"]
|
|
@@ -9523,6 +10002,7 @@
|
|
|
9523
10002
|
"details": {
|
|
9524
10003
|
"baspiRef": "A3.7.2",
|
|
9525
10004
|
"ta6Ref": "4.4.2",
|
|
10005
|
+
"piqRef": "A3.7.2",
|
|
9526
10006
|
"rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
|
|
9527
10007
|
"title": "Please give details",
|
|
9528
10008
|
"type": "string",
|
|
@@ -9563,6 +10043,7 @@
|
|
|
9563
10043
|
"yesNo": {
|
|
9564
10044
|
"baspiRef": "A3.8.1",
|
|
9565
10045
|
"ta6Ref": "4.5.1",
|
|
10046
|
+
"piqRef": "A3.8.1",
|
|
9566
10047
|
"type": "string",
|
|
9567
10048
|
"title": "",
|
|
9568
10049
|
"enum": ["Yes", "No"]
|
|
@@ -9589,6 +10070,7 @@
|
|
|
9589
10070
|
"details": {
|
|
9590
10071
|
"baspiRef": "A3.8.2",
|
|
9591
10072
|
"ta6Ref": "4.5.2",
|
|
10073
|
+
"piqRef": "A3.8.2",
|
|
9592
10074
|
"rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
|
|
9593
10075
|
"title": "Please give details",
|
|
9594
10076
|
"type": "string",
|
|
@@ -9650,6 +10132,7 @@
|
|
|
9650
10132
|
"properties": {
|
|
9651
10133
|
"yesNo": {
|
|
9652
10134
|
"baspiRef": "A4.1.1",
|
|
10135
|
+
"piqRef": "A4.1.1",
|
|
9653
10136
|
"ta6Ref": "3.2.1",
|
|
9654
10137
|
"type": "string",
|
|
9655
10138
|
"title": "",
|
|
@@ -9704,6 +10187,7 @@
|
|
|
9704
10187
|
"yesNo": {
|
|
9705
10188
|
"baspiRef": "A4.2.1",
|
|
9706
10189
|
"ta6Ref": "3.1.1",
|
|
10190
|
+
"piqRef": "A4.2.1",
|
|
9707
10191
|
"type": "string",
|
|
9708
10192
|
"title": "",
|
|
9709
10193
|
"enum": ["Yes", "No"]
|
|
@@ -9757,6 +10241,7 @@
|
|
|
9757
10241
|
"yesNo": {
|
|
9758
10242
|
"baspiRef": "A4.3.1",
|
|
9759
10243
|
"ta6Ref": "3.1.1",
|
|
10244
|
+
"piqRef": "A4.3.1",
|
|
9760
10245
|
"type": "string",
|
|
9761
10246
|
"title": "",
|
|
9762
10247
|
"enum": ["Yes", "No"]
|
|
@@ -9810,6 +10295,7 @@
|
|
|
9810
10295
|
"yesNo": {
|
|
9811
10296
|
"baspiRef": "A4.4.1",
|
|
9812
10297
|
"ta6Ref": "3.1.1",
|
|
10298
|
+
"piqRef": "A4.4.1",
|
|
9813
10299
|
"type": "string",
|
|
9814
10300
|
"title": "",
|
|
9815
10301
|
"enum": ["Yes", "No"]
|
|
@@ -9863,6 +10349,7 @@
|
|
|
9863
10349
|
"yesNo": {
|
|
9864
10350
|
"baspiRef": "A4.5.1",
|
|
9865
10351
|
"ta6Ref": "3.1.1",
|
|
10352
|
+
"piqRef": "A4.5.1",
|
|
9866
10353
|
"type": "string",
|
|
9867
10354
|
"title": "",
|
|
9868
10355
|
"enum": ["Yes", "No"]
|
|
@@ -9969,6 +10456,7 @@
|
|
|
9969
10456
|
"yesNo": {
|
|
9970
10457
|
"baspiRef": "A4.7.1",
|
|
9971
10458
|
"ta6Ref": "3.1.1",
|
|
10459
|
+
"piqRef": "A4.6.1",
|
|
9972
10460
|
"type": "string",
|
|
9973
10461
|
"title": "",
|
|
9974
10462
|
"enum": ["Yes", "No"]
|
|
@@ -10035,6 +10523,7 @@
|
|
|
10035
10523
|
"properties": {
|
|
10036
10524
|
"yesNo": {
|
|
10037
10525
|
"baspiRef": "A5.1.1",
|
|
10526
|
+
"piqRef": "A5.1.1",
|
|
10038
10527
|
"type": "string",
|
|
10039
10528
|
"title": "",
|
|
10040
10529
|
"enum": ["Yes", "No"]
|
|
@@ -10132,6 +10621,7 @@
|
|
|
10132
10621
|
"yesNo": {
|
|
10133
10622
|
"baspiRef": "A5.3.1",
|
|
10134
10623
|
"ta6Ref": "7.8.1",
|
|
10624
|
+
"piqRef": "A5.3.1",
|
|
10135
10625
|
"type": "string",
|
|
10136
10626
|
"title": "",
|
|
10137
10627
|
"enum": ["Yes", "No", "Not known"]
|
|
@@ -10184,6 +10674,7 @@
|
|
|
10184
10674
|
"properties": {
|
|
10185
10675
|
"yesNo": {
|
|
10186
10676
|
"baspiRef": "A5.4.1",
|
|
10677
|
+
"piqRef": "A5.4.1",
|
|
10187
10678
|
"type": "string",
|
|
10188
10679
|
"title": "",
|
|
10189
10680
|
"enum": ["Yes", "No"]
|
|
@@ -10301,6 +10792,7 @@
|
|
|
10301
10792
|
"properties": {
|
|
10302
10793
|
"yesNo": {
|
|
10303
10794
|
"baspiRef": "A6.1.1",
|
|
10795
|
+
"piqRef": "A6.1.1",
|
|
10304
10796
|
"type": "string",
|
|
10305
10797
|
"title": "",
|
|
10306
10798
|
"enum": ["Yes", "No"]
|
|
@@ -10325,6 +10817,7 @@
|
|
|
10325
10817
|
},
|
|
10326
10818
|
"details": {
|
|
10327
10819
|
"baspiRef": "A6.1.2",
|
|
10820
|
+
"piqRef": "A6.1.2",
|
|
10328
10821
|
"title": "Details",
|
|
10329
10822
|
"type": "string",
|
|
10330
10823
|
"minLength": 1
|
|
@@ -10343,6 +10836,7 @@
|
|
|
10343
10836
|
"properties": {
|
|
10344
10837
|
"yesNo": {
|
|
10345
10838
|
"baspiRef": "A6.2.1",
|
|
10839
|
+
"piqRef": "A6.2.1",
|
|
10346
10840
|
"type": "string",
|
|
10347
10841
|
"title": "",
|
|
10348
10842
|
"enum": ["Yes", "No"]
|
|
@@ -10367,6 +10861,7 @@
|
|
|
10367
10861
|
},
|
|
10368
10862
|
"details": {
|
|
10369
10863
|
"baspiRef": "A6.2.2",
|
|
10864
|
+
"piqRef": "A6.2.2",
|
|
10370
10865
|
"title": "Details",
|
|
10371
10866
|
"type": "string",
|
|
10372
10867
|
"minLength": 1
|
|
@@ -18442,6 +18937,7 @@
|
|
|
18442
18937
|
"properties": {
|
|
18443
18938
|
"yesNo": {
|
|
18444
18939
|
"baspiRef": "A7.2.1",
|
|
18940
|
+
"piqRef": "A7.2.1",
|
|
18445
18941
|
"type": "string",
|
|
18446
18942
|
"title": "",
|
|
18447
18943
|
"enum": ["Yes", "No"]
|
|
@@ -18466,6 +18962,7 @@
|
|
|
18466
18962
|
},
|
|
18467
18963
|
"details": {
|
|
18468
18964
|
"baspiRef": "A7.2.2",
|
|
18965
|
+
"piqRef": "A7.2.2",
|
|
18469
18966
|
"title": "Details",
|
|
18470
18967
|
"type": "string",
|
|
18471
18968
|
"minLength": 1
|
|
@@ -18500,6 +18997,7 @@
|
|
|
18500
18997
|
"hasCentralHeating": {
|
|
18501
18998
|
"baspiRef": "A7.4.0",
|
|
18502
18999
|
"ta6Ref": "12.3.1",
|
|
19000
|
+
"piqRef": "A7.3.1",
|
|
18503
19001
|
"title": "Is there full/partial central heating in your property?",
|
|
18504
19002
|
"type": "string",
|
|
18505
19003
|
"enum": ["Yes", "No"]
|
|
@@ -18524,6 +19022,7 @@
|
|
|
18524
19022
|
"centralHeatingDetails": {
|
|
18525
19023
|
"baspiRef": "A7.4.0.0",
|
|
18526
19024
|
"ta6Ref": "12.3.2",
|
|
19025
|
+
"piqRef": "A7.3.1.1",
|
|
18527
19026
|
"type": "object",
|
|
18528
19027
|
"title": "Central Heating Details",
|
|
18529
19028
|
"baspiRequired": [
|
|
@@ -18774,7 +19273,7 @@
|
|
|
18774
19273
|
"baspiRef": "A8.1.2.1",
|
|
18775
19274
|
"rdsRef": "Insurance/Flags,Insurance/refusalReason=?",
|
|
18776
19275
|
"ta6Ref": "6.4",
|
|
18777
|
-
"piqRef": "A8.1
|
|
19276
|
+
"piqRef": "A8.1",
|
|
18778
19277
|
"title": "Have you had any difficulty obtaining competitively priced building insurance due to the structure or location of the property or had insurance refused?",
|
|
18779
19278
|
"type": "object",
|
|
18780
19279
|
"baspiRequired": [
|
|
@@ -18800,6 +19299,7 @@
|
|
|
18800
19299
|
"yesNo": {
|
|
18801
19300
|
"baspiRef": "A8.1.2.1.2",
|
|
18802
19301
|
"ta6Ref": "6.4a1",
|
|
19302
|
+
"piqRef": "A8.1a1",
|
|
18803
19303
|
"type": "string",
|
|
18804
19304
|
"title": "",
|
|
18805
19305
|
"enum": ["Yes", "No"]
|
|
@@ -18826,6 +19326,7 @@
|
|
|
18826
19326
|
"details": {
|
|
18827
19327
|
"baspiRef": "A8.1.2.1.3",
|
|
18828
19328
|
"ta6Ref": "6.4.2",
|
|
19329
|
+
"piqRef": "A8.1a1.1",
|
|
18829
19330
|
"title": "Provide details",
|
|
18830
19331
|
"type": "string",
|
|
18831
19332
|
"minLength": 1
|
|
@@ -18846,6 +19347,7 @@
|
|
|
18846
19347
|
"yesNo": {
|
|
18847
19348
|
"baspiRef": "A8.1.1.2.1",
|
|
18848
19349
|
"ta6Ref": "6.4b1",
|
|
19350
|
+
"piqRef": "A8.1b1",
|
|
18849
19351
|
"type": "string",
|
|
18850
19352
|
"title": "",
|
|
18851
19353
|
"enum": ["Yes", "No"]
|
|
@@ -18872,6 +19374,7 @@
|
|
|
18872
19374
|
"details": {
|
|
18873
19375
|
"baspiRef": "A8.1.2.1.2.2",
|
|
18874
19376
|
"ta6Ref": "6.4.2",
|
|
19377
|
+
"piqRef": "A8.1b2",
|
|
18875
19378
|
"title": "Provide details",
|
|
18876
19379
|
"type": "string",
|
|
18877
19380
|
"minLength": 1
|
|
@@ -18892,6 +19395,7 @@
|
|
|
18892
19395
|
"yesNo": {
|
|
18893
19396
|
"baspiRef": "A8.1.2.1.3.1",
|
|
18894
19397
|
"ta6Ref": "6.4c1",
|
|
19398
|
+
"piqRef": "A8.1c1",
|
|
18895
19399
|
"type": "string",
|
|
18896
19400
|
"title": "",
|
|
18897
19401
|
"enum": ["Yes", "No"]
|
|
@@ -18918,6 +19422,7 @@
|
|
|
18918
19422
|
"details": {
|
|
18919
19423
|
"baspiRef": "A8.1.2.1.3.2",
|
|
18920
19424
|
"ta6Ref": "6.4.2",
|
|
19425
|
+
"piqRef": "A8.1c2",
|
|
18921
19426
|
"title": "Provide details",
|
|
18922
19427
|
"type": "string",
|
|
18923
19428
|
"minLength": 1
|
|
@@ -18938,6 +19443,7 @@
|
|
|
18938
19443
|
"yesNo": {
|
|
18939
19444
|
"baspiRef": "A8.1.2.1.4.1",
|
|
18940
19445
|
"ta6Ref": "6.4d1",
|
|
19446
|
+
"piqRef": "A8.1d1",
|
|
18941
19447
|
"type": "string",
|
|
18942
19448
|
"title": "",
|
|
18943
19449
|
"enum": ["Yes", "No"]
|
|
@@ -18964,6 +19470,7 @@
|
|
|
18964
19470
|
"details": {
|
|
18965
19471
|
"baspiRef": "A8.1.2.1.4.2",
|
|
18966
19472
|
"ta6Ref": "6.4.2",
|
|
19473
|
+
"piqRef": "A8.1d2",
|
|
18967
19474
|
"title": "Provide details",
|
|
18968
19475
|
"type": "string",
|
|
18969
19476
|
"minLength": 1
|
|
@@ -19055,6 +19562,7 @@
|
|
|
19055
19562
|
"properties": {
|
|
19056
19563
|
"yesNo": {
|
|
19057
19564
|
"baspiRef": "A9.1.1",
|
|
19565
|
+
"piqRef": "A9.1.1",
|
|
19058
19566
|
"type": "string",
|
|
19059
19567
|
"title": "",
|
|
19060
19568
|
"enum": ["Yes", "No"]
|
|
@@ -19079,6 +19587,7 @@
|
|
|
19079
19587
|
},
|
|
19080
19588
|
"details": {
|
|
19081
19589
|
"baspiRef": "A9.1.2",
|
|
19590
|
+
"piqRef": "A9.1.2",
|
|
19082
19591
|
"title": "Please provide details. E.g. parking, garden, outbuilding, accessway, etc",
|
|
19083
19592
|
"type": "string",
|
|
19084
19593
|
"minLength": 1
|
|
@@ -19185,6 +19694,7 @@
|
|
|
19185
19694
|
"properties": {
|
|
19186
19695
|
"yesNo": {
|
|
19187
19696
|
"baspiRef": "A9.4.1",
|
|
19697
|
+
"piqRef": "A9.2.1",
|
|
19188
19698
|
"type": "string",
|
|
19189
19699
|
"title": "",
|
|
19190
19700
|
"enum": ["Yes", "No"]
|
|
@@ -19209,6 +19719,7 @@
|
|
|
19209
19719
|
},
|
|
19210
19720
|
"details": {
|
|
19211
19721
|
"baspiRef": "A9.4.2",
|
|
19722
|
+
"piqRef": "A9.2.2",
|
|
19212
19723
|
"title": "Details",
|
|
19213
19724
|
"type": "string",
|
|
19214
19725
|
"minLength": 1
|
|
@@ -19249,6 +19760,7 @@
|
|
|
19249
19760
|
"yesNo": {
|
|
19250
19761
|
"baspiRef": "A10.1.1",
|
|
19251
19762
|
"ta6Ref": "8.1.1",
|
|
19763
|
+
"piqRef": "A10.1.1",
|
|
19252
19764
|
"type": "string",
|
|
19253
19765
|
"title": "",
|
|
19254
19766
|
"enum": ["Yes", "No"]
|
|
@@ -19275,6 +19787,7 @@
|
|
|
19275
19787
|
"details": {
|
|
19276
19788
|
"baspiRef": "A10.1.2",
|
|
19277
19789
|
"ta6Ref": "8.1.2",
|
|
19790
|
+
"piqRef": "A10.1.2",
|
|
19278
19791
|
"title": "Please give details including who collects payments and organises the work, the amount of the payments in the last year and whether they are regular payments or only when maintenance work is required",
|
|
19279
19792
|
"type": "string",
|
|
19280
19793
|
"minLength": 1
|
|
@@ -19296,6 +19809,7 @@
|
|
|
19296
19809
|
"yesNo": {
|
|
19297
19810
|
"baspiRef": "A10.2.1",
|
|
19298
19811
|
"ta6Ref": "8.2.1",
|
|
19812
|
+
"piqRef": "A10.2.1",
|
|
19299
19813
|
"type": "string",
|
|
19300
19814
|
"title": "",
|
|
19301
19815
|
"enum": ["Yes", "No"]
|
|
@@ -19322,6 +19836,7 @@
|
|
|
19322
19836
|
"details": {
|
|
19323
19837
|
"baspiRef": "A10.2.2",
|
|
19324
19838
|
"ta6Ref": "8.2.2",
|
|
19839
|
+
"piqRef": "A10.2.2",
|
|
19325
19840
|
"title": "Please give details and provide a plan showing the route of the access, parking etc",
|
|
19326
19841
|
"type": "string",
|
|
19327
19842
|
"minLength": 1
|
|
@@ -19349,6 +19864,7 @@
|
|
|
19349
19864
|
"yesNo": {
|
|
19350
19865
|
"baspiRef": "A10.3.1",
|
|
19351
19866
|
"ta6Ref": "8.3.1",
|
|
19867
|
+
"piqRef": "A10.3.1",
|
|
19352
19868
|
"type": "string",
|
|
19353
19869
|
"title": "",
|
|
19354
19870
|
"enum": ["Yes", "No"]
|
|
@@ -19375,6 +19891,7 @@
|
|
|
19375
19891
|
"details": {
|
|
19376
19892
|
"baspiRef": "A10.3.2",
|
|
19377
19893
|
"ta6Ref": "8.3.2",
|
|
19894
|
+
"piqRef": "A10.3.2",
|
|
19378
19895
|
"title": "Details",
|
|
19379
19896
|
"type": "string",
|
|
19380
19897
|
"minLength": 1
|
|
@@ -19421,6 +19938,7 @@
|
|
|
19421
19938
|
"yesNo": {
|
|
19422
19939
|
"baspiRef": "A10.4.1.1",
|
|
19423
19940
|
"ta6Ref": "8.6.1",
|
|
19941
|
+
"piqRef": "A10.4.1",
|
|
19424
19942
|
"type": "string",
|
|
19425
19943
|
"title": "",
|
|
19426
19944
|
"enum": ["Yes", "No"]
|
|
@@ -19447,6 +19965,7 @@
|
|
|
19447
19965
|
"details": {
|
|
19448
19966
|
"baspiRef": "A10.4.1.2",
|
|
19449
19967
|
"ta6Ref": "8.6.2",
|
|
19968
|
+
"piqRef": "A10.4.2",
|
|
19450
19969
|
"title": "Please provide details and mark the route on a plan of the property",
|
|
19451
19970
|
"type": "string",
|
|
19452
19971
|
"minLength": 1
|
|
@@ -19474,6 +19993,7 @@
|
|
|
19474
19993
|
"yesNo": {
|
|
19475
19994
|
"baspiRef": "A10.4.2a.1",
|
|
19476
19995
|
"ta6Ref": "8.4a1",
|
|
19996
|
+
"piqRef": "A10.5a1",
|
|
19477
19997
|
"type": "string",
|
|
19478
19998
|
"title": "",
|
|
19479
19999
|
"enum": ["Yes", "No"]
|
|
@@ -19519,6 +20039,7 @@
|
|
|
19519
20039
|
"yesNo": {
|
|
19520
20040
|
"baspiRef": "A10.4.2b.1",
|
|
19521
20041
|
"ta6Ref": "8.4b1",
|
|
20042
|
+
"piqRef": "A10.5b1",
|
|
19522
20043
|
"type": "string",
|
|
19523
20044
|
"title": "",
|
|
19524
20045
|
"enum": ["Yes", "No"]
|
|
@@ -19564,6 +20085,7 @@
|
|
|
19564
20085
|
"yesNo": {
|
|
19565
20086
|
"baspiRef": "A10.4.3a1",
|
|
19566
20087
|
"ta6Ref": "8.4c1",
|
|
20088
|
+
"piqRef": "A10.5c1",
|
|
19567
20089
|
"type": "string",
|
|
19568
20090
|
"title": "",
|
|
19569
20091
|
"enum": ["Yes", "No"]
|
|
@@ -19609,6 +20131,7 @@
|
|
|
19609
20131
|
"yesNo": {
|
|
19610
20132
|
"baspiRef": "A10.4.3b1",
|
|
19611
20133
|
"ta6Ref": "8.5c1",
|
|
20134
|
+
"piqRef": "A10.5f1",
|
|
19612
20135
|
"type": "string",
|
|
19613
20136
|
"title": "",
|
|
19614
20137
|
"enum": ["Yes", "No"]
|
|
@@ -19649,13 +20172,14 @@
|
|
|
19649
20172
|
"baspiRef": "A10.4.4",
|
|
19650
20173
|
"rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
|
|
19651
20174
|
"ta6Ref": "8.5a",
|
|
20175
|
+
"piqRef": "A10.5d",
|
|
19652
20176
|
"title": "Mines and minerals under the property",
|
|
19653
20177
|
"type": "object",
|
|
19654
20178
|
"properties": {
|
|
19655
20179
|
"yesNo": {
|
|
19656
20180
|
"baspiRef": "A10.4.4.1",
|
|
19657
20181
|
"ta6Ref": "8.5a1",
|
|
19658
|
-
"piqRef": "A10.
|
|
20182
|
+
"piqRef": "A10.5d1",
|
|
19659
20183
|
"type": "string",
|
|
19660
20184
|
"title": "",
|
|
19661
20185
|
"enum": ["Yes", "No"]
|
|
@@ -19701,6 +20225,7 @@
|
|
|
19701
20225
|
"yesNo": {
|
|
19702
20226
|
"baspiRef": "A10.4.5.1",
|
|
19703
20227
|
"ta6Ref": "8.5b1",
|
|
20228
|
+
"piqRef": "A10.5e1",
|
|
19704
20229
|
"type": "string",
|
|
19705
20230
|
"title": "",
|
|
19706
20231
|
"enum": ["Yes", "No"]
|
|
@@ -19739,13 +20264,14 @@
|
|
|
19739
20264
|
"baspiRef": "A10.4.6",
|
|
19740
20265
|
"rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
|
|
19741
20266
|
"ta6Ref": "8.6",
|
|
20267
|
+
"piqRef": "A10.5g",
|
|
19742
20268
|
"title": "Any other rights or arrangements affecting the property?",
|
|
19743
20269
|
"type": "object",
|
|
19744
20270
|
"properties": {
|
|
19745
20271
|
"yesNo": {
|
|
19746
20272
|
"baspiRef": "A10.4.6.1",
|
|
19747
20273
|
"ta6Ref": "8.6.1",
|
|
19748
|
-
"piqRef": "A10.
|
|
20274
|
+
"piqRef": "A10.5g1",
|
|
19749
20275
|
"type": "string",
|
|
19750
20276
|
"title": "",
|
|
19751
20277
|
"enum": ["Yes", "No"]
|
|
@@ -19807,11 +20333,13 @@
|
|
|
19807
20333
|
"baspiRef": "A11.1.1",
|
|
19808
20334
|
"rdsRef": "Sustainability/Environmental|Natural|Situational",
|
|
19809
20335
|
"ta6Ref": "7.3",
|
|
20336
|
+
"piqRef": "A11.1.1",
|
|
19810
20337
|
"title": "Has a Flood Risk Report been prepared?",
|
|
19811
20338
|
"type": "object",
|
|
19812
20339
|
"properties": {
|
|
19813
20340
|
"yesNo": {
|
|
19814
20341
|
"baspiRef": "A11.1.1.1",
|
|
20342
|
+
"piqRef": "A11.1.1.1",
|
|
19815
20343
|
"ta6Ref": "7.3.1",
|
|
19816
20344
|
"type": "string",
|
|
19817
20345
|
"title": "",
|
|
@@ -19957,7 +20485,7 @@
|
|
|
19957
20485
|
"details": {
|
|
19958
20486
|
"baspiRef": "A11.1.2.2.6.2",
|
|
19959
20487
|
"ta6Ref": "7.2f2",
|
|
19960
|
-
"title": "Please
|
|
20488
|
+
"title": "Please state",
|
|
19961
20489
|
"type": "string",
|
|
19962
20490
|
"minLength": 1
|
|
19963
20491
|
}
|
|
@@ -20078,11 +20606,13 @@
|
|
|
20078
20606
|
},
|
|
20079
20607
|
"otherEnvironmental": {
|
|
20080
20608
|
"baspiRef": "A11.1.4",
|
|
20609
|
+
"piqRef": "A11.5",
|
|
20081
20610
|
"rdsRef": "Sustainability/Environmental|Natural|Situational",
|
|
20082
20611
|
"title": "To your knowledge, have there been any other environmental issues that affect the property or garden (for example, these could include air pollution, mining, sink holes, quarrying or fracking etc)?",
|
|
20083
20612
|
"type": "object",
|
|
20084
20613
|
"properties": {
|
|
20085
20614
|
"yesNo": {
|
|
20615
|
+
"piqRef": "A11.5.1",
|
|
20086
20616
|
"baspiRef": "A11.1.4.1",
|
|
20087
20617
|
"type": "string",
|
|
20088
20618
|
"title": "",
|
|
@@ -20140,6 +20670,7 @@
|
|
|
20140
20670
|
"yesNo": {
|
|
20141
20671
|
"baspiRef": "A11.2.1",
|
|
20142
20672
|
"type": "string",
|
|
20673
|
+
"piqRef": "A11.2.1",
|
|
20143
20674
|
"title": "",
|
|
20144
20675
|
"enum": ["Yes", "No"]
|
|
20145
20676
|
}
|
|
@@ -20189,6 +20720,7 @@
|
|
|
20189
20720
|
"baspiRef": "A11.3.1",
|
|
20190
20721
|
"type": "string",
|
|
20191
20722
|
"title": "",
|
|
20723
|
+
"piqRef": "A11.3.1",
|
|
20192
20724
|
"enum": ["Yes", "No"]
|
|
20193
20725
|
}
|
|
20194
20726
|
},
|
|
@@ -20282,6 +20814,7 @@
|
|
|
20282
20814
|
"properties": {
|
|
20283
20815
|
"yesNo": {
|
|
20284
20816
|
"baspiRef": "A11.5.1",
|
|
20817
|
+
"piqRef": "A11.6.1",
|
|
20285
20818
|
"type": "string",
|
|
20286
20819
|
"title": "",
|
|
20287
20820
|
"enum": ["Yes", "No"]
|
|
@@ -20344,6 +20877,7 @@
|
|
|
20344
20877
|
"properties": {
|
|
20345
20878
|
"yesNo": {
|
|
20346
20879
|
"baspiRef": "A12.1.1",
|
|
20880
|
+
"piqRef": "A12.1.1",
|
|
20347
20881
|
"type": "string",
|
|
20348
20882
|
"title": "",
|
|
20349
20883
|
"enum": ["Yes", "No"]
|
|
@@ -20368,6 +20902,7 @@
|
|
|
20368
20902
|
},
|
|
20369
20903
|
"details": {
|
|
20370
20904
|
"baspiRef": "A12.1.2",
|
|
20905
|
+
"piqRef": "A12.1.2",
|
|
20371
20906
|
"title": "Details",
|
|
20372
20907
|
"type": "string",
|
|
20373
20908
|
"minLength": 1
|
|
@@ -20393,6 +20928,7 @@
|
|
|
20393
20928
|
"properties": {
|
|
20394
20929
|
"yesNo": {
|
|
20395
20930
|
"baspiRef": "A12.2.1",
|
|
20931
|
+
"piqRef": "A12.2.1",
|
|
20396
20932
|
"type": "string",
|
|
20397
20933
|
"title": "",
|
|
20398
20934
|
"enum": ["Yes", "No"]
|
|
@@ -20417,6 +20953,7 @@
|
|
|
20417
20953
|
},
|
|
20418
20954
|
"details": {
|
|
20419
20955
|
"baspiRef": "A12.2.2",
|
|
20956
|
+
"piqRef": "A12.2.2",
|
|
20420
20957
|
"title": "Please describe this issue and any action that has been taken, if applicable.",
|
|
20421
20958
|
"type": "string",
|
|
20422
20959
|
"minLength": 1
|
|
@@ -20739,6 +21276,7 @@
|
|
|
20739
21276
|
"baspiRef": "B2.1.2",
|
|
20740
21277
|
"rdsRef": "Tenure/Boundaries",
|
|
20741
21278
|
"ta6Ref": "1.1b",
|
|
21279
|
+
"piqRef": "B3.1.2",
|
|
20742
21280
|
"title": "On the right",
|
|
20743
21281
|
"type": "string",
|
|
20744
21282
|
"enum": [
|
|
@@ -20824,6 +21362,7 @@
|
|
|
20824
21362
|
"properties": {
|
|
20825
21363
|
"yesNo": {
|
|
20826
21364
|
"baspiRef": "B2.2.1",
|
|
21365
|
+
"piqRef": "B3.3.1",
|
|
20827
21366
|
"ta6Ref": "1.3.1",
|
|
20828
21367
|
"type": "string",
|
|
20829
21368
|
"title": "",
|
|
@@ -20851,6 +21390,7 @@
|
|
|
20851
21390
|
"details": {
|
|
20852
21391
|
"baspiRef": "B2.2.2",
|
|
20853
21392
|
"ta6Ref": "1.3.2",
|
|
21393
|
+
"piqRef": "B3.3.2",
|
|
20854
21394
|
"title": "Details",
|
|
20855
21395
|
"type": "string",
|
|
20856
21396
|
"minLength": 1
|
|
@@ -20984,6 +21524,7 @@
|
|
|
20984
21524
|
"yesNo": {
|
|
20985
21525
|
"baspiRef": "B3.1.1",
|
|
20986
21526
|
"ta6Ref": "8.7.1",
|
|
21527
|
+
"piqRef": "B4.1.1",
|
|
20987
21528
|
"type": "string",
|
|
20988
21529
|
"title": "",
|
|
20989
21530
|
"enum": ["Yes", "No", "Not known"]
|
|
@@ -21009,6 +21550,7 @@
|
|
|
21009
21550
|
},
|
|
21010
21551
|
"details": {
|
|
21011
21552
|
"baspiRef": "B3.1.2",
|
|
21553
|
+
"piqRef": "B4.1.2",
|
|
21012
21554
|
"title": "Please provide details",
|
|
21013
21555
|
"type": "string",
|
|
21014
21556
|
"minLength": 1
|
|
@@ -21035,6 +21577,7 @@
|
|
|
21035
21577
|
"yesNo": {
|
|
21036
21578
|
"baspiRef": "B3.2.1",
|
|
21037
21579
|
"ta6Ref": "8.8.1",
|
|
21580
|
+
"piqRef": "B4.2.1",
|
|
21038
21581
|
"type": "string",
|
|
21039
21582
|
"title": "",
|
|
21040
21583
|
"enum": ["Yes", "No", "Not known"]
|
|
@@ -21060,6 +21603,7 @@
|
|
|
21060
21603
|
},
|
|
21061
21604
|
"details": {
|
|
21062
21605
|
"baspiRef": "B3.2.2",
|
|
21606
|
+
"piqRef": "B4.2.2",
|
|
21063
21607
|
"title": "Please provide details",
|
|
21064
21608
|
"type": "string",
|
|
21065
21609
|
"minLength": 1
|
|
@@ -21086,6 +21630,7 @@
|
|
|
21086
21630
|
"yesNo": {
|
|
21087
21631
|
"baspiRef": "B3.3.1",
|
|
21088
21632
|
"ta6Ref": "8.9.1",
|
|
21633
|
+
"piqRef": "B4.3.1",
|
|
21089
21634
|
"type": "string",
|
|
21090
21635
|
"title": "",
|
|
21091
21636
|
"enum": ["Yes", "No", "Not known"]
|
|
@@ -21112,6 +21657,7 @@
|
|
|
21112
21657
|
"details": {
|
|
21113
21658
|
"baspiRef": "B3.3.2",
|
|
21114
21659
|
"ta6Ref": "8.9.2",
|
|
21660
|
+
"piqRef": "B4.3.2",
|
|
21115
21661
|
"title": "Please provide details",
|
|
21116
21662
|
"type": "string",
|
|
21117
21663
|
"minLength": 1
|
|
@@ -21158,6 +21704,7 @@
|
|
|
21158
21704
|
"yesNo": {
|
|
21159
21705
|
"baspiRef": "B4.1.1",
|
|
21160
21706
|
"ta6Ref": "12.1.1",
|
|
21707
|
+
"piqRef": "B7.1.1",
|
|
21161
21708
|
"type": "string",
|
|
21162
21709
|
"title": "",
|
|
21163
21710
|
"enum": ["Yes", "No"]
|
|
@@ -21184,7 +21731,7 @@
|
|
|
21184
21731
|
"yearTested": {
|
|
21185
21732
|
"baspiRef": "B4.1.2",
|
|
21186
21733
|
"ta6Ref": "12.1.2",
|
|
21187
|
-
"piqRef": "B7.1.
|
|
21734
|
+
"piqRef": "B7.1.2",
|
|
21188
21735
|
"title": "State the year they were last tested",
|
|
21189
21736
|
"type": "integer"
|
|
21190
21737
|
},
|
|
@@ -21212,6 +21759,7 @@
|
|
|
21212
21759
|
"yesNo": {
|
|
21213
21760
|
"baspiRef": "B4.2.1",
|
|
21214
21761
|
"ta6Ref": "12.2.1",
|
|
21762
|
+
"piqRef": "B7.2.1",
|
|
21215
21763
|
"type": "string",
|
|
21216
21764
|
"title": "",
|
|
21217
21765
|
"enum": ["Yes", "No", "Not known"]
|
|
@@ -21237,7 +21785,7 @@
|
|
|
21237
21785
|
},
|
|
21238
21786
|
"yearWorkCarriedOut": {
|
|
21239
21787
|
"baspiRef": "B4.2.2",
|
|
21240
|
-
"piqRef": "B7.2.
|
|
21788
|
+
"piqRef": "B7.2.2",
|
|
21241
21789
|
"title": "State the year the work was carried out",
|
|
21242
21790
|
"type": "integer"
|
|
21243
21791
|
},
|
|
@@ -21275,6 +21823,7 @@
|
|
|
21275
21823
|
},
|
|
21276
21824
|
"solarPanels": {
|
|
21277
21825
|
"baspiRef": "B4.3",
|
|
21826
|
+
"piqRef": "B4.4",
|
|
21278
21827
|
"title": "Solar or photovoltaic panels",
|
|
21279
21828
|
"type": "object",
|
|
21280
21829
|
"properties": {
|
|
@@ -22313,6 +22862,7 @@
|
|
|
22313
22862
|
"yesNo": {
|
|
22314
22863
|
"baspiRef": "B5.2.1",
|
|
22315
22864
|
"ta6Ref": "5.2.1",
|
|
22865
|
+
"piqRef": "B5.2.1",
|
|
22316
22866
|
"type": "string",
|
|
22317
22867
|
"title": "",
|
|
22318
22868
|
"enum": ["Yes", "No"]
|
|
@@ -22495,6 +23045,7 @@
|
|
|
22495
23045
|
"aged17OrOverNames": {
|
|
22496
23046
|
"baspiRef": "B6.2.1",
|
|
22497
23047
|
"ta6Ref": "11.3",
|
|
23048
|
+
"piqRef": "B8.1.1",
|
|
22498
23049
|
"title": "Please provide their full names and ages.",
|
|
22499
23050
|
"type": "string",
|
|
22500
23051
|
"minLength": 1
|
|
@@ -22590,6 +23141,7 @@
|
|
|
22590
23141
|
"yesNo": {
|
|
22591
23142
|
"baspiRef": "B6.3.2.1",
|
|
22592
23143
|
"ta6Ref": "11.5b1",
|
|
23144
|
+
"piqRef": "B8.2.1",
|
|
22593
23145
|
"type": "string",
|
|
22594
23146
|
"title": "",
|
|
22595
23147
|
"enum": ["Yes", "No"]
|
|
@@ -22738,6 +23290,7 @@
|
|
|
22738
23290
|
"yesNo": {
|
|
22739
23291
|
"baspiRef": "B7.2.1",
|
|
22740
23292
|
"ta6Ref": "14.1.1",
|
|
23293
|
+
"piqRef": "B9.1.1",
|
|
22741
23294
|
"type": "string",
|
|
22742
23295
|
"title": "",
|
|
22743
23296
|
"enum": ["Yes", "No"]
|
|
@@ -22821,6 +23374,7 @@
|
|
|
22821
23374
|
"yesNo": {
|
|
22822
23375
|
"baspiRef": "B7.3.1",
|
|
22823
23376
|
"ta6Ref": "14.2.1",
|
|
23377
|
+
"piqRef": "B9.1.2",
|
|
22824
23378
|
"type": "string",
|
|
22825
23379
|
"title": "",
|
|
22826
23380
|
"enum": ["Yes", "No"]
|
|
@@ -31203,31 +31757,9 @@
|
|
|
31203
31757
|
"type": "string",
|
|
31204
31758
|
"enum": [
|
|
31205
31759
|
"Local Land Charges",
|
|
31206
|
-
"
|
|
31207
|
-
"
|
|
31208
|
-
"
|
|
31209
|
-
"Flood",
|
|
31210
|
-
"Contaminated Land",
|
|
31211
|
-
"Coal",
|
|
31212
|
-
"Bath Stone",
|
|
31213
|
-
"Metalliferous (Tin)",
|
|
31214
|
-
"Kaolin & Ball Clay",
|
|
31215
|
-
"Limestone",
|
|
31216
|
-
"Brine",
|
|
31217
|
-
"HS2",
|
|
31218
|
-
"Crossrail",
|
|
31219
|
-
"Energy Exploration",
|
|
31220
|
-
"Wind Farms",
|
|
31221
|
-
"Planning",
|
|
31222
|
-
"Utilities",
|
|
31223
|
-
"Renewable Power Plants",
|
|
31224
|
-
"Solar Farms",
|
|
31225
|
-
"London Underground",
|
|
31226
|
-
"Ground Stability",
|
|
31227
|
-
"Non Coal Mining",
|
|
31228
|
-
"Ground Movement",
|
|
31229
|
-
"Mineral",
|
|
31230
|
-
"Radon"
|
|
31760
|
+
"Local Authority Search",
|
|
31761
|
+
"Drainage and Water Search",
|
|
31762
|
+
"Environmental Risks"
|
|
31231
31763
|
]
|
|
31232
31764
|
}
|
|
31233
31765
|
}
|
|
@@ -31272,31 +31804,9 @@
|
|
|
31272
31804
|
"type": "string",
|
|
31273
31805
|
"enum": [
|
|
31274
31806
|
"Local Land Charges",
|
|
31275
|
-
"
|
|
31276
|
-
"
|
|
31277
|
-
"
|
|
31278
|
-
"Flood",
|
|
31279
|
-
"Contaminated Land",
|
|
31280
|
-
"Coal",
|
|
31281
|
-
"Bath Stone",
|
|
31282
|
-
"Metalliferous (Tin)",
|
|
31283
|
-
"Kaolin & Ball Clay",
|
|
31284
|
-
"Limestone",
|
|
31285
|
-
"Brine",
|
|
31286
|
-
"HS2",
|
|
31287
|
-
"Crossrail",
|
|
31288
|
-
"Energy Exploration",
|
|
31289
|
-
"Wind Farms",
|
|
31290
|
-
"Planning",
|
|
31291
|
-
"Utilities",
|
|
31292
|
-
"Renewable Power Plants",
|
|
31293
|
-
"Solar Farms",
|
|
31294
|
-
"London Underground",
|
|
31295
|
-
"Ground Stability",
|
|
31296
|
-
"Non Coal Mining",
|
|
31297
|
-
"Ground Movement",
|
|
31298
|
-
"Mineral",
|
|
31299
|
-
"Radon"
|
|
31807
|
+
"Local Authority Search",
|
|
31808
|
+
"Drainage and Water Search",
|
|
31809
|
+
"Environmental Risks"
|
|
31300
31810
|
]
|
|
31301
31811
|
}
|
|
31302
31812
|
},
|
|
@@ -31382,7 +31892,7 @@
|
|
|
31382
31892
|
{
|
|
31383
31893
|
"properties": {
|
|
31384
31894
|
"contentType": {
|
|
31385
|
-
"enum": ["
|
|
31895
|
+
"enum": ["Local Authority Search"]
|
|
31386
31896
|
},
|
|
31387
31897
|
"requiredLocalSearches": {
|
|
31388
31898
|
"type": "object",
|
|
@@ -33565,7 +34075,7 @@
|
|
|
33565
34075
|
},
|
|
33566
34076
|
"housing": {
|
|
33567
34077
|
"con29RRef": "3.7(d)",
|
|
33568
|
-
"title": "
|
|
34078
|
+
"title": "housing;",
|
|
33569
34079
|
"type": "object",
|
|
33570
34080
|
"properties": {
|
|
33571
34081
|
"yesNo": {
|
|
@@ -33840,7 +34350,7 @@
|
|
|
33840
34350
|
},
|
|
33841
34351
|
"listedBuildingEnforcementNotice": {
|
|
33842
34352
|
"con29RRef": "3.9(c)",
|
|
33843
|
-
"title": "
|
|
34353
|
+
"title": "a listed building enforcement notice;",
|
|
33844
34354
|
"type": "object",
|
|
33845
34355
|
"properties": {
|
|
33846
34356
|
"yesNo": {
|
|
@@ -35474,7 +35984,7 @@
|
|
|
35474
35984
|
{
|
|
35475
35985
|
"properties": {
|
|
35476
35986
|
"contentType": {
|
|
35477
|
-
"enum": ["Drainage and Water
|
|
35987
|
+
"enum": ["Drainage and Water Search"]
|
|
35478
35988
|
},
|
|
35479
35989
|
"drainageAndWater": {
|
|
35480
35990
|
"type": "object",
|
|
@@ -36172,54 +36682,95 @@
|
|
|
36172
36682
|
{
|
|
36173
36683
|
"properties": {
|
|
36174
36684
|
"contentType": {
|
|
36175
|
-
"enum": [
|
|
36176
|
-
"Flood",
|
|
36177
|
-
"Contaminated Land",
|
|
36178
|
-
"Coal",
|
|
36179
|
-
"Bath Stone",
|
|
36180
|
-
"Metalliferous (Tin)",
|
|
36181
|
-
"Kaolin & Ball Clay",
|
|
36182
|
-
"Limestone",
|
|
36183
|
-
"Brine",
|
|
36184
|
-
"HS2",
|
|
36185
|
-
"Crossrail",
|
|
36186
|
-
"Energy Exploration",
|
|
36187
|
-
"Wind Farms",
|
|
36188
|
-
"Renewable Power Plants",
|
|
36189
|
-
"Solar Farms",
|
|
36190
|
-
"London Underground",
|
|
36191
|
-
"Ground Stability",
|
|
36192
|
-
"Non Coal Mining",
|
|
36193
|
-
"Ground Movement",
|
|
36194
|
-
"Mineral",
|
|
36195
|
-
"Radon",
|
|
36196
|
-
"Other"
|
|
36197
|
-
]
|
|
36685
|
+
"enum": ["Environmental Risks"]
|
|
36198
36686
|
},
|
|
36199
|
-
"
|
|
36200
|
-
"
|
|
36201
|
-
"
|
|
36202
|
-
|
|
36203
|
-
|
|
36204
|
-
|
|
36205
|
-
|
|
36206
|
-
|
|
36207
|
-
|
|
36208
|
-
|
|
36209
|
-
|
|
36210
|
-
|
|
36211
|
-
|
|
36212
|
-
|
|
36213
|
-
|
|
36214
|
-
|
|
36215
|
-
|
|
36216
|
-
|
|
36217
|
-
|
|
36218
|
-
|
|
36219
|
-
|
|
36220
|
-
|
|
36221
|
-
|
|
36222
|
-
|
|
36687
|
+
"riskResults": {
|
|
36688
|
+
"type": "array",
|
|
36689
|
+
"items": {
|
|
36690
|
+
"riskResult": {
|
|
36691
|
+
"type": "object",
|
|
36692
|
+
"properties": {
|
|
36693
|
+
"riskCategory": {
|
|
36694
|
+
"type": "string",
|
|
36695
|
+
"title": "Risk category",
|
|
36696
|
+
"enum": [
|
|
36697
|
+
"Flood Risk",
|
|
36698
|
+
"Contaminated Land",
|
|
36699
|
+
"Ground Stability",
|
|
36700
|
+
"Radon",
|
|
36701
|
+
"Energy",
|
|
36702
|
+
"Transportation",
|
|
36703
|
+
"Planning",
|
|
36704
|
+
"Climate",
|
|
36705
|
+
"Mining"
|
|
36706
|
+
]
|
|
36707
|
+
},
|
|
36708
|
+
"recommendedActionIndicator": {
|
|
36709
|
+
"type": "string",
|
|
36710
|
+
"title": "Recommended action indicator",
|
|
36711
|
+
"enum": ["Yes", "No"]
|
|
36712
|
+
},
|
|
36713
|
+
"actionAlertRating": {
|
|
36714
|
+
"type": "string",
|
|
36715
|
+
"title": "Action alert rating (1 is Green, 5 is Red)",
|
|
36716
|
+
"enum": ["1", "2", "3", "4", "5"]
|
|
36717
|
+
},
|
|
36718
|
+
"summary": {
|
|
36719
|
+
"type": "string",
|
|
36720
|
+
"title": "Summary of risk",
|
|
36721
|
+
"minLength": 1
|
|
36722
|
+
},
|
|
36723
|
+
"recommendations": {
|
|
36724
|
+
"type": "string",
|
|
36725
|
+
"title": "Recommendations",
|
|
36726
|
+
"minLength": 1
|
|
36727
|
+
},
|
|
36728
|
+
"datasetAttribution": {
|
|
36729
|
+
"type": "string",
|
|
36730
|
+
"title": "Licensing, distribution and copyright information",
|
|
36731
|
+
"minLength": 1
|
|
36732
|
+
},
|
|
36733
|
+
"riskSubcategories": {
|
|
36734
|
+
"type": "array",
|
|
36735
|
+
"title": "Risk sub-categories",
|
|
36736
|
+
"items": {
|
|
36737
|
+
"type": "object",
|
|
36738
|
+
"properties": {
|
|
36739
|
+
"subCategory": {
|
|
36740
|
+
"type": "string",
|
|
36741
|
+
"title": "Risk sub-category name"
|
|
36742
|
+
},
|
|
36743
|
+
"recommendedActionIndicator": {
|
|
36744
|
+
"type": "string",
|
|
36745
|
+
"title": "Is action recommended?",
|
|
36746
|
+
"enum": ["Yes", "No"]
|
|
36747
|
+
},
|
|
36748
|
+
"actionAlertRating": {
|
|
36749
|
+
"type": "string",
|
|
36750
|
+
"title": "Action alert rating (1 is Green, 5 is Red)",
|
|
36751
|
+
"enum": ["1", "2", "3", "4", "5"]
|
|
36752
|
+
},
|
|
36753
|
+
"summary": {
|
|
36754
|
+
"type": "string",
|
|
36755
|
+
"title": "Summary of risk",
|
|
36756
|
+
"minLength": 1
|
|
36757
|
+
},
|
|
36758
|
+
"recommendations": {
|
|
36759
|
+
"type": "string",
|
|
36760
|
+
"title": "Recommendations",
|
|
36761
|
+
"minLength": 1
|
|
36762
|
+
},
|
|
36763
|
+
"datasetAttribution": {
|
|
36764
|
+
"type": "string",
|
|
36765
|
+
"title": "Licensing, distribution and copyright information",
|
|
36766
|
+
"minLength": 1
|
|
36767
|
+
}
|
|
36768
|
+
}
|
|
36769
|
+
}
|
|
36770
|
+
}
|
|
36771
|
+
}
|
|
36772
|
+
}
|
|
36773
|
+
}
|
|
36223
36774
|
}
|
|
36224
36775
|
}
|
|
36225
36776
|
}
|
|
@@ -36230,6 +36781,39 @@
|
|
|
36230
36781
|
}
|
|
36231
36782
|
]
|
|
36232
36783
|
}
|
|
36784
|
+
},
|
|
36785
|
+
"documents": {
|
|
36786
|
+
"title": "Documents",
|
|
36787
|
+
"description": "Documents associated with the transaction",
|
|
36788
|
+
"type": "array",
|
|
36789
|
+
"items": {
|
|
36790
|
+
"type": "object",
|
|
36791
|
+
"properties": {
|
|
36792
|
+
"displayName": {
|
|
36793
|
+
"title": "Human-readable name of document",
|
|
36794
|
+
"type": "string",
|
|
36795
|
+
"minLength": 1
|
|
36796
|
+
},
|
|
36797
|
+
"fileName": {
|
|
36798
|
+
"title": "File name of the document",
|
|
36799
|
+
"type": "string",
|
|
36800
|
+
"minLength": 1
|
|
36801
|
+
},
|
|
36802
|
+
"mimeType": {
|
|
36803
|
+
"title": "Document MIME type",
|
|
36804
|
+
"type": "string",
|
|
36805
|
+
"minLength": 1
|
|
36806
|
+
},
|
|
36807
|
+
"documentType": {
|
|
36808
|
+
"title": "Human-readable document category",
|
|
36809
|
+
"type": "string",
|
|
36810
|
+
"minLength": 1
|
|
36811
|
+
},
|
|
36812
|
+
"externalIds": {
|
|
36813
|
+
"type": "object"
|
|
36814
|
+
}
|
|
36815
|
+
}
|
|
36816
|
+
}
|
|
36233
36817
|
}
|
|
36234
36818
|
}
|
|
36235
36819
|
}
|