@pdtf/schemas 2.0.0-2 → 2.0.0-21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +33 -19
- package/package.json +1 -1
- package/src/examples/v2/exampleTransaction.json +86 -87
- package/src/schemas/v2/combined.json +7432 -1101
- package/src/schemas/v2/overlays/baspi.json +1087 -742
- package/src/schemas/v2/overlays/con29DW.json +256 -127
- package/src/schemas/v2/overlays/con29R.json +1 -1
- package/src/schemas/v2/overlays/fme1.json +46 -212
- package/src/schemas/v2/overlays/lpe1.json +92 -63
- package/src/schemas/v2/overlays/nts.json +39 -43
- package/src/schemas/v2/overlays/rds.json +339 -337
- package/src/schemas/v2/overlays/ta10.json +844 -1
- package/src/schemas/v2/overlays/ta6.json +330 -291
- package/src/schemas/v2/overlays/ta7.json +98 -33
- package/src/schemas/v2/{core.json → pdtf-transaction.json} +6901 -927
- package/src/schemas/v2/skeleton.json +3559 -0
- package/src/tests/v1/transactionSchema.test.js +21 -13
- package/src/tests/v2/transactionSchema.test.js +6 -4
- package/src/tests/v2/verifiedClaimsValidator.test.js +128 -0
- package/src/utils/extractOverlay.js +47 -9
- package/src/utils/extractProperties.js +44 -0
- package/src/schemas/v2/merged.json +0 -28697
|
@@ -212,6 +212,37 @@
|
|
|
212
212
|
]
|
|
213
213
|
}
|
|
214
214
|
}
|
|
215
|
+
},
|
|
216
|
+
"greenDealLoan": {
|
|
217
|
+
"properties": {
|
|
218
|
+
"hasGreenDealLoan": {
|
|
219
|
+
"ta6Ref": "7.7",
|
|
220
|
+
"title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
|
|
221
|
+
"discriminator": {
|
|
222
|
+
"propertyName": "yesNo"
|
|
223
|
+
},
|
|
224
|
+
"oneOf": [
|
|
225
|
+
{
|
|
226
|
+
"properties": {
|
|
227
|
+
"yesNo": {
|
|
228
|
+
"enum": [
|
|
229
|
+
"No"
|
|
230
|
+
]
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
"properties": {
|
|
236
|
+
"yesNo": {
|
|
237
|
+
"enum": [
|
|
238
|
+
"Yes"
|
|
239
|
+
]
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
]
|
|
244
|
+
}
|
|
245
|
+
}
|
|
215
246
|
}
|
|
216
247
|
}
|
|
217
248
|
},
|
|
@@ -413,7 +444,7 @@
|
|
|
413
444
|
},
|
|
414
445
|
"changeOfUse": {
|
|
415
446
|
"ta6Ref": "4.1b",
|
|
416
|
-
"title": "Has there been any change of use (e.g. from an office to a residence?",
|
|
447
|
+
"title": "Has there been any change of use (e.g. from an office to a residence)?",
|
|
417
448
|
"discriminator": {
|
|
418
449
|
"propertyName": "yesNo"
|
|
419
450
|
},
|
|
@@ -513,7 +544,8 @@
|
|
|
513
544
|
"properties": {
|
|
514
545
|
"yesNo": {
|
|
515
546
|
"enum": [
|
|
516
|
-
"No"
|
|
547
|
+
"No",
|
|
548
|
+
"Not required"
|
|
517
549
|
]
|
|
518
550
|
},
|
|
519
551
|
"details": {
|
|
@@ -897,7 +929,6 @@
|
|
|
897
929
|
"worksUnfinished": {
|
|
898
930
|
"ta6Ref": "4.3",
|
|
899
931
|
"title": "Are any of the works listed above unfinished?",
|
|
900
|
-
"description": "If yes, please provide details and explain why.",
|
|
901
932
|
"discriminator": {
|
|
902
933
|
"propertyName": "yesNo"
|
|
903
934
|
},
|
|
@@ -1147,7 +1178,7 @@
|
|
|
1147
1178
|
},
|
|
1148
1179
|
"otherNotices": {
|
|
1149
1180
|
"ta6Ref": "3.1",
|
|
1150
|
-
"title": "Any other type of notice",
|
|
1181
|
+
"title": "Any other type of notice?",
|
|
1151
1182
|
"discriminator": {
|
|
1152
1183
|
"propertyName": "yesNo"
|
|
1153
1184
|
},
|
|
@@ -1179,7 +1210,6 @@
|
|
|
1179
1210
|
"japaneseKnotweed": {
|
|
1180
1211
|
"ta6Ref": "7.8",
|
|
1181
1212
|
"title": "To your knowledge, is the property or neighbouring land, affected by Japanese knotweed or other invasive species?",
|
|
1182
|
-
"description": "If so ",
|
|
1183
1213
|
"discriminator": {
|
|
1184
1214
|
"propertyName": "yesNo"
|
|
1185
1215
|
},
|
|
@@ -1398,308 +1428,284 @@
|
|
|
1398
1428
|
"title": "Water and Drainage",
|
|
1399
1429
|
"description": "Please describe the water and drainage services that are connected to the property.",
|
|
1400
1430
|
"properties": {
|
|
1401
|
-
"
|
|
1402
|
-
"
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
"
|
|
1410
|
-
|
|
1411
|
-
"
|
|
1412
|
-
"
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
"
|
|
1421
|
-
"
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
"
|
|
1430
|
-
"
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
},
|
|
1437
|
-
"mainsSurfaceWaterDrainage": {
|
|
1438
|
-
"ta6Ref": "12.4b",
|
|
1439
|
-
"title": "Mains surface water drainage",
|
|
1440
|
-
"discriminator": {
|
|
1441
|
-
"propertyName": "yesNo"
|
|
1442
|
-
},
|
|
1443
|
-
"oneOf": [
|
|
1444
|
-
{
|
|
1445
|
-
"properties": {
|
|
1446
|
-
"yesNo": {
|
|
1447
|
-
"enum": [
|
|
1448
|
-
"No"
|
|
1449
|
-
]
|
|
1450
|
-
}
|
|
1451
|
-
}
|
|
1452
|
-
},
|
|
1453
|
-
{
|
|
1454
|
-
"properties": {
|
|
1455
|
-
"yesNo": {
|
|
1456
|
-
"enum": [
|
|
1457
|
-
"Yes"
|
|
1458
|
-
]
|
|
1459
|
-
}
|
|
1460
|
-
}
|
|
1461
|
-
},
|
|
1462
|
-
{
|
|
1463
|
-
"properties": {
|
|
1464
|
-
"yesNo": {
|
|
1465
|
-
"enum": [
|
|
1466
|
-
"To be connected"
|
|
1467
|
-
]
|
|
1431
|
+
"water": {
|
|
1432
|
+
"properties": {
|
|
1433
|
+
"mainsWater": {
|
|
1434
|
+
"ta6Ref": "13.3",
|
|
1435
|
+
"title": "Mains water",
|
|
1436
|
+
"discriminator": {
|
|
1437
|
+
"propertyName": "yesNo"
|
|
1438
|
+
},
|
|
1439
|
+
"oneOf": [
|
|
1440
|
+
{
|
|
1441
|
+
"properties": {
|
|
1442
|
+
"yesNo": {
|
|
1443
|
+
"enum": [
|
|
1444
|
+
"No"
|
|
1445
|
+
]
|
|
1446
|
+
}
|
|
1447
|
+
}
|
|
1448
|
+
},
|
|
1449
|
+
{
|
|
1450
|
+
"properties": {
|
|
1451
|
+
"yesNo": {
|
|
1452
|
+
"enum": [
|
|
1453
|
+
"Yes"
|
|
1454
|
+
]
|
|
1455
|
+
}
|
|
1456
|
+
}
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
"properties": {
|
|
1460
|
+
"yesNo": {
|
|
1461
|
+
"enum": [
|
|
1462
|
+
"To be connected"
|
|
1463
|
+
]
|
|
1464
|
+
}
|
|
1465
|
+
}
|
|
1468
1466
|
}
|
|
1469
|
-
|
|
1467
|
+
]
|
|
1470
1468
|
}
|
|
1471
|
-
|
|
1469
|
+
}
|
|
1472
1470
|
},
|
|
1473
|
-
"
|
|
1474
|
-
"
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
"
|
|
1482
|
-
|
|
1483
|
-
"
|
|
1484
|
-
"
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
"
|
|
1493
|
-
"
|
|
1494
|
-
|
|
1471
|
+
"drainage": {
|
|
1472
|
+
"properties": {
|
|
1473
|
+
"mainsSurfaceWaterDrainage": {
|
|
1474
|
+
"ta6Ref": "12.4b",
|
|
1475
|
+
"title": "Mains surface water drainage",
|
|
1476
|
+
"discriminator": {
|
|
1477
|
+
"propertyName": "yesNo"
|
|
1478
|
+
},
|
|
1479
|
+
"oneOf": [
|
|
1480
|
+
{
|
|
1481
|
+
"properties": {
|
|
1482
|
+
"yesNo": {
|
|
1483
|
+
"enum": [
|
|
1484
|
+
"No"
|
|
1485
|
+
]
|
|
1486
|
+
}
|
|
1487
|
+
}
|
|
1488
|
+
},
|
|
1489
|
+
{
|
|
1490
|
+
"properties": {
|
|
1491
|
+
"yesNo": {
|
|
1492
|
+
"enum": [
|
|
1493
|
+
"Yes"
|
|
1494
|
+
]
|
|
1495
|
+
}
|
|
1496
|
+
}
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"properties": {
|
|
1500
|
+
"yesNo": {
|
|
1501
|
+
"enum": [
|
|
1502
|
+
"To be connected"
|
|
1503
|
+
]
|
|
1504
|
+
}
|
|
1505
|
+
}
|
|
1495
1506
|
}
|
|
1496
|
-
|
|
1507
|
+
]
|
|
1497
1508
|
},
|
|
1498
|
-
{
|
|
1499
|
-
"
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
"
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
"oneOf": [
|
|
1512
|
-
{
|
|
1513
|
-
"properties": {
|
|
1514
|
-
"yesNo": {
|
|
1515
|
-
"enum": [
|
|
1516
|
-
"No"
|
|
1517
|
-
]
|
|
1518
|
-
}
|
|
1519
|
-
}
|
|
1520
|
-
},
|
|
1521
|
-
{
|
|
1522
|
-
"properties": {
|
|
1523
|
-
"yesNo": {
|
|
1524
|
-
"enum": [
|
|
1525
|
-
"Yes"
|
|
1526
|
-
]
|
|
1527
|
-
},
|
|
1528
|
-
"dateReplaced": {
|
|
1529
|
-
"ta6Ref": "12.5.1",
|
|
1530
|
-
"title": "Date replaced or upgraded"
|
|
1531
|
-
},
|
|
1532
|
-
"dateLastEmptied": {
|
|
1533
|
-
"ta6Ref": "12.7",
|
|
1534
|
-
"title": "Date last emptied"
|
|
1535
|
-
}
|
|
1536
|
-
}
|
|
1509
|
+
"mainsFoulDrainage": {
|
|
1510
|
+
"ta6Ref": "12.4a",
|
|
1511
|
+
"title": "Mains foul drainage",
|
|
1512
|
+
"discriminator": {
|
|
1513
|
+
"propertyName": "yesNo"
|
|
1514
|
+
},
|
|
1515
|
+
"oneOf": [
|
|
1516
|
+
{
|
|
1517
|
+
"properties": {
|
|
1518
|
+
"yesNo": {
|
|
1519
|
+
"enum": [
|
|
1520
|
+
"Yes"
|
|
1521
|
+
]
|
|
1537
1522
|
}
|
|
1538
|
-
|
|
1523
|
+
}
|
|
1539
1524
|
},
|
|
1540
|
-
|
|
1541
|
-
"
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
"oneOf": [
|
|
1547
|
-
{
|
|
1548
|
-
"properties": {
|
|
1549
|
-
"yesNo": {
|
|
1550
|
-
"enum": [
|
|
1551
|
-
"No"
|
|
1552
|
-
]
|
|
1553
|
-
}
|
|
1554
|
-
}
|
|
1555
|
-
},
|
|
1556
|
-
{
|
|
1557
|
-
"properties": {
|
|
1558
|
-
"yesNo": {
|
|
1559
|
-
"enum": [
|
|
1560
|
-
"Yes"
|
|
1561
|
-
]
|
|
1562
|
-
}
|
|
1563
|
-
}
|
|
1525
|
+
{
|
|
1526
|
+
"properties": {
|
|
1527
|
+
"yesNo": {
|
|
1528
|
+
"enum": [
|
|
1529
|
+
"To be connected"
|
|
1530
|
+
]
|
|
1564
1531
|
}
|
|
1565
|
-
|
|
1532
|
+
}
|
|
1566
1533
|
},
|
|
1567
|
-
|
|
1568
|
-
"
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
"oneOf": [
|
|
1574
|
-
{
|
|
1575
|
-
"properties": {
|
|
1576
|
-
"yesNo": {
|
|
1577
|
-
"enum": [
|
|
1578
|
-
"No"
|
|
1579
|
-
]
|
|
1580
|
-
}
|
|
1581
|
-
}
|
|
1534
|
+
{
|
|
1535
|
+
"properties": {
|
|
1536
|
+
"yesNo": {
|
|
1537
|
+
"enum": [
|
|
1538
|
+
"No"
|
|
1539
|
+
]
|
|
1582
1540
|
},
|
|
1583
|
-
{
|
|
1584
|
-
"
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1541
|
+
"septicTank": {
|
|
1542
|
+
"ta6Ref": "12.5a",
|
|
1543
|
+
"title": "Septic tank",
|
|
1544
|
+
"discriminator": {
|
|
1545
|
+
"propertyName": "yesNo"
|
|
1546
|
+
},
|
|
1547
|
+
"oneOf": [
|
|
1548
|
+
{
|
|
1549
|
+
"properties": {
|
|
1550
|
+
"yesNo": {
|
|
1551
|
+
"enum": [
|
|
1552
|
+
"No"
|
|
1553
|
+
]
|
|
1554
|
+
}
|
|
1555
|
+
}
|
|
1589
1556
|
},
|
|
1590
|
-
|
|
1591
|
-
"
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1557
|
+
{
|
|
1558
|
+
"properties": {
|
|
1559
|
+
"yesNo": {
|
|
1560
|
+
"enum": [
|
|
1561
|
+
"Yes"
|
|
1562
|
+
]
|
|
1563
|
+
},
|
|
1564
|
+
"dateReplaced": {
|
|
1565
|
+
"ta6Ref": "12.5.1",
|
|
1566
|
+
"title": "Date replaced or upgraded"
|
|
1567
|
+
},
|
|
1568
|
+
"dateLastEmptied": {
|
|
1569
|
+
"ta6Ref": "12.7",
|
|
1570
|
+
"title": "Date last emptied"
|
|
1571
|
+
}
|
|
1572
|
+
}
|
|
1597
1573
|
}
|
|
1598
|
-
|
|
1599
|
-
}
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1574
|
+
]
|
|
1575
|
+
},
|
|
1576
|
+
"cesspit": {
|
|
1577
|
+
"ta6Ref": "12.5b",
|
|
1578
|
+
"title": "Cesspit",
|
|
1579
|
+
"discriminator": {
|
|
1580
|
+
"propertyName": "yesNo"
|
|
1581
|
+
},
|
|
1582
|
+
"oneOf": [
|
|
1583
|
+
{
|
|
1584
|
+
"properties": {
|
|
1585
|
+
"yesNo": {
|
|
1586
|
+
"enum": [
|
|
1587
|
+
"No"
|
|
1588
|
+
]
|
|
1589
|
+
}
|
|
1590
|
+
}
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
"properties": {
|
|
1594
|
+
"yesNo": {
|
|
1595
|
+
"enum": [
|
|
1596
|
+
"Yes"
|
|
1597
|
+
]
|
|
1598
|
+
}
|
|
1599
|
+
}
|
|
1615
1600
|
}
|
|
1616
|
-
|
|
1601
|
+
]
|
|
1617
1602
|
},
|
|
1618
|
-
{
|
|
1619
|
-
"
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1603
|
+
"sewerageTreatmentPlant": {
|
|
1604
|
+
"ta6Ref": "12.5a",
|
|
1605
|
+
"title": "Sewerage treatment plant",
|
|
1606
|
+
"discriminator": {
|
|
1607
|
+
"propertyName": "yesNo"
|
|
1608
|
+
},
|
|
1609
|
+
"oneOf": [
|
|
1610
|
+
{
|
|
1611
|
+
"properties": {
|
|
1612
|
+
"yesNo": {
|
|
1613
|
+
"enum": [
|
|
1614
|
+
"No"
|
|
1615
|
+
]
|
|
1616
|
+
}
|
|
1617
|
+
}
|
|
1624
1618
|
},
|
|
1625
|
-
|
|
1626
|
-
"
|
|
1627
|
-
|
|
1619
|
+
{
|
|
1620
|
+
"properties": {
|
|
1621
|
+
"yesNo": {
|
|
1622
|
+
"enum": [
|
|
1623
|
+
"Yes"
|
|
1624
|
+
]
|
|
1625
|
+
},
|
|
1626
|
+
"dateInstalled": {
|
|
1627
|
+
"ta6Ref": "12.9",
|
|
1628
|
+
"title": "Date installed"
|
|
1629
|
+
},
|
|
1630
|
+
"dateLastServiced": {
|
|
1631
|
+
"ta6Ref": "12.8",
|
|
1632
|
+
"title": "Date last serviced"
|
|
1633
|
+
}
|
|
1634
|
+
}
|
|
1628
1635
|
}
|
|
1629
|
-
|
|
1630
|
-
}
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1636
|
+
]
|
|
1637
|
+
},
|
|
1638
|
+
"otherConnectedProperties": {
|
|
1639
|
+
"ta6Ref": "12.6",
|
|
1640
|
+
"title": "Do other properties connect to the septic tank, cesspit or sewerage treatment plant?",
|
|
1641
|
+
"discriminator": {
|
|
1642
|
+
"propertyName": "yesNo"
|
|
1643
|
+
},
|
|
1644
|
+
"oneOf": [
|
|
1645
|
+
{
|
|
1646
|
+
"properties": {
|
|
1647
|
+
"yesNo": {
|
|
1648
|
+
"enum": [
|
|
1649
|
+
"No"
|
|
1650
|
+
]
|
|
1651
|
+
}
|
|
1652
|
+
}
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
"properties": {
|
|
1656
|
+
"yesNo": {
|
|
1657
|
+
"enum": [
|
|
1658
|
+
"Yes"
|
|
1659
|
+
]
|
|
1660
|
+
},
|
|
1661
|
+
"numberOfPropertiesSharing": {
|
|
1662
|
+
"ta6Ref": "A7.1.1.2",
|
|
1663
|
+
"title": "How many other properties?"
|
|
1664
|
+
}
|
|
1665
|
+
}
|
|
1646
1666
|
}
|
|
1647
|
-
|
|
1667
|
+
]
|
|
1648
1668
|
},
|
|
1649
|
-
{
|
|
1650
|
-
"
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1669
|
+
"plantOnOtherLand": {
|
|
1670
|
+
"ta6Ref": "12.10",
|
|
1671
|
+
"title": "Is any part of the septic tank, cesspit or sewerage treatment plant located on someone else’s land?",
|
|
1672
|
+
"discriminator": {
|
|
1673
|
+
"propertyName": "yesNo"
|
|
1674
|
+
},
|
|
1675
|
+
"oneOf": [
|
|
1676
|
+
{
|
|
1677
|
+
"properties": {
|
|
1678
|
+
"yesNo": {
|
|
1679
|
+
"enum": [
|
|
1680
|
+
"No"
|
|
1681
|
+
]
|
|
1682
|
+
}
|
|
1683
|
+
}
|
|
1655
1684
|
},
|
|
1656
|
-
|
|
1657
|
-
"
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1685
|
+
{
|
|
1686
|
+
"properties": {
|
|
1687
|
+
"yesNo": {
|
|
1688
|
+
"enum": [
|
|
1689
|
+
"Yes"
|
|
1690
|
+
]
|
|
1691
|
+
},
|
|
1692
|
+
"attachments": {
|
|
1693
|
+
"ta6Ref": "12.10.1",
|
|
1694
|
+
"title": "Please supply a plan showing the location of the system and how access is obtained.",
|
|
1695
|
+
"enum": [
|
|
1696
|
+
"Attached",
|
|
1697
|
+
"To follow"
|
|
1698
|
+
]
|
|
1699
|
+
}
|
|
1700
|
+
}
|
|
1663
1701
|
}
|
|
1664
|
-
|
|
1702
|
+
]
|
|
1665
1703
|
}
|
|
1666
|
-
|
|
1667
|
-
}
|
|
1668
|
-
}
|
|
1669
|
-
}
|
|
1670
|
-
]
|
|
1671
|
-
}
|
|
1672
|
-
}
|
|
1673
|
-
},
|
|
1674
|
-
"greenDealLoan": {
|
|
1675
|
-
"properties": {
|
|
1676
|
-
"hasGreenDealLoan": {
|
|
1677
|
-
"ta6Ref": "7.7",
|
|
1678
|
-
"title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
|
|
1679
|
-
"description": "If yes, please provide details below including any outstanding payments for the renewable devices and any feed-in tariffs and a copy of your last electricity bill",
|
|
1680
|
-
"discriminator": {
|
|
1681
|
-
"propertyName": "yesNo"
|
|
1682
|
-
},
|
|
1683
|
-
"oneOf": [
|
|
1684
|
-
{
|
|
1685
|
-
"properties": {
|
|
1686
|
-
"yesNo": {
|
|
1687
|
-
"enum": [
|
|
1688
|
-
"No"
|
|
1689
|
-
]
|
|
1690
|
-
}
|
|
1691
|
-
}
|
|
1692
|
-
},
|
|
1693
|
-
{
|
|
1694
|
-
"properties": {
|
|
1695
|
-
"yesNo": {
|
|
1696
|
-
"enum": [
|
|
1697
|
-
"Yes"
|
|
1698
|
-
]
|
|
1704
|
+
}
|
|
1699
1705
|
}
|
|
1700
|
-
|
|
1706
|
+
]
|
|
1701
1707
|
}
|
|
1702
|
-
|
|
1708
|
+
}
|
|
1703
1709
|
}
|
|
1704
1710
|
}
|
|
1705
1711
|
},
|
|
@@ -1719,6 +1725,8 @@
|
|
|
1719
1725
|
{
|
|
1720
1726
|
"properties": {
|
|
1721
1727
|
"centralHeatingDetails": {
|
|
1728
|
+
"ta6Ref": "12.3",
|
|
1729
|
+
"title": "Central Heating Details",
|
|
1722
1730
|
"properties": {
|
|
1723
1731
|
"centralHeatingFuel": {
|
|
1724
1732
|
"properties": {
|
|
@@ -1753,7 +1761,6 @@
|
|
|
1753
1761
|
"boilerInstallationCertificate": {
|
|
1754
1762
|
"ta6Ref": "12.3b",
|
|
1755
1763
|
"title": "Was a gas boiler installed after 1st April 2005, or a solid fuel or oil boiler installed after 1st October 2010?",
|
|
1756
|
-
"description": "If yes, ",
|
|
1757
1764
|
"discriminator": {
|
|
1758
1765
|
"propertyName": "yesNo"
|
|
1759
1766
|
},
|
|
@@ -1946,7 +1953,6 @@
|
|
|
1946
1953
|
"neighbouringLandRights": {
|
|
1947
1954
|
"ta6Ref": "8.2",
|
|
1948
1955
|
"title": "Do any rights and arrangements exist over neighbouring land from which the property benefits? (e.g. taking wheelie bins along an accessway through a neighbour’s back garden, parking, access to maintain the boundaries from the neighbour’s side etc)",
|
|
1949
|
-
"description": "If yes,",
|
|
1950
1956
|
"discriminator": {
|
|
1951
1957
|
"propertyName": "yesNo"
|
|
1952
1958
|
},
|
|
@@ -2203,23 +2209,43 @@
|
|
|
2203
2209
|
"properties": {
|
|
2204
2210
|
"groundWater": {
|
|
2205
2211
|
"ta6Ref": "7.2a",
|
|
2206
|
-
"title": "Ground water"
|
|
2212
|
+
"title": "Ground water",
|
|
2213
|
+
"enum": [
|
|
2214
|
+
"Yes",
|
|
2215
|
+
"No"
|
|
2216
|
+
]
|
|
2207
2217
|
},
|
|
2208
2218
|
"sewer": {
|
|
2209
2219
|
"ta6Ref": "7.2b",
|
|
2210
|
-
"title": "Sewer"
|
|
2220
|
+
"title": "Sewer",
|
|
2221
|
+
"enum": [
|
|
2222
|
+
"Yes",
|
|
2223
|
+
"No"
|
|
2224
|
+
]
|
|
2211
2225
|
},
|
|
2212
2226
|
"surfaceWater": {
|
|
2213
2227
|
"ta6Ref": "7.2c",
|
|
2214
|
-
"title": "Surface water"
|
|
2228
|
+
"title": "Surface water",
|
|
2229
|
+
"enum": [
|
|
2230
|
+
"Yes",
|
|
2231
|
+
"No"
|
|
2232
|
+
]
|
|
2215
2233
|
},
|
|
2216
2234
|
"coastal": {
|
|
2217
2235
|
"ta6Ref": "7.2d",
|
|
2218
|
-
"title": "Coastal flooding"
|
|
2236
|
+
"title": "Coastal flooding",
|
|
2237
|
+
"enum": [
|
|
2238
|
+
"Yes",
|
|
2239
|
+
"No"
|
|
2240
|
+
]
|
|
2219
2241
|
},
|
|
2220
2242
|
"river": {
|
|
2221
2243
|
"ta6Ref": "7.2e",
|
|
2222
|
-
"title": "River flooding"
|
|
2244
|
+
"title": "River flooding",
|
|
2245
|
+
"enum": [
|
|
2246
|
+
"Yes",
|
|
2247
|
+
"No"
|
|
2248
|
+
]
|
|
2223
2249
|
}
|
|
2224
2250
|
}
|
|
2225
2251
|
}
|
|
@@ -2304,6 +2330,19 @@
|
|
|
2304
2330
|
}
|
|
2305
2331
|
}
|
|
2306
2332
|
}
|
|
2333
|
+
},
|
|
2334
|
+
"additionalLegalInfo": {
|
|
2335
|
+
"properties": {
|
|
2336
|
+
"completionAndMoving": {
|
|
2337
|
+
"properties": {
|
|
2338
|
+
"willRemoveAllRubbish": {
|
|
2339
|
+
"ta6Ref": "14.4",
|
|
2340
|
+
"title": "Please confirm that on completion you will remove all rubbish and items not included in the sale from the property including its garden, loft and any sheds or outbuildings.",
|
|
2341
|
+
"description": "When the property is cleared out you will be expected to take reasonable care when clearing the property, leaving it clean and tidy and repairing any damage caused when removing items from the property and making safe any light or electrical fittings which are being removed.\n\nKeys for all door and window locks, along with any alarm codes, should be available for the buyer on the day of completion. If there is any reason why you cannot do this you should let the estate agent and your property lawyer know. For all internet connected services e.g. doorbells, boiler controls, burglar alarms, CCTV cameras etc) access to them will need to be provided to the buyer on the day of completion so that they can control them or sign up to the service. If there is any reason why you cannot do this you should let the estate agent and your property lawyer know."
|
|
2342
|
+
}
|
|
2343
|
+
}
|
|
2344
|
+
}
|
|
2345
|
+
}
|
|
2307
2346
|
}
|
|
2308
2347
|
}
|
|
2309
2348
|
}
|