@pdtf/schemas 3.6.0-31 → 3.6.0-33
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 +52 -33
- package/docs/sef25-extensions-ui-spec.md +258 -49
- package/index.js +9 -0
- package/package.json +1 -1
- package/src/schemas/v3/combined.json +288 -32
- package/src/schemas/v3/compactSkeleton.txt +17 -0
- package/src/schemas/v3/overlays/extensions/as.json +4 -2
- package/src/schemas/v3/overlays/extensions/dk.json +32 -0
- package/src/schemas/v3/overlays/extensions/dr.json +4 -2
- package/src/schemas/v3/overlays/extensions/er.json +4 -2
- package/src/schemas/v3/overlays/extensions/fd.json +6 -3
- package/src/schemas/v3/overlays/extensions/hi.json +6 -3
- package/src/schemas/v3/overlays/extensions/hs.json +4 -2
- package/src/schemas/v3/overlays/extensions/ic.json +59 -0
- package/src/schemas/v3/overlays/extensions/jk.json +4 -2
- package/src/schemas/v3/overlays/extensions/la.json +4 -2
- package/src/schemas/v3/overlays/extensions/lc.json +86 -0
- package/src/schemas/v3/overlays/extensions/ma.json +6 -3
- package/src/schemas/v3/overlays/extensions/mc.json +4 -2
- package/src/schemas/v3/overlays/extensions/mi.json +55 -0
- package/src/schemas/v3/overlays/extensions/nd.json +43 -0
- package/src/schemas/v3/overlays/extensions/oa.json +4 -2
- package/src/schemas/v3/overlays/extensions/oc.json +4 -2
- package/src/schemas/v3/overlays/extensions/pc.json +2 -1
- package/src/schemas/v3/overlays/extensions/rw.json +68 -0
- package/src/schemas/v3/overlays/extensions/sb.json +4 -2
- package/src/schemas/v3/overlays/extensions/sc.json +82 -14
- package/src/schemas/v3/overlays/extensions/sd.json +63 -0
- package/src/schemas/v3/overlays/extensions/sf.json +4 -2
- package/src/schemas/v3/overlays/extensions/sl.json +4 -2
- package/src/schemas/v3/overlays/extensions/tf.json +6 -3
- package/src/schemas/v3/overlays/extensions/tr.json +73 -0
- package/src/schemas/v3/overlays/extensions/wg.json +209 -0
- package/src/schemas/v3/overlays/sef25.json +966 -0
- package/src/schemas/v3/pdtf-transaction.json +256 -94
- package/src/schemas/v3/skeleton.json +23 -1
- package/src/tests/v3/extensionOverlays.test.js +417 -11
- package/src/utils/extractExtensionOverlays.js +121 -0
- package/src/utils/extractOverlay.js +1 -0
|
@@ -1677,6 +1677,45 @@
|
|
|
1677
1677
|
}
|
|
1678
1678
|
]
|
|
1679
1679
|
},
|
|
1680
|
+
"titleRestrictions": {
|
|
1681
|
+
"title": "Are there any known restrictions on the title?",
|
|
1682
|
+
"type": "object",
|
|
1683
|
+
"properties": {
|
|
1684
|
+
"yesNo": {
|
|
1685
|
+
"type": "string",
|
|
1686
|
+
"title": "",
|
|
1687
|
+
"enum": [
|
|
1688
|
+
"Yes",
|
|
1689
|
+
"No"
|
|
1690
|
+
]
|
|
1691
|
+
}
|
|
1692
|
+
},
|
|
1693
|
+
"oneOf": [
|
|
1694
|
+
{
|
|
1695
|
+
"properties": {
|
|
1696
|
+
"yesNo": {
|
|
1697
|
+
"enum": [
|
|
1698
|
+
"No"
|
|
1699
|
+
]
|
|
1700
|
+
}
|
|
1701
|
+
}
|
|
1702
|
+
},
|
|
1703
|
+
{
|
|
1704
|
+
"properties": {
|
|
1705
|
+
"yesNo": {
|
|
1706
|
+
"enum": [
|
|
1707
|
+
"Yes"
|
|
1708
|
+
]
|
|
1709
|
+
},
|
|
1710
|
+
"details": {
|
|
1711
|
+
"title": "Details",
|
|
1712
|
+
"type": "string",
|
|
1713
|
+
"minLength": 1
|
|
1714
|
+
}
|
|
1715
|
+
}
|
|
1716
|
+
}
|
|
1717
|
+
]
|
|
1718
|
+
},
|
|
1680
1719
|
"wholeFreeholdForSale": {
|
|
1681
1720
|
"title": "Is the entire freehold being sold?",
|
|
1682
1721
|
"type": "object",
|
|
@@ -8375,25 +8414,18 @@
|
|
|
8375
8414
|
]
|
|
8376
8415
|
},
|
|
8377
8416
|
"costOfPermit": {
|
|
8378
|
-
"sef25Ref": "P1.1",
|
|
8379
8417
|
"title": "Cost of permit (£)",
|
|
8380
8418
|
"type": "number"
|
|
8381
8419
|
},
|
|
8382
8420
|
"costOfPermitFrequency": {
|
|
8383
|
-
"sef25Ref": "P1.2",
|
|
8384
8421
|
"title": "Payment frequency",
|
|
8385
8422
|
"type": "string",
|
|
8386
8423
|
"enum": [
|
|
8387
8424
|
"Per month",
|
|
8388
|
-
"Per year"
|
|
8389
|
-
"Not applicable"
|
|
8425
|
+
"Per year"
|
|
8390
8426
|
]
|
|
8391
8427
|
}
|
|
8392
|
-
}
|
|
8393
|
-
"sef25Required": [
|
|
8394
|
-
"costOfPermit",
|
|
8395
|
-
"costOfPermitFrequency"
|
|
8396
|
-
]
|
|
8428
|
+
}
|
|
8397
8429
|
}
|
|
8398
8430
|
]
|
|
8399
8431
|
},
|
|
@@ -8436,6 +8468,20 @@
|
|
|
8436
8468
|
}
|
|
8437
8469
|
]
|
|
8438
8470
|
},
|
|
8471
|
+
"droppedKerbAccess": {
|
|
8472
|
+
"title": "Is there a dropped kerb access to parking?",
|
|
8473
|
+
"type": "object",
|
|
8474
|
+
"properties": {
|
|
8475
|
+
"yesNo": {
|
|
8476
|
+
"type": "string",
|
|
8477
|
+
"title": "",
|
|
8478
|
+
"enum": [
|
|
8479
|
+
"Yes",
|
|
8480
|
+
"No"
|
|
8481
|
+
]
|
|
8482
|
+
}
|
|
8483
|
+
}
|
|
8484
|
+
},
|
|
8439
8485
|
"electricVehicleChargingPoint": {
|
|
8440
8486
|
"title": "Is there an electric vehicle charging point belonging to the property?",
|
|
8441
8487
|
"type": "object",
|
|
@@ -12440,12 +12486,6 @@
|
|
|
12440
12486
|
"specialistIssues": {
|
|
12441
12487
|
"title": "Specialist Issues",
|
|
12442
12488
|
"type": "object",
|
|
12443
|
-
"sef25Required": [
|
|
12444
|
-
"wellsDitchesShaft",
|
|
12445
|
-
"damagedOrExposedElectrics",
|
|
12446
|
-
"damageToFlooringOrStaircases",
|
|
12447
|
-
"knownAreasInPoorCondition"
|
|
12448
|
-
],
|
|
12449
12489
|
"properties": {
|
|
12450
12490
|
"dryRotEtcTreatment": {
|
|
12451
12491
|
"title": "To your knowledge, has there been any preventative work for, or treatment of dry rot, wet rot or damp carried out at the property?",
|
|
@@ -12754,15 +12794,10 @@
|
|
|
12754
12794
|
]
|
|
12755
12795
|
},
|
|
12756
12796
|
"wellsDitchesShaft": {
|
|
12757
|
-
"sef25Ref": "H1.1",
|
|
12758
12797
|
"title": "Are there any wells, ditches, or shafts at the property?",
|
|
12759
12798
|
"type": "object",
|
|
12760
|
-
"sef25Required": [
|
|
12761
|
-
"yesNo"
|
|
12762
|
-
],
|
|
12763
12799
|
"properties": {
|
|
12764
12800
|
"yesNo": {
|
|
12765
|
-
"sef25Ref": "H1.1.1",
|
|
12766
12801
|
"type": "string",
|
|
12767
12802
|
"title": "",
|
|
12768
12803
|
"enum": [
|
|
@@ -12782,9 +12817,6 @@
|
|
|
12782
12817
|
}
|
|
12783
12818
|
},
|
|
12784
12819
|
{
|
|
12785
|
-
"sef25Required": [
|
|
12786
|
-
"details"
|
|
12787
|
-
],
|
|
12788
12820
|
"properties": {
|
|
12789
12821
|
"yesNo": {
|
|
12790
12822
|
"enum": [
|
|
@@ -12792,7 +12824,6 @@
|
|
|
12792
12824
|
]
|
|
12793
12825
|
},
|
|
12794
12826
|
"details": {
|
|
12795
|
-
"sef25Ref": "H1.1.2",
|
|
12796
12827
|
"title": "Give details",
|
|
12797
12828
|
"type": "string",
|
|
12798
12829
|
"minLength": 1
|
|
@@ -12802,15 +12833,10 @@
|
|
|
12802
12833
|
]
|
|
12803
12834
|
},
|
|
12804
12835
|
"damagedOrExposedElectrics": {
|
|
12805
|
-
"sef25Ref": "H1.2",
|
|
12806
12836
|
"title": "Are there any damaged or exposed electrics at the property?",
|
|
12807
12837
|
"type": "object",
|
|
12808
|
-
"sef25Required": [
|
|
12809
|
-
"yesNo"
|
|
12810
|
-
],
|
|
12811
12838
|
"properties": {
|
|
12812
12839
|
"yesNo": {
|
|
12813
|
-
"sef25Ref": "H1.2.1",
|
|
12814
12840
|
"type": "string",
|
|
12815
12841
|
"title": "",
|
|
12816
12842
|
"enum": [
|
|
@@ -12830,9 +12856,6 @@
|
|
|
12830
12856
|
}
|
|
12831
12857
|
},
|
|
12832
12858
|
{
|
|
12833
|
-
"sef25Required": [
|
|
12834
|
-
"details"
|
|
12835
|
-
],
|
|
12836
12859
|
"properties": {
|
|
12837
12860
|
"yesNo": {
|
|
12838
12861
|
"enum": [
|
|
@@ -12840,7 +12863,6 @@
|
|
|
12840
12863
|
]
|
|
12841
12864
|
},
|
|
12842
12865
|
"details": {
|
|
12843
|
-
"sef25Ref": "H1.2.2",
|
|
12844
12866
|
"title": "Give details",
|
|
12845
12867
|
"type": "string",
|
|
12846
12868
|
"minLength": 1
|
|
@@ -12850,15 +12872,10 @@
|
|
|
12850
12872
|
]
|
|
12851
12873
|
},
|
|
12852
12874
|
"damageToFlooringOrStaircases": {
|
|
12853
|
-
"sef25Ref": "H1.3",
|
|
12854
12875
|
"title": "Is there any damage to flooring and/or staircases?",
|
|
12855
12876
|
"type": "object",
|
|
12856
|
-
"sef25Required": [
|
|
12857
|
-
"yesNo"
|
|
12858
|
-
],
|
|
12859
12877
|
"properties": {
|
|
12860
12878
|
"yesNo": {
|
|
12861
|
-
"sef25Ref": "H1.3.1",
|
|
12862
12879
|
"type": "string",
|
|
12863
12880
|
"title": "",
|
|
12864
12881
|
"enum": [
|
|
@@ -12878,9 +12895,6 @@
|
|
|
12878
12895
|
}
|
|
12879
12896
|
},
|
|
12880
12897
|
{
|
|
12881
|
-
"sef25Required": [
|
|
12882
|
-
"details"
|
|
12883
|
-
],
|
|
12884
12898
|
"properties": {
|
|
12885
12899
|
"yesNo": {
|
|
12886
12900
|
"enum": [
|
|
@@ -12888,7 +12902,6 @@
|
|
|
12888
12902
|
]
|
|
12889
12903
|
},
|
|
12890
12904
|
"details": {
|
|
12891
|
-
"sef25Ref": "H1.3.2",
|
|
12892
12905
|
"title": "Give details",
|
|
12893
12906
|
"type": "string",
|
|
12894
12907
|
"minLength": 1
|
|
@@ -12898,15 +12911,10 @@
|
|
|
12898
12911
|
]
|
|
12899
12912
|
},
|
|
12900
12913
|
"knownAreasInPoorCondition": {
|
|
12901
|
-
"sef25Ref": "H1.4",
|
|
12902
12914
|
"title": "Are there any known areas in poor condition (internal or external)?",
|
|
12903
12915
|
"type": "object",
|
|
12904
|
-
"sef25Required": [
|
|
12905
|
-
"yesNo"
|
|
12906
|
-
],
|
|
12907
12916
|
"properties": {
|
|
12908
12917
|
"yesNo": {
|
|
12909
|
-
"sef25Ref": "H1.4.1",
|
|
12910
12918
|
"type": "string",
|
|
12911
12919
|
"title": "",
|
|
12912
12920
|
"enum": [
|
|
@@ -12926,9 +12934,6 @@
|
|
|
12926
12934
|
}
|
|
12927
12935
|
},
|
|
12928
12936
|
{
|
|
12929
|
-
"sef25Required": [
|
|
12930
|
-
"details"
|
|
12931
|
-
],
|
|
12932
12937
|
"properties": {
|
|
12933
12938
|
"yesNo": {
|
|
12934
12939
|
"enum": [
|
|
@@ -12936,7 +12941,6 @@
|
|
|
12936
12941
|
]
|
|
12937
12942
|
},
|
|
12938
12943
|
"details": {
|
|
12939
|
-
"sef25Ref": "H1.4.2",
|
|
12940
12944
|
"title": "Give details",
|
|
12941
12945
|
"type": "string",
|
|
12942
12946
|
"minLength": 1
|
|
@@ -18057,6 +18061,52 @@
|
|
|
18057
18061
|
"Attached",
|
|
18058
18062
|
"To follow"
|
|
18059
18063
|
]
|
|
18064
|
+
},
|
|
18065
|
+
"associatedCost": {
|
|
18066
|
+
"title": "Associated costs of leased solar panels",
|
|
18067
|
+
"type": "object",
|
|
18068
|
+
"properties": {
|
|
18069
|
+
"hasCost": {
|
|
18070
|
+
"title": "Are there any associated costs?",
|
|
18071
|
+
"type": "string",
|
|
18072
|
+
"enum": [
|
|
18073
|
+
"Yes",
|
|
18074
|
+
"No"
|
|
18075
|
+
]
|
|
18076
|
+
}
|
|
18077
|
+
},
|
|
18078
|
+
"oneOf": [
|
|
18079
|
+
{
|
|
18080
|
+
"properties": {
|
|
18081
|
+
"hasCost": {
|
|
18082
|
+
"enum": [
|
|
18083
|
+
"No"
|
|
18084
|
+
]
|
|
18085
|
+
}
|
|
18086
|
+
}
|
|
18087
|
+
},
|
|
18088
|
+
{
|
|
18089
|
+
"properties": {
|
|
18090
|
+
"hasCost": {
|
|
18091
|
+
"enum": [
|
|
18092
|
+
"Yes"
|
|
18093
|
+
]
|
|
18094
|
+
},
|
|
18095
|
+
"amount": {
|
|
18096
|
+
"title": "Amount (£)",
|
|
18097
|
+
"type": "number"
|
|
18098
|
+
},
|
|
18099
|
+
"frequency": {
|
|
18100
|
+
"title": "Payment frequency",
|
|
18101
|
+
"type": "string",
|
|
18102
|
+
"enum": [
|
|
18103
|
+
"Per month",
|
|
18104
|
+
"Per year"
|
|
18105
|
+
]
|
|
18106
|
+
}
|
|
18107
|
+
}
|
|
18108
|
+
}
|
|
18109
|
+
]
|
|
18060
18110
|
}
|
|
18061
18111
|
}
|
|
18062
18112
|
}
|
|
@@ -18604,35 +18654,52 @@
|
|
|
18604
18654
|
"minLength": 1
|
|
18605
18655
|
},
|
|
18606
18656
|
"associatedCost": {
|
|
18607
|
-
"
|
|
18608
|
-
"title": "Please provide the associated costs for water supply",
|
|
18657
|
+
"title": "Associated costs for water supply",
|
|
18609
18658
|
"type": "object",
|
|
18610
|
-
"sef25Required": [
|
|
18611
|
-
"amount",
|
|
18612
|
-
"frequency"
|
|
18613
|
-
],
|
|
18614
18659
|
"properties": {
|
|
18615
|
-
"
|
|
18616
|
-
"
|
|
18617
|
-
"title": "Associated costs of supply if any (£)",
|
|
18618
|
-
"type": "number"
|
|
18619
|
-
},
|
|
18620
|
-
"frequency": {
|
|
18621
|
-
"sef25Ref": "U1.1.2",
|
|
18622
|
-
"title": "Payment frequency if costs are associated",
|
|
18660
|
+
"hasCost": {
|
|
18661
|
+
"title": "Are there any associated costs?",
|
|
18623
18662
|
"type": "string",
|
|
18624
18663
|
"enum": [
|
|
18625
|
-
"
|
|
18626
|
-
"
|
|
18627
|
-
"Not applicable"
|
|
18664
|
+
"Yes",
|
|
18665
|
+
"No"
|
|
18628
18666
|
]
|
|
18629
18667
|
}
|
|
18630
|
-
}
|
|
18668
|
+
},
|
|
18669
|
+
"oneOf": [
|
|
18670
|
+
{
|
|
18671
|
+
"properties": {
|
|
18672
|
+
"hasCost": {
|
|
18673
|
+
"enum": [
|
|
18674
|
+
"No"
|
|
18675
|
+
]
|
|
18676
|
+
}
|
|
18677
|
+
}
|
|
18678
|
+
},
|
|
18679
|
+
{
|
|
18680
|
+
"properties": {
|
|
18681
|
+
"hasCost": {
|
|
18682
|
+
"enum": [
|
|
18683
|
+
"Yes"
|
|
18684
|
+
]
|
|
18685
|
+
},
|
|
18686
|
+
"amount": {
|
|
18687
|
+
"title": "Amount (£)",
|
|
18688
|
+
"type": "number"
|
|
18689
|
+
},
|
|
18690
|
+
"frequency": {
|
|
18691
|
+
"title": "Payment frequency",
|
|
18692
|
+
"type": "string",
|
|
18693
|
+
"enum": [
|
|
18694
|
+
"Per month",
|
|
18695
|
+
"Per year"
|
|
18696
|
+
]
|
|
18697
|
+
}
|
|
18698
|
+
}
|
|
18699
|
+
}
|
|
18700
|
+
]
|
|
18631
18701
|
}
|
|
18632
|
-
}
|
|
18633
|
-
"sef25Required": [
|
|
18634
|
-
"associatedCost"
|
|
18635
|
-
]
|
|
18702
|
+
}
|
|
18636
18703
|
},
|
|
18637
18704
|
{
|
|
18638
18705
|
"properties": {
|
|
@@ -19346,35 +19413,52 @@
|
|
|
19346
19413
|
]
|
|
19347
19414
|
},
|
|
19348
19415
|
"associatedCost": {
|
|
19349
|
-
"sef25Ref": "U1.2",
|
|
19350
19416
|
"title": "Associated costs for sewerage",
|
|
19351
19417
|
"type": "object",
|
|
19352
|
-
"sef25Required": [
|
|
19353
|
-
"amount",
|
|
19354
|
-
"frequency"
|
|
19355
|
-
],
|
|
19356
19418
|
"properties": {
|
|
19357
|
-
"
|
|
19358
|
-
"
|
|
19359
|
-
"title": "Associated costs for sewerage if any (£)",
|
|
19360
|
-
"type": "number"
|
|
19361
|
-
},
|
|
19362
|
-
"frequency": {
|
|
19363
|
-
"sef25Ref": "U1.2.2",
|
|
19364
|
-
"title": "Payment frequency if costs are associated",
|
|
19419
|
+
"hasCost": {
|
|
19420
|
+
"title": "Are there any associated costs?",
|
|
19365
19421
|
"type": "string",
|
|
19366
19422
|
"enum": [
|
|
19367
|
-
"
|
|
19368
|
-
"
|
|
19369
|
-
"Not applicable"
|
|
19423
|
+
"Yes",
|
|
19424
|
+
"No"
|
|
19370
19425
|
]
|
|
19371
19426
|
}
|
|
19372
|
-
}
|
|
19427
|
+
},
|
|
19428
|
+
"oneOf": [
|
|
19429
|
+
{
|
|
19430
|
+
"properties": {
|
|
19431
|
+
"hasCost": {
|
|
19432
|
+
"enum": [
|
|
19433
|
+
"No"
|
|
19434
|
+
]
|
|
19435
|
+
}
|
|
19436
|
+
}
|
|
19437
|
+
},
|
|
19438
|
+
{
|
|
19439
|
+
"properties": {
|
|
19440
|
+
"hasCost": {
|
|
19441
|
+
"enum": [
|
|
19442
|
+
"Yes"
|
|
19443
|
+
]
|
|
19444
|
+
},
|
|
19445
|
+
"amount": {
|
|
19446
|
+
"title": "Amount (£)",
|
|
19447
|
+
"type": "number"
|
|
19448
|
+
},
|
|
19449
|
+
"frequency": {
|
|
19450
|
+
"title": "Payment frequency",
|
|
19451
|
+
"type": "string",
|
|
19452
|
+
"enum": [
|
|
19453
|
+
"Per month",
|
|
19454
|
+
"Per year"
|
|
19455
|
+
]
|
|
19456
|
+
}
|
|
19457
|
+
}
|
|
19458
|
+
}
|
|
19459
|
+
]
|
|
19373
19460
|
}
|
|
19374
|
-
}
|
|
19375
|
-
"sef25Required": [
|
|
19376
|
-
"associatedCost"
|
|
19377
|
-
]
|
|
19461
|
+
}
|
|
19378
19462
|
}
|
|
19379
19463
|
]
|
|
19380
19464
|
},
|
|
@@ -21020,6 +21104,45 @@
|
|
|
21020
21104
|
}
|
|
21021
21105
|
]
|
|
21022
21106
|
},
|
|
21107
|
+
"privateRightOfWay": {
|
|
21108
|
+
"title": "A private right of way through and/or across your house, buildings or land",
|
|
21109
|
+
"type": "object",
|
|
21110
|
+
"properties": {
|
|
21111
|
+
"yesNo": {
|
|
21112
|
+
"type": "string",
|
|
21113
|
+
"title": "",
|
|
21114
|
+
"enum": [
|
|
21115
|
+
"Yes",
|
|
21116
|
+
"No"
|
|
21117
|
+
]
|
|
21118
|
+
}
|
|
21119
|
+
},
|
|
21120
|
+
"oneOf": [
|
|
21121
|
+
{
|
|
21122
|
+
"properties": {
|
|
21123
|
+
"yesNo": {
|
|
21124
|
+
"enum": [
|
|
21125
|
+
"No"
|
|
21126
|
+
]
|
|
21127
|
+
}
|
|
21128
|
+
}
|
|
21129
|
+
},
|
|
21130
|
+
{
|
|
21131
|
+
"properties": {
|
|
21132
|
+
"yesNo": {
|
|
21133
|
+
"enum": [
|
|
21134
|
+
"Yes"
|
|
21135
|
+
]
|
|
21136
|
+
},
|
|
21137
|
+
"details": {
|
|
21138
|
+
"title": "Please provide details",
|
|
21139
|
+
"type": "string",
|
|
21140
|
+
"minLength": 1
|
|
21141
|
+
}
|
|
21142
|
+
}
|
|
21143
|
+
}
|
|
21144
|
+
]
|
|
21145
|
+
},
|
|
21023
21146
|
"rightsOfLight": {
|
|
21024
21147
|
"title": "Rights of light",
|
|
21025
21148
|
"type": "object",
|
|
@@ -21668,6 +21791,45 @@
|
|
|
21668
21791
|
}
|
|
21669
21792
|
}
|
|
21670
21793
|
},
|
|
21794
|
+
"stormFireFloodDamage": {
|
|
21795
|
+
"title": "Has the property ever suffered storm, fire or flood damage?",
|
|
21796
|
+
"type": "object",
|
|
21797
|
+
"properties": {
|
|
21798
|
+
"yesNo": {
|
|
21799
|
+
"type": "string",
|
|
21800
|
+
"title": "",
|
|
21801
|
+
"enum": [
|
|
21802
|
+
"Yes",
|
|
21803
|
+
"No"
|
|
21804
|
+
]
|
|
21805
|
+
}
|
|
21806
|
+
},
|
|
21807
|
+
"oneOf": [
|
|
21808
|
+
{
|
|
21809
|
+
"properties": {
|
|
21810
|
+
"yesNo": {
|
|
21811
|
+
"enum": [
|
|
21812
|
+
"No"
|
|
21813
|
+
]
|
|
21814
|
+
}
|
|
21815
|
+
}
|
|
21816
|
+
},
|
|
21817
|
+
{
|
|
21818
|
+
"properties": {
|
|
21819
|
+
"yesNo": {
|
|
21820
|
+
"enum": [
|
|
21821
|
+
"Yes"
|
|
21822
|
+
]
|
|
21823
|
+
},
|
|
21824
|
+
"details": {
|
|
21825
|
+
"title": "Please provide details",
|
|
21826
|
+
"type": "string",
|
|
21827
|
+
"minLength": 1
|
|
21828
|
+
}
|
|
21829
|
+
}
|
|
21830
|
+
}
|
|
21831
|
+
]
|
|
21832
|
+
},
|
|
21671
21833
|
"radon": {
|
|
21672
21834
|
"title": "Radon",
|
|
21673
21835
|
"type": "object",
|
|
@@ -289,6 +289,10 @@
|
|
|
289
289
|
"details": "string",
|
|
290
290
|
"amount": "number"
|
|
291
291
|
},
|
|
292
|
+
"titleRestrictions": {
|
|
293
|
+
"yesNo": "variant",
|
|
294
|
+
"details": "string"
|
|
295
|
+
},
|
|
292
296
|
"wholeFreeholdForSale": {
|
|
293
297
|
"yesNo": "variant",
|
|
294
298
|
"details": "string"
|
|
@@ -1229,6 +1233,9 @@
|
|
|
1229
1233
|
"yesNo": "variant",
|
|
1230
1234
|
"details": "string"
|
|
1231
1235
|
},
|
|
1236
|
+
"droppedKerbAccess": {
|
|
1237
|
+
"yesNo": "string"
|
|
1238
|
+
},
|
|
1232
1239
|
"electricVehicleChargingPoint": {
|
|
1233
1240
|
"yesNo": "variant",
|
|
1234
1241
|
"chargerDetails": "string",
|
|
@@ -2386,7 +2393,12 @@
|
|
|
2386
2393
|
"panelsOwnedOutright": {
|
|
2387
2394
|
"yesNo": "variant",
|
|
2388
2395
|
"details": "string",
|
|
2389
|
-
"attachments": "string"
|
|
2396
|
+
"attachments": "string",
|
|
2397
|
+
"associatedCost": {
|
|
2398
|
+
"hasCost": "variant",
|
|
2399
|
+
"amount": "number",
|
|
2400
|
+
"frequency": "string"
|
|
2401
|
+
}
|
|
2390
2402
|
},
|
|
2391
2403
|
"panelProviderLease": {
|
|
2392
2404
|
"yesNo": "variant",
|
|
@@ -2449,6 +2461,7 @@
|
|
|
2449
2461
|
"yesNo": "variant",
|
|
2450
2462
|
"details": "string",
|
|
2451
2463
|
"associatedCost": {
|
|
2464
|
+
"hasCost": "variant",
|
|
2452
2465
|
"amount": "number",
|
|
2453
2466
|
"frequency": "string"
|
|
2454
2467
|
},
|
|
@@ -2523,6 +2536,7 @@
|
|
|
2523
2536
|
"details": "string"
|
|
2524
2537
|
},
|
|
2525
2538
|
"associatedCost": {
|
|
2539
|
+
"hasCost": "variant",
|
|
2526
2540
|
"amount": "number",
|
|
2527
2541
|
"frequency": "string"
|
|
2528
2542
|
}
|
|
@@ -2736,6 +2750,10 @@
|
|
|
2736
2750
|
"details": "string",
|
|
2737
2751
|
"attachments": "string"
|
|
2738
2752
|
},
|
|
2753
|
+
"privateRightOfWay": {
|
|
2754
|
+
"yesNo": "variant",
|
|
2755
|
+
"details": "string"
|
|
2756
|
+
},
|
|
2739
2757
|
"rightsOfLight": {
|
|
2740
2758
|
"yesNo": "variant",
|
|
2741
2759
|
"details": "string"
|
|
@@ -2815,6 +2833,10 @@
|
|
|
2815
2833
|
"details": "string"
|
|
2816
2834
|
}
|
|
2817
2835
|
},
|
|
2836
|
+
"stormFireFloodDamage": {
|
|
2837
|
+
"yesNo": "variant",
|
|
2838
|
+
"details": "string"
|
|
2839
|
+
},
|
|
2818
2840
|
"radon": {
|
|
2819
2841
|
"radonRisk": {
|
|
2820
2842
|
"riskIndicator": "string",
|