@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,7 +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
173
  "discriminator": {
198
174
  "propertyName": "yesNo"
199
175
  },
@@ -222,35 +198,19 @@
222
198
  },
223
199
  "energyEfficiency": {
224
200
  "rdsRef": "Certificates/{category='energyEfficiency',standard='EPC',gradeLevelRating=?},Certificates/{category='energyEfficiency',standard='EPC',status='exempt'},",
225
- "title": "Energy Efficiency",
226
201
  "properties": {
227
202
  "greenDealLoan": {
228
- "rdsRef": "RightsHolders/Loans,RightsHolders/OtherDocumentation",
229
- "title": "Green Deal Loan"
203
+ "rdsRef": "RightsHolders/Loans,RightsHolders/OtherDocumentation"
230
204
  }
231
205
  }
232
206
  },
233
207
  "councilTax": {
234
208
  "properties": {
235
209
  "councilTaxBand": {
236
- "rdsRef": "TenureAgreements/Taxes/{banding=?}",
237
- "title": "Which Council Tax band does this property fall within?",
238
- "description": "Band I relates to Wales only",
239
- "enum": [
240
- "A",
241
- "B",
242
- "C",
243
- "D",
244
- "E",
245
- "F",
246
- "G",
247
- "H",
248
- "I"
249
- ]
210
+ "rdsRef": "TenureAgreements/Taxes/{banding=?}"
250
211
  },
251
212
  "councilTaxAffectingAlterations": {
252
213
  "rdsRef": "TenureAgreements/Taxes/WorksAlterationsChanges",
253
- "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?",
254
214
  "discriminator": {
255
215
  "propertyName": "yesNo"
256
216
  },
@@ -281,8 +241,6 @@
281
241
  "properties": {
282
242
  "hasDisputesAndComplaints": {
283
243
  "rdsRef": "Tenure/DisputesComplaints,Tenure/LegalClaims",
284
- "title": "Have any disputes or complaints occurred, regarding this property, a property nearby, or their use?",
285
- "description": "E.g boundary disagreement, noise, trespass etc",
286
244
  "discriminator": {
287
245
  "propertyName": "yesNo"
288
246
  },
@@ -309,7 +267,6 @@
309
267
  },
310
268
  "leadingToDisputesAndComplaints": {
311
269
  "rdsRef": "Tenure/DisputesComplaints,Tenure/LegalClaims",
312
- "title": "Is the seller aware of anything which might lead to a dispute about the property or a property nearby?",
313
270
  "discriminator": {
314
271
  "propertyName": "yesNo"
315
272
  },
@@ -340,7 +297,6 @@
340
297
  "properties": {
341
298
  "hasStructuralAlterations": {
342
299
  "rdsRef": "WorksAlterationsChanges",
343
- "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)",
344
300
  "discriminator": {
345
301
  "propertyName": "yesNo"
346
302
  },
@@ -363,7 +319,6 @@
363
319
  },
364
320
  "buildingRegApproval": {
365
321
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
366
- "title": "Was Building Regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
367
322
  "discriminator": {
368
323
  "propertyName": "yesNo"
369
324
  },
@@ -391,7 +346,6 @@
391
346
  },
392
347
  "planningPermission": {
393
348
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
394
- "title": "Was planning permission obtained?",
395
349
  "discriminator": {
396
350
  "propertyName": "yesNo"
397
351
  },
@@ -419,7 +373,6 @@
419
373
  },
420
374
  "listedBuildingConsent": {
421
375
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
422
- "title": "Was listed building consent obtained?",
423
376
  "discriminator": {
424
377
  "propertyName": "yesNo"
425
378
  },
@@ -447,7 +400,6 @@
447
400
  },
448
401
  "deedRestrictionConsent": {
449
402
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
450
- "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",
451
403
  "discriminator": {
452
404
  "propertyName": "yesNo"
453
405
  },
@@ -479,7 +431,6 @@
479
431
  },
480
432
  "changeOfUse": {
481
433
  "rdsRef": "WorksAlterationsChanges",
482
- "title": "Has there been any change of use (e.g. from an office to a residence)?",
483
434
  "discriminator": {
484
435
  "propertyName": "yesNo"
485
436
  },
@@ -502,7 +453,6 @@
502
453
  },
503
454
  "buildingRegApproval": {
504
455
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
505
- "title": "Was building regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
506
456
  "discriminator": {
507
457
  "propertyName": "yesNo"
508
458
  },
@@ -530,7 +480,6 @@
530
480
  },
531
481
  "planningPermission": {
532
482
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
533
- "title": "Was planning permission obtained?",
534
483
  "discriminator": {
535
484
  "propertyName": "yesNo"
536
485
  },
@@ -558,7 +507,6 @@
558
507
  },
559
508
  "listedBuildingConsent": {
560
509
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
561
- "title": "Was listed building consent obtained?",
562
510
  "discriminator": {
563
511
  "propertyName": "yesNo"
564
512
  },
@@ -586,7 +534,6 @@
586
534
  },
587
535
  "deedRestrictionConsent": {
588
536
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
589
- "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",
590
537
  "discriminator": {
591
538
  "propertyName": "yesNo"
592
539
  },
@@ -618,7 +565,6 @@
618
565
  },
619
566
  "windowReplacementsSince2002": {
620
567
  "rdsRef": "WorksAlterationsChanges",
621
- "title": "Since 1st April 2002 has replacement of any windows, roof windows, roof lights, glazed doors taken place?",
622
568
  "discriminator": {
623
569
  "propertyName": "yesNo"
624
570
  },
@@ -641,7 +587,6 @@
641
587
  },
642
588
  "buildingRegApproval": {
643
589
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
644
- "title": "Was building regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
645
590
  "discriminator": {
646
591
  "propertyName": "yesNo"
647
592
  },
@@ -669,7 +614,6 @@
669
614
  },
670
615
  "planningPermission": {
671
616
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
672
- "title": "Was planning permission obtained?",
673
617
  "discriminator": {
674
618
  "propertyName": "yesNo"
675
619
  },
@@ -697,7 +641,6 @@
697
641
  },
698
642
  "listedBuildingConsent": {
699
643
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
700
- "title": "Was listed building consent obtained?",
701
644
  "discriminator": {
702
645
  "propertyName": "yesNo"
703
646
  },
@@ -725,7 +668,6 @@
725
668
  },
726
669
  "deedRestrictionConsent": {
727
670
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
728
- "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",
729
671
  "discriminator": {
730
672
  "propertyName": "yesNo"
731
673
  },
@@ -757,7 +699,6 @@
757
699
  },
758
700
  "hasAddedConservatory": {
759
701
  "rdsRef": "WorksAlterationsChanges",
760
- "title": "Has a conservatory been added?",
761
702
  "discriminator": {
762
703
  "propertyName": "yesNo"
763
704
  },
@@ -780,7 +721,6 @@
780
721
  },
781
722
  "buildingRegApproval": {
782
723
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
783
- "title": "Was building regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
784
724
  "discriminator": {
785
725
  "propertyName": "yesNo"
786
726
  },
@@ -808,7 +748,6 @@
808
748
  },
809
749
  "planningPermission": {
810
750
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
811
- "title": "Was planning permission obtained?",
812
751
  "discriminator": {
813
752
  "propertyName": "yesNo"
814
753
  },
@@ -836,7 +775,6 @@
836
775
  },
837
776
  "listedBuildingConsent": {
838
777
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
839
- "title": "Was listed building consent obtained?",
840
778
  "discriminator": {
841
779
  "propertyName": "yesNo"
842
780
  },
@@ -864,7 +802,6 @@
864
802
  },
865
803
  "deedRestrictionConsent": {
866
804
  "rdsRef": "WorksAlterationsChanges/ConsentApproval",
867
- "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",
868
805
  "discriminator": {
869
806
  "propertyName": "yesNo"
870
807
  },
@@ -896,7 +833,6 @@
896
833
  },
897
834
  "worksUnfinished": {
898
835
  "rdsRef": "WorksAlterationsChanges/isIncomplete",
899
- "title": "Are any of the works listed above unfinished?",
900
836
  "discriminator": {
901
837
  "propertyName": "yesNo"
902
838
  },
@@ -923,7 +859,6 @@
923
859
  },
924
860
  "planningPermissionBreaches": {
925
861
  "rdsRef": "Property/Flags",
926
- "title": "Are you aware of any breaches of planning permission conditions or building regulations consent conditions or work not having the necessary consents?",
927
862
  "discriminator": {
928
863
  "propertyName": "yesNo"
929
864
  },
@@ -945,16 +880,10 @@
945
880
  ]
946
881
  },
947
882
  "details": {
948
- "rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
949
- "title": "Please give details"
883
+ "rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised"
950
884
  },
951
885
  "willingToInsure": {
952
- "rdsRef": "Insurance/isWillingToProvide",
953
- "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.]",
954
- "enum": [
955
- "Yes",
956
- "No"
957
- ]
886
+ "rdsRef": "Insurance/isWillingToProvide"
958
887
  }
959
888
  }
960
889
  }
@@ -962,7 +891,6 @@
962
891
  },
963
892
  "unresolvedPlanningIssues": {
964
893
  "rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
965
- "title": "Are you aware of any unresolved planning or building control issues?",
966
894
  "discriminator": {
967
895
  "propertyName": "yesNo"
968
896
  },
@@ -984,16 +912,10 @@
984
912
  ]
985
913
  },
986
914
  "details": {
987
- "rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
988
- "title": "Please give details"
915
+ "rdsRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised"
989
916
  },
990
917
  "willingToInsure": {
991
- "rdsRef": "Insurance/isWillingToProvide",
992
- "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.]",
993
- "enum": [
994
- "Yes",
995
- "No"
996
- ]
918
+ "rdsRef": "Insurance/isWillingToProvide"
997
919
  }
998
920
  }
