@pdtf/schemas 2.1.2-1 → 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 +273 -124
- 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 +180 -122
- package/src/schemas/v2/skeleton.json +6 -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
|
@@ -290,31 +290,31 @@
|
|
|
290
290
|
}
|
|
291
291
|
},
|
|
292
292
|
"googleStreetViewPOV": {
|
|
293
|
-
"title": "Street View to render street nearby property in Google Street View
|
|
293
|
+
"title": "Street View to render street nearby property in Google Street View",
|
|
294
294
|
"type": "object",
|
|
295
295
|
"properties": {
|
|
296
296
|
"heading": {
|
|
297
|
-
"title": "The heading for the
|
|
297
|
+
"title": "The heading for the Google Street View camera",
|
|
298
298
|
"type": "number",
|
|
299
|
-
"minimum":
|
|
299
|
+
"minimum": -360,
|
|
300
300
|
"maximum": 360
|
|
301
301
|
},
|
|
302
302
|
"pitch": {
|
|
303
|
-
"title": "The pitch for the
|
|
303
|
+
"title": "The pitch for the Google Street View camera",
|
|
304
304
|
"type": "number"
|
|
305
305
|
},
|
|
306
306
|
"zoom": {
|
|
307
|
-
"title": "The zoom level for the
|
|
307
|
+
"title": "The zoom level for the Google Street View camera",
|
|
308
308
|
"type": "number"
|
|
309
309
|
},
|
|
310
310
|
"lat": {
|
|
311
|
-
"title": "The latitude for the
|
|
311
|
+
"title": "The latitude for the Google Street View camera",
|
|
312
312
|
"type": "number",
|
|
313
313
|
"minimum": -90,
|
|
314
314
|
"maximum": 90
|
|
315
315
|
},
|
|
316
316
|
"lng": {
|
|
317
|
-
"title": "The longitude for the
|
|
317
|
+
"title": "The longitude for the Google Street View camera",
|
|
318
318
|
"type": "number",
|
|
319
319
|
"minimum": -180,
|
|
320
320
|
"maximum": 180
|
|
@@ -368,6 +368,17 @@
|
|
|
368
368
|
"Offers in region of",
|
|
369
369
|
"Sale by tender"
|
|
370
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
|
+
]
|
|
371
382
|
}
|
|
372
383
|
}
|
|
373
384
|
},
|
|
@@ -375,6 +386,17 @@
|
|
|
375
386
|
"title": "Summary description",
|
|
376
387
|
"type": "string"
|
|
377
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
|
+
},
|
|
378
400
|
"media": {
|
|
379
401
|
"title": "Media",
|
|
380
402
|
"type": "array",
|
|
@@ -536,7 +558,8 @@
|
|
|
536
558
|
"Outstanding",
|
|
537
559
|
"Good",
|
|
538
560
|
"Requires Improvement",
|
|
539
|
-
"Inadequate"
|
|
561
|
+
"Inadequate",
|
|
562
|
+
"Other"
|
|
540
563
|
]
|
|
541
564
|
},
|
|
542
565
|
"pupils": {
|
|
@@ -606,7 +629,35 @@
|
|
|
606
629
|
}
|
|
607
630
|
}
|
|
608
631
|
}
|
|
609
|
-
}
|
|
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
|
+
]
|
|
610
661
|
}
|
|
611
662
|
},
|
|
612
663
|
"transport": {
|
|
@@ -2042,6 +2093,7 @@
|
|
|
2042
2093
|
},
|
|
2043
2094
|
"procedureForObtainingCertificate": {
|
|
2044
2095
|
"fme1Ref": "2.4",
|
|
2096
|
+
"lpe1Ref": "2.6",
|
|
2045
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?",
|
|
2046
2098
|
"type": "string"
|
|
2047
2099
|
}
|
|
@@ -4795,7 +4847,7 @@
|
|
|
4795
4847
|
},
|
|
4796
4848
|
"lesseeInCharge": {
|
|
4797
4849
|
"lpe1Ref": "1.10.1",
|
|
4798
|
-
"title": "
|
|
4850
|
+
"title": "If the Lessees, please provide contact details of the Lessee in charge",
|
|
4799
4851
|
"type": "object",
|
|
4800
4852
|
"properties": {
|
|
4801
4853
|
"nameOrOrganisation": {
|
|
@@ -5452,7 +5504,7 @@
|
|
|
5452
5504
|
},
|
|
5453
5505
|
"annualServiceCharge": {
|
|
5454
5506
|
"baspiRef": "A1.5.1.1.2",
|
|
5455
|
-
"lpe1Ref": "4.1.
|
|
5507
|
+
"lpe1Ref": "4.1.1",
|
|
5456
5508
|
"title": "Amount of current annual service charge (£)",
|
|
5457
5509
|
"type": "number"
|
|
5458
5510
|
},
|
|
@@ -5838,7 +5890,7 @@
|
|
|
5838
5890
|
},
|
|
5839
5891
|
"details": {
|
|
5840
5892
|
"lpe1Ref": "4.6.1",
|
|
5841
|
-
"title": "
|
|
5893
|
+
"title": "Confirm the amount collected from Lessees of the Property, currently held in the Reserve Fund:",
|
|
5842
5894
|
"type": "string",
|
|
5843
5895
|
"minLength": 1
|
|
5844
5896
|
},
|
|
@@ -6473,7 +6525,7 @@
|
|
|
6473
6525
|
]
|
|
6474
6526
|
},
|
|
6475
6527
|
"managedAreasCoveredByPolicy": {
|
|
6476
|
-
"lpe1Ref": "
|
|
6528
|
+
"lpe1Ref": "5.6",
|
|
6477
6529
|
"type": "object",
|
|
6478
6530
|
"title": "Are the Managed Areas covered by the policy?",
|
|
6479
6531
|
"properties": {
|
|
@@ -6502,7 +6554,7 @@
|
|
|
6502
6554
|
},
|
|
6503
6555
|
"riskAssessments": {
|
|
6504
6556
|
"lpe1Ref": "5.6.1",
|
|
6505
|
-
"title": "
|
|
6557
|
+
"title": "What risk assessments have been completed?",
|
|
6506
6558
|
"type": "object",
|
|
6507
6559
|
"properties": {
|
|
6508
6560
|
"assessmentsCarriedOut": {
|
|
@@ -6855,7 +6907,7 @@
|
|
|
6855
6907
|
"unresolvedDisputes": {
|
|
6856
6908
|
"lpe1Ref": "6.2",
|
|
6857
6909
|
"type": "object",
|
|
6858
|
-
"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?",
|
|
6859
6911
|
"properties": {
|
|
6860
6912
|
"yesNo": {
|
|
6861
6913
|
"type": "string",
|
|
@@ -6920,7 +6972,7 @@
|
|
|
6920
6972
|
"enum": ["Yes"]
|
|
6921
6973
|
},
|
|
6922
6974
|
"details": {
|
|
6923
|
-
"lpe1Ref": "
|
|
6975
|
+
"lpe1Ref": "6.3.1",
|
|
6924
6976
|
"title": "Provide details and copies of relevant documentation",
|
|
6925
6977
|
"type": "string",
|
|
6926
6978
|
"minLength": 1
|
|
@@ -7474,7 +7526,7 @@
|
|
|
7474
7526
|
]
|
|
7475
7527
|
},
|
|
7476
7528
|
"certificateOfComplianceFee": {
|
|
7477
|
-
"lpe1Ref": "8.11",
|
|
7529
|
+
"lpe1Ref": "8.11.1",
|
|
7478
7530
|
"title": "Certificate of Compliance fee.",
|
|
7479
7531
|
"type": "number"
|
|
7480
7532
|
},
|
|
@@ -7684,6 +7736,7 @@
|
|
|
7684
7736
|
"parkingArrangementsType": {
|
|
7685
7737
|
"baspiRef": "A1.6.0.1",
|
|
7686
7738
|
"ta6Ref": "9.1.1",
|
|
7739
|
+
"piqRef": "A1.5.1",
|
|
7687
7740
|
"title": "What type of parking arrangements are there?",
|
|
7688
7741
|
"type": "string",
|
|
7689
7742
|
"enum": [
|
|
@@ -7797,6 +7850,7 @@
|
|
|
7797
7850
|
"yesNo": {
|
|
7798
7851
|
"baspiRef": "A1.7.1.1",
|
|
7799
7852
|
"ta6Ref": "4.7a1",
|
|
7853
|
+
"piqRef": "A1.6.1.1",
|
|
7800
7854
|
"type": "string",
|
|
7801
7855
|
"title": "",
|
|
7802
7856
|
"enum": ["Yes", "No", "Not known"]
|
|
@@ -7850,6 +7904,7 @@
|
|
|
7850
7904
|
"properties": {
|
|
7851
7905
|
"yesNo": {
|
|
7852
7906
|
"baspiRef": "A1.7.2.1",
|
|
7907
|
+
"piqRef": "A1.6.2.1",
|
|
7853
7908
|
"ta6Ref": "4.7b1",
|
|
7854
7909
|
"type": "string",
|
|
7855
7910
|
"title": "",
|
|
@@ -7940,6 +7995,7 @@
|
|
|
7940
7995
|
"yesNo": {
|
|
7941
7996
|
"baspiRef": "A1.7.3.2.1",
|
|
7942
7997
|
"ta6Ref": "4.8a1",
|
|
7998
|
+
"piqRef": "A1.6.4.1",
|
|
7943
7999
|
"type": "string",
|
|
7944
8000
|
"title": "",
|
|
7945
8001
|
"enum": ["Yes", "No"]
|
|
@@ -8011,6 +8067,7 @@
|
|
|
8011
8067
|
"properties": {
|
|
8012
8068
|
"yesNo": {
|
|
8013
8069
|
"baspiRef": "A1.8.1.1",
|
|
8070
|
+
"piqRef": "A5.5.1",
|
|
8014
8071
|
"type": "string",
|
|
8015
8072
|
"title": "",
|
|
8016
8073
|
"enum": ["Yes", "No"]
|
|
@@ -8515,6 +8572,7 @@
|
|
|
8515
8572
|
"yesNo": {
|
|
8516
8573
|
"baspiRef": "A7.3.1",
|
|
8517
8574
|
"ta6Ref": "7.7.1",
|
|
8575
|
+
"piqRef": "A11.4.1",
|
|
8518
8576
|
"type": "string",
|
|
8519
8577
|
"title": "",
|
|
8520
8578
|
"enum": ["Yes", "No"]
|
|
@@ -8577,6 +8635,7 @@
|
|
|
8577
8635
|
"baspiRef": "A1.9.1",
|
|
8578
8636
|
"ntsRef": "A2.1",
|
|
8579
8637
|
"rdsRef": "TenureAgreements/Taxes/{banding=?}",
|
|
8638
|
+
"piqRef": "B2.1",
|
|
8580
8639
|
"title": "Which Council Tax band does this property fall within?",
|
|
8581
8640
|
"description": "Band I relates to Wales only",
|
|
8582
8641
|
"type": "string",
|
|
@@ -8661,6 +8720,7 @@
|
|
|
8661
8720
|
"yesNo": {
|
|
8662
8721
|
"baspiRef": "A2.1.1.1",
|
|
8663
8722
|
"ta6Ref": "2.1.1",
|
|
8723
|
+
"piqRef": "A2.1.1",
|
|
8664
8724
|
"type": "string",
|
|
8665
8725
|
"title": "",
|
|
8666
8726
|
"enum": ["Yes", "No"]
|
|
@@ -8687,6 +8747,7 @@
|
|
|
8687
8747
|
"details": {
|
|
8688
8748
|
"baspiRef": "A2.1.1.2",
|
|
8689
8749
|
"ta6Ref": "2.1.2",
|
|
8750
|
+
"piqRef": "A2.1.1.2",
|
|
8690
8751
|
"title": "Please give details",
|
|
8691
8752
|
"type": "string",
|
|
8692
8753
|
"minLength": 1
|
|
@@ -8781,6 +8842,7 @@
|
|
|
8781
8842
|
"yesNo": {
|
|
8782
8843
|
"baspiRef": "A3.1.1",
|
|
8783
8844
|
"ta6Ref": "4.1a1",
|
|
8845
|
+
"piqRef": "A3.1.1",
|
|
8784
8846
|
"type": "string",
|
|
8785
8847
|
"title": "",
|
|
8786
8848
|
"enum": ["Yes", "No"]
|
|
@@ -8807,6 +8869,7 @@
|
|
|
8807
8869
|
"details": {
|
|
8808
8870
|
"baspiRef": "A3.1.2",
|
|
8809
8871
|
"ta6Ref": "4.1a2",
|
|
8872
|
+
"piqRef": "A3.1.2",
|
|
8810
8873
|
"title": "Please give details including dates of all work undertaken",
|
|
8811
8874
|
"type": "string",
|
|
8812
8875
|
"minLength": 1
|
|
@@ -9308,6 +9371,7 @@
|
|
|
9308
9371
|
"yesNo": {
|
|
9309
9372
|
"baspiRef": "A3.3.1",
|
|
9310
9373
|
"ta6Ref": "4.1c1",
|
|
9374
|
+
"piqRef": "A3.2.1",
|
|
9311
9375
|
"type": "string",
|
|
9312
9376
|
"title": "",
|
|
9313
9377
|
"enum": ["Yes", "No"]
|
|
@@ -9333,12 +9397,14 @@
|
|
|
9333
9397
|
},
|
|
9334
9398
|
"details": {
|
|
9335
9399
|
"baspiRef": "A3.3.2",
|
|
9400
|
+
"piqRef": "A3.2.2",
|
|
9336
9401
|
"title": "For each installation, please outline the nature of the work.",
|
|
9337
9402
|
"type": "string",
|
|
9338
9403
|
"minLength": 1
|
|
9339
9404
|
},
|
|
9340
9405
|
"yearCompleted": {
|
|
9341
9406
|
"baspiRef": "A3.3.3",
|
|
9407
|
+
"piqRef": "A3.2.3",
|
|
9342
9408
|
"ta6Ref": "4.1c2",
|
|
9343
9409
|
"title": "What year was the installation completed?",
|
|
9344
9410
|
"type": "integer"
|
|
@@ -9575,6 +9641,7 @@
|
|
|
9575
9641
|
"yesNo": {
|
|
9576
9642
|
"baspiRef": "A3.4.1",
|
|
9577
9643
|
"ta6Ref": "4.1d1",
|
|
9644
|
+
"piqRef": "A3.4.1",
|
|
9578
9645
|
"type": "string",
|
|
9579
9646
|
"title": "",
|
|
9580
9647
|
"enum": ["Yes", "No"]
|
|
@@ -9600,12 +9667,14 @@
|
|
|
9600
9667
|
},
|
|
9601
9668
|
"details": {
|
|
9602
9669
|
"baspiRef": "A3.4.2",
|
|
9670
|
+
"piqRef": "A3.4.2",
|
|
9603
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?",
|
|
9604
9672
|
"type": "string",
|
|
9605
9673
|
"minLength": 1
|
|
9606
9674
|
},
|
|
9607
9675
|
"yearCompleted": {
|
|
9608
9676
|
"baspiRef": "A3.4.3",
|
|
9677
|
+
"piqRef": "A3.4.3",
|
|
9609
9678
|
"ta6Ref": "4.1d2",
|
|
9610
9679
|
"title": "What year was the installation completed?",
|
|
9611
9680
|
"type": "integer"
|
|
@@ -9621,6 +9690,7 @@
|
|
|
9621
9690
|
"yesNo": {
|
|
9622
9691
|
"baspiRef": "A3.5.1.1",
|
|
9623
9692
|
"ta6Ref": "4.2.1",
|
|
9693
|
+
"piqRef": "A3.5.1.1",
|
|
9624
9694
|
"type": "string",
|
|
9625
9695
|
"title": "",
|
|
9626
9696
|
"enum": ["Yes", "No", "Not required"]
|
|
@@ -9656,6 +9726,7 @@
|
|
|
9656
9726
|
"details": {
|
|
9657
9727
|
"baspiRef": "A3.5.1.2",
|
|
9658
9728
|
"ta6Ref": "4.2b",
|
|
9729
|
+
"piqRef": "A3.5.1.2",
|
|
9659
9730
|
"title": "Please outline the reasons why",
|
|
9660
9731
|
"description": "e.g. the work was exempt from Building Regulations",
|
|
9661
9732
|
"type": "string",
|
|
@@ -9678,6 +9749,7 @@
|
|
|
9678
9749
|
"yesNo": {
|
|
9679
9750
|
"baspiRef": "A3.5.2.1",
|
|
9680
9751
|
"ta6Ref": "4.2.1",
|
|
9752
|
+
"piqRef": "A3.5.2.1",
|
|
9681
9753
|
"type": "string",
|
|
9682
9754
|
"title": "",
|
|
9683
9755
|
"enum": ["Yes", "No", "Not required"]
|
|
@@ -9733,6 +9805,7 @@
|
|
|
9733
9805
|
"properties": {
|
|
9734
9806
|
"yesNo": {
|
|
9735
9807
|
"baspiRef": "A3.5.3.1",
|
|
9808
|
+
"piqRef": "A3.5.3.1",
|
|
9736
9809
|
"type": "string",
|
|
9737
9810
|
"title": "",
|
|
9738
9811
|
"enum": ["Yes", "No", "Not required"]
|
|
@@ -9782,6 +9855,7 @@
|
|
|
9782
9855
|
"properties": {
|
|
9783
9856
|
"yesNo": {
|
|
9784
9857
|
"baspiRef": "A3.5.4.1",
|
|
9858
|
+
"piqRef": "A3.5.4.1",
|
|
9785
9859
|
"type": "string",
|
|
9786
9860
|
"title": "",
|
|
9787
9861
|
"enum": ["Yes", "No", "Not required"]
|
|
@@ -9847,6 +9921,7 @@
|
|
|
9847
9921
|
"yesNo": {
|
|
9848
9922
|
"baspiRef": "A3.6.1",
|
|
9849
9923
|
"ta6Ref": "4.3.1",
|
|
9924
|
+
"piqRef": "A3.6.1",
|
|
9850
9925
|
"type": "string",
|
|
9851
9926
|
"title": "",
|
|
9852
9927
|
"enum": ["Yes", "No"]
|
|
@@ -9873,6 +9948,7 @@
|
|
|
9873
9948
|
"details": {
|
|
9874
9949
|
"baspiRef": "A3.6.2",
|
|
9875
9950
|
"ta6Ref": "4.3.2",
|
|
9951
|
+
"piqRef": "A3.6.2",
|
|
9876
9952
|
"title": "Please provide details and explain why",
|
|
9877
9953
|
"type": "string",
|
|
9878
9954
|
"minLength": 1
|
|
@@ -9900,6 +9976,7 @@
|
|
|
9900
9976
|
"yesNo": {
|
|
9901
9977
|
"baspiRef": "A3.7.1",
|
|
9902
9978
|
"ta6Ref": "4.4.1",
|
|
9979
|
+
"piqRef": "A3.7.1",
|
|
9903
9980
|
"type": "string",
|
|
9904
9981
|
"title": "",
|
|
9905
9982
|
"enum": ["Yes", "No"]
|
|
@@ -9925,6 +10002,7 @@
|
|
|
9925
10002
|
"details": {
|
|
9926
10003
|
"baspiRef": "A3.7.2",
|
|
9927
10004
|
"ta6Ref": "4.4.2",
|
|
10005
|
+
"piqRef": "A3.7.2",
|
|
9928
10006
|
"rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
|
|
9929
10007
|
"title": "Please give details",
|
|
9930
10008
|
"type": "string",
|
|
@@ -9965,6 +10043,7 @@
|
|
|
9965
10043
|
"yesNo": {
|
|
9966
10044
|
"baspiRef": "A3.8.1",
|
|
9967
10045
|
"ta6Ref": "4.5.1",
|
|
10046
|
+
"piqRef": "A3.8.1",
|
|
9968
10047
|
"type": "string",
|
|
9969
10048
|
"title": "",
|
|
9970
10049
|
"enum": ["Yes", "No"]
|
|
@@ -9991,6 +10070,7 @@
|
|
|
9991
10070
|
"details": {
|
|
9992
10071
|
"baspiRef": "A3.8.2",
|
|
9993
10072
|
"ta6Ref": "4.5.2",
|
|
10073
|
+
"piqRef": "A3.8.2",
|
|
9994
10074
|
"rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
|
|
9995
10075
|
"title": "Please give details",
|
|
9996
10076
|
"type": "string",
|
|
@@ -10052,6 +10132,7 @@
|
|
|
10052
10132
|
"properties": {
|
|
10053
10133
|
"yesNo": {
|
|
10054
10134
|
"baspiRef": "A4.1.1",
|
|
10135
|
+
"piqRef": "A4.1.1",
|
|
10055
10136
|
"ta6Ref": "3.2.1",
|
|
10056
10137
|
"type": "string",
|
|
10057
10138
|
"title": "",
|
|
@@ -10106,6 +10187,7 @@
|
|
|
10106
10187
|
"yesNo": {
|
|
10107
10188
|
"baspiRef": "A4.2.1",
|
|
10108
10189
|
"ta6Ref": "3.1.1",
|
|
10190
|
+
"piqRef": "A4.2.1",
|
|
10109
10191
|
"type": "string",
|
|
10110
10192
|
"title": "",
|
|
10111
10193
|
"enum": ["Yes", "No"]
|
|
@@ -10159,6 +10241,7 @@
|
|
|
10159
10241
|
"yesNo": {
|
|
10160
10242
|
"baspiRef": "A4.3.1",
|
|
10161
10243
|
"ta6Ref": "3.1.1",
|
|
10244
|
+
"piqRef": "A4.3.1",
|
|
10162
10245
|
"type": "string",
|
|
10163
10246
|
"title": "",
|
|
10164
10247
|
"enum": ["Yes", "No"]
|
|
@@ -10212,6 +10295,7 @@
|
|
|
10212
10295
|
"yesNo": {
|
|
10213
10296
|
"baspiRef": "A4.4.1",
|
|
10214
10297
|
"ta6Ref": "3.1.1",
|
|
10298
|
+
"piqRef": "A4.4.1",
|
|
10215
10299
|
"type": "string",
|
|
10216
10300
|
"title": "",
|
|
10217
10301
|
"enum": ["Yes", "No"]
|
|
@@ -10265,6 +10349,7 @@
|
|
|
10265
10349
|
"yesNo": {
|
|
10266
10350
|
"baspiRef": "A4.5.1",
|
|
10267
10351
|
"ta6Ref": "3.1.1",
|
|
10352
|
+
"piqRef": "A4.5.1",
|
|
10268
10353
|
"type": "string",
|
|
10269
10354
|
"title": "",
|
|
10270
10355
|
"enum": ["Yes", "No"]
|
|
@@ -10371,6 +10456,7 @@
|
|
|
10371
10456
|
"yesNo": {
|
|
10372
10457
|
"baspiRef": "A4.7.1",
|
|
10373
10458
|
"ta6Ref": "3.1.1",
|
|
10459
|
+
"piqRef": "A4.6.1",
|
|
10374
10460
|
"type": "string",
|
|
10375
10461
|
"title": "",
|
|
10376
10462
|
"enum": ["Yes", "No"]
|
|
@@ -10437,6 +10523,7 @@
|
|
|
10437
10523
|
"properties": {
|
|
10438
10524
|
"yesNo": {
|
|
10439
10525
|
"baspiRef": "A5.1.1",
|
|
10526
|
+
"piqRef": "A5.1.1",
|
|
10440
10527
|
"type": "string",
|
|
10441
10528
|
"title": "",
|
|
10442
10529
|
"enum": ["Yes", "No"]
|
|
@@ -10534,6 +10621,7 @@
|
|
|
10534
10621
|
"yesNo": {
|
|
10535
10622
|
"baspiRef": "A5.3.1",
|
|
10536
10623
|
"ta6Ref": "7.8.1",
|
|
10624
|
+
"piqRef": "A5.3.1",
|
|
10537
10625
|
"type": "string",
|
|
10538
10626
|
"title": "",
|
|
10539
10627
|
"enum": ["Yes", "No", "Not known"]
|
|
@@ -10586,6 +10674,7 @@
|
|
|
10586
10674
|
"properties": {
|
|
10587
10675
|
"yesNo": {
|
|
10588
10676
|
"baspiRef": "A5.4.1",
|
|
10677
|
+
"piqRef": "A5.4.1",
|
|
10589
10678
|
"type": "string",
|
|
10590
10679
|
"title": "",
|
|
10591
10680
|
"enum": ["Yes", "No"]
|
|
@@ -10703,6 +10792,7 @@
|
|
|
10703
10792
|
"properties": {
|
|
10704
10793
|
"yesNo": {
|
|
10705
10794
|
"baspiRef": "A6.1.1",
|
|
10795
|
+
"piqRef": "A6.1.1",
|
|
10706
10796
|
"type": "string",
|
|
10707
10797
|
"title": "",
|
|
10708
10798
|
"enum": ["Yes", "No"]
|
|
@@ -10727,6 +10817,7 @@
|
|
|
10727
10817
|
},
|
|
10728
10818
|
"details": {
|
|
10729
10819
|
"baspiRef": "A6.1.2",
|
|
10820
|
+
"piqRef": "A6.1.2",
|
|
10730
10821
|
"title": "Details",
|
|
10731
10822
|
"type": "string",
|
|
10732
10823
|
"minLength": 1
|
|
@@ -10745,6 +10836,7 @@
|
|
|
10745
10836
|
"properties": {
|
|
10746
10837
|
"yesNo": {
|
|
10747
10838
|
"baspiRef": "A6.2.1",
|
|
10839
|
+
"piqRef": "A6.2.1",
|
|
10748
10840
|
"type": "string",
|
|
10749
10841
|
"title": "",
|
|
10750
10842
|
"enum": ["Yes", "No"]
|
|
@@ -10769,6 +10861,7 @@
|
|
|
10769
10861
|
},
|
|
10770
10862
|
"details": {
|
|
10771
10863
|
"baspiRef": "A6.2.2",
|
|
10864
|
+
"piqRef": "A6.2.2",
|
|
10772
10865
|
"title": "Details",
|
|
10773
10866
|
"type": "string",
|
|
10774
10867
|
"minLength": 1
|
|
@@ -18844,6 +18937,7 @@
|
|
|
18844
18937
|
"properties": {
|
|
18845
18938
|
"yesNo": {
|
|
18846
18939
|
"baspiRef": "A7.2.1",
|
|
18940
|
+
"piqRef": "A7.2.1",
|
|
18847
18941
|
"type": "string",
|
|
18848
18942
|
"title": "",
|
|
18849
18943
|
"enum": ["Yes", "No"]
|
|
@@ -18868,6 +18962,7 @@
|
|
|
18868
18962
|
},
|
|
18869
18963
|
"details": {
|
|
18870
18964
|
"baspiRef": "A7.2.2",
|
|
18965
|
+
"piqRef": "A7.2.2",
|
|
18871
18966
|
"title": "Details",
|
|
18872
18967
|
"type": "string",
|
|
18873
18968
|
"minLength": 1
|
|
@@ -18902,6 +18997,7 @@
|
|
|
18902
18997
|
"hasCentralHeating": {
|
|
18903
18998
|
"baspiRef": "A7.4.0",
|
|
18904
18999
|
"ta6Ref": "12.3.1",
|
|
19000
|
+
"piqRef": "A7.3.1",
|
|
18905
19001
|
"title": "Is there full/partial central heating in your property?",
|
|
18906
19002
|
"type": "string",
|
|
18907
19003
|
"enum": ["Yes", "No"]
|
|
@@ -18926,6 +19022,7 @@
|
|
|
18926
19022
|
"centralHeatingDetails": {
|
|
18927
19023
|
"baspiRef": "A7.4.0.0",
|
|
18928
19024
|
"ta6Ref": "12.3.2",
|
|
19025
|
+
"piqRef": "A7.3.1.1",
|
|
18929
19026
|
"type": "object",
|
|
18930
19027
|
"title": "Central Heating Details",
|
|
18931
19028
|
"baspiRequired": [
|
|
@@ -19176,7 +19273,7 @@
|
|
|
19176
19273
|
"baspiRef": "A8.1.2.1",
|
|
19177
19274
|
"rdsRef": "Insurance/Flags,Insurance/refusalReason=?",
|
|
19178
19275
|
"ta6Ref": "6.4",
|
|
19179
|
-
"piqRef": "A8.1
|
|
19276
|
+
"piqRef": "A8.1",
|
|
19180
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?",
|
|
19181
19278
|
"type": "object",
|
|
19182
19279
|
"baspiRequired": [
|
|
@@ -19202,6 +19299,7 @@
|
|
|
19202
19299
|
"yesNo": {
|
|
19203
19300
|
"baspiRef": "A8.1.2.1.2",
|
|
19204
19301
|
"ta6Ref": "6.4a1",
|
|
19302
|
+
"piqRef": "A8.1a1",
|
|
19205
19303
|
"type": "string",
|
|
19206
19304
|
"title": "",
|
|
19207
19305
|
"enum": ["Yes", "No"]
|
|
@@ -19228,6 +19326,7 @@
|
|
|
19228
19326
|
"details": {
|
|
19229
19327
|
"baspiRef": "A8.1.2.1.3",
|
|
19230
19328
|
"ta6Ref": "6.4.2",
|
|
19329
|
+
"piqRef": "A8.1a1.1",
|
|
19231
19330
|
"title": "Provide details",
|
|
19232
19331
|
"type": "string",
|
|
19233
19332
|
"minLength": 1
|
|
@@ -19248,6 +19347,7 @@
|
|
|
19248
19347
|
"yesNo": {
|
|
19249
19348
|
"baspiRef": "A8.1.1.2.1",
|
|
19250
19349
|
"ta6Ref": "6.4b1",
|
|
19350
|
+
"piqRef": "A8.1b1",
|
|
19251
19351
|
"type": "string",
|
|
19252
19352
|
"title": "",
|
|
19253
19353
|
"enum": ["Yes", "No"]
|
|
@@ -19274,6 +19374,7 @@
|
|
|
19274
19374
|
"details": {
|
|
19275
19375
|
"baspiRef": "A8.1.2.1.2.2",
|
|
19276
19376
|
"ta6Ref": "6.4.2",
|
|
19377
|
+
"piqRef": "A8.1b2",
|
|
19277
19378
|
"title": "Provide details",
|
|
19278
19379
|
"type": "string",
|
|
19279
19380
|
"minLength": 1
|
|
@@ -19294,6 +19395,7 @@
|
|
|
19294
19395
|
"yesNo": {
|
|
19295
19396
|
"baspiRef": "A8.1.2.1.3.1",
|
|
19296
19397
|
"ta6Ref": "6.4c1",
|
|
19398
|
+
"piqRef": "A8.1c1",
|
|
19297
19399
|
"type": "string",
|
|
19298
19400
|
"title": "",
|
|
19299
19401
|
"enum": ["Yes", "No"]
|
|
@@ -19320,6 +19422,7 @@
|
|
|
19320
19422
|
"details": {
|
|
19321
19423
|
"baspiRef": "A8.1.2.1.3.2",
|
|
19322
19424
|
"ta6Ref": "6.4.2",
|
|
19425
|
+
"piqRef": "A8.1c2",
|
|
19323
19426
|
"title": "Provide details",
|
|
19324
19427
|
"type": "string",
|
|
19325
19428
|
"minLength": 1
|
|
@@ -19340,6 +19443,7 @@
|
|
|
19340
19443
|
"yesNo": {
|
|
19341
19444
|
"baspiRef": "A8.1.2.1.4.1",
|
|
19342
19445
|
"ta6Ref": "6.4d1",
|
|
19446
|
+
"piqRef": "A8.1d1",
|
|
19343
19447
|
"type": "string",
|
|
19344
19448
|
"title": "",
|
|
19345
19449
|
"enum": ["Yes", "No"]
|
|
@@ -19366,6 +19470,7 @@
|
|
|
19366
19470
|
"details": {
|
|
19367
19471
|
"baspiRef": "A8.1.2.1.4.2",
|
|
19368
19472
|
"ta6Ref": "6.4.2",
|
|
19473
|
+
"piqRef": "A8.1d2",
|
|
19369
19474
|
"title": "Provide details",
|
|
19370
19475
|
"type": "string",
|
|
19371
19476
|
"minLength": 1
|
|
@@ -19457,6 +19562,7 @@
|
|
|
19457
19562
|
"properties": {
|
|
19458
19563
|
"yesNo": {
|
|
19459
19564
|
"baspiRef": "A9.1.1",
|
|
19565
|
+
"piqRef": "A9.1.1",
|
|
19460
19566
|
"type": "string",
|
|
19461
19567
|
"title": "",
|
|
19462
19568
|
"enum": ["Yes", "No"]
|
|
@@ -19481,6 +19587,7 @@
|
|
|
19481
19587
|
},
|
|
19482
19588
|
"details": {
|
|
19483
19589
|
"baspiRef": "A9.1.2",
|
|
19590
|
+
"piqRef": "A9.1.2",
|
|
19484
19591
|
"title": "Please provide details. E.g. parking, garden, outbuilding, accessway, etc",
|
|
19485
19592
|
"type": "string",
|
|
19486
19593
|
"minLength": 1
|
|
@@ -19587,6 +19694,7 @@
|
|
|
19587
19694
|
"properties": {
|
|
19588
19695
|
"yesNo": {
|
|
19589
19696
|
"baspiRef": "A9.4.1",
|
|
19697
|
+
"piqRef": "A9.2.1",
|
|
19590
19698
|
"type": "string",
|
|
19591
19699
|
"title": "",
|
|
19592
19700
|
"enum": ["Yes", "No"]
|
|
@@ -19611,6 +19719,7 @@
|
|
|
19611
19719
|
},
|
|
19612
19720
|
"details": {
|
|
19613
19721
|
"baspiRef": "A9.4.2",
|
|
19722
|
+
"piqRef": "A9.2.2",
|
|
19614
19723
|
"title": "Details",
|
|
19615
19724
|
"type": "string",
|
|
19616
19725
|
"minLength": 1
|
|
@@ -19651,6 +19760,7 @@
|
|
|
19651
19760
|
"yesNo": {
|
|
19652
19761
|
"baspiRef": "A10.1.1",
|
|
19653
19762
|
"ta6Ref": "8.1.1",
|
|
19763
|
+
"piqRef": "A10.1.1",
|
|
19654
19764
|
"type": "string",
|
|
19655
19765
|
"title": "",
|
|
19656
19766
|
"enum": ["Yes", "No"]
|
|
@@ -19677,6 +19787,7 @@
|
|
|
19677
19787
|
"details": {
|
|
19678
19788
|
"baspiRef": "A10.1.2",
|
|
19679
19789
|
"ta6Ref": "8.1.2",
|
|
19790
|
+
"piqRef": "A10.1.2",
|
|
19680
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",
|
|
19681
19792
|
"type": "string",
|
|
19682
19793
|
"minLength": 1
|
|
@@ -19698,6 +19809,7 @@
|
|
|
19698
19809
|
"yesNo": {
|
|
19699
19810
|
"baspiRef": "A10.2.1",
|
|
19700
19811
|
"ta6Ref": "8.2.1",
|
|
19812
|
+
"piqRef": "A10.2.1",
|
|
19701
19813
|
"type": "string",
|
|
19702
19814
|
"title": "",
|
|
19703
19815
|
"enum": ["Yes", "No"]
|
|
@@ -19724,6 +19836,7 @@
|
|
|
19724
19836
|
"details": {
|
|
19725
19837
|
"baspiRef": "A10.2.2",
|
|
19726
19838
|
"ta6Ref": "8.2.2",
|
|
19839
|
+
"piqRef": "A10.2.2",
|
|
19727
19840
|
"title": "Please give details and provide a plan showing the route of the access, parking etc",
|
|
19728
19841
|
"type": "string",
|
|
19729
19842
|
"minLength": 1
|
|
@@ -19751,6 +19864,7 @@
|
|
|
19751
19864
|
"yesNo": {
|
|
19752
19865
|
"baspiRef": "A10.3.1",
|
|
19753
19866
|
"ta6Ref": "8.3.1",
|
|
19867
|
+
"piqRef": "A10.3.1",
|
|
19754
19868
|
"type": "string",
|
|
19755
19869
|
"title": "",
|
|
19756
19870
|
"enum": ["Yes", "No"]
|
|
@@ -19777,6 +19891,7 @@
|
|
|
19777
19891
|
"details": {
|
|
19778
19892
|
"baspiRef": "A10.3.2",
|
|
19779
19893
|
"ta6Ref": "8.3.2",
|
|
19894
|
+
"piqRef": "A10.3.2",
|
|
19780
19895
|
"title": "Details",
|
|
19781
19896
|
"type": "string",
|
|
19782
19897
|
"minLength": 1
|
|
@@ -19823,6 +19938,7 @@
|
|
|
19823
19938
|
"yesNo": {
|
|
19824
19939
|
"baspiRef": "A10.4.1.1",
|
|
19825
19940
|
"ta6Ref": "8.6.1",
|
|
19941
|
+
"piqRef": "A10.4.1",
|
|
19826
19942
|
"type": "string",
|
|
19827
19943
|
"title": "",
|
|
19828
19944
|
"enum": ["Yes", "No"]
|
|
@@ -19849,6 +19965,7 @@
|
|
|
19849
19965
|
"details": {
|
|
19850
19966
|
"baspiRef": "A10.4.1.2",
|
|
19851
19967
|
"ta6Ref": "8.6.2",
|
|
19968
|
+
"piqRef": "A10.4.2",
|
|
19852
19969
|
"title": "Please provide details and mark the route on a plan of the property",
|
|
19853
19970
|
"type": "string",
|
|
19854
19971
|
"minLength": 1
|
|
@@ -19876,6 +19993,7 @@
|
|
|
19876
19993
|
"yesNo": {
|
|
19877
19994
|
"baspiRef": "A10.4.2a.1",
|
|
19878
19995
|
"ta6Ref": "8.4a1",
|
|
19996
|
+
"piqRef": "A10.5a1",
|
|
19879
19997
|
"type": "string",
|
|
19880
19998
|
"title": "",
|
|
19881
19999
|
"enum": ["Yes", "No"]
|
|
@@ -19921,6 +20039,7 @@
|
|
|
19921
20039
|
"yesNo": {
|
|
19922
20040
|
"baspiRef": "A10.4.2b.1",
|
|
19923
20041
|
"ta6Ref": "8.4b1",
|
|
20042
|
+
"piqRef": "A10.5b1",
|
|
19924
20043
|
"type": "string",
|
|
19925
20044
|
"title": "",
|
|
19926
20045
|
"enum": ["Yes", "No"]
|
|
@@ -19966,6 +20085,7 @@
|
|
|
19966
20085
|
"yesNo": {
|
|
19967
20086
|
"baspiRef": "A10.4.3a1",
|
|
19968
20087
|
"ta6Ref": "8.4c1",
|
|
20088
|
+
"piqRef": "A10.5c1",
|
|
19969
20089
|
"type": "string",
|
|
19970
20090
|
"title": "",
|
|
19971
20091
|
"enum": ["Yes", "No"]
|
|
@@ -20011,6 +20131,7 @@
|
|
|
20011
20131
|
"yesNo": {
|
|
20012
20132
|
"baspiRef": "A10.4.3b1",
|
|
20013
20133
|
"ta6Ref": "8.5c1",
|
|
20134
|
+
"piqRef": "A10.5f1",
|
|
20014
20135
|
"type": "string",
|
|
20015
20136
|
"title": "",
|
|
20016
20137
|
"enum": ["Yes", "No"]
|
|
@@ -20051,13 +20172,14 @@
|
|
|
20051
20172
|
"baspiRef": "A10.4.4",
|
|
20052
20173
|
"rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
|
|
20053
20174
|
"ta6Ref": "8.5a",
|
|
20175
|
+
"piqRef": "A10.5d",
|
|
20054
20176
|
"title": "Mines and minerals under the property",
|
|
20055
20177
|
"type": "object",
|
|
20056
20178
|
"properties": {
|
|
20057
20179
|
"yesNo": {
|
|
20058
20180
|
"baspiRef": "A10.4.4.1",
|
|
20059
20181
|
"ta6Ref": "8.5a1",
|
|
20060
|
-
"piqRef": "A10.
|
|
20182
|
+
"piqRef": "A10.5d1",
|
|
20061
20183
|
"type": "string",
|
|
20062
20184
|
"title": "",
|
|
20063
20185
|
"enum": ["Yes", "No"]
|
|
@@ -20103,6 +20225,7 @@
|
|
|
20103
20225
|
"yesNo": {
|
|
20104
20226
|
"baspiRef": "A10.4.5.1",
|
|
20105
20227
|
"ta6Ref": "8.5b1",
|
|
20228
|
+
"piqRef": "A10.5e1",
|
|
20106
20229
|
"type": "string",
|
|
20107
20230
|
"title": "",
|
|
20108
20231
|
"enum": ["Yes", "No"]
|
|
@@ -20141,13 +20264,14 @@
|
|
|
20141
20264
|
"baspiRef": "A10.4.6",
|
|
20142
20265
|
"rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
|
|
20143
20266
|
"ta6Ref": "8.6",
|
|
20267
|
+
"piqRef": "A10.5g",
|
|
20144
20268
|
"title": "Any other rights or arrangements affecting the property?",
|
|
20145
20269
|
"type": "object",
|
|
20146
20270
|
"properties": {
|
|
20147
20271
|
"yesNo": {
|
|
20148
20272
|
"baspiRef": "A10.4.6.1",
|
|
20149
20273
|
"ta6Ref": "8.6.1",
|
|
20150
|
-
"piqRef": "A10.
|
|
20274
|
+
"piqRef": "A10.5g1",
|
|
20151
20275
|
"type": "string",
|
|
20152
20276
|
"title": "",
|
|
20153
20277
|
"enum": ["Yes", "No"]
|
|
@@ -20209,11 +20333,13 @@
|
|
|
20209
20333
|
"baspiRef": "A11.1.1",
|
|
20210
20334
|
"rdsRef": "Sustainability/Environmental|Natural|Situational",
|
|
20211
20335
|
"ta6Ref": "7.3",
|
|
20336
|
+
"piqRef": "A11.1.1",
|
|
20212
20337
|
"title": "Has a Flood Risk Report been prepared?",
|
|
20213
20338
|
"type": "object",
|
|
20214
20339
|
"properties": {
|
|
20215
20340
|
"yesNo": {
|
|
20216
20341
|
"baspiRef": "A11.1.1.1",
|
|
20342
|
+
"piqRef": "A11.1.1.1",
|
|
20217
20343
|
"ta6Ref": "7.3.1",
|
|
20218
20344
|
"type": "string",
|
|
20219
20345
|
"title": "",
|
|
@@ -20359,7 +20485,7 @@
|
|
|
20359
20485
|
"details": {
|
|
20360
20486
|
"baspiRef": "A11.1.2.2.6.2",
|
|
20361
20487
|
"ta6Ref": "7.2f2",
|
|
20362
|
-
"title": "Please
|
|
20488
|
+
"title": "Please state",
|
|
20363
20489
|
"type": "string",
|
|
20364
20490
|
"minLength": 1
|
|
20365
20491
|
}
|
|
@@ -20480,11 +20606,13 @@
|
|
|
20480
20606
|
},
|
|
20481
20607
|
"otherEnvironmental": {
|
|
20482
20608
|
"baspiRef": "A11.1.4",
|
|
20609
|
+
"piqRef": "A11.5",
|
|
20483
20610
|
"rdsRef": "Sustainability/Environmental|Natural|Situational",
|
|
20484
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)?",
|
|
20485
20612
|
"type": "object",
|
|
20486
20613
|
"properties": {
|
|
20487
20614
|
"yesNo": {
|
|
20615
|
+
"piqRef": "A11.5.1",
|
|
20488
20616
|
"baspiRef": "A11.1.4.1",
|
|
20489
20617
|
"type": "string",
|
|
20490
20618
|
"title": "",
|
|
@@ -20542,6 +20670,7 @@
|
|
|
20542
20670
|
"yesNo": {
|
|
20543
20671
|
"baspiRef": "A11.2.1",
|
|
20544
20672
|
"type": "string",
|
|
20673
|
+
"piqRef": "A11.2.1",
|
|
20545
20674
|
"title": "",
|
|
20546
20675
|
"enum": ["Yes", "No"]
|
|
20547
20676
|
}
|
|
@@ -20591,6 +20720,7 @@
|
|
|
20591
20720
|
"baspiRef": "A11.3.1",
|
|
20592
20721
|
"type": "string",
|
|
20593
20722
|
"title": "",
|
|
20723
|
+
"piqRef": "A11.3.1",
|
|
20594
20724
|
"enum": ["Yes", "No"]
|
|
20595
20725
|
}
|
|
20596
20726
|
},
|
|
@@ -20684,6 +20814,7 @@
|
|
|
20684
20814
|
"properties": {
|
|
20685
20815
|
"yesNo": {
|
|
20686
20816
|
"baspiRef": "A11.5.1",
|
|
20817
|
+
"piqRef": "A11.6.1",
|
|
20687
20818
|
"type": "string",
|
|
20688
20819
|
"title": "",
|
|
20689
20820
|
"enum": ["Yes", "No"]
|
|
@@ -20746,6 +20877,7 @@
|
|
|
20746
20877
|
"properties": {
|
|
20747
20878
|
"yesNo": {
|
|
20748
20879
|
"baspiRef": "A12.1.1",
|
|
20880
|
+
"piqRef": "A12.1.1",
|
|
20749
20881
|
"type": "string",
|
|
20750
20882
|
"title": "",
|
|
20751
20883
|
"enum": ["Yes", "No"]
|
|
@@ -20770,6 +20902,7 @@
|
|
|
20770
20902
|
},
|
|
20771
20903
|
"details": {
|
|
20772
20904
|
"baspiRef": "A12.1.2",
|
|
20905
|
+
"piqRef": "A12.1.2",
|
|
20773
20906
|
"title": "Details",
|
|
20774
20907
|
"type": "string",
|
|
20775
20908
|
"minLength": 1
|
|
@@ -20795,6 +20928,7 @@
|
|
|
20795
20928
|
"properties": {
|
|
20796
20929
|
"yesNo": {
|
|
20797
20930
|
"baspiRef": "A12.2.1",
|
|
20931
|
+
"piqRef": "A12.2.1",
|
|
20798
20932
|
"type": "string",
|
|
20799
20933
|
"title": "",
|
|
20800
20934
|
"enum": ["Yes", "No"]
|
|
@@ -20819,6 +20953,7 @@
|
|
|
20819
20953
|
},
|
|
20820
20954
|
"details": {
|
|
20821
20955
|
"baspiRef": "A12.2.2",
|
|
20956
|
+
"piqRef": "A12.2.2",
|
|
20822
20957
|
"title": "Please describe this issue and any action that has been taken, if applicable.",
|
|
20823
20958
|
"type": "string",
|
|
20824
20959
|
"minLength": 1
|
|
@@ -21141,6 +21276,7 @@
|
|
|
21141
21276
|
"baspiRef": "B2.1.2",
|
|
21142
21277
|
"rdsRef": "Tenure/Boundaries",
|
|
21143
21278
|
"ta6Ref": "1.1b",
|
|
21279
|
+
"piqRef": "B3.1.2",
|
|
21144
21280
|
"title": "On the right",
|
|
21145
21281
|
"type": "string",
|
|
21146
21282
|
"enum": [
|
|
@@ -21226,6 +21362,7 @@
|
|
|
21226
21362
|
"properties": {
|
|
21227
21363
|
"yesNo": {
|
|
21228
21364
|
"baspiRef": "B2.2.1",
|
|
21365
|
+
"piqRef": "B3.3.1",
|
|
21229
21366
|
"ta6Ref": "1.3.1",
|
|
21230
21367
|
"type": "string",
|
|
21231
21368
|
"title": "",
|
|
@@ -21253,6 +21390,7 @@
|
|
|
21253
21390
|
"details": {
|
|
21254
21391
|
"baspiRef": "B2.2.2",
|
|
21255
21392
|
"ta6Ref": "1.3.2",
|
|
21393
|
+
"piqRef": "B3.3.2",
|
|
21256
21394
|
"title": "Details",
|
|
21257
21395
|
"type": "string",
|
|
21258
21396
|
"minLength": 1
|
|
@@ -21386,6 +21524,7 @@
|
|
|
21386
21524
|
"yesNo": {
|
|
21387
21525
|
"baspiRef": "B3.1.1",
|
|
21388
21526
|
"ta6Ref": "8.7.1",
|
|
21527
|
+
"piqRef": "B4.1.1",
|
|
21389
21528
|
"type": "string",
|
|
21390
21529
|
"title": "",
|
|
21391
21530
|
"enum": ["Yes", "No", "Not known"]
|
|
@@ -21411,6 +21550,7 @@
|
|
|
21411
21550
|
},
|
|
21412
21551
|
"details": {
|
|
21413
21552
|
"baspiRef": "B3.1.2",
|
|
21553
|
+
"piqRef": "B4.1.2",
|
|
21414
21554
|
"title": "Please provide details",
|
|
21415
21555
|
"type": "string",
|
|
21416
21556
|
"minLength": 1
|
|
@@ -21437,6 +21577,7 @@
|
|
|
21437
21577
|
"yesNo": {
|
|
21438
21578
|
"baspiRef": "B3.2.1",
|
|
21439
21579
|
"ta6Ref": "8.8.1",
|
|
21580
|
+
"piqRef": "B4.2.1",
|
|
21440
21581
|
"type": "string",
|
|
21441
21582
|
"title": "",
|
|
21442
21583
|
"enum": ["Yes", "No", "Not known"]
|
|
@@ -21462,6 +21603,7 @@
|
|
|
21462
21603
|
},
|
|
21463
21604
|
"details": {
|
|
21464
21605
|
"baspiRef": "B3.2.2",
|
|
21606
|
+
"piqRef": "B4.2.2",
|
|
21465
21607
|
"title": "Please provide details",
|
|
21466
21608
|
"type": "string",
|
|
21467
21609
|
"minLength": 1
|
|
@@ -21488,6 +21630,7 @@
|
|
|
21488
21630
|
"yesNo": {
|
|
21489
21631
|
"baspiRef": "B3.3.1",
|
|
21490
21632
|
"ta6Ref": "8.9.1",
|
|
21633
|
+
"piqRef": "B4.3.1",
|
|
21491
21634
|
"type": "string",
|
|
21492
21635
|
"title": "",
|
|
21493
21636
|
"enum": ["Yes", "No", "Not known"]
|
|
@@ -21514,6 +21657,7 @@
|
|
|
21514
21657
|
"details": {
|
|
21515
21658
|
"baspiRef": "B3.3.2",
|
|
21516
21659
|
"ta6Ref": "8.9.2",
|
|
21660
|
+
"piqRef": "B4.3.2",
|
|
21517
21661
|
"title": "Please provide details",
|
|
21518
21662
|
"type": "string",
|
|
21519
21663
|
"minLength": 1
|
|
@@ -21560,6 +21704,7 @@
|
|
|
21560
21704
|
"yesNo": {
|
|
21561
21705
|
"baspiRef": "B4.1.1",
|
|
21562
21706
|
"ta6Ref": "12.1.1",
|
|
21707
|
+
"piqRef": "B7.1.1",
|
|
21563
21708
|
"type": "string",
|
|
21564
21709
|
"title": "",
|
|
21565
21710
|
"enum": ["Yes", "No"]
|
|
@@ -21586,7 +21731,7 @@
|
|
|
21586
21731
|
"yearTested": {
|
|
21587
21732
|
"baspiRef": "B4.1.2",
|
|
21588
21733
|
"ta6Ref": "12.1.2",
|
|
21589
|
-
"piqRef": "B7.1.
|
|
21734
|
+
"piqRef": "B7.1.2",
|
|
21590
21735
|
"title": "State the year they were last tested",
|
|
21591
21736
|
"type": "integer"
|
|
21592
21737
|
},
|
|
@@ -21614,6 +21759,7 @@
|
|
|
21614
21759
|
"yesNo": {
|
|
21615
21760
|
"baspiRef": "B4.2.1",
|
|
21616
21761
|
"ta6Ref": "12.2.1",
|
|
21762
|
+
"piqRef": "B7.2.1",
|
|
21617
21763
|
"type": "string",
|
|
21618
21764
|
"title": "",
|
|
21619
21765
|
"enum": ["Yes", "No", "Not known"]
|
|
@@ -21639,7 +21785,7 @@
|
|
|
21639
21785
|
},
|
|
21640
21786
|
"yearWorkCarriedOut": {
|
|
21641
21787
|
"baspiRef": "B4.2.2",
|
|
21642
|
-
"piqRef": "B7.2.
|
|
21788
|
+
"piqRef": "B7.2.2",
|
|
21643
21789
|
"title": "State the year the work was carried out",
|
|
21644
21790
|
"type": "integer"
|
|
21645
21791
|
},
|
|
@@ -21677,6 +21823,7 @@
|
|
|
21677
21823
|
},
|
|
21678
21824
|
"solarPanels": {
|
|
21679
21825
|
"baspiRef": "B4.3",
|
|
21826
|
+
"piqRef": "B4.4",
|
|
21680
21827
|
"title": "Solar or photovoltaic panels",
|
|
21681
21828
|
"type": "object",
|
|
21682
21829
|
"properties": {
|
|
@@ -22715,6 +22862,7 @@
|
|
|
22715
22862
|
"yesNo": {
|
|
22716
22863
|
"baspiRef": "B5.2.1",
|
|
22717
22864
|
"ta6Ref": "5.2.1",
|
|
22865
|
+
"piqRef": "B5.2.1",
|
|
22718
22866
|
"type": "string",
|
|
22719
22867
|
"title": "",
|
|
22720
22868
|
"enum": ["Yes", "No"]
|
|
@@ -22897,6 +23045,7 @@
|
|
|
22897
23045
|
"aged17OrOverNames": {
|
|
22898
23046
|
"baspiRef": "B6.2.1",
|
|
22899
23047
|
"ta6Ref": "11.3",
|
|
23048
|
+
"piqRef": "B8.1.1",
|
|
22900
23049
|
"title": "Please provide their full names and ages.",
|
|
22901
23050
|
"type": "string",
|
|
22902
23051
|
"minLength": 1
|
|
@@ -22992,6 +23141,7 @@
|
|
|
22992
23141
|
"yesNo": {
|
|
22993
23142
|
"baspiRef": "B6.3.2.1",
|
|
22994
23143
|
"ta6Ref": "11.5b1",
|
|
23144
|
+
"piqRef": "B8.2.1",
|
|
22995
23145
|
"type": "string",
|
|
22996
23146
|
"title": "",
|
|
22997
23147
|
"enum": ["Yes", "No"]
|
|
@@ -23140,6 +23290,7 @@
|
|
|
23140
23290
|
"yesNo": {
|
|
23141
23291
|
"baspiRef": "B7.2.1",
|
|
23142
23292
|
"ta6Ref": "14.1.1",
|
|
23293
|
+
"piqRef": "B9.1.1",
|
|
23143
23294
|
"type": "string",
|
|
23144
23295
|
"title": "",
|
|
23145
23296
|
"enum": ["Yes", "No"]
|
|
@@ -23223,6 +23374,7 @@
|
|
|
23223
23374
|
"yesNo": {
|
|
23224
23375
|
"baspiRef": "B7.3.1",
|
|
23225
23376
|
"ta6Ref": "14.2.1",
|
|
23377
|
+
"piqRef": "B9.1.2",
|
|
23226
23378
|
"type": "string",
|
|
23227
23379
|
"title": "",
|
|
23228
23380
|
"enum": ["Yes", "No"]
|
|
@@ -31605,31 +31757,9 @@
|
|
|
31605
31757
|
"type": "string",
|
|
31606
31758
|
"enum": [
|
|
31607
31759
|
"Local Land Charges",
|
|
31608
|
-
"
|
|
31609
|
-
"
|
|
31610
|
-
"
|
|
31611
|
-
"Flood",
|
|
31612
|
-
"Contaminated Land",
|
|
31613
|
-
"Coal",
|
|
31614
|
-
"Bath Stone",
|
|
31615
|
-
"Metalliferous (Tin)",
|
|
31616
|
-
"Kaolin & Ball Clay",
|
|
31617
|
-
"Limestone",
|
|
31618
|
-
"Brine",
|
|
31619
|
-
"HS2",
|
|
31620
|
-
"Crossrail",
|
|
31621
|
-
"Energy Exploration",
|
|
31622
|
-
"Wind Farms",
|
|
31623
|
-
"Planning",
|
|
31624
|
-
"Utilities",
|
|
31625
|
-
"Renewable Power Plants",
|
|
31626
|
-
"Solar Farms",
|
|
31627
|
-
"London Underground",
|
|
31628
|
-
"Ground Stability",
|
|
31629
|
-
"Non Coal Mining",
|
|
31630
|
-
"Ground Movement",
|
|
31631
|
-
"Mineral",
|
|
31632
|
-
"Radon"
|
|
31760
|
+
"Local Authority Search",
|
|
31761
|
+
"Drainage and Water Search",
|
|
31762
|
+
"Environmental Risks"
|
|
31633
31763
|
]
|
|
31634
31764
|
}
|
|
31635
31765
|
}
|
|
@@ -31674,31 +31804,9 @@
|
|
|
31674
31804
|
"type": "string",
|
|
31675
31805
|
"enum": [
|
|
31676
31806
|
"Local Land Charges",
|
|
31677
|
-
"
|
|
31678
|
-
"
|
|
31679
|
-
"
|
|
31680
|
-
"Flood",
|
|
31681
|
-
"Contaminated Land",
|
|
31682
|
-
"Coal",
|
|
31683
|
-
"Bath Stone",
|
|
31684
|
-
"Metalliferous (Tin)",
|
|
31685
|
-
"Kaolin & Ball Clay",
|
|
31686
|
-
"Limestone",
|
|
31687
|
-
"Brine",
|
|
31688
|
-
"HS2",
|
|
31689
|
-
"Crossrail",
|
|
31690
|
-
"Energy Exploration",
|
|
31691
|
-
"Wind Farms",
|
|
31692
|
-
"Planning",
|
|
31693
|
-
"Utilities",
|
|
31694
|
-
"Renewable Power Plants",
|
|
31695
|
-
"Solar Farms",
|
|
31696
|
-
"London Underground",
|
|
31697
|
-
"Ground Stability",
|
|
31698
|
-
"Non Coal Mining",
|
|
31699
|
-
"Ground Movement",
|
|
31700
|
-
"Mineral",
|
|
31701
|
-
"Radon"
|
|
31807
|
+
"Local Authority Search",
|
|
31808
|
+
"Drainage and Water Search",
|
|
31809
|
+
"Environmental Risks"
|
|
31702
31810
|
]
|
|
31703
31811
|
}
|
|
31704
31812
|
},
|
|
@@ -31784,7 +31892,7 @@
|
|
|
31784
31892
|
{
|
|
31785
31893
|
"properties": {
|
|
31786
31894
|
"contentType": {
|
|
31787
|
-
"enum": ["
|
|
31895
|
+
"enum": ["Local Authority Search"]
|
|
31788
31896
|
},
|
|
31789
31897
|
"requiredLocalSearches": {
|
|
31790
31898
|
"type": "object",
|
|
@@ -33967,7 +34075,7 @@
|
|
|
33967
34075
|
},
|
|
33968
34076
|
"housing": {
|
|
33969
34077
|
"con29RRef": "3.7(d)",
|
|
33970
|
-
"title": "
|
|
34078
|
+
"title": "housing;",
|
|
33971
34079
|
"type": "object",
|
|
33972
34080
|
"properties": {
|
|
33973
34081
|
"yesNo": {
|
|
@@ -34242,7 +34350,7 @@
|
|
|
34242
34350
|
},
|
|
34243
34351
|
"listedBuildingEnforcementNotice": {
|
|
34244
34352
|
"con29RRef": "3.9(c)",
|
|
34245
|
-
"title": "
|
|
34353
|
+
"title": "a listed building enforcement notice;",
|
|
34246
34354
|
"type": "object",
|
|
34247
34355
|
"properties": {
|
|
34248
34356
|
"yesNo": {
|
|
@@ -35876,7 +35984,7 @@
|
|
|
35876
35984
|
{
|
|
35877
35985
|
"properties": {
|
|
35878
35986
|
"contentType": {
|
|
35879
|
-
"enum": ["Drainage and Water
|
|
35987
|
+
"enum": ["Drainage and Water Search"]
|
|
35880
35988
|
},
|
|
35881
35989
|
"drainageAndWater": {
|
|
35882
35990
|
"type": "object",
|
|
@@ -36574,54 +36682,95 @@
|
|
|
36574
36682
|
{
|
|
36575
36683
|
"properties": {
|
|
36576
36684
|
"contentType": {
|
|
36577
|
-
"enum": [
|
|
36578
|
-
"Flood",
|
|
36579
|
-
"Contaminated Land",
|
|
36580
|
-
"Coal",
|
|
36581
|
-
"Bath Stone",
|
|
36582
|
-
"Metalliferous (Tin)",
|
|
36583
|
-
"Kaolin & Ball Clay",
|
|
36584
|
-
"Limestone",
|
|
36585
|
-
"Brine",
|
|
36586
|
-
"HS2",
|
|
36587
|
-
"Crossrail",
|
|
36588
|
-
"Energy Exploration",
|
|
36589
|
-
"Wind Farms",
|
|
36590
|
-
"Renewable Power Plants",
|
|
36591
|
-
"Solar Farms",
|
|
36592
|
-
"London Underground",
|
|
36593
|
-
"Ground Stability",
|
|
36594
|
-
"Non Coal Mining",
|
|
36595
|
-
"Ground Movement",
|
|
36596
|
-
"Mineral",
|
|
36597
|
-
"Radon",
|
|
36598
|
-
"Other"
|
|
36599
|
-
]
|
|
36685
|
+
"enum": ["Environmental Risks"]
|
|
36600
36686
|
},
|
|
36601
|
-
"
|
|
36602
|
-
"
|
|
36603
|
-
"
|
|
36604
|
-
|
|
36605
|
-
|
|
36606
|
-
|
|
36607
|
-
|
|
36608
|
-
|
|
36609
|
-
|
|
36610
|
-
|
|
36611
|
-
|
|
36612
|
-
|
|
36613
|
-
|
|
36614
|
-
|
|
36615
|
-
|
|
36616
|
-
|
|
36617
|
-
|
|
36618
|
-
|
|
36619
|
-
|
|
36620
|
-
|
|
36621
|
-
|
|
36622
|
-
|
|
36623
|
-
|
|
36624
|
-
|
|
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
|
+
}
|
|
36625
36774
|
}
|
|
36626
36775
|
}
|
|
36627
36776
|
}
|