@pdtf/schemas 3.6.0-4 → 3.6.0-41
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/.claude/plans/not-seeing-associated-costs.md +99 -0
- package/.claude/settings.local.json +22 -3
- package/README.md +52 -33
- package/docs/sef25-extensions-ui-spec.md +355 -0
- package/index.js +130 -66
- package/package.json +4 -2
- package/src/examples/v3/exampleTransaction.json +3 -3
- package/src/schemas/v3/combined.json +7651 -1672
- package/src/schemas/v3/compactSkeleton.txt +365 -14
- package/src/schemas/v3/overlays/baspi4.json +163 -18
- package/src/schemas/v3/overlays/baspi5.json +168 -20
- 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 +9 -9
- 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 +28 -8
- package/src/schemas/v3/overlays/extensions/la.json +4 -2
- package/src/schemas/v3/overlays/extensions/lc.json +75 -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 +69 -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 +37 -0
- package/src/schemas/v3/overlays/extensions/ph.json +194 -0
- 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 +129 -0
- 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 +350 -0
- package/src/schemas/v3/overlays/fme1.json +16 -14
- package/src/schemas/v3/overlays/lpe1.json +60 -30
- package/src/schemas/v3/overlays/nts.json +68 -1
- package/src/schemas/v3/overlays/nts2.json +68 -4
- package/src/schemas/v3/overlays/ntsl.json +68 -1
- package/src/schemas/v3/overlays/ntsl2.json +68 -4
- package/src/schemas/v3/overlays/piq.json +38 -1
- package/src/schemas/v3/overlays/rds.json +118 -6
- package/src/schemas/v3/overlays/sef25.json +1067 -0
- package/src/schemas/v3/overlays/ta6.json +46 -16
- package/src/schemas/v3/overlays/ta6ed6.json +6498 -0
- package/src/schemas/v3/overlays/ta7.json +70 -6
- package/src/schemas/v3/overlays/ta7ed5.json +1539 -0
- package/src/schemas/v3/pdtf-transaction.json +4361 -676
- package/src/schemas/v3/skeleton.json +505 -36
- package/src/tests/v3/buyerCircumstances.test.js +543 -0
- package/src/tests/v3/extensionOverlays.test.js +911 -0
- package/src/tests/v3/offers.test.js +37 -40
- package/src/tests/v3/patternProperties.test.js +149 -30
- package/src/tests/v3/ta6ed6.test.js +2317 -0
- package/src/tests/v3/ta7ed5.test.js +567 -0
- package/src/tests/v3/transactionSchema.test.js +31 -0
- package/src/utils/extractExtensionOverlays.js +216 -31
- package/src/utils/extractOverlay.js +88 -23
- package/src/utils/pathSkeleton.js +1 -1
|
@@ -787,6 +787,29 @@
|
|
|
787
787
|
},
|
|
788
788
|
"electricVehicleChargingPoint": {
|
|
789
789
|
"nts2Ref": "B4.4",
|
|
790
|
+
"discriminator": {
|
|
791
|
+
"propertyName": "yesNo"
|
|
792
|
+
},
|
|
793
|
+
"oneOf": [
|
|
794
|
+
{
|
|
795
|
+
"properties": {
|
|
796
|
+
"yesNo": {
|
|
797
|
+
"enum": [
|
|
798
|
+
"No"
|
|
799
|
+
]
|
|
800
|
+
}
|
|
801
|
+
}
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"properties": {
|
|
805
|
+
"yesNo": {
|
|
806
|
+
"enum": [
|
|
807
|
+
"Yes"
|
|
808
|
+
]
|
|
809
|
+
}
|
|
810
|
+
}
|
|
811
|
+
}
|
|
812
|
+
],
|
|
790
813
|
"required": [
|
|
791
814
|
"yesNo"
|
|
792
815
|
],
|
|
@@ -1378,9 +1401,6 @@
|
|
|
1378
1401
|
},
|
|
1379
1402
|
"details": {
|
|
1380
1403
|
"nts2Ref": "A5.1.2"
|
|
1381
|
-
},
|
|
1382
|
-
"attachments": {
|
|
1383
|
-
"nts2Ref": "A5.1.3"
|
|
1384
1404
|
}
|
|
1385
1405
|
},
|
|
1386
1406
|
"required": [
|
|
@@ -2221,7 +2241,25 @@
|
|
|
2221
2241
|
}
|
|
2222
2242
|
},
|
|
2223
2243
|
"otherHeatingFeatures": {
|
|
2224
|
-
"nts2Ref": "B3.4.2"
|
|
2244
|
+
"nts2Ref": "B3.4.2",
|
|
2245
|
+
"items": {
|
|
2246
|
+
"enum": [
|
|
2247
|
+
"None",
|
|
2248
|
+
"Air conditioning",
|
|
2249
|
+
"Double glazing",
|
|
2250
|
+
"Triple glazing",
|
|
2251
|
+
"Night storage",
|
|
2252
|
+
"Solar water",
|
|
2253
|
+
"Underfloor heating",
|
|
2254
|
+
"Wood burner",
|
|
2255
|
+
"Aga/Rayburn",
|
|
2256
|
+
"Open fire",
|
|
2257
|
+
"Ground source heat pump",
|
|
2258
|
+
"Air source heat pump",
|
|
2259
|
+
"Solar thermal",
|
|
2260
|
+
"Passive House design"
|
|
2261
|
+
]
|
|
2262
|
+
}
|
|
2225
2263
|
}
|
|
2226
2264
|
}
|
|
2227
2265
|
},
|
|
@@ -2253,6 +2291,32 @@
|
|
|
2253
2291
|
},
|
|
2254
2292
|
"broadband": {
|
|
2255
2293
|
"nts2Ref": "B3.5",
|
|
2294
|
+
"discriminator": {
|
|
2295
|
+
"propertyName": "typeOfConnection"
|
|
2296
|
+
},
|
|
2297
|
+
"oneOf": [
|
|
2298
|
+
{
|
|
2299
|
+
"properties": {
|
|
2300
|
+
"typeOfConnection": {
|
|
2301
|
+
"enum": [
|
|
2302
|
+
"None"
|
|
2303
|
+
]
|
|
2304
|
+
}
|
|
2305
|
+
}
|
|
2306
|
+
},
|
|
2307
|
+
{
|
|
2308
|
+
"properties": {
|
|
2309
|
+
"typeOfConnection": {
|
|
2310
|
+
"enum": [
|
|
2311
|
+
"ADSL copper wire",
|
|
2312
|
+
"Cable",
|
|
2313
|
+
"FTTC (Fibre to the Cabinet)",
|
|
2314
|
+
"FTTP (Fibre to the Premises)"
|
|
2315
|
+
]
|
|
2316
|
+
}
|
|
2317
|
+
}
|
|
2318
|
+
}
|
|
2319
|
+
],
|
|
2256
2320
|
"required": [
|
|
2257
2321
|
"typeOfConnection"
|
|
2258
2322
|
],
|
|
@@ -292,6 +292,29 @@
|
|
|
292
292
|
},
|
|
293
293
|
"electricVehicleChargingPoint": {
|
|
294
294
|
"ntslRef": "B4.4",
|
|
295
|
+
"discriminator": {
|
|
296
|
+
"propertyName": "yesNo"
|
|
297
|
+
},
|
|
298
|
+
"oneOf": [
|
|
299
|
+
{
|
|
300
|
+
"properties": {
|
|
301
|
+
"yesNo": {
|
|
302
|
+
"enum": [
|
|
303
|
+
"No"
|
|
304
|
+
]
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"properties": {
|
|
310
|
+
"yesNo": {
|
|
311
|
+
"enum": [
|
|
312
|
+
"Yes"
|
|
313
|
+
]
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
}
|
|
317
|
+
],
|
|
295
318
|
"required": [
|
|
296
319
|
"yesNo"
|
|
297
320
|
],
|
|
@@ -1374,7 +1397,25 @@
|
|
|
1374
1397
|
}
|
|
1375
1398
|
},
|
|
1376
1399
|
"otherHeatingFeatures": {
|
|
1377
|
-
"ntslRef": "B3.4.2"
|
|
1400
|
+
"ntslRef": "B3.4.2",
|
|
1401
|
+
"items": {
|
|
1402
|
+
"enum": [
|
|
1403
|
+
"None",
|
|
1404
|
+
"Air conditioning",
|
|
1405
|
+
"Double glazing",
|
|
1406
|
+
"Triple glazing",
|
|
1407
|
+
"Night storage",
|
|
1408
|
+
"Solar water",
|
|
1409
|
+
"Underfloor heating",
|
|
1410
|
+
"Wood burner",
|
|
1411
|
+
"Aga/Rayburn",
|
|
1412
|
+
"Open fire",
|
|
1413
|
+
"Ground source heat pump",
|
|
1414
|
+
"Air source heat pump",
|
|
1415
|
+
"Solar thermal",
|
|
1416
|
+
"Passive House design"
|
|
1417
|
+
]
|
|
1418
|
+
}
|
|
1378
1419
|
}
|
|
1379
1420
|
}
|
|
1380
1421
|
},
|
|
@@ -1406,6 +1447,32 @@
|
|
|
1406
1447
|
},
|
|
1407
1448
|
"broadband": {
|
|
1408
1449
|
"ntslRef": "B3.5",
|
|
1450
|
+
"discriminator": {
|
|
1451
|
+
"propertyName": "typeOfConnection"
|
|
1452
|
+
},
|
|
1453
|
+
"oneOf": [
|
|
1454
|
+
{
|
|
1455
|
+
"properties": {
|
|
1456
|
+
"typeOfConnection": {
|
|
1457
|
+
"enum": [
|
|
1458
|
+
"None"
|
|
1459
|
+
]
|
|
1460
|
+
}
|
|
1461
|
+
}
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
"properties": {
|
|
1465
|
+
"typeOfConnection": {
|
|
1466
|
+
"enum": [
|
|
1467
|
+
"ADSL copper wire",
|
|
1468
|
+
"Cable",
|
|
1469
|
+
"FTTC (Fibre to the Cabinet)",
|
|
1470
|
+
"FTTP (Fibre to the Premises)"
|
|
1471
|
+
]
|
|
1472
|
+
}
|
|
1473
|
+
}
|
|
1474
|
+
}
|
|
1475
|
+
],
|
|
1409
1476
|
"required": [
|
|
1410
1477
|
"typeOfConnection"
|
|
1411
1478
|
],
|
|
@@ -313,6 +313,29 @@
|
|
|
313
313
|
},
|
|
314
314
|
"electricVehicleChargingPoint": {
|
|
315
315
|
"ntsl2Ref": "B4.4",
|
|
316
|
+
"discriminator": {
|
|
317
|
+
"propertyName": "yesNo"
|
|
318
|
+
},
|
|
319
|
+
"oneOf": [
|
|
320
|
+
{
|
|
321
|
+
"properties": {
|
|
322
|
+
"yesNo": {
|
|
323
|
+
"enum": [
|
|
324
|
+
"No"
|
|
325
|
+
]
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"properties": {
|
|
331
|
+
"yesNo": {
|
|
332
|
+
"enum": [
|
|
333
|
+
"Yes"
|
|
334
|
+
]
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
],
|
|
316
339
|
"required": [
|
|
317
340
|
"yesNo"
|
|
318
341
|
],
|
|
@@ -897,9 +920,6 @@
|
|
|
897
920
|
},
|
|
898
921
|
"details": {
|
|
899
922
|
"ntsl2Ref": "A5.1.2"
|
|
900
|
-
},
|
|
901
|
-
"attachments": {
|
|
902
|
-
"ntsl2Ref": "A5.1.3"
|
|
903
923
|
}
|
|
904
924
|
},
|
|
905
925
|
"required": [
|
|
@@ -1740,7 +1760,25 @@
|
|
|
1740
1760
|
}
|
|
1741
1761
|
},
|
|
1742
1762
|
"otherHeatingFeatures": {
|
|
1743
|
-
"ntsl2Ref": "B3.4.2"
|
|
1763
|
+
"ntsl2Ref": "B3.4.2",
|
|
1764
|
+
"items": {
|
|
1765
|
+
"enum": [
|
|
1766
|
+
"None",
|
|
1767
|
+
"Air conditioning",
|
|
1768
|
+
"Double glazing",
|
|
1769
|
+
"Triple glazing",
|
|
1770
|
+
"Night storage",
|
|
1771
|
+
"Solar water",
|
|
1772
|
+
"Underfloor heating",
|
|
1773
|
+
"Wood burner",
|
|
1774
|
+
"Aga/Rayburn",
|
|
1775
|
+
"Open fire",
|
|
1776
|
+
"Ground source heat pump",
|
|
1777
|
+
"Air source heat pump",
|
|
1778
|
+
"Solar thermal",
|
|
1779
|
+
"Passive House design"
|
|
1780
|
+
]
|
|
1781
|
+
}
|
|
1744
1782
|
}
|
|
1745
1783
|
}
|
|
1746
1784
|
},
|
|
@@ -1772,6 +1810,32 @@
|
|
|
1772
1810
|
},
|
|
1773
1811
|
"broadband": {
|
|
1774
1812
|
"ntsl2Ref": "B3.5",
|
|
1813
|
+
"discriminator": {
|
|
1814
|
+
"propertyName": "typeOfConnection"
|
|
1815
|
+
},
|
|
1816
|
+
"oneOf": [
|
|
1817
|
+
{
|
|
1818
|
+
"properties": {
|
|
1819
|
+
"typeOfConnection": {
|
|
1820
|
+
"enum": [
|
|
1821
|
+
"None"
|
|
1822
|
+
]
|
|
1823
|
+
}
|
|
1824
|
+
}
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
"properties": {
|
|
1828
|
+
"typeOfConnection": {
|
|
1829
|
+
"enum": [
|
|
1830
|
+
"ADSL copper wire",
|
|
1831
|
+
"Cable",
|
|
1832
|
+
"FTTC (Fibre to the Cabinet)",
|
|
1833
|
+
"FTTP (Fibre to the Premises)"
|
|
1834
|
+
]
|
|
1835
|
+
}
|
|
1836
|
+
}
|
|
1837
|
+
}
|
|
1838
|
+
],
|
|
1775
1839
|
"required": [
|
|
1776
1840
|
"typeOfConnection"
|
|
1777
1841
|
],
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"properties": {
|
|
14
14
|
"role": {
|
|
15
15
|
"enum": [
|
|
16
|
-
"Seller's Conveyancer",
|
|
17
16
|
"Prospective Buyer",
|
|
18
17
|
"Buyer's Conveyancer",
|
|
18
|
+
"Seller's Conveyancer",
|
|
19
19
|
"Estate Agent",
|
|
20
20
|
"Buyer's Agent",
|
|
21
21
|
"Surveyor",
|
|
@@ -65,11 +65,22 @@
|
|
|
65
65
|
"enum": [
|
|
66
66
|
"Personal Representative for a Deceased Owner",
|
|
67
67
|
"Under Power of Attorney",
|
|
68
|
+
"Trustee",
|
|
68
69
|
"Assistant",
|
|
69
70
|
"Other"
|
|
70
71
|
]
|
|
71
72
|
}
|
|
72
73
|
}
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"properties": {
|
|
77
|
+
"capacity": {
|
|
78
|
+
"enum": [
|
|
79
|
+
"Company Director",
|
|
80
|
+
"Company Secretary"
|
|
81
|
+
]
|
|
82
|
+
}
|
|
83
|
+
}
|
|
73
84
|
}
|
|
74
85
|
]
|
|
75
86
|
}
|
|
@@ -1743,6 +1754,32 @@
|
|
|
1743
1754
|
},
|
|
1744
1755
|
"broadband": {
|
|
1745
1756
|
"piqRef": "A7.1.15",
|
|
1757
|
+
"discriminator": {
|
|
1758
|
+
"propertyName": "typeOfConnection"
|
|
1759
|
+
},
|
|
1760
|
+
"oneOf": [
|
|
1761
|
+
{
|
|
1762
|
+
"properties": {
|
|
1763
|
+
"typeOfConnection": {
|
|
1764
|
+
"enum": [
|
|
1765
|
+
"None"
|
|
1766
|
+
]
|
|
1767
|
+
}
|
|
1768
|
+
}
|
|
1769
|
+
},
|
|
1770
|
+
{
|
|
1771
|
+
"properties": {
|
|
1772
|
+
"typeOfConnection": {
|
|
1773
|
+
"enum": [
|
|
1774
|
+
"ADSL copper wire",
|
|
1775
|
+
"Cable",
|
|
1776
|
+
"FTTC (Fibre to the Cabinet)",
|
|
1777
|
+
"FTTP (Fibre to the Premises)"
|
|
1778
|
+
]
|
|
1779
|
+
}
|
|
1780
|
+
}
|
|
1781
|
+
}
|
|
1782
|
+
],
|
|
1746
1783
|
"properties": {
|
|
1747
1784
|
"typeOfConnection": {
|
|
1748
1785
|
"piqRef": "A7.1.16"
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"enum": [
|
|
35
35
|
"Personal Representative for a Deceased Owner",
|
|
36
36
|
"Under Power of Attorney",
|
|
37
|
+
"Trustee",
|
|
37
38
|
"Assistant",
|
|
38
39
|
"Other"
|
|
39
40
|
]
|
|
@@ -42,6 +43,19 @@
|
|
|
42
43
|
"rdsRef": "Participants/OtherDocumentation"
|
|
43
44
|
}
|
|
44
45
|
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"properties": {
|
|
49
|
+
"capacity": {
|
|
50
|
+
"enum": [
|
|
51
|
+
"Company Director",
|
|
52
|
+
"Company Secretary"
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
"sellersCapacityDetails": {
|
|
56
|
+
"rdsRef": "Participants/OtherDocumentation"
|
|
57
|
+
}
|
|
58
|
+
}
|
|
45
59
|
}
|
|
46
60
|
]
|
|
47
61
|
}
|
|
@@ -1476,14 +1490,60 @@
|
|
|
1476
1490
|
}
|
|
1477
1491
|
]
|
|
1478
1492
|
},
|
|
1479
|
-
"isConnectedToNationalGrid": {
|
|
1480
|
-
"rdsRef": "Objects/isExternallyConnected=yes|no|true|false,Connection,Objects/ExternalConnection"
|
|
1481
|
-
},
|
|
1482
1493
|
"photovoltaicMeterPanelLocation": {
|
|
1483
1494
|
"rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?"
|
|
1484
1495
|
},
|
|
1485
|
-
"
|
|
1486
|
-
"rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?"
|
|
1496
|
+
"photovoltaicBatteries": {
|
|
1497
|
+
"rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
|
|
1498
|
+
"discriminator": {
|
|
1499
|
+
"propertyName": "yesNo"
|
|
1500
|
+
},
|
|
1501
|
+
"oneOf": [
|
|
1502
|
+
{
|
|
1503
|
+
"properties": {
|
|
1504
|
+
"yesNo": {
|
|
1505
|
+
"enum": [
|
|
1506
|
+
"No"
|
|
1507
|
+
]
|
|
1508
|
+
}
|
|
1509
|
+
}
|
|
1510
|
+
},
|
|
1511
|
+
{
|
|
1512
|
+
"properties": {
|
|
1513
|
+
"yesNo": {
|
|
1514
|
+
"enum": [
|
|
1515
|
+
"Yes"
|
|
1516
|
+
]
|
|
1517
|
+
}
|
|
1518
|
+
}
|
|
1519
|
+
}
|
|
1520
|
+
]
|
|
1521
|
+
},
|
|
1522
|
+
"nationalGrid": {
|
|
1523
|
+
"rdsRef": "Objects/isExternallyConnected=yes|no|true|false,Connection,Objects/ExternalConnection",
|
|
1524
|
+
"discriminator": {
|
|
1525
|
+
"propertyName": "yesNo"
|
|
1526
|
+
},
|
|
1527
|
+
"oneOf": [
|
|
1528
|
+
{
|
|
1529
|
+
"properties": {
|
|
1530
|
+
"yesNo": {
|
|
1531
|
+
"enum": [
|
|
1532
|
+
"No"
|
|
1533
|
+
]
|
|
1534
|
+
}
|
|
1535
|
+
}
|
|
1536
|
+
},
|
|
1537
|
+
{
|
|
1538
|
+
"properties": {
|
|
1539
|
+
"yesNo": {
|
|
1540
|
+
"enum": [
|
|
1541
|
+
"Yes"
|
|
1542
|
+
]
|
|
1543
|
+
}
|
|
1544
|
+
}
|
|
1545
|
+
}
|
|
1546
|
+
]
|
|
1487
1547
|
}
|
|
1488
1548
|
}
|
|
1489
1549
|
}
|
|
@@ -1983,7 +2043,33 @@
|
|
|
1983
2043
|
]
|
|
1984
2044
|
},
|
|
1985
2045
|
"broadband": {
|
|
1986
|
-
"rdsRef": "Services/Internet"
|
|
2046
|
+
"rdsRef": "Services/Internet",
|
|
2047
|
+
"discriminator": {
|
|
2048
|
+
"propertyName": "typeOfConnection"
|
|
2049
|
+
},
|
|
2050
|
+
"oneOf": [
|
|
2051
|
+
{
|
|
2052
|
+
"properties": {
|
|
2053
|
+
"typeOfConnection": {
|
|
2054
|
+
"enum": [
|
|
2055
|
+
"None"
|
|
2056
|
+
]
|
|
2057
|
+
}
|
|
2058
|
+
}
|
|
2059
|
+
},
|
|
2060
|
+
{
|
|
2061
|
+
"properties": {
|
|
2062
|
+
"typeOfConnection": {
|
|
2063
|
+
"enum": [
|
|
2064
|
+
"ADSL copper wire",
|
|
2065
|
+
"Cable",
|
|
2066
|
+
"FTTC (Fibre to the Cabinet)",
|
|
2067
|
+
"FTTP (Fibre to the Premises)"
|
|
2068
|
+
]
|
|
2069
|
+
}
|
|
2070
|
+
}
|
|
2071
|
+
}
|
|
2072
|
+
]
|
|
1987
2073
|
}
|
|
1988
2074
|
}
|
|
1989
2075
|
},
|
|
@@ -3301,6 +3387,32 @@
|
|
|
3301
3387
|
}
|
|
3302
3388
|
]
|
|
3303
3389
|
},
|
|
3390
|
+
"insulation": {
|
|
3391
|
+
"rdsRef": "Certificates",
|
|
3392
|
+
"discriminator": {
|
|
3393
|
+
"propertyName": "yesNo"
|
|
3394
|
+
},
|
|
3395
|
+
"oneOf": [
|
|
3396
|
+
{
|
|
3397
|
+
"properties": {
|
|
3398
|
+
"yesNo": {
|
|
3399
|
+
"enum": [
|
|
3400
|
+
"No"
|
|
3401
|
+
]
|
|
3402
|
+
}
|
|
3403
|
+
}
|
|
3404
|
+
},
|
|
3405
|
+
{
|
|
3406
|
+
"properties": {
|
|
3407
|
+
"yesNo": {
|
|
3408
|
+
"enum": [
|
|
3409
|
+
"Yes"
|
|
3410
|
+
]
|
|
3411
|
+
}
|
|
3412
|
+
}
|
|
3413
|
+
}
|
|
3414
|
+
]
|
|
3415
|
+
},
|
|
3304
3416
|
"solarPanels": {
|
|
3305
3417
|
"rdsRef": "Certificates",
|
|
3306
3418
|
"discriminator": {
|