999
921
  }
@@ -1005,7 +927,6 @@
1005
927
  "properties": {
1006
928
  "neighbourDevelopment": {
1007
929
  "rdsRef": "Property/Flags,Planning",
1008
- "title": "The owner of a neighbouring property is proposing to develop property or land nearby, make alterations to nearby buildings or change the use?",
1009
930
  "discriminator": {
1010
931
  "propertyName": "yesNo"
1011
932
  },
@@ -1032,7 +953,6 @@
1032
953
  },
1033
954
  "planningApplication": {
1034
955
  "rdsRef": "Property/Flags,Planning",
1035
- "title": "Any planning application that could affect the property, the enjoyment of it or the views from it?",
1036
956
  "discriminator": {
1037
957
  "propertyName": "yesNo"
1038
958
  },
@@ -1059,7 +979,6 @@
1059
979
  },
1060
980
  "requiredMaintenance": {
1061
981
  "rdsRef": "Property/Flags,Notifications",
1062
- "title": "Notice informing you that maintenance, repairs or improvements are required to your property?",
1063
982
  "discriminator": {
1064
983
  "propertyName": "yesNo"
1065
984
  },
@@ -1086,7 +1005,6 @@
1086
1005
  },
1087
1006
  "listedBuildingApplication": {
1088
1007
  "rdsRef": "Property/Flags,Protections",
1089
- "title": "Listed building application",
1090
1008
  "discriminator": {
1091
1009
  "propertyName": "yesNo"
1092
1010
  },
@@ -1113,7 +1031,6 @@
1113
1031
  },
1114
1032
  "infrastructureProject": {
1115
1033
  "rdsRef": "Property/Flags,Planning",
1116
- "title": "Infrastructure project, proposed or in progress (i.e. wind turbine, railway, fracking, etc)",
1117
1034
  "discriminator": {
1118
1035
  "propertyName": "yesNo"
1119
1036
  },
@@ -1140,7 +1057,6 @@
1140
1057
  },
1141
1058
  "partyWallAct": {
1142
1059
  "rdsRef": "Property/Flags,Notifications",
1143
- "title": "Notice under the Party Wall Act 1996 in respect of any shared or party boundaries?",
1144
1060
  "discriminator": {
1145
1061
  "propertyName": "yesNo"
1146
1062
  },
@@ -1167,7 +1083,6 @@
1167
1083
  },
1168
1084
  "otherNotices": {
1169
1085
  "rdsRef": "Property/Flags,Notifications",
1170
- "title": "Any other type of notice?",
1171
1086
  "discriminator": {
1172
1087
  "propertyName": "yesNo"
1173
1088
  },
@@ -1198,7 +1113,6 @@
1198
1113
  "properties": {
1199
1114
  "dryRotEtcTreatment": {
1200
1115
  "rdsRef": "Property/Flags,BuildingSections/EnvironmentalIssues",
1201
- "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?",
1202
1116
  "discriminator": {
1203
1117
  "propertyName": "yesNo"
1204
1118
  },
@@ -1225,7 +1139,6 @@
1225
1139
  },
1226
1140
  "containsAsbestos": {
1227
1141
  "rdsRef": "Property/Flags,BuildingSections/EnvironmentalIssues",
1228
- "title": "To your knowledge, does any part of your property contain asbestos?",
1229
1142
  "discriminator": {
1230
1143
  "propertyName": "yesNo"
1231
1144
  },
@@ -1252,7 +1165,6 @@
1252
1165
  },
1253
1166
  "japaneseKnotweed": {
1254
1167
  "rdsRef": "Property/Flags,BuildingSections/EnvironmentalIssues,Use/EnvironmentalIssues",
1255
- "title": "To your knowledge, is the property or neighbouring land, affected by Japanese knotweed or other invasive species?",
1256
1168
  "discriminator": {
1257
1169
  "propertyName": "yesNo"
1258
1170
  },
@@ -1280,7 +1192,6 @@
1280
1192
  },
1281
1193
  "subsidenceOrStructuralFault": {
1282
1194
  "rdsRef": "Property/Flags,BuildingSections/EnvironmentalIssues",
1283
- "title": "To your knowledge, has the property ever been subject to subsidence or structural fault?",
1284
1195
  "discriminator": {
1285
1196
  "propertyName": "yesNo"
1286
1197
  },
@@ -1307,7 +1218,6 @@
1307
1218
  },
1308
1219
  "ongoingHealthOrSafetyIssue": {
1309
1220
  "rdsRef": "Property/Flags,BuildingSections/EnvironmentalIssues",
1310
- "title": "Have you been notified by a relevant authority or qualified expert of an on-going health or safety issue with the property?",
1311
1221
  "discriminator": {
1312
1222
  "propertyName": "yesNo"
1313
1223
  },
@@ -1338,7 +1248,6 @@
1338
1248
  "properties": {
1339
1249
  "itemsToRemove": {
1340
1250
  "rdsRef": "Objects/{isIncludedInExchange='no',class='fixture|fitting}",
1341
- "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",
1342
1251
  "discriminator": {
1343
1252
  "propertyName": "yesNo"
1344
1253
  },
@@ -1365,7 +1274,6 @@
1365
1274
  },
1366
1275
  "itemsToInclude": {
1367
1276
  "rdsRef": "Objects/{isIncludedInExchange='true',class='equipment|furniture}",
1368
- "title": "Are there additional furniture items or possessions are you very likely to include in the sale, irrespective of sale price?",
1369
1277
  "discriminator": {
1370
1278
  "propertyName": "yesNo"
1371
1279
  },
@@ -1396,7 +1304,6 @@
1396
1304
  "properties": {
1397
1305
  "mainsElectricity": {
1398
1306
  "rdsRef": "Services/Electricity",
1399
- "title": "Mains electricity",
1400
1307
  "discriminator": {
1401
1308
  "propertyName": "yesNo"
1402
1309
  },
@@ -1432,7 +1339,6 @@
1432
1339
  },
1433
1340
  "mainsGas": {
1434
1341
  "rdsRef": "Services/Gas",
1435
- "title": "Mains gas",
1436
1342
  "discriminator": {
1437
1343
  "propertyName": "yesNo"
1438
1344
  },
@@ -1468,7 +1374,6 @@
1468
1374
  },
1469
1375
  "lpg": {
1470
1376
  "rdsRef": "Services/LiquefiedPetroleumGas",
1471
- "title": "Liquid Petroleum Gas (LPG)",
1472
1377
  "discriminator": {
1473
1378
  "propertyName": "yesNo"
1474
1379
  },
@@ -1504,7 +1409,6 @@
1504
1409
  },
1505
1410
  "oil": {
1506
1411
  "rdsRef": "Services/Oil",
1507
- "title": "Oil",
1508
1412
  "discriminator": {
1509
1413
  "propertyName": "yesNo"
1510
1414
  },
@@ -1540,7 +1444,6 @@
1540
1444
  },
1541
1445
  "telephone": {
1542
1446
  "rdsRef": "Services/Telephone",
1543
- "title": "Telephone",
1544
1447
  "discriminator": {
1545
1448
  "propertyName": "yesNo"
1546
1449
  },
@@ -1576,7 +1479,6 @@
1576
1479
  },
1577
1480
  "cableSatelliteTV": {
1578
1481
  "rdsRef": "Services/CableSatelliteTV",
1579
- "title": "Cable TV or satellite",
1580
1482
  "discriminator": {
1581
1483
  "propertyName": "yesNo"
1582
1484
  },
@@ -1612,7 +1514,6 @@
1612
1514
  },
1613
1515
  "broadband": {
1614
1516
  "rdsRef": "Services/Internet",
1615
- "title": "Broadband",
1616
1517
  "discriminator": {
1617
1518
  "propertyName": "yesNo"
1618
1519
  },
@@ -1648,8 +1549,6 @@
1648
1549
  },
1649
1550
  "otherServices": {
1650
1551
  "rdsRef": "Services/Other",
1651
- "title": "Other",
1652
- "description": "Other services include 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",
1653
1552
  "discriminator": {
1654
1553
  "propertyName": "yesNo"
1655
1554
  },
@@ -1685,7 +1584,6 @@
1685
1584
  },
1686
1585
  "maintenanceAgreements": {
1687
1586
  "rdsRef": "Services/Certificates,Services/OtherServices/Certificates",
1688
- "title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to connected services?",
1689
1587
  "discriminator": {
1690
1588
  "propertyName": "yesNo"
1691
1589
  },
@@ -1718,7 +1616,6 @@
1718
1616
  "properties": {
1719
1617
  "mainsWater": {
1720
1618
  "rdsRef": "Services/PotableWaterSupply",
1721
- "title": "Mains water",
1722
1619
  "discriminator": {
1723
1620
  "propertyName": "yesNo"
1724
1621
  },
@@ -1758,7 +1655,6 @@
1758
1655
  "properties": {
1759
1656
  "mainsSurfaceWaterDrainage": {
1760
1657
  "rdsRef": "Services/StormWaterDrainage",
1761
- "title": "Mains surface water drainage",
1762
1658
  "discriminator": {
1763
1659
  "propertyName": "yesNo"
1764
1660
  },
@@ -1795,7 +1691,6 @@
1795
1691
  },
1796
1692
  "mainsFoulDrainage": {
1797
1693
  "rdsRef": "Services/WasteWaterSewarageDisposal",
1798
- "title": "Mains foul drainage",
1799
1694
  "discriminator": {
1800
1695
  "propertyName": "yesNo"
1801
1696
  },
@@ -1828,7 +1723,6 @@
1828
1723
  },
1829
1724
  "sustainableDrainageSystem": {
1830
1725
  "rdsRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
1831
- "title": "Sustainable Drainage System",
1832
1726
  "discriminator": {
1833
1727
  "propertyName": "yesNo"
1834
1728
  },
@@ -1864,7 +1758,6 @@
1864
1758
  },
1865
1759
  "septicTank": {
1866
1760
  "rdsRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
1867
- "title": "Septic tank",
1868
1761
  "discriminator": {
1869
1762
  "propertyName": "yesNo"
1870
1763
  },
@@ -1891,7 +1784,6 @@
1891
1784
  },
1892
1785
  "cesspit": {
1893
1786
  "rdsRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
1894
- "title": "Cesspit",
1895
1787
  "discriminator": {
1896
1788
  "propertyName": "yesNo"
1897
1789
  },
@@ -1918,7 +1810,6 @@
1918
1810
  },
1919
1811
  "sewerageTreatmentPlant": {
1920
1812
  "rdsRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
1921
- "title": "Sewerage treatment plant",
1922
1813
  "discriminator": {
1923
1814
  "propertyName": "yesNo"
1924
1815
  },
@@ -1945,7 +1836,6 @@
1945
1836
  },
1946
1837
  "otherConnectedProperties": {
1947
1838
  "rdsRef": "Services/OtherServices/SharedWith",
1948
- "title": "Do other properties connect to the septic tank, cesspit or sewerage treatment plant?",
1949
1839
  "discriminator": {
1950
1840
  "propertyName": "yesNo"
1951
1841
  },
@@ -1972,7 +1862,6 @@
1972
1862
  },
1973
1863
  "plantOnOtherLand": {
1974
1864
  "rdsRef": "Services/OtherServices/Located,Services/OtherServices/{access=?}",
1975
- "title": "Is any part of the septic tank, cesspit or sewerage treatment plant located on someone else’s land?",
1976
1865
  "discriminator": {
1977
1866
  "propertyName": "yesNo"
1978
1867
  },
@@ -1999,7 +1888,6 @@
1999
1888
  },
2000
1889
  "plantRegistered": {
2001
1890
  "rdsRef": "Services/OtherServices/Certificates",
2002
- "title": "Is the septic tank, cesspit or sewerage treatment plant registered with the Environment Agency or exempted?",
2003
1891
  "discriminator": {
2004
1892
  "propertyName": "yesNo"
2005
1893
  },
@@ -2026,7 +1914,6 @@
2026
1914
  },
2027
1915
  "plantDrainsIntoWaterway": {
2028
1916
  "rdsRef": "Services/OtherServices/{isExternallyConnected='yes?true'}",
2029
- "title": "Does the septic tank, cesspit or sewerage treatment plant drain into a waterway (lake, river, stream etc)",
2030
1917
  "discriminator": {
2031
1918
  "propertyName": "yesNo"
2032
1919
  },
@@ -2048,12 +1935,7 @@
2048
1935
  ]
2049
1936
  },
2050
1937
  "dischargeCompliesWithGBR": {
2051
- "rdsRef": "Services/OtherServices/ExternalConnections/Flags",
2052
- "title": "Does it comply with the General Binding Rules for discharge into a waterway?",
2053
- "enum": [
2054
- "Yes",
2055
- "No, it does not comply with the rules for discharge into a waterway."
2056
- ]
1938
+ "rdsRef": "Services/OtherServices/ExternalConnections/Flags"
2057
1939
  }
2058
1940
  }
2059
1941
  }
@@ -2067,7 +1949,6 @@
2067
1949
  },
2068
1950
  "maintenanceAgreements": {
2069
1951
  "rdsRef": "Services/Certificates,Services/OtherServices/Certificates",
2070
- "title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to these services?",
2071
1952
  "discriminator": {
2072
1953
  "propertyName": "yesNo"
2073
1954
  },
@@ -2096,7 +1977,6 @@
2096
1977
  },
2097
1978
  "centralHeating": {
2098
1979
  "rdsRef": "Buildings|BuildingSections/isUnheated=no|yes|true|false",
2099
- "title": "Central Heating",
2100
1980
  "discriminator": {
2101
1981
  "propertyName": "hasCentralHeating"
2102
1982
  },
@@ -2121,7 +2001,6 @@
2121
2001
  "properties": {
2122
2002
  "centralHeatingFuel": {
2123
2003
  "rdsRef": "Buildings|BuildingSections/Heating/isGas=no|yes|true|false",
2124
- "title": "Central Heating Fuel",
2125
2004
  "discriminator": {
2126
2005
  "propertyName": "centralHeatingFuelType"
2127
2006
  },
@@ -2150,12 +2029,10 @@
2150
2029
  ]
2151
2030
  },
2152
2031
  "centralHeatingInstalled": {
2153
- "rdsRef": "Objects/Installed",
2154
- "title": "When was the heating system installed?"
2032
+ "rdsRef": "Objects/Installed"
2155
2033
  },
2156
2034
  "boilerInstallationCertificate": {
2157
2035
  "rdsRef": "Objects/Installation,Objects/Certificates",
2158
- "title": "Was a gas boiler installed after 1st April 2005, or a solid fuel or oil boiler installed after 1st October 2010?",
2159
2036
  "discriminator": {
2160
2037
  "propertyName": "yesNo"
2161
2038
  },
@@ -2181,12 +2058,10 @@
2181
2058
  ]
2182
2059
  },
2183
2060
  "heatingLastServicedDate": {
2184
- "rdsRef": "Objects/Maintenance",
2185
- "title": "When was the heating system last serviced or maintained?"
2061
+ "rdsRef": "Objects/Maintenance"
2186
2062
  },
2187
2063
  "heatingInGoodWorkingOrder": {
2188
2064
  "rdsRef": "Objects/Condition=?",
2189
- "title": "Is the heating system in good working order to your satisfaction?",
2190
2065
  "discriminator": {
2191
2066
  "propertyName": "yesNo"
2192
2067
  },
@@ -2220,12 +2095,7 @@
2220
2095
  "insurance": {
2221
2096
  "properties": {
2222
2097
  "isInsured": {
2223
- "rdsRef": "Insurance/isInsured=no|yes|true|false",
2224
- "title": "Do you insure the property?",
2225
- "enum": [
2226
- "Yes",
2227
- "No"
2228
- ]
2098
+ "rdsRef": "Insurance/isInsured=no|yes|true|false"
2229
2099
  }
2230
2100
  },
2231
2101
  "oneOf": [
@@ -2233,12 +2103,10 @@
2233
2103
  {
2234
2104
  "properties": {
2235
2105
  "difficultiesObtainingInsurance": {
2236
- "rdsRef": "Insurance/Flags,Insurance/refusalReason=?",
2237
- "title": "Have you had any difficulty obtaining competitively priced building insurance due to the structure or location of the property or had insurance refused?"
2106
+ "rdsRef": "Insurance/Flags,Insurance/refusalReason=?"
2238
2107
  },
2239
2108
  "insuranceClaims": {
2240
2109
  "rdsRef": "Insurance/Claims",
2241
- "title": "Have you ever made a claim against your building insurance in relation to the property?",
2242
2110
  "discriminator": {
2243
2111
  "propertyName": "yesNo"
2244
2112
  },
@@ -2271,7 +2139,6 @@
2271
2139
  "properties": {
2272
2140
  "partOutsideLegalOwnership": {
2273
2141
  "rdsRef": "Tenure/Interests",
2274
- "title": "Is any part of the property outside the seller’s legal ownership?",
2275
2142
  "discriminator": {
2276
2143
  "propertyName": "yesNo"
2277
2144
  },
@@ -2298,7 +2165,6 @@
2298
2165
  },
2299
2166
  "partOnSeparateSiteOrDeed": {
2300
2167
  "rdsRef": "Tenure *with different property entity and references etc*",
2301
- "title": "Is any part of the property on a separate site or separate title number e.g. garden, outbuilding, parking, garage?",
2302
2168
  "discriminator": {
2303
2169
  "propertyName": "yesNo"
2304
2170
  },
@@ -2325,7 +2191,6 @@
2325
2191
  },
2326
2192
  "boundariesDifferFromTitlePlan": {
2327
2193
  "rdsRef": "Tenure/Boundaries,Tenure/BoundaryDifferences,Tenure/CadastralMapOfParcels",
2328
- "title": "Do the boundaries differ from those shown on the title plan?",
2329
2194
  "discriminator": {
2330
2195
  "propertyName": "yesNo"
2331
2196
  },
@@ -2352,7 +2217,6 @@
2352
2217
  },
2353
2218
  "boundaryAlterationProposal": {
2354
2219
  "rdsRef": "Tenure/Boundaries/proposedAlterations=?",
2355
- "title": "Is there a current proposal with anyone to alter the boundaries of your property?",
2356
2220
  "discriminator": {
2357
2221
  "propertyName": "yesNo"
2358
2222
  },
@@ -2383,7 +2247,6 @@
2383
2247
  "properties": {
2384
2248
  "sharedContributions": {
2385
2249
  "rdsRef": "Services/SharedCosts",
2386
- "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?",
2387
2250
  "discriminator": {
2388
2251
  "propertyName": "yesNo"
2389
2252
  },
@@ -2410,7 +2273,6 @@
2410
2273
  },
2411
2274
  "neighbouringLandRights": {
2412
2275
  "rdsRef": "Tenure/Rights,Tenure *with different property entity and references etc*",
2413
- "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)",
2414
2276
  "discriminator": {
2415
2277
  "propertyName": "yesNo"
2416
2278
  },
@@ -2437,7 +2299,6 @@
2437
2299
  },
2438
2300
  "accessRestrictionAttempts": {
2439
2301
  "rdsRef": "Tenure/Restrictions",
2440
- "title": "Has anyone tried to stop you using an access way to the property or asked you to pay to use the access?",
2441
2302
  "discriminator": {
2442
2303
  "propertyName": "yesNo"
2443
2304
  },
@@ -2466,7 +2327,6 @@
2466
2327
  "properties": {
2467
2328
  "publicRightOfWay": {
2468
2329
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities,Tenure/CadastralMapOfParcels",
2469
- "title": "A public right of way through and/or across your property, buildings or land",
2470
2330
  "discriminator": {
2471
2331
  "propertyName": "yesNo"
2472
2332
  },
@@ -2493,7 +2353,6 @@
2493
2353
  },
2494
2354
  "rightsOfLight": {
2495
2355
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
2496
- "title": "Rights of light",
2497
2356
  "discriminator": {
2498
2357
  "propertyName": "yesNo"
2499
2358
  },
@@ -2520,7 +2379,6 @@
2520
2379
  },
2521
2380
  "rightsOfSupport": {
2522
2381
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
2523
- "title": "Rights of support from ajoining properties",
2524
2382
  "discriminator": {
2525
2383
  "propertyName": "yesNo"
2526
2384
  },
@@ -2547,7 +2405,6 @@
2547
2405
  },
2548
2406
  "rightsCreatedThroughCustom": {
2549
2407
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
2550
- "title": "Rights created through custom or use (e.g. rights to graze on other land or forage)",
2551
2408
  "discriminator": {
2552
2409
  "propertyName": "yesNo"
2553
2410
  },
@@ -2574,7 +2431,6 @@
2574
2431
  },
2575
2432
  "rightsToTakeFromLand": {
2576
2433
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
2577
- "title": "Other people's rights to take things from the land (such as timber, hay or fish)",
2578
2434
  "discriminator": {
2579
2435
  "propertyName": "yesNo"
2580
2436
  },
@@ -2601,7 +2457,6 @@
2601
2457
  },
2602
2458
  "minesAndMinerals": {
2603
2459
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
2604
- "title": "Mines and minerals under the property",
2605
2460
  "discriminator": {
2606
2461
  "propertyName": "yesNo"
2607
2462
  },
@@ -2628,7 +2483,6 @@
2628
2483
  },
2629
2484
  "churchChancel": {
2630
2485
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
2631
- "title": "Liability to contribute to the maintenance of a church chancel?",
2632
2486
  "discriminator": {
2633
2487
  "propertyName": "yesNo"
2634
2488
  },
@@ -2655,7 +2509,6 @@
2655
2509
  },
2656
2510
  "otherRights": {
2657
2511
  "rdsRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
2658
- "title": "Any other rights or arrangements affecting the property?",
2659
2512
  "discriminator": {
2660
2513
  "propertyName": "yesNo"
2661
2514
  },
@@ -2688,7 +2541,6 @@
2688
2541
  "properties": {
2689
2542
  "flooding": {
2690
2543
  "rdsRef": "Sustainability/Environmental|Natural|Situational",
2691
- "title": "Flooding",
2692
2544
  "discriminator": {
2693
2545
  "propertyName": "hasBeenFlooded"
2694
2546
  },
@@ -2710,8 +2562,7 @@
2710
2562
  ]
2711
2563
  },
2712
2564
  "typeOfFlooding": {
2713
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2714
- "title": "What type of flooding occurred?"
2565
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2715
2566
  }
2716
2567
  }
2717
2568
  }
@@ -2719,7 +2570,6 @@
2719
2570
  "properties": {
2720
2571
  "floodRiskReport": {
2721
2572
  "rdsRef": "Sustainability/Environmental|Natural|Situational",
2722
- "title": "Has a Flood Risk Report been prepared?",
2723
2573
  "discriminator": {
2724
2574
  "propertyName": "yesNo"
2725
2575
  },
@@ -2748,49 +2598,38 @@
2748
2598
  },
2749
2599
  "radon": {
2750
2600
  "rdsRef": "Sustainability/Environmental|Natural|Situational",
2751
- "title": "Radon",
2752
2601
  "properties": {
2753
2602
  "remedialMeasuresOnConstruction": {
2754
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2755
- "title": "Were any remedial measures undertaken on construction to reduce Radon gas levels on the property?"
2603
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2756
2604
  }
2757
2605
  }
2758
2606
  },
2759
2607
  "contaminatedLand": {
2760
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2761
- "title": "Contaminated land"
2608
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2762
2609
  },
2763
2610
  "groundStability": {
2764
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2765
- "title": "Ground stability"
2611
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2766
2612
  },
2767
2613
  "energy": {
2768
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2769
- "title": "Energy"
2614
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2770
2615
  },
2771
2616
  "transportation": {
2772
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2773
- "title": "Transportation"
2617
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2774
2618
  },
2775
2619
  "planning": {
2776
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2777
- "title": "Planning"
2620
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2778
2621
  },
2779
2622
  "climate": {
2780
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2781
- "title": "Climate risk"
2623
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2782
2624
  },
2783
2625
  "coalMining": {
2784
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2785
- "title": "Coal mining"
2626
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2786
2627
  },
2787
2628
  "nonCoalMining": {
2788
- "rdsRef": "Sustainability/Environmental|Natural|Situational",
2789
- "title": "Non-coal mining"
2629
+ "rdsRef": "Sustainability/Environmental|Natural|Situational"
2790
2630
  },
2791
2631
  "otherEnvironmental": {
2792
2632
  "rdsRef": "Sustainability/Environmental|Natural|Situational",
2793
- "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)?",
2794
2633
  "discriminator": {
2795
2634
  "propertyName": "yesNo"
2796
2635
  },
@@ -2822,7 +2661,6 @@
2822
2661
  "properties": {
2823
2662
  "excessiveNoise": {
2824
2663
  "rdsRef": "Tenure/OtherMaterialIssues",
2825
- "title": "To your knowledge, has anyone occupying the property been disturbed by excessive noise which is likely to reoccur at the property?",
2826
2664
  "discriminator": {
2827
2665
  "propertyName": "yesNo"
2828
2666
  },
@@ -2849,7 +2687,6 @@
2849
2687
  },
2850
2688
  "crime": {
2851
2689
  "rdsRef": "Tenure/OtherMaterialIssues",
2852
- "title": "To your knowledge, has the property been subject to any crime, burglary or violent death?",
2853
2690
  "discriminator": {
2854
2691
  "propertyName": "yesNo"
2855
2692
  },
@@ -2876,7 +2713,6 @@
2876
2713
  },
2877
2714
  "cautionOrConviction": {
2878
2715
  "rdsRef": "Tenure/OtherMaterialIssues",
2879
- "title": "To your knowledge, has the property been occupied by someone who has been cautioned or convicted of a serious crime?",
2880
2716
  "discriminator": {
2881
2717
  "propertyName": "yesNo"
2882
2718
  },
@@ -2903,7 +2739,6 @@
2903
2739
  },
2904
2740
  "failedTransactionsInLast12Months": {
2905
2741
  "rdsRef": "Tenure/OtherMaterialIssues",
2906
- "title": "Have there been any failed purchase transactions on the property within the last 12 months?",
2907
2742
  "discriminator": {
2908
2743
  "propertyName": "yesNo"
2909
2744
  },
@@ -2934,7 +2769,6 @@
2934
2769
  "properties": {
2935
2770
  "restrictionsOnUseNotCompliedWith": {
2936
2771
  "rdsRef": "Use/NonCompliance",
2937
- "title": "Are you aware of any restrictions on the use or alteration of the property which have not been complied with?",
2938
2772
  "discriminator": {
2939
2773
  "propertyName": "yesNo"
2940
2774
  },
@@ -2961,8 +2795,6 @@
2961
2795
  },
2962
2796
  "otherMaterialIssue": {
2963
2797
  "rdsRef": "Tenure/OtherMaterialIssues",
2964
- "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?",
2965
- "description": "This disclosure is required under the Consumer Protection from Unfair Trading Regulations 2008",
2966
2798
  "discriminator": {
2967
2799
  "propertyName": "yesNo"
2968
2800
  },
@@ -2996,15 +2828,12 @@
2996
2828
  "legalOwners": {
2997
2829
  "properties": {
2998
2830
  "namesOfLegalOwners": {
2999
- "rdsRef": "RightsHolders",
3000
- "title": "Names of all legal owners",
3001
- "minItems": 1
2831
+ "rdsRef": "RightsHolders"
3002
2832
  }
3003
2833
  }
3004
2834
  },
3005
2835
  "sellersCapacity": {
3006
2836
  "rdsRef": "Participants/description=?,Participants/ActingFor/Participants/Role",
3007
- "title": "Capacity in which the Seller sells",
3008
2837
  "discriminator": {
3009
2838
  "propertyName": "capacity"
3010
2839
  },
@@ -3018,9 +2847,7 @@
3018
2847
  ]
3019
2848
  },
3020
2849
  "sellersCapacityDetails": {
3021
- "rdsRef": "Participants/OtherDocumentation",
3022
- "title": "Please provide details if applicable",
3023
- "description": "(for example if the sellers names do not match the legal owners on the title deed due to change of name on marriage)"
2850
+ "rdsRef": "Participants/OtherDocumentation"
3024
2851
  }
3025
2852
  }
3026
2853
  },
@@ -3034,8 +2861,7 @@
3034
2861
  ]
3035
2862
  },
3036
2863
  "sellersCapacityDetails": {
3037
- "rdsRef": "Participants/OtherDocumentation",
3038
- "title": "Please provide details and provide any probate, grant of representation or power of attorney "
2864
+ "rdsRef": "Participants/OtherDocumentation"
3039
2865
  }
3040
2866
  }
3041
2867
  }
@@ -3045,8 +2871,6 @@
3045
2871
  "properties": {
3046
2872
  "ownership": {
3047
2873
  "rdsRef": "Tenure/Boundaries",
3048
- "title": "Boundary ownership",
3049
- "description": "If the property is leasehold this section, or parts of it, may not apply.",
3050
2874
  "discriminator": {
3051
2875
  "propertyName": "areBoundariesUniform"
3052
2876
  },
@@ -3061,44 +2885,16 @@
3061
2885
  "uniformBoundaries": {
3062
2886
  "properties": {
3063
2887
  "left": {
3064
- "rdsRef": "Tenure/Boundaries",
3065
- "title": "On the left",
3066
- "enum": [
3067
- "Seller",
3068
- "Shared",
3069
- "Neighbour",
3070
- "Not known"
3071
- ]
2888
+ "rdsRef": "Tenure/Boundaries"
3072
2889
  },
3073
2890
  "right": {
3074
- "rdsRef": "Tenure/Boundaries",
3075
- "title": "On the right",
3076
- "enum": [
3077
- "Seller",
3078
- "Shared",
3079
- "Neighbour",
3080
- "Not known"
3081
- ]
2891
+ "rdsRef": "Tenure/Boundaries"
3082
2892
  },
3083
2893
  "rear": {
3084
- "rdsRef": "Tenure/Boundaries",
3085
- "title": "At the rear",
3086
- "enum": [
3087
- "Seller",
3088
- "Shared",
3089
- "Neighbour",
3090
- "Not known"
3091
- ]
2894
+ "rdsRef": "Tenure/Boundaries"
3092
2895
  },
3093
2896
  "front": {
3094
- "rdsRef": "Tenure/Boundaries",
3095
- "title": "At the front",
3096
- "enum": [
3097
- "Seller",
3098
- "Shared",
3099
- "Neighbour",
3100
- "Not known"
3101
- ]
2897
+ "rdsRef": "Tenure/Boundaries"
3102
2898
  }
3103
2899
  }
3104
2900
  }
@@ -3126,7 +2922,6 @@
3126
2922
  },
3127
2923
  "haveBoundaryFeaturesMoved": {
3128
2924
  "rdsRef": "Tenure/Boundaries",
3129
- "title": "Has any boundary features been moved during your ownership or in the last 10 years, to your knowledge?",
3130
2925
  "discriminator": {
3131
2926
  "propertyName": "yesNo"
3132
2927
  },
@@ -3154,7 +2949,6 @@
3154
2949
  },
3155
2950
  "adjacentLandIncluded": {
3156
2951
  "rdsRef": "Property/Flags,Property/GUID/name='UPRN'&id=?",
3157
- "title": "Has any adjacent land or property been purchased by you that will be included in the sale?",
3158
2952
  "discriminator": {
3159
2953
  "propertyName": "yesNo"
3160
2954
  },
@@ -3182,8 +2976,6 @@
3182
2976
  },
3183
2977
  "flyingFreehold": {
3184
2978
  "rdsRef": "Tenure/tenure=?",
3185
- "title": "Is there a flying freehold?",
3186
- "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.",
3187
2979
  "discriminator": {
3188
2980
  "propertyName": "yesNo"
3189
2981
  },
@@ -3215,7 +3007,6 @@
3215
3007
  "properties": {
3216
3008
  "pipesWiresCablesDrainsToProperty": {
3217
3009
  "rdsRef": "Services/.../Located",
3218
- "title": "Are you aware of any pipes, wires, cables or drains bringing services to the property which cross any neighbouring land or property?",
3219
3010
  "discriminator": {
3220
3011
  "propertyName": "yesNo"
3221
3012
  },
@@ -3243,7 +3034,6 @@
3243
3034
  },
3244
3035
  "pipesWiresCablesDrainsFromProperty": {
3245
3036
  "rdsRef": "Services/.../Located *with Property entities and references for the related properties etc",
3246
- "title": "Are you aware of any pipes, wires, cables or drains taking services to neighbouring property cross this property?",
3247
3037
  "discriminator": {
3248
3038
  "propertyName": "yesNo"
3249
3039
  },
@@ -3271,7 +3061,6 @@
3271
3061
  },
3272
3062
  "formalOrInformalAgreements": {
3273
3063
  "rdsRef": "Services/.../Consent",
3274
- "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?",
3275
3064
  "discriminator": {
3276
3065
  "propertyName": "yesNo"
3277
3066
  },
@@ -3303,7 +3092,6 @@
3303
3092
  "properties": {
3304
3093
  "testedByQualifiedElectrician": {
3305
3094
  "rdsRef": "Objects/Servicing",
3306
- "title": "Have the electrics at the property been tested by a qualified electrician?",
3307
3095
  "discriminator": {
3308
3096
  "propertyName": "yesNo"
3309
3097
  },
@@ -3330,7 +3118,6 @@
3330
3118
  },
3331
3119
  "electricalWorkSince2005": {
3332
3120
  "rdsRef": "WorksAlterationsChanges/Consent,WorksAlterationsChanges/Consent/Certificates",
3333
- "title": "Since 1st January 2005, has any electrical work been carried out to the property?",
3334
3121
  "discriminator": {
3335
3122
  "propertyName": "yesNo"
3336
3123
  },
@@ -3359,12 +3146,7 @@
3359
3146
  "solarPanels": {
3360
3147
  "properties": {
3361
3148
  "hasSolarPanels": {
3362
- "rdsRef": "Property/Flags",
3363
- "title": "Are there solar or photovoltaic panels installed at the property?",
3364
- "enum": [
3365
- "Yes",
3366
- "No"
3367
- ]
3149
+ "rdsRef": "Property/Flags"
3368
3150
  }
3369
3151
  },
3370
3152
  "oneOf": [
@@ -3372,12 +3154,10 @@
3372
3154
  {
3373
3155
  "properties": {
3374
3156
  "yearInstalled": {
3375
- "rdsRef": "Objects/Installation",
3376
- "title": "What year were they installed?"
3157
+ "rdsRef": "Objects/Installation"
3377
3158
  },
3378
3159
  "panelsOwnedOutright": {
3379
3160
  "rdsRef": "Objects/Ownership",
3380
- "title": "Do you own the panels, and all equipment related to them, outright?",
3381
3161
  "discriminator": {
3382
3162
  "propertyName": "yesNo"
3383
3163
  },
@@ -3404,7 +3184,6 @@
3404
3184
  },
3405
3185
  "panelProviderLease": {
3406
3186
  "rdsRef": "Objects/Ownership",
3407
- "title": "Is there an existing long lease of the roof/air space granted to a panel provider?",
3408
3187
  "discriminator": {
3409
3188
  "propertyName": "yesNo"
3410
3189
  },
@@ -3430,12 +3209,10 @@
3430
3209
  ]
3431
3210
  },
3432
3211
  "lastMaintained": {
3433
- "rdsRef": "Objects/Servicing",
3434
- "title": "When was the system last maintained or serviced?"
3212
+ "rdsRef": "Objects/Servicing"
3435
3213
  },
3436
3214
  "inGoodWorkingOrder": {
3437
3215
  "rdsRef": "Objects/isNotWorking=yes|no|true|false",
3438
- "title": "Is the system in good working order to your satisfaction?",
3439
3216
  "discriminator": {
3440
3217
  "propertyName": "yesNo"
3441
3218
  },
@@ -3461,53 +3238,36 @@
3461
3238
  ]
3462
3239
  },
3463
3240
  "isConnectedToNationalGrid": {
3464
- "rdsRef": "Objects/isExternallyConnected=yes|no|true|false,Connection,Objects/ExternalConnection",
3465
- "title": "Is the system connected to the National Grid e.g. for feed-in tariffs (FiT) or Smart Export Guarantee (SEG)",
3466
- "enum": [
3467
- "Yes (FiT)",
3468
- "Yes (SEG)",
3469
- "No"
3470
- ]
3241
+ "rdsRef": "Objects/isExternallyConnected=yes|no|true|false,Connection,Objects/ExternalConnection"
3471
3242
  },
3472
3243
  "photovoltaicMeterPanelLocation": {
3473
- "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
3474
- "title": "Location of photovoltaic panel meter (if any)"
3244
+ "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?"
3475
3245
  },
3476
3246
  "photovoltaicBatteriesLocation": {
3477
- "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
3478
- "title": "Location of photovoltaic batteries (if any)"
3247
+ "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?"
3479
3248
  }
3480
3249
  }
3481
3250
  }
3482
3251
  ]
3483
3252
  },
3484
3253
  "electricityMeterLocation": {
3485
- "rdsRef": "Objects/class='meters|'&access=?&accessLocation=?",
3486
- "title": "Location of electricity meter (if any)"
3254
+ "rdsRef": "Objects/class='meters|'&access=?&accessLocation=?"
3487
3255
  },
3488
3256
  "gasMeterLocation": {
3489
- "rdsRef": "Objects/class='meters'&access=?&accessLocation=?",
3490
- "title": "Location of gas meter (if any)"
3257
+ "rdsRef": "Objects/class='meters'&access=?&accessLocation=?"
3491
3258
  },
3492
3259
  "stopcockLocation": {
3493
- "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
3494
- "title": "Location of stopcock (if any)"
3260
+ "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?"
3495
3261
  },
3496
3262
  "waterMeterLocation": {
3497
- "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
3498
- "title": "Location of water meter (if any)"
3263
+ "rdsRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?"
3499
3264
  }
3500
3265
  }
3501
3266
  },
3502
3267
  "guaranteesWarrantiesAndIndemnityInsurances": {
3503
3268
  "properties": {
3504
3269
  "hasValidGuaranteesOrWarranties": {
3505
- "rdsRef": "Certificates",
3506
- "title": "Are there any valid guarantees, warranties or indemnity insurances relating to this property?",
3507
- "enum": [
3508
- "Yes",
3509
- "No"
3510
- ]
3270
+ "rdsRef": "Certificates"
3511
3271
  }
3512
3272
  },
3513
3273
  "oneOf": [
@@ -3516,7 +3276,6 @@
3516
3276
  "properties": {
3517
3277
  "newHomeWarranty": {
3518
3278
  "rdsRef": "Certificates",
3519
- "title": "New Home Warranty (NHBC or similar)",
3520
3279
  "discriminator": {
3521
3280
  "propertyName": "yesNo"
3522
3281
  },
@@ -3543,7 +3302,6 @@
3543
3302
  },
3544
3303
  "roofingWork": {
3545
3304
  "rdsRef": "Certificates",
3546
- "title": "Roofing work",
3547
3305
  "discriminator": {
3548
3306
  "propertyName": "yesNo"
3549
3307
  },
@@ -3570,7 +3328,6 @@
3570
3328
  },
3571
3329
  "dampProofingTreatment": {
3572
3330
  "rdsRef": "Certificates",
3573
- "title": "Damp proofing treatment",
3574
3331
  "discriminator": {
3575
3332
  "propertyName": "yesNo"
3576
3333
  },
@@ -3597,7 +3354,6 @@
3597
3354
  },
3598
3355
  "timberRotOrInfestationTreatment": {
3599
3356
  "rdsRef": "Certificates",
3600
- "title": "Timber rot or infestation treatment",
3601
3357
  "discriminator": {
3602
3358
  "propertyName": "yesNo"
3603
3359
  },
@@ -3624,7 +3380,6 @@
3624
3380
  },
3625
3381
  "centralHeatingAndorPlumbing": {
3626
3382
  "rdsRef": "Certificates",
3627
- "title": "Central heating and/or plumbing",
3628
3383
  "discriminator": {
3629
3384
  "propertyName": "yesNo"
3630
3385
  },
@@ -3651,7 +3406,6 @@
3651
3406
  },
3652
3407
  "doubleGlazing": {
3653
3408
  "rdsRef": "Certificates",
3654
- "title": "Double glazing (windows, doors, roof lights, conservatory etc)",
3655
3409
  "discriminator": {
3656
3410
  "propertyName": "yesNo"
3657
3411
  },
@@ -3678,7 +3432,6 @@
3678
3432
  },
3679
3433
  "electricalRepairOrInstallation": {
3680
3434
  "rdsRef": "Certificates",
3681
- "title": "Electrical repair or installation",
3682
3435
  "discriminator": {
3683
3436
  "propertyName": "yesNo"
3684
3437
  },
@@ -3705,7 +3458,6 @@
3705
3458
  },
3706
3459
  "subsidenceWork": {
3707
3460
  "rdsRef": "Certificates",
3708
- "title": "Underpinning or other preventative work and/or remedial action relating to subsidence",
3709
3461
  "discriminator": {
3710
3462
  "propertyName": "yesNo"
3711
3463
  },
@@ -3732,7 +3484,6 @@
3732
3484
  },
3733
3485
  "solarPanels": {
3734
3486
  "rdsRef": "Certificates",
3735
- "title": "Solar panels",
3736
3487
  "discriminator": {
3737
3488
  "propertyName": "yesNo"
3738
3489
  },
@@ -3759,7 +3510,6 @@
3759
3510
  },
3760
3511
  "otherGuarantees": {
3761
3512
  "rdsRef": "Certificates",
3762
- "title": "Other Guarantees or warranties",
3763
3513
  "discriminator": {
3764
3514
  "propertyName": "yesNo"
3765
3515
  },
@@ -3786,7 +3536,6 @@
3786
3536
  },
3787
3537
  "outstandingClaimsOrApplications": {
3788
3538
  "rdsRef": "Certificates",
3789
- "title": "Are there any outstanding claims or current applications relating to any of the above?",
3790
3539
  "discriminator": {
3791
3540
  "propertyName": "yesNo"
3792
3541
  },
@@ -3813,8 +3562,6 @@
3813
3562
  },
3814
3563
  "titleDefectInsurance": {
3815
3564
  "rdsRef": "Certificates",
3816
- "title": "Do you have any title defect insurance policies?",
3817
- "description": "e.g. for breach of planning permission, buildings regulations, restrictions, chancel repair etc",
3818
3565
  "discriminator": {
3819
3566
  "propertyName": "yesNo"
3820
3567
  },
@@ -3846,8 +3593,7 @@
3846
3593
  "occupiers": {
3847
3594
  "properties": {
3848
3595
  "sellerLivesAtProperty": {
3849
- "rdsRef": "Property/Flags",
3850
- "title": "Does the seller live at the property?"
3596
+ "rdsRef": "Property/Flags"
3851
3597
  },
3852
3598
  "othersAged17OrOver": {
3853
3599
  "rdsRef": "Participants",
@@ -3872,8 +3618,7 @@
3872
3618
  ]
3873
3619
  },
3874
3620
  "aged17OrOverTenantsOrLodgers": {
3875
- "rdsRef": "Property/Flags",
3876
- "title": "Are any of them tenants or lodgers?"
3621
+ "rdsRef": "Property/Flags"
3877
3622
  },
3878
3623
  "vacantPossession": {
3879
3624
  "oneOf": [
@@ -3881,12 +3626,10 @@
3881
3626
  {
3882
3627
  "properties": {
3883
3628
  "aged17OrOverAgreedToLeave": {
3884
- "rdsRef": "RightsHolders,TenureAgreements,Notifications",
3885
- "title": "Have all occupiers aged 17 or over agreed to leave prior to completion?"
3629
+ "rdsRef": "RightsHolders,TenureAgreements,Notifications"
3886
3630
  },
3887
3631
  "aged17OrOverWillSignToConfirmWillVacate": {
3888
3632
  "rdsRef": "RightsHolders,TenureAgreements,Notifications",
3889
- "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?",
3890
3633
  "discriminator": {
3891
3634
  "propertyName": "yesNo"
3892
3635
  },
@@ -3920,12 +3663,7 @@
3920
3663
  ],
3921
3664
  "properties": {
3922
3665
  "hasOthersAged17OrOver": {
3923
- "rdsRef": "Participants",
3924
- "title": "Other than the sellers, does anyone else aged 17 or over, live at the property?",
3925
- "enum": [
3926
- "Yes",
3927
- "No"
3928
- ]
3666
+ "rdsRef": "Participants"
3929
3667
  }
3930
3668
  }
3931
3669
  }
@@ -3934,12 +3672,10 @@
3934
3672
  "completionAndMoving": {
3935
3673
  "properties": {
3936
3674
  "sellerWillEnsure": {
3937
- "rdsRef": "RightsHolders/Flags",
3938
- "title": "Please confirm that on completion you will:"
3675
+ "rdsRef": "RightsHolders/Flags"
3939
3676
  },
3940
3677
  "otherPropertyInChain": {
3941
3678
  "rdsRef": "RightsHolders/Flags",
3942
- "title": "Will you need the purchase, sale or remortgage of another property to co-ordinate with the sale of this property?",
3943
3679
  "discriminator": {
3944
3680
  "propertyName": "yesNo"
3945
3681
  },
@@ -3966,8 +3702,6 @@
3966
3702
  },
3967
3703
  "moveRestrictionDates": {
3968
3704
  "rdsRef": "RightsHolders/Text",
3969
- "title": "Are there any dates on which you cannot move?",
3970
- "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.",
3971
3705
  "discriminator": {
3972
3706
  "propertyName": "yesNo"
3973
3707
  },