@pdtf/schemas 3.0.0-2 → 3.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.
Files changed (33) hide show
  1. package/index.js +15 -13
  2. package/package.json +1 -1
  3. package/src/examples/v3/exampleTransaction.json +82 -75
  4. package/src/schemas/v2/overlays/baspi.json +510 -2331
  5. package/src/schemas/v2/overlays/con29DW.json +36 -125
  6. package/src/schemas/v2/overlays/con29R.json +5 -143
  7. package/src/schemas/v2/overlays/fme1.json +48 -233
  8. package/src/schemas/v2/overlays/lpe1.json +75 -367
  9. package/src/schemas/v2/overlays/nts.json +17 -103
  10. package/src/schemas/v2/overlays/piq.json +146 -693
  11. package/src/schemas/v2/overlays/rds.json +50 -316
  12. package/src/schemas/v2/overlays/ta10.json +540 -1755
  13. package/src/schemas/v2/overlays/ta6.json +241 -1193
  14. package/src/schemas/v2/overlays/ta7.json +106 -440
  15. package/src/schemas/v3/combined.json +2434 -2581
  16. package/src/schemas/v3/overlays/baspi.json +1360 -3480
  17. package/src/schemas/v3/overlays/con29DW.json +36 -125
  18. package/src/schemas/v3/overlays/con29R.json +5 -143
  19. package/src/schemas/v3/overlays/fme1.json +53 -233
  20. package/src/schemas/v3/overlays/lpe1.json +85 -367
  21. package/src/schemas/v3/overlays/nts.json +711 -634
  22. package/src/schemas/v3/overlays/piq.json +452 -1190
  23. package/src/schemas/v3/overlays/rds.json +500 -1059
  24. package/src/schemas/v3/overlays/ta10.json +540 -1755
  25. package/src/schemas/v3/overlays/ta6.json +787 -1678
  26. package/src/schemas/v3/overlays/ta7.json +220 -462
  27. package/src/schemas/v3/pdtf-transaction.json +1976 -2286
  28. package/src/schemas/v3/skeleton.json +248 -214
  29. package/src/tests/v3/transactionSchema.test.js +28 -18
  30. package/src/tests/v3/verifiedClaimsValidator.test.js +2 -2
  31. package/src/utils/extractOverlay.js +5 -27
  32. package/src/tests/v2/transactionSchema.test.js +0 -361
  33. package/src/tests/v2/verifiedClaimsValidator.test.js +0 -128
