@pdtf/schemas 2.0.0-13 → 2.0.0-15
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/package.json +1 -1
- package/src/examples/v2/exampleTransaction.json +7 -6
- package/src/schemas/v2/combined.json +66 -65
- package/src/schemas/v2/overlays/baspi.json +86 -75
- package/src/schemas/v2/overlays/rds.json +7 -5
- package/src/schemas/v2/overlays/ta6.json +31 -31
- package/src/schemas/v2/pdtf-transaction.json +56 -59
package/package.json
CHANGED
|
@@ -128,6 +128,11 @@
|
|
|
128
128
|
"certificate": {
|
|
129
129
|
"certificateNumber": "12345",
|
|
130
130
|
"currentEnergyRating": "A"
|
|
131
|
+
},
|
|
132
|
+
"greenDealLoan": {
|
|
133
|
+
"hasGreenDealLoan": {
|
|
134
|
+
"yesNo": "No"
|
|
135
|
+
}
|
|
131
136
|
}
|
|
132
137
|
},
|
|
133
138
|
"councilTax": {
|
|
@@ -356,11 +361,6 @@
|
|
|
356
361
|
"yesNo": "No"
|
|
357
362
|
}
|
|
358
363
|
},
|
|
359
|
-
"greenDealLoan": {
|
|
360
|
-
"hasGreenDealLoan": {
|
|
361
|
-
"yesNo": "No"
|
|
362
|
-
}
|
|
363
|
-
},
|
|
364
364
|
"centralHeating": {
|
|
365
365
|
"hasCentralHeating": "Yes",
|
|
366
366
|
"centralHeatingDetails": {
|
|
@@ -561,7 +561,8 @@
|
|
|
561
561
|
"willRemoveAllRubbish": true,
|
|
562
562
|
"otherPropertyInChain": { "yesNo": "No" },
|
|
563
563
|
"moveRestrictionDates": { "yesNo": "No" },
|
|
564
|
-
"digitalPropertyLogbook": { "yesNo": "No" }
|
|
564
|
+
"digitalPropertyLogbook": { "yesNo": "No" },
|
|
565
|
+
"sufficientToRepayAllMortgages": { "yesNo": "Yes" }
|
|
565
566
|
},
|
|
566
567
|
"confirmationOfAccuracyByOwners": {
|
|
567
568
|
"confirmWillProvideAdditionalDocumentation": true,
|
|
@@ -150,7 +150,6 @@
|
|
|
150
150
|
"fixturesAndFittings",
|
|
151
151
|
"waterAndDrainage",
|
|
152
152
|
"connectedUtilities",
|
|
153
|
-
"greenDealLoan",
|
|
154
153
|
"centralHeating",
|
|
155
154
|
"insurance",
|
|
156
155
|
"boundaries",
|
|
@@ -7457,7 +7456,7 @@
|
|
|
7457
7456
|
"rdsRef": "Certificates/{category='energyEfficiency',standard='EPC',gradeLevelRating=?},Certificates/{category='energyEfficiency',standard='EPC',status='exempt'},",
|
|
7458
7457
|
"title": "Energy Efficiency",
|
|
7459
7458
|
"type": "object",
|
|
7460
|
-
"baspiRequired": ["certificate"],
|
|
7459
|
+
"baspiRequired": ["certificate", "greenDealLoan"],
|
|
7461
7460
|
"properties": {
|
|
7462
7461
|
"certificate": {
|
|
7463
7462
|
"baspiRef": "A1.8.3.1",
|
|
@@ -7792,6 +7791,62 @@
|
|
|
7792
7791
|
}
|
|
7793
7792
|
}
|
|
7794
7793
|
}
|
|
7794
|
+
},
|
|
7795
|
+
"greenDealLoan": {
|
|
7796
|
+
"baspiRef": "A7.3",
|
|
7797
|
+
"rdsRef": "RightsHolders/Loans,RightsHolders/OtherDocumentation",
|
|
7798
|
+
"title": "Green Deal Loan",
|
|
7799
|
+
"type": "object",
|
|
7800
|
+
"baspiRequired": ["hasGreenDealLoan"],
|
|
7801
|
+
"properties": {
|
|
7802
|
+
"hasGreenDealLoan": {
|
|
7803
|
+
"baspiRef": "A7.3",
|
|
7804
|
+
"ta6Ref": "7.7",
|
|
7805
|
+
"title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
|
|
7806
|
+
"type": "object",
|
|
7807
|
+
"properties": {
|
|
7808
|
+
"yesNo": {
|
|
7809
|
+
"baspiRef": "A7.3.1",
|
|
7810
|
+
"type": "string",
|
|
7811
|
+
"title": "",
|
|
7812
|
+
"enum": ["Yes", "No"]
|
|
7813
|
+
}
|
|
7814
|
+
},
|
|
7815
|
+
"baspiRequired": ["yesNo"],
|
|
7816
|
+
"discriminator": {
|
|
7817
|
+
"propertyName": "yesNo"
|
|
7818
|
+
},
|
|
7819
|
+
"oneOf": [
|
|
7820
|
+
{
|
|
7821
|
+
"properties": {
|
|
7822
|
+
"yesNo": {
|
|
7823
|
+
"enum": ["No"]
|
|
7824
|
+
}
|
|
7825
|
+
}
|
|
7826
|
+
},
|
|
7827
|
+
{
|
|
7828
|
+
"properties": {
|
|
7829
|
+
"yesNo": {
|
|
7830
|
+
"enum": ["Yes"]
|
|
7831
|
+
},
|
|
7832
|
+
"details": {
|
|
7833
|
+
"baspiRef": "A7.3.2",
|
|
7834
|
+
"title": "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",
|
|
7835
|
+
"type": "string",
|
|
7836
|
+
"minLength": 1
|
|
7837
|
+
},
|
|
7838
|
+
"attachments": {
|
|
7839
|
+
"baspiRef": "A7.3.3",
|
|
7840
|
+
"title": "Attachments",
|
|
7841
|
+
"type": "string",
|
|
7842
|
+
"enum": ["Attached", "To follow"]
|
|
7843
|
+
}
|
|
7844
|
+
},
|
|
7845
|
+
"baspiRequired": ["details", "attachments"]
|
|
7846
|
+
}
|
|
7847
|
+
]
|
|
7848
|
+
}
|
|
7849
|
+
}
|
|
7795
7850
|
}
|
|
7796
7851
|
}
|
|
7797
7852
|
},
|
|
@@ -17243,62 +17298,6 @@
|
|
|
17243
17298
|
}
|
|
17244
17299
|
}
|
|
17245
17300
|
},
|
|
17246
|
-
"greenDealLoan": {
|
|
17247
|
-
"baspiRef": "A7.3",
|
|
17248
|
-
"rdsRef": "RightsHolders/Loans,RightsHolders/OtherDocumentation",
|
|
17249
|
-
"title": "Green Deal Loan",
|
|
17250
|
-
"type": "object",
|
|
17251
|
-
"baspiRequired": ["hasGreenDealLoan"],
|
|
17252
|
-
"properties": {
|
|
17253
|
-
"hasGreenDealLoan": {
|
|
17254
|
-
"baspiRef": "A7.3",
|
|
17255
|
-
"ta6Ref": "7.7",
|
|
17256
|
-
"title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
|
|
17257
|
-
"type": "object",
|
|
17258
|
-
"properties": {
|
|
17259
|
-
"yesNo": {
|
|
17260
|
-
"baspiRef": "A7.3.1",
|
|
17261
|
-
"type": "string",
|
|
17262
|
-
"title": "",
|
|
17263
|
-
"enum": ["Yes", "No"]
|
|
17264
|
-
}
|
|
17265
|
-
},
|
|
17266
|
-
"baspiRequired": ["yesNo"],
|
|
17267
|
-
"discriminator": {
|
|
17268
|
-
"propertyName": "yesNo"
|
|
17269
|
-
},
|
|
17270
|
-
"oneOf": [
|
|
17271
|
-
{
|
|
17272
|
-
"properties": {
|
|
17273
|
-
"yesNo": {
|
|
17274
|
-
"enum": ["No"]
|
|
17275
|
-
}
|
|
17276
|
-
}
|
|
17277
|
-
},
|
|
17278
|
-
{
|
|
17279
|
-
"properties": {
|
|
17280
|
-
"yesNo": {
|
|
17281
|
-
"enum": ["Yes"]
|
|
17282
|
-
},
|
|
17283
|
-
"details": {
|
|
17284
|
-
"baspiRef": "A7.3.2",
|
|
17285
|
-
"title": "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",
|
|
17286
|
-
"type": "string",
|
|
17287
|
-
"minLength": 1
|
|
17288
|
-
},
|
|
17289
|
-
"attachments": {
|
|
17290
|
-
"baspiRef": "A7.3.3",
|
|
17291
|
-
"title": "Attachments",
|
|
17292
|
-
"type": "string",
|
|
17293
|
-
"enum": ["Attached", "To follow"]
|
|
17294
|
-
}
|
|
17295
|
-
},
|
|
17296
|
-
"baspiRequired": ["details", "attachments"]
|
|
17297
|
-
}
|
|
17298
|
-
]
|
|
17299
|
-
}
|
|
17300
|
-
}
|
|
17301
|
-
},
|
|
17302
17301
|
"centralHeating": {
|
|
17303
17302
|
"baspiRef": "A7.4",
|
|
17304
17303
|
"rdsRef": "Buildings|BuildingSections/isUnheated=no|yes|true|false",
|
|
@@ -19160,10 +19159,10 @@
|
|
|
19160
19159
|
"Not known"
|
|
19161
19160
|
]
|
|
19162
19161
|
}
|
|
19163
|
-
}
|
|
19162
|
+
},
|
|
19163
|
+
"baspiRequired": ["left", "right", "rear", "front"]
|
|
19164
19164
|
}
|
|
19165
|
-
}
|
|
19166
|
-
"baspiRequired": ["left", "right", "rear", "front"]
|
|
19165
|
+
}
|
|
19167
19166
|
},
|
|
19168
19167
|
{
|
|
19169
19168
|
"properties": {
|
|
@@ -20594,6 +20593,7 @@
|
|
|
20594
20593
|
"type": "object",
|
|
20595
20594
|
"properties": {
|
|
20596
20595
|
"yesNo": {
|
|
20596
|
+
"baspiRef": "B6.3.1.1",
|
|
20597
20597
|
"type": "string",
|
|
20598
20598
|
"title": "",
|
|
20599
20599
|
"enum": ["Yes", "No"]
|
|
@@ -20677,7 +20677,8 @@
|
|
|
20677
20677
|
"willRemoveAllRubbish",
|
|
20678
20678
|
"otherPropertyInChain",
|
|
20679
20679
|
"moveRestrictionDates",
|
|
20680
|
-
"digitalPropertyLogbook"
|
|
20680
|
+
"digitalPropertyLogbook",
|
|
20681
|
+
"sufficientToRepayAllMortgages"
|
|
20681
20682
|
],
|
|
20682
20683
|
"properties": {
|
|
20683
20684
|
"willRemoveAllRubbish": {
|
|
@@ -20806,7 +20807,8 @@
|
|
|
20806
20807
|
"baspiRef": "B7.3.2.1",
|
|
20807
20808
|
"type": "string",
|
|
20808
20809
|
"format": "date"
|
|
20809
|
-
}
|
|
20810
|
+
},
|
|
20811
|
+
"minItems": 1
|
|
20810
20812
|
}
|
|
20811
20813
|
},
|
|
20812
20814
|
"baspiRequired": ["restrictedDates"]
|
|
@@ -20853,8 +20855,7 @@
|
|
|
20853
20855
|
"baspiRef": "B7.5.2",
|
|
20854
20856
|
"title": "Please confirm that on completion you will transfer it to the new owner",
|
|
20855
20857
|
"confirmation": {
|
|
20856
|
-
"type": "
|
|
20857
|
-
"enum": ["true", "false"]
|
|
20858
|
+
"type": "boolean"
|
|
20858
20859
|
}
|
|
20859
20860
|
}
|
|
20860
20861
|
},
|
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
"fixturesAndFittings",
|
|
57
57
|
"waterAndDrainage",
|
|
58
58
|
"connectedUtilities",
|
|
59
|
-
"greenDealLoan",
|
|
60
59
|
"centralHeating",
|
|
61
60
|
"insurance",
|
|
62
61
|
"boundaries",
|
|
@@ -1666,7 +1665,8 @@
|
|
|
1666
1665
|
"baspiRef": "A1.8.3",
|
|
1667
1666
|
"title": "Energy Efficiency",
|
|
1668
1667
|
"required": [
|
|
1669
|
-
"certificate"
|
|
1668
|
+
"certificate",
|
|
1669
|
+
"greenDealLoan"
|
|
1670
1670
|
],
|
|
1671
1671
|
"properties": {
|
|
1672
1672
|
"certificate": {
|
|
@@ -1693,6 +1693,70 @@
|
|
|
1693
1693
|
]
|
|
1694
1694
|
}
|
|
1695
1695
|
}
|
|
1696
|
+
},
|
|
1697
|
+
"greenDealLoan": {
|
|
1698
|
+
"baspiRef": "A7.3",
|
|
1699
|
+
"title": "Green Deal Loan",
|
|
1700
|
+
"required": [
|
|
1701
|
+
"hasGreenDealLoan"
|
|
1702
|
+
],
|
|
1703
|
+
"properties": {
|
|
1704
|
+
"hasGreenDealLoan": {
|
|
1705
|
+
"baspiRef": "A7.3",
|
|
1706
|
+
"title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
|
|
1707
|
+
"discriminator": {
|
|
1708
|
+
"propertyName": "yesNo"
|
|
1709
|
+
},
|
|
1710
|
+
"oneOf": [
|
|
1711
|
+
{
|
|
1712
|
+
"properties": {
|
|
1713
|
+
"yesNo": {
|
|
1714
|
+
"enum": [
|
|
1715
|
+
"No"
|
|
1716
|
+
]
|
|
1717
|
+
}
|
|
1718
|
+
}
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"properties": {
|
|
1722
|
+
"yesNo": {
|
|
1723
|
+
"enum": [
|
|
1724
|
+
"Yes"
|
|
1725
|
+
]
|
|
1726
|
+
},
|
|
1727
|
+
"details": {
|
|
1728
|
+
"baspiRef": "A7.3.2",
|
|
1729
|
+
"title": "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"
|
|
1730
|
+
},
|
|
1731
|
+
"attachments": {
|
|
1732
|
+
"baspiRef": "A7.3.3",
|
|
1733
|
+
"title": "Attachments",
|
|
1734
|
+
"enum": [
|
|
1735
|
+
"Attached",
|
|
1736
|
+
"To follow"
|
|
1737
|
+
]
|
|
1738
|
+
}
|
|
1739
|
+
},
|
|
1740
|
+
"required": [
|
|
1741
|
+
"details",
|
|
1742
|
+
"attachments"
|
|
1743
|
+
]
|
|
1744
|
+
}
|
|
1745
|
+
],
|
|
1746
|
+
"required": [
|
|
1747
|
+
"yesNo"
|
|
1748
|
+
],
|
|
1749
|
+
"properties": {
|
|
1750
|
+
"yesNo": {
|
|
1751
|
+
"baspiRef": "A7.3.1",
|
|
1752
|
+
"enum": [
|
|
1753
|
+
"Yes",
|
|
1754
|
+
"No"
|
|
1755
|
+
]
|
|
1756
|
+
}
|
|
1757
|
+
}
|
|
1758
|
+
}
|
|
1759
|
+
}
|
|
1696
1760
|
}
|
|
1697
1761
|
}
|
|
1698
1762
|
},
|
|
@@ -5378,70 +5442,6 @@
|
|
|
5378
5442
|
}
|
|
5379
5443
|
}
|
|
5380
5444
|
},
|
|
5381
|
-
"greenDealLoan": {
|
|
5382
|
-
"baspiRef": "A7.3",
|
|
5383
|
-
"title": "Green Deal Loan",
|
|
5384
|
-
"required": [
|
|
5385
|
-
"hasGreenDealLoan"
|
|
5386
|
-
],
|
|
5387
|
-
"properties": {
|
|
5388
|
-
"hasGreenDealLoan": {
|
|
5389
|
-
"baspiRef": "A7.3",
|
|
5390
|
-
"title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
|
|
5391
|
-
"discriminator": {
|
|
5392
|
-
"propertyName": "yesNo"
|
|
5393
|
-
},
|
|
5394
|
-
"oneOf": [
|
|
5395
|
-
{
|
|
5396
|
-
"properties": {
|
|
5397
|
-
"yesNo": {
|
|
5398
|
-
"enum": [
|
|
5399
|
-
"No"
|
|
5400
|
-
]
|
|
5401
|
-
}
|
|
5402
|
-
}
|
|
5403
|
-
},
|
|
5404
|
-
{
|
|
5405
|
-
"properties": {
|
|
5406
|
-
"yesNo": {
|
|
5407
|
-
"enum": [
|
|
5408
|
-
"Yes"
|
|
5409
|
-
]
|
|
5410
|
-
},
|
|
5411
|
-
"details": {
|
|
5412
|
-
"baspiRef": "A7.3.2",
|
|
5413
|
-
"title": "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"
|
|
5414
|
-
},
|
|
5415
|
-
"attachments": {
|
|
5416
|
-
"baspiRef": "A7.3.3",
|
|
5417
|
-
"title": "Attachments",
|
|
5418
|
-
"enum": [
|
|
5419
|
-
"Attached",
|
|
5420
|
-
"To follow"
|
|
5421
|
-
]
|
|
5422
|
-
}
|
|
5423
|
-
},
|
|
5424
|
-
"required": [
|
|
5425
|
-
"details",
|
|
5426
|
-
"attachments"
|
|
5427
|
-
]
|
|
5428
|
-
}
|
|
5429
|
-
],
|
|
5430
|
-
"required": [
|
|
5431
|
-
"yesNo"
|
|
5432
|
-
],
|
|
5433
|
-
"properties": {
|
|
5434
|
-
"yesNo": {
|
|
5435
|
-
"baspiRef": "A7.3.1",
|
|
5436
|
-
"enum": [
|
|
5437
|
-
"Yes",
|
|
5438
|
-
"No"
|
|
5439
|
-
]
|
|
5440
|
-
}
|
|
5441
|
-
}
|
|
5442
|
-
}
|
|
5443
|
-
}
|
|
5444
|
-
},
|
|
5445
5445
|
"centralHeating": {
|
|
5446
5446
|
"baspiRef": "A7.4",
|
|
5447
5447
|
"title": "Central Heating",
|
|
@@ -7351,6 +7351,12 @@
|
|
|
7351
7351
|
"uniformBoundaries": {
|
|
7352
7352
|
"baspiRef": "B2.1.0.2",
|
|
7353
7353
|
"title": "Please indicate who has repaired, or treated as belonging to them, each of the boundaries. Identify each boundary as if you were looking at the property from the road.",
|
|
7354
|
+
"required": [
|
|
7355
|
+
"left",
|
|
7356
|
+
"right",
|
|
7357
|
+
"rear",
|
|
7358
|
+
"front"
|
|
7359
|
+
],
|
|
7354
7360
|
"properties": {
|
|
7355
7361
|
"left": {
|
|
7356
7362
|
"baspiRef": "B2.1.1",
|
|
@@ -7394,13 +7400,7 @@
|
|
|
7394
7400
|
}
|
|
7395
7401
|
}
|
|
7396
7402
|
}
|
|
7397
|
-
}
|
|
7398
|
-
"required": [
|
|
7399
|
-
"left",
|
|
7400
|
-
"right",
|
|
7401
|
-
"rear",
|
|
7402
|
-
"front"
|
|
7403
|
-
]
|
|
7403
|
+
}
|
|
7404
7404
|
},
|
|
7405
7405
|
{
|
|
7406
7406
|
"properties": {
|
|
@@ -8931,7 +8931,16 @@
|
|
|
8931
8931
|
"title": "Have all occupiers aged 17 or over agreed to leave prior to completion?",
|
|
8932
8932
|
"required": [
|
|
8933
8933
|
"yesNo"
|
|
8934
|
-
]
|
|
8934
|
+
],
|
|
8935
|
+
"properties": {
|
|
8936
|
+
"yesNo": {
|
|
8937
|
+
"baspiRef": "B6.3.1.1",
|
|
8938
|
+
"enum": [
|
|
8939
|
+
"Yes",
|
|
8940
|
+
"No"
|
|
8941
|
+
]
|
|
8942
|
+
}
|
|
8943
|
+
}
|
|
8935
8944
|
},
|
|
8936
8945
|
"aged17OrOverWillSignToConfirmWillVacate": {
|
|
8937
8946
|
"baspiRef": "B6.3.2",
|
|
@@ -9039,7 +9048,8 @@
|
|
|
9039
9048
|
"willRemoveAllRubbish",
|
|
9040
9049
|
"otherPropertyInChain",
|
|
9041
9050
|
"moveRestrictionDates",
|
|
9042
|
-
"digitalPropertyLogbook"
|
|
9051
|
+
"digitalPropertyLogbook",
|
|
9052
|
+
"sufficientToRepayAllMortgages"
|
|
9043
9053
|
],
|
|
9044
9054
|
"properties": {
|
|
9045
9055
|
"willRemoveAllRubbish": {
|
|
@@ -9154,6 +9164,7 @@
|
|
|
9154
9164
|
},
|
|
9155
9165
|
"restrictedDates": {
|
|
9156
9166
|
"baspiRef": "B7.3.2",
|
|
9167
|
+
"minItems": 1,
|
|
9157
9168
|
"items": {
|
|
9158
9169
|
"baspiRef": "B7.3.2.1"
|
|
9159
9170
|
}
|
|
@@ -222,7 +222,13 @@
|
|
|
222
222
|
},
|
|
223
223
|
"energyEfficiency": {
|
|
224
224
|
"rdsRef": "Certificates/{category='energyEfficiency',standard='EPC',gradeLevelRating=?},Certificates/{category='energyEfficiency',standard='EPC',status='exempt'},",
|
|
225
|
-
"title": "Energy Efficiency"
|
|
225
|
+
"title": "Energy Efficiency",
|
|
226
|
+
"properties": {
|
|
227
|
+
"greenDealLoan": {
|
|
228
|
+
"rdsRef": "RightsHolders/Loans,RightsHolders/OtherDocumentation",
|
|
229
|
+
"title": "Green Deal Loan"
|
|
230
|
+
}
|
|
231
|
+
}
|
|
226
232
|
},
|
|
227
233
|
"councilTax": {
|
|
228
234
|
"properties": {
|
|
@@ -2077,10 +2083,6 @@
|
|
|
2077
2083
|
}
|
|
2078
2084
|
}
|
|
2079
2085
|
},
|
|
2080
|
-
"greenDealLoan": {
|
|
2081
|
-
"rdsRef": "RightsHolders/Loans,RightsHolders/OtherDocumentation",
|
|
2082
|
-
"title": "Green Deal Loan"
|
|
2083
|
-
},
|
|
2084
2086
|
"centralHeating": {
|
|
2085
2087
|
"rdsRef": "Buildings|BuildingSections/isUnheated=no|yes|true|false",
|
|
2086
2088
|
"title": "Central Heating",
|
|
@@ -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
|
},
|
|
@@ -1670,37 +1701,6 @@
|
|
|
1670
1701
|
}
|
|
1671
1702
|
}
|
|
1672
1703
|
},
|
|
1673
|
-
"greenDealLoan": {
|
|
1674
|
-
"properties": {
|
|
1675
|
-
"hasGreenDealLoan": {
|
|
1676
|
-
"ta6Ref": "7.7",
|
|
1677
|
-
"title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
|
|
1678
|
-
"discriminator": {
|
|
1679
|
-
"propertyName": "yesNo"
|
|
1680
|
-
},
|
|
1681
|
-
"oneOf": [
|
|
1682
|
-
{
|
|
1683
|
-
"properties": {
|
|
1684
|
-
"yesNo": {
|
|
1685
|
-
"enum": [
|
|
1686
|
-
"No"
|
|
1687
|
-
]
|
|
1688
|
-
}
|
|
1689
|
-
}
|
|
1690
|
-
},
|
|
1691
|
-
{
|
|
1692
|
-
"properties": {
|
|
1693
|
-
"yesNo": {
|
|
1694
|
-
"enum": [
|
|
1695
|
-
"Yes"
|
|
1696
|
-
]
|
|
1697
|
-
}
|
|
1698
|
-
}
|
|
1699
|
-
}
|
|
1700
|
-
]
|
|
1701
|
-
}
|
|
1702
|
-
}
|
|
1703
|
-
},
|
|
1704
1704
|
"centralHeating": {
|
|
1705
1705
|
"properties": {
|
|
1706
1706
|
"hasCentralHeating": {
|
|
@@ -6890,6 +6890,59 @@
|
|
|
6890
6890
|
}
|
|
6891
6891
|
}
|
|
6892
6892
|
}
|
|
6893
|
+
},
|
|
6894
|
+
"greenDealLoan": {
|
|
6895
|
+
"title": "Green Deal Loan",
|
|
6896
|
+
"type": "object",
|
|
6897
|
+
"properties": {
|
|
6898
|
+
"hasGreenDealLoan": {
|
|
6899
|
+
"title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
|
|
6900
|
+
"type": "object",
|
|
6901
|
+
"properties": {
|
|
6902
|
+
"yesNo": {
|
|
6903
|
+
"type": "string",
|
|
6904
|
+
"title": "",
|
|
6905
|
+
"enum": [
|
|
6906
|
+
"Yes",
|
|
6907
|
+
"No"
|
|
6908
|
+
]
|
|
6909
|
+
}
|
|
6910
|
+
},
|
|
6911
|
+
"oneOf": [
|
|
6912
|
+
{
|
|
6913
|
+
"properties": {
|
|
6914
|
+
"yesNo": {
|
|
6915
|
+
"enum": [
|
|
6916
|
+
"No"
|
|
6917
|
+
]
|
|
6918
|
+
}
|
|
6919
|
+
}
|
|
6920
|
+
},
|
|
6921
|
+
{
|
|
6922
|
+
"properties": {
|
|
6923
|
+
"yesNo": {
|
|
6924
|
+
"enum": [
|
|
6925
|
+
"Yes"
|
|
6926
|
+
]
|
|
6927
|
+
},
|
|
6928
|
+
"details": {
|
|
6929
|
+
"title": "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",
|
|
6930
|
+
"type": "string",
|
|
6931
|
+
"minLength": 1
|
|
6932
|
+
},
|
|
6933
|
+
"attachments": {
|
|
6934
|
+
"title": "Attachments",
|
|
6935
|
+
"type": "string",
|
|
6936
|
+
"enum": [
|
|
6937
|
+
"Attached",
|
|
6938
|
+
"To follow"
|
|
6939
|
+
]
|
|
6940
|
+
}
|
|
6941
|
+
}
|
|
6942
|
+
}
|
|
6943
|
+
]
|
|
6944
|
+
}
|
|
6945
|
+
}
|
|
6893
6946
|
}
|
|
6894
6947
|
}
|
|
6895
6948
|
},
|
|
@@ -16066,59 +16119,6 @@
|
|
|
16066
16119
|
}
|
|
16067
16120
|
}
|
|
16068
16121
|
},
|
|
16069
|
-
"greenDealLoan": {
|
|
16070
|
-
"title": "Green Deal Loan",
|
|
16071
|
-
"type": "object",
|
|
16072
|
-
"properties": {
|
|
16073
|
-
"hasGreenDealLoan": {
|
|
16074
|
-
"title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
|
|
16075
|
-
"type": "object",
|
|
16076
|
-
"properties": {
|
|
16077
|
-
"yesNo": {
|
|
16078
|
-
"type": "string",
|
|
16079
|
-
"title": "",
|
|
16080
|
-
"enum": [
|
|
16081
|
-
"Yes",
|
|
16082
|
-
"No"
|
|
16083
|
-
]
|
|
16084
|
-
}
|
|
16085
|
-
},
|
|
16086
|
-
"oneOf": [
|
|
16087
|
-
{
|
|
16088
|
-
"properties": {
|
|
16089
|
-
"yesNo": {
|
|
16090
|
-
"enum": [
|
|
16091
|
-
"No"
|
|
16092
|
-
]
|
|
16093
|
-
}
|
|
16094
|
-
}
|
|
16095
|
-
},
|
|
16096
|
-
{
|
|
16097
|
-
"properties": {
|
|
16098
|
-
"yesNo": {
|
|
16099
|
-
"enum": [
|
|
16100
|
-
"Yes"
|
|
16101
|
-
]
|
|
16102
|
-
},
|
|
16103
|
-
"details": {
|
|
16104
|
-
"title": "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",
|
|
16105
|
-
"type": "string",
|
|
16106
|
-
"minLength": 1
|
|
16107
|
-
},
|
|
16108
|
-
"attachments": {
|
|
16109
|
-
"title": "Attachments",
|
|
16110
|
-
"type": "string",
|
|
16111
|
-
"enum": [
|
|
16112
|
-
"Attached",
|
|
16113
|
-
"To follow"
|
|
16114
|
-
]
|
|
16115
|
-
}
|
|
16116
|
-
}
|
|
16117
|
-
}
|
|
16118
|
-
]
|
|
16119
|
-
}
|
|
16120
|
-
}
|
|
16121
|
-
},
|
|
16122
16122
|
"centralHeating": {
|
|
16123
16123
|
"title": "Central Heating",
|
|
16124
16124
|
"type": "object",
|
|
@@ -19351,7 +19351,8 @@
|
|
|
19351
19351
|
"items": {
|
|
19352
19352
|
"type": "string",
|
|
19353
19353
|
"format": "date"
|
|
19354
|
-
}
|
|
19354
|
+
},
|
|
19355
|
+
"minItems": 1
|
|
19355
19356
|
}
|
|
19356
19357
|
}
|
|
19357
19358
|
}
|
|
@@ -19396,11 +19397,7 @@
|
|
|
19396
19397
|
"willHandoverLogbook": {
|
|
19397
19398
|
"title": "Please confirm that on completion you will transfer it to the new owner",
|
|
19398
19399
|
"confirmation": {
|
|
19399
|
-
"type": "
|
|
19400
|
-
"enum": [
|
|
19401
|
-
"true",
|
|
19402
|
-
"false"
|
|
19403
|
-
]
|
|
19400
|
+
"type": "boolean"
|
|
19404
19401
|
}
|
|
19405
19402
|
}
|
|
19406
19403
|
}
|