@@ -7,12 +7,10 @@
7
7
  "materialFacts": {
8
8
  "properties": {
9
9
  "address": {
10
- "rdsRef": "Property/Address/xal:AddressDetails",
11
- "title": "Property Address"
10
+ "rdsRef": "Property/Address/xal:AddressDetails"
12
11
  },
13
12
  "uprn": {
14
- "rdsRef": "Property/GUID/{name='UPRN',id=?}",
15
- "title": "Unique Property Reference Number "
13
+ "rdsRef": "Property/GUID/{name='UPRN',id=?}"
16
14
  },
17
15
  "ownership": {
18
16
  "properties": {
@@ -20,16 +18,7 @@
20
18
  "items": {
21
19
  "properties": {
22
20
  "ownershipType": {
23
- "rdsRef": "Tenure/Tenure",
24
- "title": "What type of ownership is the property?",
25
- "description": "A Managed Freehold is any freehold where there are shared amenities, the maintenance of which you pay for through an estate rentcharge, service charge, informal or formal contribution. Choose Leasehold if your property is under a Shared Ownership arrangement.",
26
- "enum": [
27
- "Freehold",
28
- "Managed Freehold",
29
- "Commonhold",
30
- "Leasehold",
31
- "Other"
32
- ]
21
+ "rdsRef": "Tenure/Tenure"
33
22
  }
34
23
  },
35
24
  "oneOf": [
@@ -45,8 +34,7 @@
45
34
  {
46
35
  "properties": {
47
36
  "annualGroundRent": {
48
- "rdsRef": "TenureAgreements/RentPayable/Value",
49
- "title": "What is the annual ground rent payable? (£)"
37
+ "rdsRef": "TenureAgreements/RentPayable/Value"
50
38
  }
51
39
  }
52
40
  }
@@ -62,14 +50,12 @@
62
50
  }
63
51
  },
64
52
  "parking": {
65
- "rdsRef": "Services/Parking",
66
- "title": "Parking"
53
+ "rdsRef": "Services/Parking"
67
54
  },
68
55
  "listingAndConservation": {
69
56
  "properties": {
70
57
  "isListed": {
71
58
  "rdsRef": "Protections",
72
- "title": "Is the property a listed building in England or Wales?",
73
59
  "discriminator": {
74
60
  "propertyName": "yesNo"
75
61
  },
@@ -97,7 +83,6 @@
97
83
  },
98
84
  "isConservationArea": {
99
85
  "rdsRef": "Protections",
100
- "title": "Is the property in a designated conservation area?",
101
86
  "discriminator": {
102
87
  "propertyName": "yesNo"
103
88
  },
@@ -125,7 +110,6 @@
125
110
  },
126
111
  "hasTreePreservationOrder": {
127
112
  "rdsRef": "Property/Flags",
128
- "title": "To your knowledge, does a tree preservation order apply to any trees within the boundaries of the property?",
129
113
  "discriminator": {
130
114
  "propertyName": "yesNo"
131
115
  },
@@ -149,7 +133,6 @@
149
133
  },
150
134
  "workCarriedOut": {
151
135
  "rdsRef": "WorksAlterationsChanges",
152
- "title": "Has work been carried out to any trees which are protected by the order?",
153
136
  "discriminator": {
154
137
  "propertyName": "yesNo"
155
138
  },
@@ -171,13 +154,7 @@
171
154
  ]
172
155
  },
173
156
  "consentsObtained": {
174
- "rdsRef": "Protections",
175
- "title": "Were the relevant consents obtained?",
176
- "enum": [
177
- "Yes",
178
- "No",
179
- "Not known"
180
- ]
157
+ "rdsRef": "Protections"
181
158
  }
182
159
  }
183
160
  }
@@ -193,8 +170,6 @@
193
170
  "properties": {
194
171
  "isStandardForm": {
195
172
  "rdsRef": "Buildings,BuildingSections/ConstructionType,ConstructionMaterials",
196
- "title": "Is the property built in a standard form of construction? E.g. brick and/or block with timber-supported roof comprising a tile or slate cover?",
197
- "description": "Examples of non-standard features which might affect a buyer are are thatched roofs, prefabricated buildings or timber-framed windows",
198
173
  "discriminator": {
199
174
  "propertyName": "yesNo"
200
175
  },
@@ -223,35 +198,19 @@
223
198
  },
224
199
  "energyEfficiency": {
225
200
  "rdsRef": "Certificates/{category='energyEfficiency',standard='EPC',gradeLevelRating=?},Certificates/{category='energyEfficiency',standard='EPC',status='exempt'},",
226
- "title": "Energy Efficiency",
227
201
  "properties": {
228
202
  "greenDealLoan": {
229
- "rdsRef": "RightsHolders/Loans,RightsHolders/OtherDocumentation",
230
- "title": "Green Deal Loan"
203
+ "rdsRef": "RightsHolders/Loans,RightsHolders/OtherDocumentation"
231
204
  }
232
205
  }
233
206
  },
234
207
  "councilTax": {
235
208
  "properties": {
236
209
  "councilTaxBand": {
237
- "rdsRef": "TenureAgreements/Taxes/{banding=?}",
238
- "title": "Which Council Tax band does this property fall within?",
239
- "description": "Band I relates to Wales only",
240
- "enum": [
241
- "A",
242
- "B",
243
- "C",
244
- "D",
245
- "E",
246
- "F",
247
- "G",
248
- "H",
249
- "I"
250
- ]
210
+ "rdsRef": "TenureAgreements/Taxes/{banding=?}"
251
211
  },
252
212
  "councilTaxAffectingAlterations": {
253
213
  "rdsRef": "TenureAgreements/Taxes/WorksAlterationsChanges",
254
- "title": "Have you altered the property in any way to the extent that it might change the Council Tax band e.g. added a bedroom or substantially extended the property?",
255
214
  "discriminator": {
256
215
  "propertyName": "yesNo"
257
216
  },
@@ -282,8 +241,6 @@
282
241
  "properties": {
283
242
  "hasDisputesAndComplaints": {
284
243
  "rdsRef": "Tenure/DisputesComplaints,Tenure/LegalClaims",
285
- "title": "Have any disputes or complaints occurred, regarding this property, a property nearby, or their use?",
286
- "description": "E.g boundary disagreement, noise, trespass etc",
287
244
  "discriminator": {
288
245
  "propertyName": "yesNo"
289
246
  },
@@ -310,7 +267,6 @@
310
267
  },
311
268
  "leadingToDisputesAndComplaints": {
312
269
  "rdsRef": "Tenure/DisputesComplaints,Tenure/LegalClaims",
313
- "title": "Is the seller aware of anything which might lead to a dispute about the property or a property nearby?",
314
270
  "discriminator": {
315
271
  "propertyName": "yesNo"
316
272
  },
@@ -341,7 +297,6 @@
341
297
  "properties": {
342
298
  "hasStructuralAlterations": {
343
299
  "rdsRef": "WorksAlterationsChanges",
344
- "title": "Have there been any structural alterations, extensions, significant repairs or renewals to the property? (e.g. extensions, loft or garage conversion, removal of internal walls or chimneys)",
345
300
  "discriminator": {
346
301
  "propertyName": "yesNo"
347
302
  },
@@ -364,7 +319,6 @@
364
319
  },
365
320
  "buildingRegApproval": {
366
321
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
367
- "title": "Was Building Regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
368
322
  "discriminator": {
369
323
  "propertyName": "yesNo"
370
324
  },
@@ -392,7 +346,6 @@
392
346
  },
393
347
  "planningPermission": {
394
348
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
395
- "title": "Was planning permission obtained?",
396
349
  "discriminator": {
397
350
  "propertyName": "yesNo"
398
351
  },
@@ -420,7 +373,6 @@
420
373
  },
421
374
  "listedBuildingConsent": {
422
375
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
423
- "title": "Was listed building consent obtained?",
424
376
  "discriminator": {
425
377
  "propertyName": "yesNo"
426
378
  },
@@ -448,7 +400,6 @@
448
400
  },
449
401
  "deedRestrictionConsent": {
450
402
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
451
- "title": "Was any consent under a restriction in the deeds obtained? E.g. if your deeds require consent from someone else to alter or extend the property",
452
403
  "discriminator": {
453
404
  "propertyName": "yesNo"
454
405
  },
@@ -480,7 +431,6 @@
480
431
  },
481
432
  "changeOfUse": {
482
433
  "rdsRef": "WorksAlterationsChanges",
483
- "title": "Has there been any change of use (e.g. from an office to a residence)?",
484
434
  "discriminator": {
485
435
  "propertyName": "yesNo"
486
436
  },
@@ -503,7 +453,6 @@
503
453
  },
504
454
  "buildingRegApproval": {
505
455
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
506
- "title": "Was building regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
507
456
  "discriminator": {
508
457
  "propertyName": "yesNo"
509
458
  },
@@ -531,7 +480,6 @@
531
480
  },
532
481
  "planningPermission": {
533
482
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
534
- "title": "Was planning permission obtained?",
535
483
  "discriminator": {
536
484
  "propertyName": "yesNo"
537
485
  },
@@ -559,7 +507,6 @@
559
507
  },
560
508
  "listedBuildingConsent": {
561
509
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
562
- "title": "Was listed building consent obtained?",
563
510
  "discriminator": {
564
511
  "propertyName": "yesNo"
565
512
  },
@@ -587,7 +534,6 @@
587
534
  },
588
535
  "deedRestrictionConsent": {
589
536
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
590
- "title": "Was any consent under a restriction in the deeds obtained? E.g. if your deeds require consent from someone else to alter or extend the property",
591
537
  "discriminator": {
592
538
  "propertyName": "yesNo"
593
539
  },
@@ -619,7 +565,6 @@
619
565
  },
620
566
  "windowReplacementsSince2002": {
621
567
  "rdsRef": "WorksAlterationsChanges",
622
- "title": "Since 1st April 2002 has replacement of any windows, roof windows, roof lights, glazed doors taken place?",
623
568
  "discriminator": {
624
569
  "propertyName": "yesNo"
625
570
  },
@@ -642,7 +587,6 @@
642
587
  },
643
588
  "buildingRegApproval": {
644
589
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
645
- "title": "Was building regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
646
590
  "discriminator": {
647
591
  "propertyName": "yesNo"
648
592
  },
@@ -670,7 +614,6 @@
670
614
  },
671
615
  "planningPermission": {
672
616
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
673
- "title": "Was planning permission obtained?",
674
617
  "discriminator": {
675
618
  "propertyName": "yesNo"
676
619
  },
@@ -698,7 +641,6 @@
698
641
  },
699
642
  "listedBuildingConsent": {
700
643
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
701
- "title": "Was listed building consent obtained?",
702
644
  "discriminator": {
703
645
  "propertyName": "yesNo"
704
646
  },
@@ -726,7 +668,6 @@
726
668
  },
727
669
  "deedRestrictionConsent": {
728
670
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
729
- "title": "Was any consent under a restriction in the deeds obtained? E.g. if your deeds require consent from someone else to alter or extend the property",
730
671
  "discriminator": {
731
672
  "propertyName": "yesNo"
732
673
  },
@@ -758,7 +699,6 @@
758
699
  },
759
700
  "hasAddedConservatory": {
760
701
  "rdsRef": "WorksAlterationsChanges",
761
- "title": "Has a conservatory been added?",
762
702
  "discriminator": {
763
703
  "propertyName": "yesNo"
764
704
  },
@@ -781,7 +721,6 @@
781
721
  },
782
722
  "buildingRegApproval": {
783
723
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
784
- "title": "Was building regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
785
724
  "discriminator": {
786
725
  "propertyName": "yesNo"
787
726
  },
@@ -809,7 +748,6 @@
809
748
  },
810
749
  "planningPermission": {
811
750
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
812
- "title": "Was planning permission obtained?",
813
751
  "discriminator": {
814
752
  "propertyName": "yesNo"
815
753
  },
@@ -837,7 +775,6 @@
837
775
  },
838
776
  "listedBuildingConsent": {
839
777
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
840
- "title": "Was listed building consent obtained?",
841
778
  "discriminator": {
842
779
  "propertyName": "yesNo"
843
780
  },
@@ -865,7 +802,6 @@
865
802
  },
866
803
  "deedRestrictionConsent": {
867
804
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
868
- "title": "Was any consent under a restriction in the deeds obtained? E.g. if your deeds require consent from someone else to alter or extend the property",
869
805
  "discriminator": {
870
806
  "propertyName": "yesNo"
871
807
  },
@@ -897,7 +833,6 @@
897
833
  },
898
834
  "worksUnfinished": {
899
835
  "rdsRef": "WorksAlterationsChanges/isIncomplete",
900
- "title": "Are any of the works listed above unfinished?",
901
836
  "discriminator": {
902
837
  "propertyName": "yesNo"
903
838
  },
@@ -924,7 +859,6 @@
924
859
  },
925
860
  "planningPermissionBreaches": {
926
861
  "rdsRef": "Property/Flags",
927
- "title": "Are you aware of any breaches of planning permission conditions or building regulations consent conditions or work not having the necessary consents?",
928
862
  "discriminator": {
929
863
  "propertyName": "yesNo"
930
864
  },
@@ -946,16 +880,10 @@
946
880
  ]
947
881
  },
948
882
  "details": {
949
- "rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
950
- "title": "Please give details"
883
+ "rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised"
951
884
  },
952
885
  "willingToInsure": {
953
- "rdsRef": "Insurance/isWillingToProvide",
954
- "title": "Confirm whether you will pay for an insurance policy if the Local Authority still have power to enforce the breach. Your property lawyer can obtain a quote for you. (If you already have a policy please give it to your property lawyer and include details in Question 6 of Section B) [*Note: It will be a term of the insurance policy that the Local Authority is not contacted so if you have contacted the Local Authority the option of indemnity insurance will not be available.]",
955
- "enum": [
956
- "Yes",
957
- "No"
958
- ]
886
+ "rdsRef": "Insurance/isWillingToProvide"
959
887
  }
960
888
  }
961
889
  }
@@ -963,7 +891,6 @@
963
891
  },
964
892
  "unresolvedPlanningIssues": {
965
893
  "rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
966
- "title": "Are you aware of any unresolved planning or building control issues?",
967
894
  "discriminator": {
968
895
  "propertyName": "yesNo"
969
896
  },
@@ -985,16 +912,10 @@
985
912
  ]
986
913
  },
987
914
  "details": {
988
- "rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
989
- "title": "Please give details"
915
+ "rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised"
990
916
  },
991
917
  "willingToInsure": {
992
- "rdsRef": "Insurance/isWillingToProvide",
993
- "title": "Confirm whether you will pay for an insurance policy if the Local Authority still have power to enforce the breach. Your property lawyer can obtain a quote for you. (If you already have a policy please give it to your property lawyer and include details in Question 6 of Section B) [*Note: It will be a term of the insurance policy that the Local Authority is not contacted so if you have contacted the Local Authority the option of indemnity insurance will not be available.]",
994
- "enum": [
995
- "Yes",
996
- "No"
997
- ]
918
+ "rdsRef": "Insurance/isWillingToProvide"
998
919
  }
999
920
  }
1000
921
  }
@@ -1006,7 +927,6 @@
1006
927
  "properties": {
1007
928
  "neighbourDevelopment": {
1008
929
  "rdsRef": "Property/Flags,Planning",
1009
- "title": "The owner of a neighbouring property is proposing to develop property or land nearby, make alterations to nearby buildings or change the use?",
1010
930
  "discriminator": {
1011
931
  "propertyName": "yesNo"
1012
932
  },
@@ -1033,7 +953,6 @@
1033
953
  },
1034
954
  "planningApplication": {
1035
955
  "rdsRef": "Property/Flags,Planning",
1036
- "title": "Any planning application that could affect the property, the enjoyment of it or the views from it?",
1037
956
  "discriminator": {
1038
957
  "propertyName": "yesNo"
1039
958
  },
@@ -1060,7 +979,6 @@
1060
979
  },
1061
980
  "requiredMaintenance": {
1062
981
  "rdsRef": "Property/Flags,Notifications",
1063
- "title": "Notice informing you that maintenance, repairs or improvements are required to your property?",
1064
982
  "discriminator": {
1065
983
  "propertyName": "yesNo"
1066
984
  },
@@ -1087,7 +1005,6 @@
1087
1005
  },
1088
1006
  "listedBuildingApplication": {
1089
1007
  "rdsRef": "Property/Flags,Protections",
1090
- "title": "Listed building application",
1091
1008
  "discriminator": {
1092
1009
  "propertyName": "yesNo"
1093
1010
  },
@@ -1114,7 +1031,6 @@
1114
1031
  },
1115
1032
  "infrastructureProject": {
1116
1033
  "rdsRef": "Property/Flags,Planning",
1117
- "title": "Infrastructure project, proposed or in progress (i.e. wind turbine, railway, fracking, etc)",
1118
1034
  "discriminator": {
1119
1035
  "propertyName": "yesNo"
1120
1036
  },
@@ -1141,7 +1057,6 @@
1141
1057
  },
1142
1058
  "partyWallAct": {
1143
1059
  "rdsRef": "Property/Flags,Notifications",
1144
- "title": "Notice under the Party Wall Act 1996 in respect of any shared or party boundaries?",
1145
1060
  "discriminator": {
1146
1061
  "propertyName": "yesNo"
1147
1062
  },
@@ -1168,7 +1083,6 @@
1168
1083
  },
1169
1084
  "otherNotices": {
1170
1085
  "rdsRef": "Property/Flags,Notifications",
1171
- "title": "Any other type of notice?",
1172
1086
  "discriminator": {
1173
1087
  "propertyName": "yesNo"
1174
1088
  },
@@ -1199,7 +1113,6 @@
1199
1113
  "properties": {
1200
1114
  "dryRotEtcTreatment": {
1201
1115
  "rdsRef": "Property/Flags,BuildingSections/EnvironmentalIssues",
1202
- "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?",
1203
1116
  "discriminator": {
1204
1117
  "propertyName": "yesNo"
1205
1118
  },
@@ -1226,7 +1139,6 @@
1226
1139
  },
1227
1140
  "containsAsbestos": {
1228
1141
  "rdsRef": "Property/Flags,BuildingSections/EnvironmentalIssues",
1229
- "title": "To your knowledge, does any part of your property contain asbestos?",
1230
1142
  "discriminator": {
1231
1143
  "propertyName": "yesNo"
1232
1144
  },
@@ -1253,7 +1165,6 @@
1253
1165
  },
1254
1166
  "japaneseKnotweed": {
1255
1167
  "rdsRef": "Property/Flags,BuildingSections/EnvironmentalIssues,Use/EnvironmentalIssues",
1256
- "title": "To your knowledge, is the property or neighbouring land, affected by Japanese knotweed or other invasive species?",
1257
1168
  "discriminator": {
1258
1169
  "propertyName": "yesNo"
1259
1170
  },
@@ -1281,7 +1192,6 @@
1281
1192
  },
1282
1193
  "subsidenceOrStructuralFault": {
1283
1194
  "rdsRef": "Property/Flags,BuildingSections/EnvironmentalIssues",
1284
- "title": "To your knowledge, has the property ever been subject to subsidence or structural fault?",
1285
1195
  "discriminator": {
1286
1196
  "propertyName": "yesNo"
1287
1197
  },
@@ -1308,7 +1218,6 @@
1308
1218
  },
1309
1219
  "ongoingHealthOrSafetyIssue": {
1310
1220
  "rdsRef": "Property/Flags,BuildingSections/EnvironmentalIssues",
1311
- "title": "Have you been notified by a relevant authority or qualified expert of an on-going health or safety issue with the property?",
1312
1221
  "discriminator": {
1313
1222
  "propertyName": "yesNo"
1314
1223
  },
@@ -1339,7 +1248,6 @@
1339
1248
  "properties": {
1340
1249
  "itemsToRemove": {
1341
1250
  "rdsRef": "Objects/{isIncludedInExchange='no',class='fixture|fitting}",
1342
- "title": "Are there any items, which would be considered a fixture or fitting, that you intend to take? E.g. Carpets, curtains, light fittings, fitted cupboards, etc",
1343
1251
  "discriminator": {
1344
1252
  "propertyName": "yesNo"
1345
1253
  },
@@ -1366,7 +1274,6 @@
1366
1274
  },
1367
1275
  "itemsToInclude": {
1368
1276
  "rdsRef": "Objects/{isIncludedInExchange='true',class='equipment|furniture}",
1369
- "title": "Are there additional furniture items or possessions are you very likely to include in the sale, irrespective of sale price?",
1370
1277
  "discriminator": {
1371
1278
  "propertyName": "yesNo"
1372
1279
  },
@@ -1393,11 +1300,11 @@
1393
1300
  }
1394
1301
  }
1395
1302
  },
1396
- "connectedUtilities": {
1303
+ "electricity": {
1304
+ "rdsRef": "Services/Electricity",
1397
1305
  "properties": {
1398
1306
  "mainsElectricity": {
1399
1307
  "rdsRef": "Services/Electricity",
1400
- "title": "Mains electricity",
1401
1308
  "discriminator": {
1402
1309
  "propertyName": "yesNo"
1403
1310
  },
@@ -1417,6 +1324,9 @@
1417
1324
  "enum": [
1418
1325
  "Yes"
1419
1326
  ]
1327
+ },
1328
+ "electricityMeter": {
1329
+ "rdsRef": "Objects/class='meters|'&access=?&accessLocation=?"
1420
1330
  }
1421
1331
  }
1422
1332
  },
@@ -1431,45 +1341,110 @@
1431
1341
  }
1432
1342
  ]
1433
1343
  },
1434
- "mainsGas": {
1435
- "rdsRef": "Services/Gas",
1436
- "title": "Mains gas",
1437
- "discriminator": {
1438
- "propertyName": "yesNo"
1439
- },
1344
+ "solarPanels": {
1440
1345
  "oneOf": [
1346
+ null,
1441
1347
  {
1442
1348
  "properties": {
1443
- "yesNo": {
1444
- "enum": [
1445
- "No"
1349
+ "yearInstalled": {
1350
+ "rdsRef": "Objects/Installation"
1351
+ },
1352
+ "panelsOwnedOutright": {
1353
+ "rdsRef": "Objects/Ownership",
1354
+ "discriminator": {
1355
+ "propertyName": "yesNo"
1356
+ },
1357
+ "oneOf": [
1358
+ {
1359
+ "properties": {
1360
+ "yesNo": {
1361
+ "enum": [
1362
+ "Yes"
1363
+ ]
1364
+ }
1365
+ }
1366
+ },
1367
+ {
1368
+ "properties": {
1369
+ "yesNo": {
1370
+ "enum": [
1371
+ "No"
1372
+ ]
1373
+ }
1374
+ }
1375
+ }
1446
1376
  ]
1447
- }
1448
- }
1449
- },
1450
- {
1451
- "properties": {
1452
- "yesNo": {
1453
- "enum": [
1454
- "Yes"
1377
+ },
1378
+ "panelProviderLease": {
1379
+ "rdsRef": "Objects/Ownership",
1380
+ "discriminator": {
1381
+ "propertyName": "yesNo"
1382
+ },
1383
+ "oneOf": [
1384
+ {
1385
+ "properties": {
1386
+ "yesNo": {
1387
+ "enum": [
1388
+ "No"
1389
+ ]
1390
+ }
1391
+ }
1392
+ },
1393
+ {
1394
+ "properties": {
1395
+ "yesNo": {
1396
+ "enum": [
1397
+ "Yes"
1398
+ ]
1399
+ }
1400
+ }
1401
+ }
1455
1402
  ]
1456
- }
1457
- }
1458
- },
1459
- {
1460
- "properties": {
1461
- "yesNo": {
1462
- "enum": [
1463
- "To be connected"
1403
+ },
1404
+ "lastMaintained": {
1405
+ "rdsRef": "Objects/Servicing"
1406
+ },
1407
+ "inGoodWorkingOrder": {
1408
+ "rdsRef": "Objects/isNotWorking=yes|no|true|false",
1409
+ "discriminator": {
1410
+ "propertyName": "yesNo"
1411
+ },
1412
+ "oneOf": [
1413
+ {
1414
+ "properties": {
1415
+ "yesNo": {
1416
+ "enum": [
1417
+ "Yes"
1418
+ ]
1419
+ }
1420
+ }
1421
+ },
1422
+ {
1423
+ "properties": {
1424
+ "yesNo": {
1425
+ "enum": [
1426
+ "No"
1427
+ ]
1428
+ }
1429
+ }
1430
+ }
1464
1431
  ]
1432
+ },
1433
+ "isConnectedToNationalGrid": {
1434
+ "rdsRef": "Objects/isExternallyConnected=yes|no|true|false,Connection,Objects/ExternalConnection"
1435
+ },
1436
+ "photovoltaicMeterPanelLocation": {
1437
+ "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?"
1438
+ },
1439
+ "photovoltaicBatteriesLocation": {
1440
+ "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?"
1465
1441
  }
1466
1442
  }
1467
1443
  }
1468
1444
  ]
1469
1445
  },
1470
- "lpg": {
1471
- "rdsRef": "Services/LiquefiedPetroleumGas",
1472
- "title": "Liquid Petroleum Gas (LPG)",
1446
+ "otherSources": {
1447
+ "rdsRef": "Services/Other",
1473
1448
  "discriminator": {
1474
1449
  "propertyName": "yesNo"
1475
1450
  },
@@ -1502,301 +1477,93 @@
1502
1477
  }
1503
1478
  }
1504
1479
  ]
1505
- },
1506
- "oil": {
1507
- "rdsRef": "Services/Oil",
1508
- "title": "Oil",
1509
- "discriminator": {
1510
- "propertyName": "yesNo"
1511
- },
1512
- "oneOf": [
1513
- {
1514
- "properties": {
1515
- "yesNo": {
1516
- "enum": [
1517
- "No"
1518
- ]
1519
- }
1520
- }
1521
- },
1522
- {
1523
- "properties": {
1524
- "yesNo": {
1525
- "enum": [
1526
- "Yes"
1527
- ]
1528
- }
1529
- }
1530
- },
1531
- {
1532
- "properties": {
1533
- "yesNo": {
1534
- "enum": [
1535
- "To be connected"
1536
- ]
1480
+ }
1481
+ }
1482
+ },
1483
+ "waterAndDrainage": {
1484
+ "properties": {
1485
+ "water": {
1486
+ "properties": {
1487
+ "mainsWater": {
1488
+ "rdsRef": "Services/PotableWaterSupply",
1489
+ "discriminator": {
1490
+ "propertyName": "yesNo"
1491
+ },
1492
+ "oneOf": [
1493
+ {
1494
+ "properties": {
1495
+ "yesNo": {
1496
+ "enum": [
1497
+ "No"
1498
+ ]
1499
+ }
1500
+ }
1501
+ },
1502
+ {
1503
+ "properties": {
1504
+ "yesNo": {
1505
+ "enum": [
1506
+ "Yes"
1507
+ ]
1508
+ },
1509
+ "stopcock": {
1510
+ "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?"
1511
+ }
1512
+ }
1513
+ },
1514
+ {
1515
+ "properties": {
1516
+ "yesNo": {
1517
+ "enum": [
1518
+ "To be connected"
1519
+ ]
1520
+ }
1521
+ }
1537
1522
  }
1538
- }
1523
+ ]
1539
1524
  }
1540
- ]
1525
+ }
1541
1526
  },
1542
- "telephone": {
1543
- "rdsRef": "Services/Telephone",
1544
- "title": "Telephone",
1545
- "discriminator": {
1546
- "propertyName": "yesNo"
1547
- },
1548
- "oneOf": [
1549
- {
1550
- "properties": {
1551
- "yesNo": {
1552
- "enum": [
1553
- "No"
1554
- ]
1555
- }
1556
- }
1557
- },
1558
- {
1559
- "properties": {
1560
- "yesNo": {
1561
- "enum": [
1562
- "Yes"
1563
- ]
1527
+ "drainage": {
1528
+ "properties": {
1529
+ "mainsSurfaceWaterDrainage": {
1530
+ "rdsRef": "Services/StormWaterDrainage",
1531
+ "discriminator": {
1532
+ "propertyName": "yesNo"
1533
+ },
1534
+ "oneOf": [
1535
+ {
1536
+ "properties": {
1537
+ "yesNo": {
1538
+ "enum": [
1539
+ "No",
1540
+ "Not known"
1541
+ ]
1542
+ }
1543
+ }
1544
+ },
1545
+ {
1546
+ "properties": {
1547
+ "yesNo": {
1548
+ "enum": [
1549
+ "Yes"
1550
+ ]
1551
+ }
1552
+ }
1553
+ },
1554
+ {
1555
+ "properties": {
1556
+ "yesNo": {
1557
+ "enum": [
1558
+ "To be connected"
1559
+ ]
1560
+ }
1561
+ }
1564
1562
  }
1565
- }
1566
- },
1567
- {
1568
- "properties": {
1569
- "yesNo": {
1570
- "enum": [
1571
- "To be connected"
1572
- ]
1573
- }
1574
- }
1575
- }
1576
- ]
1577
- },
1578
- "cableSatelliteTV": {
1579
- "rdsRef": "Services/CableSatelliteTV",
1580
- "title": "Cable TV or satellite",
1581
- "discriminator": {
1582
- "propertyName": "yesNo"
1583
- },
1584
- "oneOf": [
1585
- {
1586
- "properties": {
1587
- "yesNo": {
1588
- "enum": [
1589
- "No"
1590
- ]
1591
- }
1592
- }
1593
- },
1594
- {
1595
- "properties": {
1596
- "yesNo": {
1597
- "enum": [
1598
- "Yes"
1599
- ]
1600
- }
1601
- }
1602
- },
1603
- {
1604
- "properties": {
1605
- "yesNo": {
1606
- "enum": [
1607
- "To be connected"
1608
- ]
1609
- }
1610
- }
1611
- }
1612
- ]
1613
- },
1614
- "broadband": {
1615
- "rdsRef": "Services/Internet",
1616
- "title": "Broadband",
1617
- "discriminator": {
1618
- "propertyName": "yesNo"
1619
- },
1620
- "oneOf": [
1621
- {
1622
- "properties": {
1623
- "yesNo": {
1624
- "enum": [
1625
- "No"
1626
- ]
1627
- }
1628
- }
1629
- },
1630
- {
1631
- "properties": {
1632
- "yesNo": {
1633
- "enum": [
1634
- "Yes"
1635
- ]
1636
- }
1637
- }
1638
- },
1639
- {
1640
- "properties": {
1641
- "yesNo": {
1642
- "enum": [
1643
- "To be connected"
1644
- ]
1645
- }
1646
- }
1647
- }
1648
- ]
1649
- },
1650
- "otherServices": {
1651
- "rdsRef": "Services/Other",
1652
- "title": "Other services",
1653
- "description": "Other services include wind turbines, generators and other renewable technologies, for example ground source heat pumps. If you receive Renewable Heat Incentives please provide details and note that you will need to advise Ofgem when you complete the sale",
1654
- "discriminator": {
1655
- "propertyName": "yesNo"
1656
- },
1657
- "oneOf": [
1658
- {
1659
- "properties": {
1660
- "yesNo": {
1661
- "enum": [
1662
- "No"
1663
- ]
1664
- }
1665
- }
1666
- },
1667
- {
1668
- "properties": {
1669
- "yesNo": {
1670
- "enum": [
1671
- "Yes"
1672
- ]
1673
- }
1674
- }
1675
- },
1676
- {
1677
- "properties": {
1678
- "yesNo": {
1679
- "enum": [
1680
- "To be connected"
1681
- ]
1682
- }
1683
- }
1684
- }
1685
- ]
1686
- },
1687
- "maintenanceAgreements": {
1688
- "rdsRef": "Services/Certificates,Services/OtherServices/Certificates",
1689
- "title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to connected services?",
1690
- "discriminator": {
1691
- "propertyName": "yesNo"
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
- }
1711
- }
1712
- ]
1713
- }
1714
- }
1715
- },
1716
- "waterAndDrainage": {
1717
- "properties": {
1718
- "water": {
1719
- "properties": {
1720
- "mainsWater": {
1721
- "rdsRef": "Services/PotableWaterSupply",
1722
- "title": "Mains water",
1723
- "discriminator": {
1724
- "propertyName": "yesNo"
1725
- },
1726
- "oneOf": [
1727
- {
1728
- "properties": {
1729
- "yesNo": {
1730
- "enum": [
1731
- "No"
1732
- ]
1733
- }
1734
- }
1735
- },
1736
- {
1737
- "properties": {
1738
- "yesNo": {
1739
- "enum": [
1740
- "Yes"
1741
- ]
1742
- }
1743
- }
1744
- },
1745
- {
1746
- "properties": {
1747
- "yesNo": {
1748
- "enum": [
1749
- "To be connected"
1750
- ]
1751
- }
1752
- }
1753
- }
1754
- ]
1755
- }
1756
- }
1757
- },
1758
- "drainage": {
1759
- "properties": {
1760
- "mainsSurfaceWaterDrainage": {
1761
- "rdsRef": "Services/StormWaterDrainage",
1762
- "title": "Mains surface water drainage",
1763
- "discriminator": {
1764
- "propertyName": "yesNo"
1765
- },
1766
- "oneOf": [
1767
- {
1768
- "properties": {
1769
- "yesNo": {
1770
- "enum": [
1771
- "No",
1772
- "Not known"
1773
- ]
1774
- }
1775
- }
1776
- },
1777
- {
1778
- "properties": {
1779
- "yesNo": {
1780
- "enum": [
1781
- "Yes"
1782
- ]
1783
- }
1784
- }
1785
- },
1786
- {
1787
- "properties": {
1788
- "yesNo": {
1789
- "enum": [
1790
- "To be connected"
1791
- ]
1792
- }
1793
- }
1794
- }
1795
- ]
1563
+ ]
1796
1564
  },
1797
1565
  "mainsFoulDrainage": {
1798
- "rdsRef": "Services/WasteWaterSewarageDisposal",
1799
- "title": "Mains foul drainage / sweerage",
1566
+ "rdsRef": "Services/WasteWaterSewerageDisposal",
1800
1567
  "discriminator": {
1801
1568
  "propertyName": "yesNo"
1802
1569
  },
@@ -1827,180 +1594,215 @@
1827
1594
  "Not known"
1828
1595
  ]
1829
1596
  },
1830
- "sustainableDrainageSystem": {
1831
- "rdsRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
1832
- "title": "Sustainable Drainage System",
1833
- "discriminator": {
1834
- "propertyName": "yesNo"
1835
- },
1836
- "oneOf": [
1837
- {
1838
- "properties": {
1839
- "yesNo": {
1840
- "enum": [
1841
- "No"
1842
- ]
1843
- }
1844
- }
1845
- },
1846
- {
1847
- "properties": {
1848
- "yesNo": {
1849
- "enum": [
1850
- "Yes"
1851
- ]
1597
+ "offMainsDrainageSystem": {
1598
+ "properties": {
1599
+ "otherConnectedProperties": {
1600
+ "rdsRef": "Services/OtherServices/SharedWith",
1601
+ "discriminator": {
1602
+ "propertyName": "yesNo"
1603
+ },
1604
+ "oneOf": [
1605
+ {
1606
+ "properties": {
1607
+ "yesNo": {
1608
+ "enum": [
1609
+ "No"
1610
+ ]
1611
+ }
1612
+ }
1613
+ },
1614
+ {
1615
+ "properties": {
1616
+ "yesNo": {
1617
+ "enum": [
1618
+ "Yes"
1619
+ ]
1620
+ }
1621
+ }
1852
1622
  }
1853
- }
1623
+ ]
1854
1624
  },
1855
- {
1856
- "properties": {
1857
- "yesNo": {
1858
- "enum": [
1859
- "To be connected"
1860
- ]
1861
- }
1862
- }
1863
- }
1864
- ]
1865
- },
1866
- "septicTank": {
1867
- "rdsRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
1868
- "title": "Septic tank",
1869
- "discriminator": {
1870
- "propertyName": "yesNo"
1871
- },
1872
- "oneOf": [
1873
- {
1874
- "properties": {
1875
- "yesNo": {
1876
- "enum": [
1877
- "No"
1878
- ]
1625
+ "plantOnOtherLand": {
1626
+ "rdsRef": "Services/OtherServices/Located,Services/OtherServices/{access=?}",
1627
+ "discriminator": {
1628
+ "propertyName": "yesNo"
1629
+ },
1630
+ "oneOf": [
1631
+ {
1632
+ "properties": {
1633
+ "yesNo": {
1634
+ "enum": [
1635
+ "No"
1636
+ ]
1637
+ }
1638
+ }
1639
+ },
1640
+ {
1641
+ "properties": {
1642
+ "yesNo": {
1643
+ "enum": [
1644
+ "Yes"
1645
+ ]
1646
+ }
1647
+ }
1879
1648
  }
1880
- }
1649
+ ]
1881
1650
  },
1882
- {
1883
- "properties": {
1884
- "yesNo": {
1885
- "enum": [
1886
- "Yes"
1887
- ]
1888
- }
1889
- }
1890
- }
1891
- ]
1892
- },
1893
- "cesspit": {
1894
- "rdsRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
1895
- "title": "Cesspit",
1896
- "discriminator": {
1897
- "propertyName": "yesNo"
1898
- },
1899
- "oneOf": [
1900
- {
1901
- "properties": {
1902
- "yesNo": {
1903
- "enum": [
1904
- "No"
1905
- ]
1651
+ "plantRegistered": {
1652
+ "rdsRef": "Services/OtherServices/Certificates",
1653
+ "discriminator": {
1654
+ "propertyName": "yesNo"
1655
+ },
1656
+ "oneOf": [
1657
+ {
1658
+ "properties": {
1659
+ "yesNo": {
1660
+ "enum": [
1661
+ "No"
1662
+ ]
1663
+ }
1664
+ }
1665
+ },
1666
+ {
1667
+ "properties": {
1668
+ "yesNo": {
1669
+ "enum": [
1670
+ "Yes"
1671
+ ]
1672
+ }
1673
+ }
1906
1674
  }
1907
- }
1675
+ ]
1908
1676
  },
1909
- {
1910
- "properties": {
1911
- "yesNo": {
1912
- "enum": [
1913
- "Yes"
1914
- ]
1677
+ "plantDrainsIntoWaterway": {
1678
+ "rdsRef": "Services/OtherServices/{isExternallyConnected='yes?true'}",
1679
+ "discriminator": {
1680
+ "propertyName": "yesNo"
1681
+ },
1682
+ "oneOf": [
1683
+ {
1684
+ "properties": {
1685
+ "yesNo": {
1686
+ "enum": [
1687
+ "No, the effluent is discharged through a soakaway system."
1688
+ ]
1689
+ }
1690
+ }
1691
+ },
1692
+ {
1693
+ "properties": {
1694
+ "yesNo": {
1695
+ "enum": [
1696
+ "Yes"
1697
+ ]
1698
+ },
1699
+ "dischargeCompliesWithGBR": {
1700
+ "rdsRef": "Services/OtherServices/ExternalConnections/Flags"
1701
+ }
1702
+ }
1915
1703
  }
1916
- }
1704
+ ]
1917
1705
  }
1918
- ]
1919
- },
1920
- "sewerageTreatmentPlant": {
1921
- "rdsRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
1922
- "title": "Sewerage treatment plant",
1706
+ }
1707
+ }
1708
+ }
1709
+ }
1710
+ ]
1711
+ }
1712
+ }
1713
+ },
1714
+ "maintenanceAgreements": {
1715
+ "rdsRef": "Services/Certificates,Services/OtherServices/Certificates",
1716
+ "discriminator": {
1717
+ "propertyName": "yesNo"
1718
+ },
1719
+ "oneOf": [
1720
+ {
1721
+ "properties": {
1722
+ "yesNo": {
1723
+ "enum": [
1724
+ "No"
1725
+ ]
1726
+ }
1727
+ }
1728
+ },
1729
+ {
1730
+ "properties": {
1731
+ "yesNo": {
1732
+ "enum": [
1733
+ "Yes"
1734
+ ]
1735
+ }
1736
+ }
1737
+ }
1738
+ ]
1739
+ }
1740
+ }
1741
+ },
1742
+ "heating": {
1743
+ "rdsRef": "Buildings|BuildingSections/isUnheated=no|yes|true|false",
1744
+ "properties": {
1745
+ "heatingSystem": {
1746
+ "oneOf": [
1747
+ null,
1748
+ {
1749
+ "properties": {
1750
+ "centralHeatingDetails": {
1751
+ "properties": {
1752
+ "centralHeatingFuel": {
1753
+ "rdsRef": "Buildings|BuildingSections/Heating/isGas=no|yes|true|false",
1923
1754
  "discriminator": {
1924
- "propertyName": "yesNo"
1755
+ "propertyName": "centralHeatingFuelType"
1925
1756
  },
1926
1757
  "oneOf": [
1927
1758
  {
1928
1759
  "properties": {
1929
- "yesNo": {
1760
+ "centralHeatingFuelType": {
1930
1761
  "enum": [
1931
- "No"
1762
+ "Mains gas"
1932
1763
  ]
1764
+ },
1765
+ "gasMeter": {
1766
+ "rdsRef": "Objects/class='meters'&access=?&accessLocation=?"
1933
1767
  }
1934
1768
  }
1935
1769
  },
1936
1770
  {
1937
1771
  "properties": {
1938
- "yesNo": {
1939
- "enum": [
1940
- "Yes"
1941
- ]
1942
- }
1943
- }
1944
- }
1945
- ]
1946
- },
1947
- "otherConnectedProperties": {
1948
- "rdsRef": "Services/OtherServices/SharedWith",
1949
- "title": "Do other properties connect to the septic tank, cesspit or sewerage treatment plant?",
1950
- "discriminator": {
1951
- "propertyName": "yesNo"
1952
- },
1953
- "oneOf": [
1954
- {
1955
- "properties": {
1956
- "yesNo": {
1772
+ "centralHeatingFuelType": {
1957
1773
  "enum": [
1958
- "No"
1774
+ "Electricity"
1959
1775
  ]
1960
1776
  }
1961
1777
  }
1962
1778
  },
1963
1779
  {
1964
1780
  "properties": {
1965
- "yesNo": {
1966
- "enum": [
1967
- "Yes"
1968
- ]
1969
- }
1970
- }
1971
- }
1972
- ]
1973
- },
1974
- "plantOnOtherLand": {
1975
- "rdsRef": "Services/OtherServices/Located,Services/OtherServices/{access=?}",
1976
- "title": "Is any part of the septic tank, cesspit or sewerage treatment plant located on someone else’s land?",
1977
- "discriminator": {
1978
- "propertyName": "yesNo"
1979
- },
1980
- "oneOf": [
1981
- {
1982
- "properties": {
1983
- "yesNo": {
1781
+ "centralHeatingFuelType": {
1984
1782
  "enum": [
1985
- "No"
1783
+ "Oil",
1784
+ "LPG",
1785
+ "Biomass"
1986
1786
  ]
1987
1787
  }
1988
1788
  }
1989
1789
  },
1990
1790
  {
1991
1791
  "properties": {
1992
- "yesNo": {
1792
+ "centralHeatingFuelType": {
1993
1793
  "enum": [
1994
- "Yes"
1794
+ "Other"
1995
1795
  ]
1996
1796
  }
1997
1797
  }
1998
1798
  }
1999
1799
  ]
2000
1800
  },
2001
- "plantRegistered": {
2002
- "rdsRef": "Services/OtherServices/Certificates",
2003
- "title": "Is the septic tank, cesspit or sewerage treatment plant registered with the Environment Agency or exempted?",
1801
+ "centralHeatingInstalled": {
1802
+ "rdsRef": "Objects/Installed"
1803
+ },
1804
+ "boilerInstallationCertificate": {
1805
+ "rdsRef": "Objects/Installation,Objects/Certificates",
2004
1806
  "discriminator": {
2005
1807
  "propertyName": "yesNo"
2006
1808
  },
@@ -2025,9 +1827,11 @@
2025
1827
  }
2026
1828
  ]
2027
1829
  },
2028
- "plantDrainsIntoWaterway": {
2029
- "rdsRef": "Services/OtherServices/{isExternallyConnected='yes?true'}",
2030
- "title": "Does the septic tank, cesspit or sewerage treatment plant drain into a waterway (lake, river, stream etc)",
1830
+ "heatingLastServicedDate": {
1831
+ "rdsRef": "Objects/Maintenance"
1832
+ },
1833
+ "heatingInGoodWorkingOrder": {
1834
+ "rdsRef": "Objects/Condition=?",
2031
1835
  "discriminator": {
2032
1836
  "propertyName": "yesNo"
2033
1837
  },
@@ -2036,7 +1840,7 @@
2036
1840
  "properties": {
2037
1841
  "yesNo": {
2038
1842
  "enum": [
2039
- "No, the effluent is discharged through a soakaway system."
1843
+ "Yes"
2040
1844
  ]
2041
1845
  }
2042
1846
  }
@@ -2045,198 +1849,102 @@
2045
1849
  "properties": {
2046
1850
  "yesNo": {
2047
1851
  "enum": [
2048
- "Yes"
2049
- ]
2050
- },
2051
- "dischargeCompliesWithGBR": {
2052
- "rdsRef": "Services/OtherServices/ExternalConnections/Flags",
2053
- "title": "Does it comply with the General Binding Rules for discharge into a waterway?",
2054
- "enum": [
2055
- "Yes",
2056
- "No, it does not comply with the rules for discharge into a waterway."
2057
- ]
2058
- }
2059
- }
2060
- }
2061
- ]
2062
- }
2063
- }
2064
- }
2065
- ]
2066
- }
2067
- }
2068
- },
2069
- "maintenanceAgreements": {
2070
- "rdsRef": "Services/Certificates,Services/OtherServices/Certificates",
2071
- "title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to these services?",
2072
- "discriminator": {
2073
- "propertyName": "yesNo"
2074
- },
2075
- "oneOf": [
2076
- {
2077
- "properties": {
2078
- "yesNo": {
2079
- "enum": [
2080
- "No"
2081
- ]
2082
- }
2083
- }
2084
- },
2085
- {
2086
- "properties": {
2087
- "yesNo": {
2088
- "enum": [
2089
- "Yes"
2090
- ]
2091
- }
2092
- }
2093
- }
2094
- ]
2095
- }
2096
- }
2097
- },
2098
- "heating": {
2099
- "rdsRef": "Buildings|BuildingSections/isUnheated=no|yes|true|false",
2100
- "title": "Heating",
2101
- "discriminator": {
2102
- "propertyName": "heatingType"
2103
- },
2104
- "oneOf": [
2105
- {
2106
- "properties": {
2107
- "heatingType": {
2108
- "enum": [
2109
- "None"
2110
- ]
2111
- }
2112
- }
2113
- },
2114
- {
2115
- "properties": {
2116
- "heatingType": {
2117
- "enum": [
2118
- "Central heating"
2119
- ]
2120
- },
2121
- "centralHeatingDetails": {
2122
- "properties": {
2123
- "centralHeatingFuel": {
2124
- "rdsRef": "Buildings|BuildingSections/Heating/isGas=no|yes|true|false",
2125
- "title": "Central Heating Fuel",
2126
- "discriminator": {
2127
- "propertyName": "centralHeatingFuelType"
2128
- },
2129
- "oneOf": [
2130
- {
2131
- "properties": {
2132
- "centralHeatingFuelType": {
2133
- "enum": [
2134
- "Mains gas",
2135
- "Electricity",
2136
- "Oil",
2137
- "LPG",
2138
- "Biomass boiler"
2139
- ]
2140
- }
2141
- }
2142
- },
2143
- {
2144
- "properties": {
2145
- "centralHeatingFuelType": {
2146
- "enum": [
2147
- "Other"
2148
- ]
2149
- }
2150
- }
2151
- }
2152
- ]
2153
- },
2154
- "centralHeatingInstalled": {
2155
- "rdsRef": "Objects/Installed",
2156
- "title": "When was the heating system installed?"
2157
- },
2158
- "boilerInstallationCertificate": {
2159
- "rdsRef": "Objects/Installation,Objects/Certificates",
2160
- "title": "Was a gas boiler installed after 1st April 2005, or a solid fuel or oil boiler installed after 1st October 2010?",
2161
- "discriminator": {
2162
- "propertyName": "yesNo"
2163
- },
2164
- "oneOf": [
2165
- {
2166
- "properties": {
2167
- "yesNo": {
2168
- "enum": [
2169
- "No"
2170
- ]
2171
- }
2172
- }
2173
- },
2174
- {
2175
- "properties": {
2176
- "yesNo": {
2177
- "enum": [
2178
- "Yes"
2179
- ]
2180
- }
2181
- }
2182
- }
2183
- ]
2184
- },
2185
- "heatingLastServicedDate": {
2186
- "rdsRef": "Objects/Maintenance",
2187
- "title": "When was the heating system last serviced or maintained?"
2188
- },
2189
- "heatingInGoodWorkingOrder": {
2190
- "rdsRef": "Objects/Condition=?",
2191
- "title": "Is the heating system in good working order to your satisfaction?",
2192
- "discriminator": {
2193
- "propertyName": "yesNo"
2194
- },
2195
- "oneOf": [
2196
- {
2197
- "properties": {
2198
- "yesNo": {
2199
- "enum": [
2200
- "Yes"
2201
- ]
2202
- }
2203
- }
2204
- },
2205
- {
2206
- "properties": {
2207
- "yesNo": {
2208
- "enum": [
2209
- "No"
2210
- ]
1852
+ "No"
1853
+ ]
1854
+ }
1855
+ }
2211
1856
  }
2212
- }
1857
+ ]
2213
1858
  }
1859
+ }
1860
+ }
1861
+ }
1862
+ }
1863
+ ]
1864
+ }
1865
+ }
1866
+ },
1867
+ "connectivity": {
1868
+ "properties": {
1869
+ "telephone": {
1870
+ "rdsRef": "Services/Telephone",
1871
+ "discriminator": {
1872
+ "propertyName": "yesNo"
1873
+ },
1874
+ "oneOf": [
1875
+ {
1876
+ "properties": {
1877
+ "yesNo": {
1878
+ "enum": [
1879
+ "No"
1880
+ ]
1881
+ }
1882
+ }
1883
+ },
1884
+ {
1885
+ "properties": {
1886
+ "yesNo": {
1887
+ "enum": [
1888
+ "Yes"
1889
+ ]
1890
+ }
1891
+ }
1892
+ },
1893
+ {
1894
+ "properties": {
1895
+ "yesNo": {
1896
+ "enum": [
1897
+ "To be connected"
2214
1898
  ]
2215
1899
  }
2216
1900
  }
2217
1901
  }
2218
- }
1902
+ ]
2219
1903
  },
2220
- {
2221
- "properties": {
2222
- "heatingType": {
2223
- "enum": [
2224
- "Community heating system"
2225
- ]
1904
+ "cableSatelliteTV": {
1905
+ "rdsRef": "Services/CableSatelliteTV",
1906
+ "discriminator": {
1907
+ "propertyName": "yesNo"
1908
+ },
1909
+ "oneOf": [
1910
+ {
1911
+ "properties": {
1912
+ "yesNo": {
1913
+ "enum": [
1914
+ "No"
1915
+ ]
1916
+ }
1917
+ }
1918
+ },
1919
+ {
1920
+ "properties": {
1921
+ "yesNo": {
1922
+ "enum": [
1923
+ "Yes"
1924
+ ]
1925
+ }
1926
+ }
1927
+ },
1928
+ {
1929
+ "properties": {
1930
+ "yesNo": {
1931
+ "enum": [
1932
+ "To be connected"
1933
+ ]
1934
+ }
1935
+ }
2226
1936
  }
2227
- }
1937
+ ]
1938
+ },
1939
+ "broadband": {
1940
+ "rdsRef": "Services/Internet"
2228
1941
  }
2229
- ]
1942
+ }
2230
1943
  },
2231
1944
  "insurance": {
2232
1945
  "properties": {
2233
1946
  "isInsured": {
2234
- "rdsRef": "Insurance/isInsured=no|yes|true|false",
2235
- "title": "Do you insure the property?",
2236
- "enum": [
2237
- "Yes",
2238
- "No"
2239
- ]
1947
+ "rdsRef": "Insurance/isInsured=no|yes|true|false"
2240
1948
  }
2241
1949
  },
2242
1950
  "oneOf": [
@@ -2244,12 +1952,10 @@
2244
1952
  {
2245
1953
  "properties": {
2246
1954
  "difficultiesObtainingInsurance": {
2247
- "rdsRef": "Insurance/Flags,Insurance/refusalReason=?",
2248
- "title": "Have you had any difficulty obtaining competitively priced building insurance due to the structure or location of the property or had insurance refused?"
1955
+ "rdsRef": "Insurance/Flags,Insurance/refusalReason=?"
2249
1956
  },
2250
1957
  "insuranceClaims": {
2251
1958
  "rdsRef": "Insurance/Claims",
2252
- "title": "Have you ever made a claim against your building insurance in relation to the property?",
2253
1959
  "discriminator": {
2254
1960
  "propertyName": "yesNo"
2255
1961
  },
@@ -2282,7 +1988,6 @@
2282
1988
  "properties": {
2283
1989
  "partOutsideLegalOwnership": {
2284
1990
  "rdsRef": "Tenure/Interests",
2285
- "title": "Is any part of the property outside the seller’s legal ownership?",
2286
1991
  "discriminator": {
2287
1992
  "propertyName": "yesNo"
2288
1993
  },
@@ -2309,7 +2014,6 @@
2309
2014
  },
2310
2015
  "partOnSeparateSiteOrDeed": {
2311
2016
  "rdsRef": "Tenure *with different property entity and references etc*",
2312
- "title": "Is any part of the property on a separate site or separate title number e.g. garden, outbuilding, parking, garage?",
2313
2017
  "discriminator": {
2314
2018
  "propertyName": "yesNo"
2315
2019
  },
@@ -2336,7 +2040,6 @@
2336
2040
  },
2337
2041
  "boundariesDifferFromTitlePlan": {
2338
2042
  "rdsRef": "Tenure/Boundaries,Tenure/BoundaryDifferences,Tenure/CadastralMapOfParcels",
2339
- "title": "Do the boundaries differ from those shown on the title plan?",
2340
2043
  "discriminator": {
2341
2044
  "propertyName": "yesNo"
2342
2045
  },
@@ -2363,7 +2066,6 @@
2363
2066
  },
2364
2067
  "boundaryAlterationProposal": {
2365
2068
  "rdsRef": "Tenure/Boundaries/proposedAlterations=?",
2366
- "title": "Is there a current proposal with anyone to alter the boundaries of your property?",
2367
2069
  "discriminator": {
2368
2070
  "propertyName": "yesNo"
2369
2071
  },
@@ -2394,7 +2096,6 @@
2394
2096
  "properties": {
2395
2097
  "sharedContributions": {
2396
2098
  "rdsRef": "Services/SharedCosts",
2397
- "title": "Other than service charges and estate rentcharges, do you have to contribute towards the shared cost of a jointly-used service such as a shared driveway, road, parking area, garden or drain?",
2398
2099
  "discriminator": {
2399
2100
  "propertyName": "yesNo"
2400
2101
  },
@@ -2421,7 +2122,6 @@
2421
2122
  },
2422
2123
  "neighbouringLandRights": {
2423
2124
  "rdsRef": "Tenure/Rights,Tenure *with different property entity and references etc*",
2424
- "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)",
2425
2125
  "discriminator": {
2426
2126
  "propertyName": "yesNo"
2427
2127
  },
@@ -2448,7 +2148,6 @@
2448
2148
  },
2449
2149
  "accessRestrictionAttempts": {
2450
2150
  "rdsRef": "Tenure/Restrictions",
2451
- "title": "Has anyone tried to stop you using an access way to the property or asked you to pay to use the access?",
2452
2151
  "discriminator": {
2453
2152
  "propertyName": "yesNo"
2454
2153
  },
@@ -2477,7 +2176,6 @@
2477
2176
  "properties": {
2478
2177
  "publicRightOfWay": {
2479
2178
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities,Tenure/CadastralMapOfParcels",
2480
- "title": "A public right of way through and/or across your property, buildings or land",
2481
2179
  "discriminator": {
2482
2180
  "propertyName": "yesNo"
2483
2181
  },
@@ -2504,7 +2202,6 @@
2504
2202
  },
2505
2203
  "rightsOfLight": {
2506
2204
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
2507
- "title": "Rights of light",
2508
2205
  "discriminator": {
2509
2206
  "propertyName": "yesNo"
2510
2207
  },
@@ -2531,7 +2228,6 @@
2531
2228
  },
2532
2229
  "rightsOfSupport": {
2533
2230
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
2534
- "title": "Rights of support from ajoining properties",
2535
2231
  "discriminator": {
2536
2232
  "propertyName": "yesNo"
2537
2233
  },
@@ -2558,7 +2254,6 @@
2558
2254
  },
2559
2255
  "rightsCreatedThroughCustom": {
2560
2256
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
2561
- "title": "Rights created through custom or use (e.g. rights to graze on other land or forage)",
2562
2257
  "discriminator": {
2563
2258
  "propertyName": "yesNo"
2564
2259
  },
@@ -2585,7 +2280,6 @@
2585
2280
  },
2586
2281
  "rightsToTakeFromLand": {
2587
2282
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
2588
- "title": "Other people's rights to take things from the land (such as timber, hay or fish)",
2589
2283
  "discriminator": {
2590
2284
  "propertyName": "yesNo"
2591
2285
  },
@@ -2612,7 +2306,6 @@
2612
2306
  },
2613
2307
  "minesAndMinerals": {
2614
2308
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
2615
- "title": "Mines and minerals under the property",
2616
2309
  "discriminator": {
2617
2310
  "propertyName": "yesNo"
2618
2311
  },
@@ -2639,7 +2332,6 @@
2639
2332
  },
2640
2333
  "churchChancel": {
2641
2334
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
2642
- "title": "Liability to contribute to the maintenance of a church chancel?",
2643
2335
  "discriminator": {
2644
2336
  "propertyName": "yesNo"
2645
2337
  },
@@ -2666,7 +2358,6 @@
2666
2358
  },
2667
2359
  "otherRights": {
2668
2360
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
2669
- "title": "Any other rights or arrangements affecting the property?",
2670
2361
  "discriminator": {
2671
2362
  "propertyName": "yesNo"
2672
2363
  },
@@ -2699,45 +2390,16 @@
2699
2390
  "properties": {
2700
2391
  "flooding": {
2701
2392
  "rdsRef": "Sustainability/Environmental|Natural|Situational",
2702
- "title": "Flooding",
2703
- "discriminator": {
2704
- "propertyName": "hasBeenFlooded"
2705
- },
2706
- "oneOf": [
2707
- {
2708
- "properties": {
2709
- "hasBeenFlooded": {
2710
- "enum": [
2711
- "No"
2712
- ]
2713
- }
2714
- }
2715
- },
2716
- {
2717
- "properties": {
2718
- "hasBeenFlooded": {
2719
- "enum": [
2720
- "Yes"
2721
- ]
2722
- },
2723
- "typeOfFlooding": {
2724
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2725
- "title": "What type of flooding occurred?"
2726
- }
2727
- }
2728
- }
2729
- ],
2730
2393
  "properties": {
2731
2394
  "floodRisk": {
2732
2395
  "rdsRef": "Sustainability/Environmental|Natural|Situational",
2733
- "title": "Flood Risk",
2734
2396
  "discriminator": {
2735
- "propertyName": "impactIndicator"
2397
+ "propertyName": "riskIndicator"
2736
2398
  },
2737
2399
  "oneOf": [
2738
2400
  {
2739
2401
  "properties": {
2740
- "impactIndicator": {
2402
+ "riskIndicator": {
2741
2403
  "enum": [
2742
2404
  "No"
2743
2405
  ]
@@ -2746,7 +2408,7 @@
2746
2408
  },
2747
2409
  {
2748
2410
  "properties": {
2749
- "impactIndicator": {
2411
+ "riskIndicator": {
2750
2412
  "enum": [
2751
2413
  "Yes"
2752
2414
  ]
@@ -2754,53 +2416,59 @@
2754
2416
  }
2755
2417
  }
2756
2418
  ]
2419
+ },
2420
+ "historicalFlooding": {
2421
+ "oneOf": [
2422
+ null,
2423
+ {
2424
+ "properties": {
2425
+ "typeOfFlooding": {
2426
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2427
+ }
2428
+ }
2429
+ }
2430
+ ]
2757
2431
  }
2758
2432
  }
2759
2433
  },
2760
2434
  "radon": {
2761
2435
  "rdsRef": "Sustainability/Environmental|Natural|Situational",
2762
- "title": "Radon",
2763
2436
  "properties": {
2764
2437
  "remedialMeasuresOnConstruction": {
2765
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2766
- "title": "Were any remedial measures undertaken on construction to reduce Radon gas levels on the property?"
2438
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2767
2439
  }
2768
2440
  }
2769
2441
  },
2770
2442
  "contaminatedLand": {
2771
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2772
- "title": "Contaminated land"
2443
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2773
2444
  },
2774
2445
  "groundStability": {
2775
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2776
- "title": "Ground stability"
2446
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2447
+ },
2448
+ "infrastructure": {
2449
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2777
2450
  },
2778
2451
  "energy": {
2779
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2780
- "title": "Energy"
2452
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2781
2453
  },
2782
2454
  "transportation": {
2783
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2784
- "title": "Transportation"
2455
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2785
2456
  },
2786
2457
  "planning": {
2787
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2788
- "title": "Planning"
2458
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2789
2459
  },
2790
2460
  "climate": {
2791
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2792
- "title": "Climate risk"
2461
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2793
2462
  },
2794
2463
  "coalMining": {
2795
2464
  "rdsRef": "Sustainability/Environmental|Natural|Situational",
2796
- "title": "Coal mining",
2797
2465
  "discriminator": {
2798
- "propertyName": "impactIndicator"
2466
+ "propertyName": "riskIndicator"
2799
2467
  },
2800
2468
  "oneOf": [
2801
2469
  {
2802
2470
  "properties": {
2803
- "impactIndicator": {
2471
+ "riskIndicator": {
2804
2472
  "enum": [
2805
2473
  "No"
2806
2474
  ]
@@ -2809,7 +2477,7 @@
2809
2477
  },
2810
2478
  {
2811
2479
  "properties": {
2812
- "impactIndicator": {
2480
+ "riskIndicator": {
2813
2481
  "enum": [
2814
2482
  "Yes"
2815
2483
  ]
@@ -2820,14 +2488,13 @@
2820
2488
  },
2821
2489
  "nonCoalMining": {
2822
2490
  "rdsRef": "Sustainability/Environmental|Natural|Situational",
2823
- "title": "Non-coal mining",
2824
2491
  "discriminator": {
2825
- "propertyName": "impactIndicator"
2492
+ "propertyName": "riskIndicator"
2826
2493
  },
2827
2494
  "oneOf": [
2828
2495
  {
2829
2496
  "properties": {
2830
- "impactIndicator": {
2497
+ "riskIndicator": {
2831
2498
  "enum": [
2832
2499
  "No"
2833
2500
  ]
@@ -2836,7 +2503,7 @@
2836
2503
  },
2837
2504
  {
2838
2505
  "properties": {
2839
- "impactIndicator": {
2506
+ "riskIndicator": {
2840
2507
  "enum": [
2841
2508
  "Yes"
2842
2509
  ]
@@ -2847,14 +2514,13 @@
2847
2514
  },
2848
2515
  "coastalErosion": {
2849
2516
  "rdsRef": "Sustainability/Environmental|Natural|Situational",
2850
- "title": "Coastal erosion",
2851
2517
  "discriminator": {
2852
- "propertyName": "impactIndicator"
2518
+ "propertyName": "riskIndicator"
2853
2519
  },
2854
2520
  "oneOf": [
2855
2521
  {
2856
2522
  "properties": {
2857
- "impactIndicator": {
2523
+ "riskIndicator": {
2858
2524
  "enum": [
2859
2525
  "No"
2860
2526
  ]
@@ -2863,7 +2529,7 @@
2863
2529
  },
2864
2530
  {
2865
2531
  "properties": {
2866
- "impactIndicator": {
2532
+ "riskIndicator": {
2867
2533
  "enum": [
2868
2534
  "Yes"
2869
2535
  ]
@@ -2874,14 +2540,13 @@
2874
2540
  },
2875
2541
  "otherEnvironmental": {
2876
2542
  "rdsRef": "Sustainability/Environmental|Natural|Situational",
2877
- "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)?",
2878
2543
  "discriminator": {
2879
- "propertyName": "yesNo"
2544
+ "propertyName": "riskIndicator"
2880
2545
  },
2881
2546
  "oneOf": [
2882
2547
  {
2883
2548
  "properties": {
2884
- "yesNo": {
2549
+ "riskIndicator": {
2885
2550
  "enum": [
2886
2551
  "No",
2887
2552
  "Not known"
@@ -2891,7 +2556,7 @@
2891
2556
  },
2892
2557
  {
2893
2558
  "properties": {
2894
- "yesNo": {
2559
+ "riskIndicator": {
2895
2560
  "enum": [
2896
2561
  "Yes"
2897
2562
  ]
@@ -2906,7 +2571,6 @@
2906
2571
  "properties": {
2907
2572
  "excessiveNoise": {
2908
2573
  "rdsRef": "Tenure/OtherMaterialIssues",
2909
- "title": "To your knowledge, has anyone occupying the property been disturbed by excessive noise which is likely to reoccur at the property?",
2910
2574
  "discriminator": {
2911
2575
  "propertyName": "yesNo"
2912
2576
  },
@@ -2933,7 +2597,6 @@
2933
2597
  },
2934
2598
  "crime": {
2935
2599
  "rdsRef": "Tenure/OtherMaterialIssues",
2936
- "title": "To your knowledge, has the property been subject to any crime, burglary or violent death?",
2937
2600
  "discriminator": {
2938
2601
  "propertyName": "yesNo"
2939
2602
  },
@@ -2960,7 +2623,6 @@
2960
2623
  },
2961
2624
  "cautionOrConviction": {
2962
2625
  "rdsRef": "Tenure/OtherMaterialIssues",
2963
- "title": "To your knowledge, has the property been occupied by someone who has been cautioned or convicted of a serious crime?",
2964
2626
  "discriminator": {
2965
2627
  "propertyName": "yesNo"
2966
2628
  },
@@ -2987,7 +2649,6 @@
2987
2649
  },
2988
2650
  "failedTransactionsInLast12Months": {
2989
2651
  "rdsRef": "Tenure/OtherMaterialIssues",
2990
- "title": "Have there been any failed purchase transactions on the property within the last 12 months?",
2991
2652
  "discriminator": {
2992
2653
  "propertyName": "yesNo"
2993
2654
  },
@@ -3018,7 +2679,6 @@
3018
2679
  "properties": {
3019
2680
  "restrictionsOnUseNotCompliedWith": {
3020
2681
  "rdsRef": "Use/NonCompliance",
3021
- "title": "Are you aware of any restrictions on the use or alteration of the property which have not been complied with?",
3022
2682
  "discriminator": {
3023
2683
  "propertyName": "yesNo"
3024
2684
  },
@@ -3045,8 +2705,6 @@
3045
2705
  },
3046
2706
  "otherMaterialIssue": {
3047
2707
  "rdsRef": "Tenure/OtherMaterialIssues",
3048
- "title": "Are you aware of any other material issue or information which relates to the property or has anything occurred which may affect the average person’s decision to proceed?",
3049
- "description": "This disclosure is required under the Consumer Protection from Unfair Trading Regulations 2008",
3050
2708
  "discriminator": {
3051
2709
  "propertyName": "yesNo"
3052
2710
  },
@@ -3080,15 +2738,12 @@
3080
2738
  "legalOwners": {
3081
2739
  "properties": {
3082
2740
  "namesOfLegalOwners": {
3083
- "rdsRef": "RightsHolders",
3084
- "title": "Names of all legal owners",
3085
- "minItems": 1
2741
+ "rdsRef": "RightsHolders"
3086
2742
  }
3087
2743
  }
3088
2744
  },
3089
2745
  "sellersCapacity": {
3090
2746
  "rdsRef": "Participants/description=?,Participants/ActingFor/Participants/Role",
3091
- "title": "Capacity in which the Seller sells",
3092
2747
  "discriminator": {
3093
2748
  "propertyName": "capacity"
3094
2749
  },
@@ -3102,9 +2757,7 @@
3102
2757
  ]
3103
2758
  },
3104
2759
  "sellersCapacityDetails": {
3105
- "rdsRef": "Participants/OtherDocumentation",
3106
- "title": "Please provide details if applicable",
3107
- "description": "(for example if the sellers names do not match the legal owners on the title deed due to change of name on marriage)"
2760
+ "rdsRef": "Participants/OtherDocumentation"
3108
2761
  }
3109
2762
  }
3110
2763
  },
@@ -3118,8 +2771,7 @@
3118
2771
  ]
3119
2772
  },
3120
2773
  "sellersCapacityDetails": {
3121
- "rdsRef": "Participants/OtherDocumentation",
3122
- "title": "Please provide details and provide any probate, grant of representation or power of attorney "
2774
+ "rdsRef": "Participants/OtherDocumentation"
3123
2775
  }
3124
2776
  }
3125
2777
  }
@@ -3129,8 +2781,6 @@
3129
2781
  "properties": {
3130
2782
  "ownership": {
3131
2783
  "rdsRef": "Tenure/Boundaries",
3132
- "title": "Boundary ownership",
3133
- "description": "If the property is leasehold this section, or parts of it, may not apply.",
3134
2784
  "discriminator": {
3135
2785
  "propertyName": "areBoundariesUniform"
3136
2786
  },
@@ -3145,44 +2795,16 @@
3145
2795
  "uniformBoundaries": {
3146
2796
  "properties": {
3147
2797
  "left": {
3148
- "rdsRef": "Tenure/Boundaries",
3149
- "title": "On the left",
3150
- "enum": [
3151
- "Seller",
3152
- "Shared",
3153
- "Neighbour",
3154
- "Not known"
3155
- ]
2798
+ "rdsRef": "Tenure/Boundaries"
3156
2799
  },
3157
2800
  "right": {
3158
- "rdsRef": "Tenure/Boundaries",
3159
- "title": "On the right",
3160
- "enum": [
3161
- "Seller",
3162
- "Shared",
3163
- "Neighbour",
3164
- "Not known"
3165
- ]
2801
+ "rdsRef": "Tenure/Boundaries"
3166
2802
  },
3167
2803
  "rear": {
3168
- "rdsRef": "Tenure/Boundaries",
3169
- "title": "At the rear",
3170
- "enum": [
3171
- "Seller",
3172
- "Shared",
3173
- "Neighbour",
3174
- "Not known"
3175
- ]
2804
+ "rdsRef": "Tenure/Boundaries"
3176
2805
  },
3177
2806
  "front": {
3178
- "rdsRef": "Tenure/Boundaries",
3179
- "title": "At the front",
3180
- "enum": [
3181
- "Seller",
3182
- "Shared",
3183
- "Neighbour",
3184
- "Not known"
3185
- ]
2807
+ "rdsRef": "Tenure/Boundaries"
3186
2808
  }
3187
2809
  }
3188
2810
  }
@@ -3210,7 +2832,6 @@
3210
2832
  },
3211
2833
  "haveBoundaryFeaturesMoved": {
3212
2834
  "rdsRef": "Tenure/Boundaries",
3213
- "title": "Has any boundary features been moved during your ownership or in the last 10 years, to your knowledge?",
3214
2835
  "discriminator": {
3215
2836
  "propertyName": "yesNo"
3216
2837
  },
@@ -3238,7 +2859,6 @@
3238
2859
  },
3239
2860
  "adjacentLandIncluded": {
3240
2861
  "rdsRef": "Property/Flags,Property/GUID/name='UPRN'&id=?",
3241
- "title": "Has any adjacent land or property been purchased by you that will be included in the sale?",
3242
2862
  "discriminator": {
3243
2863
  "propertyName": "yesNo"
3244
2864
  },
@@ -3266,8 +2886,6 @@
3266
2886
  },
3267
2887
  "flyingFreehold": {
3268
2888
  "rdsRef": "Tenure/tenure=?",
3269
- "title": "Is there a flying freehold?",
3270
- "description": "NOTE: a flying freehold is when part of the property overhangs a neighbour's property or an accessway - e.g. a terrace house where part of the upstairs is over an accessway which belongs to someone else.",
3271
2889
  "discriminator": {
3272
2890
  "propertyName": "yesNo"
3273
2891
  },
@@ -3299,7 +2917,6 @@
3299
2917
  "properties": {
3300
2918
  "pipesWiresCablesDrainsToProperty": {
3301
2919
  "rdsRef": "Services/.../Located",
3302
- "title": "Are you aware of any pipes, wires, cables or drains bringing services to the property which cross any neighbouring land or property?",
3303
2920
  "discriminator": {
3304
2921
  "propertyName": "yesNo"
3305
2922
  },
@@ -3327,7 +2944,6 @@
3327
2944
  },
3328
2945
  "pipesWiresCablesDrainsFromProperty": {
3329
2946
  "rdsRef": "Services/.../Located *with Property entities and references for the related properties etc",
3330
- "title": "Are you aware of any pipes, wires, cables or drains taking services to neighbouring property cross this property?",
3331
2947
  "discriminator": {
3332
2948
  "propertyName": "yesNo"
3333
2949
  },
@@ -3355,7 +2971,6 @@
3355
2971
  },
3356
2972
  "formalOrInformalAgreements": {
3357
2973
  "rdsRef": "Services/.../Consent",
3358
- "title": "Are you aware of any formal or informal agreements or arrangements for pipes, wires cables or drains to cross either your property or neighbouring property?",
3359
2974
  "discriminator": {
3360
2975
  "propertyName": "yesNo"
3361
2976
  },
@@ -3383,11 +2998,10 @@
3383
2998
  }
3384
2999
  }
3385
3000
  },
3386
- "energyAndMeters": {
3001
+ "electricalWorks": {
3387
3002
  "properties": {
3388
3003
  "testedByQualifiedElectrician": {
3389
3004
  "rdsRef": "Objects/Servicing",
3390
- "title": "Have the electrics at the property been tested by a qualified electrician?",
3391
3005
  "discriminator": {
3392
3006
  "propertyName": "yesNo"
3393
3007
  },
@@ -3414,7 +3028,6 @@
3414
3028
  },
3415
3029
  "electricalWorkSince2005": {
3416
3030
  "rdsRef": "WorksAlterationsChanges/Consent,WorksAlterationsChanges/Consent/Certificates",
3417
- "title": "Since 1st January 2005, has any electrical work been carried out to the property?",
3418
3031
  "discriminator": {
3419
3032
  "propertyName": "yesNo"
3420
3033
  },
@@ -3439,159 +3052,13 @@
3439
3052
  }
3440
3053
  }
3441
3054
  ]
3442
- },
3443
- "solarPanels": {
3444
- "properties": {
3445
- "hasSolarPanels": {
3446
- "rdsRef": "Property/Flags",
3447
- "title": "Are there solar or photovoltaic panels installed at the property?",
3448
- "enum": [
3449
- "Yes",
3450
- "No"
3451
- ]
3452
- }
3453
- },
3454
- "oneOf": [
3455
- null,
3456
- {
3457
- "properties": {
3458
- "yearInstalled": {
3459
- "rdsRef": "Objects/Installation",
3460
- "title": "What year were they installed?"
3461
- },
3462
- "panelsOwnedOutright": {
3463
- "rdsRef": "Objects/Ownership",
3464
- "title": "Do you own the panels, and all equipment related to them, outright?",
3465
- "discriminator": {
3466
- "propertyName": "yesNo"
3467
- },
3468
- "oneOf": [
3469
- {
3470
- "properties": {
3471
- "yesNo": {
3472
- "enum": [
3473
- "Yes"
3474
- ]
3475
- }
3476
- }
3477
- },
3478
- {
3479
- "properties": {
3480
- "yesNo": {
3481
- "enum": [
3482
- "No"
3483
- ]
3484
- }
3485
- }
3486
- }
3487
- ]
3488
- },
3489
- "panelProviderLease": {
3490
- "rdsRef": "Objects/Ownership",
3491
- "title": "Is there an existing long lease of the roof/air space granted to a panel provider?",
3492
- "discriminator": {
3493
- "propertyName": "yesNo"
3494
- },
3495
- "oneOf": [
3496
- {
3497
- "properties": {
3498
- "yesNo": {
3499
- "enum": [
3500
- "No"
3501
- ]
3502
- }
3503
- }
3504
- },
3505
- {
3506
- "properties": {
3507
- "yesNo": {
3508
- "enum": [
3509
- "Yes"
3510
- ]
3511
- }
3512
- }
3513
- }
3514
- ]
3515
- },
3516
- "lastMaintained": {
3517
- "rdsRef": "Objects/Servicing",
3518
- "title": "When was the system last maintained or serviced?"
3519
- },
3520
- "inGoodWorkingOrder": {
3521
- "rdsRef": "Objects/isNotWorking=yes|no|true|false",
3522
- "title": "Is the system in good working order to your satisfaction?",
3523
- "discriminator": {
3524
- "propertyName": "yesNo"
3525
- },
3526
- "oneOf": [
3527
- {
3528
- "properties": {
3529
- "yesNo": {
3530
- "enum": [
3531
- "Yes"
3532
- ]
3533
- }
3534
- }
3535
- },
3536
- {
3537
- "properties": {
3538
- "yesNo": {
3539
- "enum": [
3540
- "No"
3541
- ]
3542
- }
3543
- }
3544
- }
3545
- ]
3546
- },
3547
- "isConnectedToNationalGrid": {
3548
- "rdsRef": "Objects/isExternallyConnected=yes|no|true|false,Connection,Objects/ExternalConnection",
3549
- "title": "Is the system connected to the National Grid e.g. for feed-in tariffs (FiT) or Smart Export Guarantee (SEG)",
3550
- "enum": [
3551
- "Yes (FiT)",
3552
- "Yes (SEG)",
3553
- "No"
3554
- ]
3555
- },
3556
- "photovoltaicMeterPanelLocation": {
3557
- "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
3558
- "title": "Location of photovoltaic panel meter (if any)"
3559
- },
3560
- "photovoltaicBatteriesLocation": {
3561
- "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
3562
- "title": "Location of photovoltaic batteries (if any)"
3563
- }
3564
- }
3565
- }
3566
- ]
3567
- },
3568
- "electricityMeterLocation": {
3569
- "rdsRef": "Objects/class='meters|'&access=?&accessLocation=?",
3570
- "title": "Location of electricity meter (if any)"
3571
- },
3572
- "gasMeterLocation": {
3573
- "rdsRef": "Objects/class='meters'&access=?&accessLocation=?",
3574
- "title": "Location of gas meter (if any)"
3575
- },
3576
- "stopcockLocation": {
3577
- "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
3578
- "title": "Location of stopcock (if any)"
3579
- },
3580
- "waterMeterLocation": {
3581
- "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
3582
- "title": "Location of water meter (if any)"
3583
3055
  }
3584
3056
  }
3585
3057
  },
3586
3058
  "guaranteesWarrantiesAndIndemnityInsurances": {
3587
3059
  "properties": {
3588
3060
  "hasValidGuaranteesOrWarranties": {
3589
- "rdsRef": "Certificates",
3590
- "title": "Are there any valid guarantees, warranties or indemnity insurances relating to this property?",
3591
- "enum": [
3592
- "Yes",
3593
- "No"
3594
- ]
3061
+ "rdsRef": "Certificates"
3595
3062
  }
3596
3063
  },
3597
3064
  "oneOf": [
@@ -3600,7 +3067,6 @@
3600
3067
  "properties": {
3601
3068
  "newHomeWarranty": {
3602
3069
  "rdsRef": "Certificates",
3603
- "title": "New Home Warranty (NHBC or similar)",
3604
3070
  "discriminator": {
3605
3071
  "propertyName": "yesNo"
3606
3072
  },
@@ -3627,7 +3093,6 @@
3627
3093
  },
3628
3094
  "roofingWork": {
3629
3095
  "rdsRef": "Certificates",
3630
- "title": "Roofing work",
3631
3096
  "discriminator": {
3632
3097
  "propertyName": "yesNo"
3633
3098
  },
@@ -3654,7 +3119,6 @@
3654
3119
  },
3655
3120
  "dampProofingTreatment": {
3656
3121
  "rdsRef": "Certificates",
3657
- "title": "Damp proofing treatment",
3658
3122
  "discriminator": {
3659
3123
  "propertyName": "yesNo"
3660
3124
  },
@@ -3681,7 +3145,6 @@
3681
3145
  },
3682
3146
  "timberRotOrInfestationTreatment": {
3683
3147
  "rdsRef": "Certificates",
3684
- "title": "Timber rot or infestation treatment",
3685
3148
  "discriminator": {
3686
3149
  "propertyName": "yesNo"
3687
3150
  },
@@ -3708,7 +3171,6 @@
3708
3171
  },
3709
3172
  "centralHeatingAndorPlumbing": {
3710
3173
  "rdsRef": "Certificates",
3711
- "title": "Central heating and/or plumbing",
3712
3174
  "discriminator": {
3713
3175
  "propertyName": "yesNo"
3714
3176
  },
@@ -3735,7 +3197,6 @@
3735
3197
  },
3736
3198
  "doubleGlazing": {
3737
3199
  "rdsRef": "Certificates",
3738
- "title": "Double glazing (windows, doors, roof lights, conservatory etc)",
3739
3200
  "discriminator": {
3740
3201
  "propertyName": "yesNo"
3741
3202
  },
@@ -3762,7 +3223,6 @@
3762
3223
  },
3763
3224
  "electricalRepairOrInstallation": {
3764
3225
  "rdsRef": "Certificates",
3765
- "title": "Electrical repair or installation",
3766
3226
  "discriminator": {
3767
3227
  "propertyName": "yesNo"
3768
3228
  },
@@ -3789,7 +3249,6 @@
3789
3249
  },
3790
3250
  "subsidenceWork": {
3791
3251
  "rdsRef": "Certificates",
3792
- "title": "Underpinning or other preventative work and/or remedial action relating to subsidence",
3793
3252
  "discriminator": {
3794
3253
  "propertyName": "yesNo"
3795
3254
  },
@@ -3816,7 +3275,6 @@
3816
3275
  },
3817
3276
  "solarPanels": {
3818
3277
  "rdsRef": "Certificates",
3819
- "title": "Solar panels",
3820
3278
  "discriminator": {
3821
3279
  "propertyName": "yesNo"
3822
3280
  },
@@ -3843,7 +3301,6 @@
3843
3301
  },
3844
3302
  "otherGuarantees": {
3845
3303
  "rdsRef": "Certificates",
3846
- "title": "Other Guarantees or warranties",
3847
3304
  "discriminator": {
3848
3305
  "propertyName": "yesNo"
3849
3306
  },
@@ -3870,7 +3327,6 @@
3870
3327
  },
3871
3328
  "outstandingClaimsOrApplications": {
3872
3329
  "rdsRef": "Certificates",
3873
- "title": "Are there any outstanding claims or current applications relating to any of the above?",
3874
3330
  "discriminator": {
3875
3331
  "propertyName": "yesNo"
3876
3332
  },
@@ -3897,8 +3353,6 @@
3897
3353
  },
3898
3354
  "titleDefectInsurance": {
3899
3355
  "rdsRef": "Certificates",
3900
- "title": "Do you have any title defect insurance policies?",
3901
- "description": "e.g. for breach of planning permission, buildings regulations, restrictions, chancel repair etc",
3902
3356
  "discriminator": {
3903
3357
  "propertyName": "yesNo"
3904
3358
  },
@@ -3930,8 +3384,7 @@
3930
3384
  "occupiers": {
3931
3385
  "properties": {
3932
3386
  "sellerLivesAtProperty": {
3933
- "rdsRef": "Property/Flags",
3934
- "title": "Does the seller live at the property?"
3387
+ "rdsRef": "Property/Flags"
3935
3388
  },
3936
3389
  "othersAged17OrOver": {
3937
3390
  "rdsRef": "Participants",
@@ -3956,8 +3409,7 @@
3956
3409
  ]
3957
3410
  },
3958
3411
  "aged17OrOverTenantsOrLodgers": {
3959
- "rdsRef": "Property/Flags",
3960
- "title": "Are any of them tenants or lodgers?"
3412
+ "rdsRef": "Property/Flags"
3961
3413
  },
3962
3414
  "vacantPossession": {
3963
3415
  "oneOf": [
@@ -3965,12 +3417,10 @@
3965
3417
  {
3966
3418
  "properties": {
3967
3419
  "aged17OrOverAgreedToLeave": {
3968
- "rdsRef": "RightsHolders,TenureAgreements,Notifications",
3969
- "title": "Have all occupiers aged 17 or over agreed to leave prior to completion?"
3420
+ "rdsRef": "RightsHolders,TenureAgreements,Notifications"
3970
3421
  },
3971
3422
  "aged17OrOverWillSignToConfirmWillVacate": {
3972
3423
  "rdsRef": "RightsHolders,TenureAgreements,Notifications",
3973
- "title": "Have all occupiers aged 17 or over, agreed to sign the sale contract to confirm that they will vacate the property prior to completion of the sale?",
3974
3424
  "discriminator": {
3975
3425
  "propertyName": "yesNo"
3976
3426
  },
@@ -4004,12 +3454,7 @@
4004
3454
  ],
4005
3455
  "properties": {
4006
3456
  "hasOthersAged17OrOver": {
4007
- "rdsRef": "Participants",
4008
- "title": "Other than the sellers, does anyone else aged 17 or over, live at the property?",
4009
- "enum": [
4010
- "Yes",
4011
- "No"
4012
- ]
3457
+ "rdsRef": "Participants"
4013
3458
  }
4014
3459
  }
4015
3460
  }
@@ -4018,12 +3463,10 @@
4018
3463
  "completionAndMoving": {
4019
3464
  "properties": {
4020
3465
  "sellerWillEnsure": {
4021
- "rdsRef": "RightsHolders/Flags",
4022
- "title": "Please confirm that on completion you will:"
3466
+ "rdsRef": "RightsHolders/Flags"
4023
3467
  },
4024
3468
  "otherPropertyInChain": {
4025
3469
  "rdsRef": "RightsHolders/Flags",
4026
- "title": "Will you need the purchase, sale or remortgage of another property to co-ordinate with the sale of this property?",
4027
3470
  "discriminator": {
4028
3471
  "propertyName": "yesNo"
4029
3472
  },
@@ -4050,8 +3493,6 @@
4050
3493
  },
4051
3494
  "moveRestrictionDates": {
4052
3495
  "rdsRef": "RightsHolders/Text",
4053
- "title": "Are there any dates on which you cannot move?",
4054
- "description": "Note that: the moving date will not be fixed until contracts are exchanged i.e. have become binding, until then you should only make provisional removal arrangements; you do not need to be physically present on the day of completion so long as the property is cleared; timescales to completion vary depending on the complexity of the transaction, length of the chain and requirements of the people involved.",
4055
3496
  "discriminator": {
4056
3497
  "propertyName": "yesNo"
4057
3498
  },