@pdtf/schemas 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +9 -0
- package/babel.config.js +3 -0
- package/docs/assets/PDTF Orange.png +0 -0
- package/jest.config.js +194 -0
- package/package.json +39 -0
- package/src/index.js +54 -0
- package/src/schemas/GeoJSON.json +1279 -0
- package/src/schemas/baspi-a-material-facts.json +1609 -0
- package/src/schemas/baspi-b-legal-information.json +809 -0
- package/src/schemas/energy-performance-certificate.json +118 -0
- package/src/schemas/pdtf-claim.json +27 -0
- package/src/schemas/property-pack.json +99 -0
- package/src/schemas/title-deed.json +773 -0
- package/src/schemas/verified_claims-12.json +637 -0
- package/src/tests/examplePropertyPack.json +363 -0
- package/src/tests/propertyPackSchema.test.js +44 -0
|
@@ -0,0 +1,1609 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "https://homebuyingandsellinggroup.co.uk/schemas/baspi-a-material-facts-1.0.0.json",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"title": "Material facts at the point of marketing",
|
|
6
|
+
"description": "BASPI v2.0 Part A - Disclosure of material facts at the point of marketing, supporting mapping to BASPI, Law Society and RICS Data Schema elements.",
|
|
7
|
+
"baspiRef": "A",
|
|
8
|
+
"required": [
|
|
9
|
+
"propertyToBeSold",
|
|
10
|
+
"disputesAndComplaints",
|
|
11
|
+
"alterationsAndChanges",
|
|
12
|
+
"notices",
|
|
13
|
+
"specialistIssues",
|
|
14
|
+
"fixturesAndFittings",
|
|
15
|
+
"waterAndDrainage",
|
|
16
|
+
"utilities",
|
|
17
|
+
"greenDealLoan",
|
|
18
|
+
"centralHeating",
|
|
19
|
+
"insurance",
|
|
20
|
+
"boundaries",
|
|
21
|
+
"rightsAndInformalArrangements",
|
|
22
|
+
"otherIssues",
|
|
23
|
+
"additionalInformation",
|
|
24
|
+
"consumerProtectionRegulationsDeclaration"
|
|
25
|
+
],
|
|
26
|
+
"properties": {
|
|
27
|
+
"propertyToBeSold": {
|
|
28
|
+
"baspiRef": "A1",
|
|
29
|
+
"title": "Property to be sold",
|
|
30
|
+
"type": "object",
|
|
31
|
+
"required": [
|
|
32
|
+
"address",
|
|
33
|
+
"delayFactors",
|
|
34
|
+
"ownership",
|
|
35
|
+
"parkingArrangements",
|
|
36
|
+
"listingAndConservation",
|
|
37
|
+
"typeOfConstruction",
|
|
38
|
+
"energyEfficiency",
|
|
39
|
+
"councilTax"
|
|
40
|
+
],
|
|
41
|
+
"properties": {
|
|
42
|
+
"address": {
|
|
43
|
+
"baspiRef": "A1.1",
|
|
44
|
+
"RDSRef": "Property/Address/xal:AddressDetails",
|
|
45
|
+
"title": "Property Address",
|
|
46
|
+
"$ref": "#/$defs/address"
|
|
47
|
+
},
|
|
48
|
+
"delayFactors": {
|
|
49
|
+
"baspiRef": "A1.2",
|
|
50
|
+
"RDSRef": "Metadata/PotentialDelays,Metadata/PotentialDelayDuration",
|
|
51
|
+
"title": "Delay Factors",
|
|
52
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
53
|
+
"description": "Are you aware of any factors which might delay or complicate the sale? E.g. matrimonial split, pending application for grant of probate, absent seller or unregistered title? If yes, provide details and likely timescale for delay (if known)"
|
|
54
|
+
},
|
|
55
|
+
"ownership": {
|
|
56
|
+
"baspiRef": "A1.3",
|
|
57
|
+
"title": "Ownership",
|
|
58
|
+
"type": "object",
|
|
59
|
+
"required": ["ownershipType"],
|
|
60
|
+
"properties": {
|
|
61
|
+
"ownershipType": {
|
|
62
|
+
"baspiRef": "A1.3.1",
|
|
63
|
+
"RDSRef": "Tenure/Tenure",
|
|
64
|
+
"lawSocietyRef": "TA7/1.1",
|
|
65
|
+
"title": "What type of ownership is the property?",
|
|
66
|
+
"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.",
|
|
67
|
+
"type": "string",
|
|
68
|
+
"enum": [
|
|
69
|
+
"Freehold",
|
|
70
|
+
"Managed Freehold",
|
|
71
|
+
"Leasehold",
|
|
72
|
+
"Commonhold",
|
|
73
|
+
"Other"
|
|
74
|
+
]
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"dependencies": {
|
|
78
|
+
"ownershipType": {
|
|
79
|
+
"oneOf": [
|
|
80
|
+
{
|
|
81
|
+
"properties": {
|
|
82
|
+
"ownershipType": {
|
|
83
|
+
"enum": ["Freehold", "Other"]
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"properties": {
|
|
89
|
+
"ownershipType": {
|
|
90
|
+
"enum": ["Leasehold"]
|
|
91
|
+
},
|
|
92
|
+
"leaseholdDetails": {
|
|
93
|
+
"baspiRef": "A1.4",
|
|
94
|
+
"title": "Details of the lease",
|
|
95
|
+
"type": "object",
|
|
96
|
+
"required": [
|
|
97
|
+
"yearsRemaining",
|
|
98
|
+
"currentGroundRent",
|
|
99
|
+
"rentIncrease",
|
|
100
|
+
"annualServiceCharge",
|
|
101
|
+
"largeAdditionalExpense",
|
|
102
|
+
"additionalFeesOnSale",
|
|
103
|
+
"freeholderName",
|
|
104
|
+
"managingAgentName",
|
|
105
|
+
"managementCompanyDirectorRequirement"
|
|
106
|
+
],
|
|
107
|
+
"properties": {
|
|
108
|
+
"yearsRemaining": {
|
|
109
|
+
"baspiRef": "A1.4.1",
|
|
110
|
+
"RDSRef": "Tenure/Remaining",
|
|
111
|
+
"title": "Number of years remaining on the lease",
|
|
112
|
+
"type": "integer"
|
|
113
|
+
},
|
|
114
|
+
"currentGroundRent": {
|
|
115
|
+
"baspiRef": "A1.4.2",
|
|
116
|
+
"RDSRef": "TenureAgreements/RentPayable/Value",
|
|
117
|
+
"lawSocietyRef": "TA7/1.2",
|
|
118
|
+
"title": "Current ground rent",
|
|
119
|
+
"type": "integer"
|
|
120
|
+
},
|
|
121
|
+
"rentIncrease": {
|
|
122
|
+
"baspiRef": "A1.4.3",
|
|
123
|
+
"RDSRef": "TenureAgreement/isRentChangeable, TenureAgreements/RentChanges",
|
|
124
|
+
"title": "Does the rent increase?",
|
|
125
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
126
|
+
"description": "Please provide full details of the rent increase e.g. how often and by how much and when the next increase is due. (If you do not have a copy of your lease to hand you can obtain a copy from HM Land Registry here for a small fee)"
|
|
127
|
+
},
|
|
128
|
+
"annualServiceCharge": {
|
|
129
|
+
"baspiRef": "A1.5.1",
|
|
130
|
+
"RDSRef": "TenureAgreements/ServiceCharges",
|
|
131
|
+
"title": "Amount of current annual service charge/estate rentcharge/maintenance contribution",
|
|
132
|
+
"type": "integer"
|
|
133
|
+
},
|
|
134
|
+
"largeAdditionalExpense": {
|
|
135
|
+
"baspiRef": "A1.5.2",
|
|
136
|
+
"RDSRef": "TenureAgreements/Repairs,TenureAgreements/ServicesCharges/Breakdown",
|
|
137
|
+
"title": "Have you received notice of any large expense in addition to the annual payment?",
|
|
138
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
139
|
+
"description": "If yes, please provide details and confirm whether there is a reserve fund or sinking fund which will cover the cost of the works."
|
|
140
|
+
},
|
|
141
|
+
"additionalFeesOnSale": {
|
|
142
|
+
"baspiRef": "A1.5.3",
|
|
143
|
+
"RDSRef": "TenureAgreements/LegalCosts/Actual, TenureAgreements/LegalCosts/Estimated",
|
|
144
|
+
"title": "Additional fees payable on sale or letting",
|
|
145
|
+
"type": "integer"
|
|
146
|
+
},
|
|
147
|
+
"freeholderName": {
|
|
148
|
+
"baspiRef": "A1.5.4",
|
|
149
|
+
"RDSRef": "TenureAgreements/Assignor",
|
|
150
|
+
"title": "The name of the freeholder or rentcharge owner",
|
|
151
|
+
"type": "string",
|
|
152
|
+
"minLength": 1
|
|
153
|
+
},
|
|
154
|
+
"managingAgentName": {
|
|
155
|
+
"baspiRef": "A1.5.5",
|
|
156
|
+
"RDSRef": "Participants/Role",
|
|
157
|
+
"title": "The name of the managing agent",
|
|
158
|
+
"type": "string",
|
|
159
|
+
"minLength": 1
|
|
160
|
+
},
|
|
161
|
+
"managementCompanyDirectorRequirement": {
|
|
162
|
+
"baspiRef": "A1.5.6",
|
|
163
|
+
"RDSRef": "Property/Flags",
|
|
164
|
+
"title": "Is the owner of the Property required to become a director in a management company for the maintenance of shared amenities?",
|
|
165
|
+
"$ref": "#/$defs/yesNo"
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"properties": {
|
|
173
|
+
"ownershipType": {
|
|
174
|
+
"enum": ["Managed Freehold", "Commonhold"]
|
|
175
|
+
},
|
|
176
|
+
"managedFreeholdOrCommonhold": {
|
|
177
|
+
"baspiRef": "A1.5",
|
|
178
|
+
"title": "Managed Freehold or Commonhold details",
|
|
179
|
+
"type": "object",
|
|
180
|
+
"required": [
|
|
181
|
+
"annualServiceCharge",
|
|
182
|
+
"largeAdditionalExpense",
|
|
183
|
+
"additionalFeesOnSale",
|
|
184
|
+
"freeholderName",
|
|
185
|
+
"managingAgentName",
|
|
186
|
+
"managementCompanyDirectorRequirement"
|
|
187
|
+
],
|
|
188
|
+
"properties": {
|
|
189
|
+
"annualServiceCharge": {
|
|
190
|
+
"baspiRef": "A1.5.1",
|
|
191
|
+
"RDSRef": "TenureAgreements/ServiceCharges",
|
|
192
|
+
"title": "Amount of current annual service charge/estate rentcharge/maintenance contribution",
|
|
193
|
+
"type": "string",
|
|
194
|
+
"minLength": 1
|
|
195
|
+
},
|
|
196
|
+
"largeAdditionalExpense": {
|
|
197
|
+
"baspiRef": "A1.5.2",
|
|
198
|
+
"RDSRef": "TenureAgreements/Repairs,TenureAgreements/ServicesCharges/Breakdown",
|
|
199
|
+
"title": "Have you received notice of any large expense in addition to the annual payment?",
|
|
200
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
201
|
+
"description": "If yes, please provide details and confirm whether there is a reserve fund or sinking fund which will cover the cost of the works."
|
|
202
|
+
},
|
|
203
|
+
"additionalFeesOnSale": {
|
|
204
|
+
"baspiRef": "A1.5.3",
|
|
205
|
+
"RDSRef": "TenureAgreements/LegalCosts/Actual, TenureAgreements/LegalCosts/Estimated",
|
|
206
|
+
"title": "Additional fees payable on sale or letting",
|
|
207
|
+
"type": "string",
|
|
208
|
+
"minLength": 1
|
|
209
|
+
},
|
|
210
|
+
"freeholderName": {
|
|
211
|
+
"baspiRef": "A1.5.4",
|
|
212
|
+
"RDSRef": "TenureAgreements/Assignor",
|
|
213
|
+
"title": "The name of the freeholder or rentcharge owner",
|
|
214
|
+
"type": "string",
|
|
215
|
+
"minLength": 1
|
|
216
|
+
},
|
|
217
|
+
"managingAgentName": {
|
|
218
|
+
"baspiRef": "A1.5.5",
|
|
219
|
+
"RDSRef": "Participants/Role",
|
|
220
|
+
"title": "The name of the managing agent",
|
|
221
|
+
"type": "string",
|
|
222
|
+
"minLength": 1
|
|
223
|
+
},
|
|
224
|
+
"managementCompanyDirectorRequirement": {
|
|
225
|
+
"baspiRef": "A1.5.6",
|
|
226
|
+
"RDSRef": "Property/Flags",
|
|
227
|
+
"title": "Is the owner of the Property required to become a director in a management company for the maintenance of shared amenities?",
|
|
228
|
+
"$ref": "#/$defs/yesNo"
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
]
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
"parkingArrangements": {
|
|
239
|
+
"baspiRef": "A1.6",
|
|
240
|
+
"RDSRef": "Services/Parking",
|
|
241
|
+
"lawSocietyRef": "TA6/9.1",
|
|
242
|
+
"title": "Parking arrangements",
|
|
243
|
+
"type": "object",
|
|
244
|
+
"required": ["parkingArrangementsType"],
|
|
245
|
+
"properties": {
|
|
246
|
+
"parkingArrangementsType": {
|
|
247
|
+
"baspiRef": "A1.6.1",
|
|
248
|
+
"title": "What parking arrangements are there?",
|
|
249
|
+
"type": "string",
|
|
250
|
+
"enum": [
|
|
251
|
+
"Garage",
|
|
252
|
+
"Allocated parking space",
|
|
253
|
+
"Driveway",
|
|
254
|
+
"On street",
|
|
255
|
+
"Resident permit",
|
|
256
|
+
"Metered parking",
|
|
257
|
+
"Communal parking",
|
|
258
|
+
"None",
|
|
259
|
+
"Other"
|
|
260
|
+
]
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"dependencies": {
|
|
264
|
+
"parkingArrangementsType": {
|
|
265
|
+
"oneOf": [
|
|
266
|
+
{
|
|
267
|
+
"properties": {
|
|
268
|
+
"parkingArrangementsType": {
|
|
269
|
+
"enum": [
|
|
270
|
+
"Garage",
|
|
271
|
+
"Allocated parking space",
|
|
272
|
+
"Driveway",
|
|
273
|
+
"On street",
|
|
274
|
+
"Resident permit",
|
|
275
|
+
"Metered parking",
|
|
276
|
+
"Communal parking",
|
|
277
|
+
"None"
|
|
278
|
+
]
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"properties": {
|
|
284
|
+
"parkingArrangementsType": {
|
|
285
|
+
"enum": ["Other"]
|
|
286
|
+
},
|
|
287
|
+
"otherParkingType": {
|
|
288
|
+
"baspiRef": "A1.6.2",
|
|
289
|
+
"title": "Please describe the other parking arrangements",
|
|
290
|
+
"type": "string"
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
"required": ["otherParkingType"]
|
|
294
|
+
}
|
|
295
|
+
]
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
"listingAndConservation": {
|
|
300
|
+
"baspiRef": "1.7",
|
|
301
|
+
"title": "Listing and Conservation",
|
|
302
|
+
"type": "object",
|
|
303
|
+
"required": [
|
|
304
|
+
"isListed",
|
|
305
|
+
"isConservationArea",
|
|
306
|
+
"hasTreePreservationOrder"
|
|
307
|
+
],
|
|
308
|
+
"properties": {
|
|
309
|
+
"isListed": {
|
|
310
|
+
"baspiRef": "A1.7.1",
|
|
311
|
+
"RDSRef": "Protections",
|
|
312
|
+
"lawSocietyRef": "TA6/4.7a",
|
|
313
|
+
"title": "Is the property a listed building?",
|
|
314
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
315
|
+
"description": "If yes, please provide details of the listing and any relevant documents"
|
|
316
|
+
},
|
|
317
|
+
"isConservationArea": {
|
|
318
|
+
"baspiRef": "A1.7.2",
|
|
319
|
+
"RDSRef": "Protections",
|
|
320
|
+
"lawSocietyRef": "TA6/4.7b",
|
|
321
|
+
"title": "Is the property in a designated conservation area?",
|
|
322
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
323
|
+
"description": "If yes, please provide details of the listing and any relevant documents"
|
|
324
|
+
},
|
|
325
|
+
"hasTreePreservationOrder": {
|
|
326
|
+
"baspiRef": "A1.7.3",
|
|
327
|
+
"RDSRef": "Property/Flags",
|
|
328
|
+
"lawSocietyRef": "TA6/4.7c",
|
|
329
|
+
"title": "To your knowledge, does a tree preservation order apply to any trees on the property?",
|
|
330
|
+
"type": "object",
|
|
331
|
+
"properties": {
|
|
332
|
+
"yesNo": {
|
|
333
|
+
"type": "string",
|
|
334
|
+
"title": "",
|
|
335
|
+
"enum": ["Yes", "No"]
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
"required": ["yesNo"],
|
|
339
|
+
"dependencies": {
|
|
340
|
+
"yesNo": {
|
|
341
|
+
"oneOf": [
|
|
342
|
+
{
|
|
343
|
+
"properties": {
|
|
344
|
+
"yesNo": {
|
|
345
|
+
"enum": ["No"]
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"properties": {
|
|
351
|
+
"yesNo": {
|
|
352
|
+
"enum": ["Yes"]
|
|
353
|
+
},
|
|
354
|
+
"details": {
|
|
355
|
+
"title": "Details",
|
|
356
|
+
"RDSRef": "Protections",
|
|
357
|
+
"type": "string",
|
|
358
|
+
"minLength": 1
|
|
359
|
+
},
|
|
360
|
+
"workCarriedOut": {
|
|
361
|
+
"RDSRef": "WorksAlterationsChanges",
|
|
362
|
+
"lawSocietyRef": "TA6/4.8",
|
|
363
|
+
"title": "If work has been carried out to any trees which are protected by the order, were the relevant consents obtained? Provide any relevant documentation",
|
|
364
|
+
"type": "string",
|
|
365
|
+
"minLength": 1
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
"required": ["details", "workCarriedOut"]
|
|
369
|
+
}
|
|
370
|
+
]
|
|
371
|
+
}
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
"typeOfConstruction": {
|
|
377
|
+
"baspiRef": "1.8",
|
|
378
|
+
"title": "Type of Construction",
|
|
379
|
+
"type": "object",
|
|
380
|
+
"required": ["isStandardForm", "hasFlammableExternalWallSystem"],
|
|
381
|
+
"properties": {
|
|
382
|
+
"isStandardForm": {
|
|
383
|
+
"baspiRef": "A1.8.1",
|
|
384
|
+
"RDSRef": "Buildings,BuildingSections/ConstructionType,ConstructionMaterials",
|
|
385
|
+
"title": "Is the property built in a standard form of construction? E.g. brick and/or block with timber-supported roof comprising a tile, slate or thatch cover?",
|
|
386
|
+
"$ref": "#/$defs/yesNoDetailIfNo"
|
|
387
|
+
},
|
|
388
|
+
"hasFlammableExternalWallSystem": {
|
|
389
|
+
"baspiRef": "A1.8.2",
|
|
390
|
+
"RDSRef": "Property/Flags,Certificates",
|
|
391
|
+
"title": "Does the property have potentially flammable external wall system - including cladding and balconies etc.?",
|
|
392
|
+
"type": "string",
|
|
393
|
+
"enum": [
|
|
394
|
+
"Yes (EWS form attached)",
|
|
395
|
+
"Yes (No assement to hand)",
|
|
396
|
+
"No"
|
|
397
|
+
]
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
},
|
|
401
|
+
"energyEfficiency": {
|
|
402
|
+
"baspiRef": "1.8.3",
|
|
403
|
+
"RDSRef": "Certificates/{category='energyEfficiency',standard='EPC',gradeLevelRating=?},Certificates/{category='energyEfficiency',standard='EPC',status='exempt'},",
|
|
404
|
+
"lawSocietyRef": "TA6/7.6",
|
|
405
|
+
"title": "Energy Efficiency",
|
|
406
|
+
"type": "object",
|
|
407
|
+
"required": ["energyEfficiencyRating"],
|
|
408
|
+
"properties": {
|
|
409
|
+
"energyEfficiencyRating": {
|
|
410
|
+
"title": "Energy Efficiency Rating",
|
|
411
|
+
"description": "What is the energy efficiency rating of the property according to the latest Energy Performance Certificate?",
|
|
412
|
+
"type": "string",
|
|
413
|
+
"enum": ["A", "B", "C", "D", "E", "F", "G", "Exempt Property"]
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
"councilTax": {
|
|
418
|
+
"baspiRef": "A1.9",
|
|
419
|
+
"title": "Council Tax",
|
|
420
|
+
"type": "object",
|
|
421
|
+
"required": ["councilTaxBand", "councilTaxAffectingAlterations"],
|
|
422
|
+
"properties": {
|
|
423
|
+
"councilTaxBand": {
|
|
424
|
+
"baspiRef": "A1.9.1",
|
|
425
|
+
"RDSRef": "TenureAgreements/Taxes/{banding=?}",
|
|
426
|
+
"title": "Which Council Tax band does this property fall within?",
|
|
427
|
+
"type": "string",
|
|
428
|
+
"enum": ["A", "B", "C", "D", "E", "F", "G", "H"]
|
|
429
|
+
},
|
|
430
|
+
"councilTaxAffectingAlterations": {
|
|
431
|
+
"baspiRef": "A1.9.2",
|
|
432
|
+
"RDSRef": "TenureAgreements/Taxes/WorksAlterationsChanges",
|
|
433
|
+
"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?",
|
|
434
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
435
|
+
"description": "If yes, please give details"
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
}
|
|
440
|
+
},
|
|
441
|
+
"disputesAndComplaints": {
|
|
442
|
+
"baspiRef": "A2",
|
|
443
|
+
"title": "Disputes and Complaints",
|
|
444
|
+
"type": "object",
|
|
445
|
+
"required": ["hasDisputesAndComplaints"],
|
|
446
|
+
"properties": {
|
|
447
|
+
"hasDisputesAndComplaints": {
|
|
448
|
+
"baspiRef": "A2.1",
|
|
449
|
+
"RDSRef": "Tenure/DisputesComplaints,Tenure/LegalClaims",
|
|
450
|
+
"lawSocietyRef": "TA6/2.1",
|
|
451
|
+
"title": "Have any disputes or complaints occurred, or any actions taken place which might lead to a dispute, regarding this property, a property nearby, or their use?",
|
|
452
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"alterationsAndChanges": {
|
|
457
|
+
"baspiRef": "A3",
|
|
458
|
+
"title": "Alterations and Changes to the Property",
|
|
459
|
+
"type": "object",
|
|
460
|
+
"required": [
|
|
461
|
+
"hasStructuralAlterations",
|
|
462
|
+
"windowReplacementsSince2002",
|
|
463
|
+
"hasAddedConservatory",
|
|
464
|
+
"planningPermissionBreaches",
|
|
465
|
+
"unresolvedPlanningIssues"
|
|
466
|
+
],
|
|
467
|
+
"properties": {
|
|
468
|
+
"hasStructuralAlterations": {
|
|
469
|
+
"baspiRef": "A3.1",
|
|
470
|
+
"RDSRef": "WorksAlterationsChanges",
|
|
471
|
+
"lawSocietyRef": "TA6/4.1a",
|
|
472
|
+
"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 or change of use)",
|
|
473
|
+
"$ref": "#/$defs/yesNoDetailConsents",
|
|
474
|
+
"description": "If yes, for each change, please outline the nature of the work and confirm the year the change was completed"
|
|
475
|
+
},
|
|
476
|
+
"windowReplacementsSince2002": {
|
|
477
|
+
"baspiRef": "A3.2",
|
|
478
|
+
"RDSRef": "WorksAlterationsChanges",
|
|
479
|
+
"lawSocietyRef": "TA6/4.1b",
|
|
480
|
+
"title": "Since 1st April 2002 has replacement of any windows, roof windows, roof lights, glazed doors taken place?",
|
|
481
|
+
"$ref": "#/$defs/yesNoDetailConsents",
|
|
482
|
+
"description": "If yes, for each installation, please outline the nature of the work and confirm the year the installation was completed. If you are not sure you may be able to find further details here"
|
|
483
|
+
},
|
|
484
|
+
"hasAddedConservatory": {
|
|
485
|
+
"baspiRef": "A3.3",
|
|
486
|
+
"RDSRef": "WorksAlterationsChanges",
|
|
487
|
+
"lawSocietyRef": "TA6/4.1d",
|
|
488
|
+
"title": "Has a conservatory been added?",
|
|
489
|
+
"$ref": "#/$defs/yesNoDetailConsents",
|
|
490
|
+
"description": "If yes, please confirm the year the installation was completed and whether any walls were removed and whether an exterior quality door separates the conservatory from the main building"
|
|
491
|
+
},
|
|
492
|
+
"planningPermissionBreaches": {
|
|
493
|
+
"baspiRef": "A3.6",
|
|
494
|
+
"RDSRef": "Property/Flags",
|
|
495
|
+
"lawSocietyRef": "TA6/4.4",
|
|
496
|
+
"title": "Are you aware of any breaches of planning permission conditions or building regulations consent conditions or work not having the necessary consents?",
|
|
497
|
+
"type": "object",
|
|
498
|
+
"properties": {
|
|
499
|
+
"yesNo": {
|
|
500
|
+
"type": "string",
|
|
501
|
+
"title": "",
|
|
502
|
+
"enum": ["Yes", "No"]
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
"required": ["yesNo"],
|
|
506
|
+
"dependencies": {
|
|
507
|
+
"yesNo": {
|
|
508
|
+
"oneOf": [
|
|
509
|
+
{
|
|
510
|
+
"properties": {
|
|
511
|
+
"yesNo": {
|
|
512
|
+
"enum": ["No"]
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"properties": {
|
|
518
|
+
"yesNo": {
|
|
519
|
+
"enum": ["Yes"]
|
|
520
|
+
},
|
|
521
|
+
"details": {
|
|
522
|
+
"RDSRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
|
|
523
|
+
"title": "Details",
|
|
524
|
+
"type": "string",
|
|
525
|
+
"minLength": 1
|
|
526
|
+
},
|
|
527
|
+
"willingToInsure": {
|
|
528
|
+
"baspiRef": "A3.8",
|
|
529
|
+
"RDSRef": "Insurance/isWillingToProvide",
|
|
530
|
+
"title": "If yes, 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.]",
|
|
531
|
+
"type": "string",
|
|
532
|
+
"enum": ["Yes", "No"]
|
|
533
|
+
}
|
|
534
|
+
},
|
|
535
|
+
"required": ["details", "willingToInsure"]
|
|
536
|
+
}
|
|
537
|
+
]
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
"unresolvedPlanningIssues": {
|
|
542
|
+
"baspiRef": "A3.7",
|
|
543
|
+
"RDSRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
|
|
544
|
+
"title": "Are you aware of any unresolved planning or building control issues?",
|
|
545
|
+
"type": "object",
|
|
546
|
+
"properties": {
|
|
547
|
+
"yesNo": {
|
|
548
|
+
"type": "string",
|
|
549
|
+
"title": "",
|
|
550
|
+
"enum": ["Yes", "No"]
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
"required": ["yesNo"],
|
|
554
|
+
"dependencies": {
|
|
555
|
+
"yesNo": {
|
|
556
|
+
"oneOf": [
|
|
557
|
+
{
|
|
558
|
+
"properties": {
|
|
559
|
+
"yesNo": {
|
|
560
|
+
"enum": ["No"]
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
"properties": {
|
|
566
|
+
"yesNo": {
|
|
567
|
+
"enum": ["Yes"]
|
|
568
|
+
},
|
|
569
|
+
"details": {
|
|
570
|
+
"RDSRef": "Buildings,BuildingsSections/StructureAuthorised,BuildingsSections/StructureUnauthorised",
|
|
571
|
+
"title": "Details",
|
|
572
|
+
"type": "string",
|
|
573
|
+
"minLength": 1
|
|
574
|
+
},
|
|
575
|
+
"willingToInsure": {
|
|
576
|
+
"baspiRef": "A3.8",
|
|
577
|
+
"RDSRef": "Insurance/isWillingToProvide",
|
|
578
|
+
"title": "If yes, 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.]",
|
|
579
|
+
"type": "string",
|
|
580
|
+
"enum": ["Yes", "No"]
|
|
581
|
+
}
|
|
582
|
+
},
|
|
583
|
+
"required": ["details", "willingToInsure"]
|
|
584
|
+
}
|
|
585
|
+
]
|
|
586
|
+
}
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
},
|
|
591
|
+
"notices": {
|
|
592
|
+
"baspiRef": "A4",
|
|
593
|
+
"title": "Notices which Affect the Property",
|
|
594
|
+
"description": "Are you aware of, or have you received any of the following notices?",
|
|
595
|
+
"type": "object",
|
|
596
|
+
"required": [
|
|
597
|
+
"neighbourDevelopment",
|
|
598
|
+
"planningApplication",
|
|
599
|
+
"requiredMaintenance",
|
|
600
|
+
"listedBuildingApplication",
|
|
601
|
+
"infrastructureProject",
|
|
602
|
+
"partyWallAct",
|
|
603
|
+
"otherNotices"
|
|
604
|
+
],
|
|
605
|
+
"properties": {
|
|
606
|
+
"neighbourDevelopment": {
|
|
607
|
+
"baspiRef": "A4.1",
|
|
608
|
+
"RDSRef": "Property/Flags,Planning",
|
|
609
|
+
"lawSocietyRef": "TA6/3.1",
|
|
610
|
+
"title": "The owner of a neighbouring property is proposing to develop property or land nearby, make alterations to nearby buildings or change the use?",
|
|
611
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
612
|
+
},
|
|
613
|
+
"planningApplication": {
|
|
614
|
+
"baspiRef": "A4.2",
|
|
615
|
+
"RDSRef": "Property/Flags,Planning",
|
|
616
|
+
"lawSocietyRef": "TA6/3.2",
|
|
617
|
+
"title": "Any planning application that could affect the property, the enjoyment of it or the views from it?",
|
|
618
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
619
|
+
},
|
|
620
|
+
"requiredMaintenance": {
|
|
621
|
+
"baspiRef": "A4.3",
|
|
622
|
+
"RDSRef": "Property/Flags,Notifications",
|
|
623
|
+
"lawSocietyRef": "TA6/3.1",
|
|
624
|
+
"title": "Notice informing you that maintenance, repairs or improvements are required to your property?",
|
|
625
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
626
|
+
},
|
|
627
|
+
"listedBuildingApplication": {
|
|
628
|
+
"baspiRef": "A4.4",
|
|
629
|
+
"RDSRef": "Property/Flags,Protections",
|
|
630
|
+
"lawSocietyRef": "TA6/3.1",
|
|
631
|
+
"title": "Listed building application",
|
|
632
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
633
|
+
},
|
|
634
|
+
"infrastructureProject": {
|
|
635
|
+
"baspiRef": "A4.5",
|
|
636
|
+
"RDSRef": "Property/Flags,Planning",
|
|
637
|
+
"lawSocietyRef": "TA6/3.1",
|
|
638
|
+
"title": "Infrastructure project, proposed or in progress (i.e. wind turbine, railway, fracking, etc)",
|
|
639
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
640
|
+
},
|
|
641
|
+
"partyWallAct": {
|
|
642
|
+
"baspiRef": "A4.6",
|
|
643
|
+
"RDSRef": "Property/Flags,Notifications",
|
|
644
|
+
"lawSocietyRef": "TA6/1.6",
|
|
645
|
+
"title": "Notice under the Party Wall Act 1996 in respect of any shared or party boundaries?",
|
|
646
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
647
|
+
},
|
|
648
|
+
"otherNotices": {
|
|
649
|
+
"baspiRef": "A4.7",
|
|
650
|
+
"RDSRef": "Property/Flags,Notifications",
|
|
651
|
+
"lawSocietyRef": "TA6/3.1",
|
|
652
|
+
"title": "Any other type of notice",
|
|
653
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
},
|
|
657
|
+
"specialistIssues": {
|
|
658
|
+
"baspiRef": "A5",
|
|
659
|
+
"title": "Specialist Issues",
|
|
660
|
+
"type": "object",
|
|
661
|
+
"required": [
|
|
662
|
+
"dryRotEtcTreatment",
|
|
663
|
+
"containsAsbestos",
|
|
664
|
+
"japaneseKnotweed",
|
|
665
|
+
"subsidenceOrStructuralFault",
|
|
666
|
+
"ongoingHealthOrSafetyIssue"
|
|
667
|
+
],
|
|
668
|
+
"properties": {
|
|
669
|
+
"dryRotEtcTreatment": {
|
|
670
|
+
"baspiRef": "A5.1",
|
|
671
|
+
"RDSRef": "Property/Flags,BuildingSections/EnvironmentalIssues",
|
|
672
|
+
"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?",
|
|
673
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
674
|
+
},
|
|
675
|
+
"containsAsbestos": {
|
|
676
|
+
"baspiRef": "A5.2",
|
|
677
|
+
"RDSRef": "Property/Flags,BuildingSections/EnvironmentalIssues",
|
|
678
|
+
"title": "To your knowledge, does any part of your property contain Asbestos?",
|
|
679
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
680
|
+
"description": "If yes, please state whether there is a management plan in place and attach a copy"
|
|
681
|
+
},
|
|
682
|
+
"japaneseKnotweed": {
|
|
683
|
+
"baspiRef": "A5.3",
|
|
684
|
+
"RDSRef": "Property/Flags,BuildingSections/EnvironmentalIssues,Use/EnvironmentalIssues",
|
|
685
|
+
"lawSocietyRef": "TA6/7.8",
|
|
686
|
+
"title": "To your knowledge, is the property or neighbouring land, affected by Japanese knotweed or other invasive species? please state whether there is a management plan in place and supply a copy with this form",
|
|
687
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
688
|
+
},
|
|
689
|
+
"subsidenceOrStructuralFault": {
|
|
690
|
+
"baspiRef": "A5.4",
|
|
691
|
+
"RDSRef": "Property/Flags,BuildingSections/EnvironmentalIssues",
|
|
692
|
+
"title": "To your knowledge, has the property ever been subject to subsidence or structural fault?",
|
|
693
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
694
|
+
},
|
|
695
|
+
"ongoingHealthOrSafetyIssue": {
|
|
696
|
+
"baspiRef": "A5.5",
|
|
697
|
+
"RDSRef": "Property/Flags,BuildingSections/EnvironmentalIssues",
|
|
698
|
+
"title": "Have you been notified by a relevant authority or qualified expert of an on-going health or safety issue with the property?",
|
|
699
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
700
|
+
}
|
|
701
|
+
}
|
|
702
|
+
},
|
|
703
|
+
"fixturesAndFittings": {
|
|
704
|
+
"baspiRef": "A6",
|
|
705
|
+
"lawSocietyRef": "TA10",
|
|
706
|
+
"title": "Fixtures and Fittings",
|
|
707
|
+
"description": "NOTE: This is so a buyer’s offer can take into account whether you are taking something of value or leaving extra items. A full list will need to be completed after the sale is agreed.",
|
|
708
|
+
"type": "object",
|
|
709
|
+
"required": ["itemsToRemove", "itemsToInclude"],
|
|
710
|
+
"properties": {
|
|
711
|
+
"itemsToRemove": {
|
|
712
|
+
"baspiRef": "A6.1",
|
|
713
|
+
"RDSRef": "Objects/{isIncludedInExchange='no',class='fixture|fitting}",
|
|
714
|
+
"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",
|
|
715
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
716
|
+
},
|
|
717
|
+
"itemsToInclude": {
|
|
718
|
+
"baspiRef": "A6.2",
|
|
719
|
+
"RDSRef": "Objects/{isIncludedInExchange='true',class='equipment|furniture}",
|
|
720
|
+
"title": "Are there additional furniture items or possessions are you very likely to include in the sale, irrespective of sale price?",
|
|
721
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
},
|
|
725
|
+
"waterAndDrainage": {
|
|
726
|
+
"baspiRef": "A7",
|
|
727
|
+
"lawSocietyRef": "TA6/13",
|
|
728
|
+
"title": "Water and Drainage",
|
|
729
|
+
"description": "Please describe the water and drainage services that are connected to the property.",
|
|
730
|
+
"type": "object",
|
|
731
|
+
"required": [
|
|
732
|
+
"mainsWater",
|
|
733
|
+
"mainsSurfaceWaterDrainage",
|
|
734
|
+
"mainsFoulDrainage"
|
|
735
|
+
],
|
|
736
|
+
"properties": {
|
|
737
|
+
"mainsWater": {
|
|
738
|
+
"baspiRef": "A7.1.10",
|
|
739
|
+
"RDSRef": "Services/PotableWaterSupply",
|
|
740
|
+
"title": "Mains water",
|
|
741
|
+
"$ref": "#/$defs/yesNoConnectedSupplier"
|
|
742
|
+
},
|
|
743
|
+
"mainsSurfaceWaterDrainage": {
|
|
744
|
+
"baspiRef": "A7.1.12",
|
|
745
|
+
"RDSRef": "Services/StormWaterDrainage",
|
|
746
|
+
"lawSocietyRef": "TA6/12.4b",
|
|
747
|
+
"title": "Mains surface water drainage",
|
|
748
|
+
"$ref": "#/$defs/yesNoConnectedSupplier"
|
|
749
|
+
},
|
|
750
|
+
"mainsFoulDrainage": {
|
|
751
|
+
"baspiRef": "A7.1.11",
|
|
752
|
+
"RDSRef": "Services/WasteWaterSewarageDisposal",
|
|
753
|
+
"lawSocietyRef": "TA6/12.4a",
|
|
754
|
+
"title": "Mains foul drainage",
|
|
755
|
+
"type": "object",
|
|
756
|
+
"required": ["yesNo"],
|
|
757
|
+
"properties": {
|
|
758
|
+
"yesNo": {
|
|
759
|
+
"type": "string",
|
|
760
|
+
"title": "",
|
|
761
|
+
"enum": ["Yes", "No"]
|
|
762
|
+
}
|
|
763
|
+
},
|
|
764
|
+
"dependencies": {
|
|
765
|
+
"yesNo": {
|
|
766
|
+
"oneOf": [
|
|
767
|
+
{
|
|
768
|
+
"properties": {
|
|
769
|
+
"yesNo": {
|
|
770
|
+
"enum": ["No"]
|
|
771
|
+
},
|
|
772
|
+
"sustainableDrainageSystem": {
|
|
773
|
+
"baspiRef": "A7.2.1",
|
|
774
|
+
"RDSRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
|
|
775
|
+
"title": "Sustainable Drainage System",
|
|
776
|
+
"$ref": "#/$defs/yesNoConnectedSupplier"
|
|
777
|
+
},
|
|
778
|
+
"septicTank": {
|
|
779
|
+
"baspiRef": "A7.2.2",
|
|
780
|
+
"RDSRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
|
|
781
|
+
"lawSocietyRef": "TA6/12.5",
|
|
782
|
+
"title": "Septic tank",
|
|
783
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
784
|
+
"description": "If yes, please specify date replaced or updated and date last emptied"
|
|
785
|
+
},
|
|
786
|
+
"cesspit": {
|
|
787
|
+
"baspiRef": "A7.2.3",
|
|
788
|
+
"RDSRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
|
|
789
|
+
"lawSocietyRef": "TA6/12.7",
|
|
790
|
+
"title": "Cesspit",
|
|
791
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
792
|
+
"description": "If yes, please specify date last emptied"
|
|
793
|
+
},
|
|
794
|
+
"sewerageTreatmentPlant": {
|
|
795
|
+
"baspiRef": "A7.2.4",
|
|
796
|
+
"RDSRef": "Services/OtherServices/{description=?,type=?},Services/OtherServices/Installed|Upgraded|Replaced|Serviced|Certificates",
|
|
797
|
+
"lawSocietyRef": "TA6/12.8",
|
|
798
|
+
"title": "Sewerage treatment plant",
|
|
799
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
800
|
+
"description": "If yes, please specify date last serviced"
|
|
801
|
+
},
|
|
802
|
+
"otherConnectedProperties": {
|
|
803
|
+
"baspiRef": "A7.2.5",
|
|
804
|
+
"RDSRef": "Services/OtherServices/SharedWith",
|
|
805
|
+
"lawSocietyRef": "TA6/12.6",
|
|
806
|
+
"title": "Do other properties connect to the septic tank, cesspit or sewerage treatment plant?",
|
|
807
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
808
|
+
"description": "If yes, provide details of the properties sharing the system and explain how maintenance of the system is arranged and paid for."
|
|
809
|
+
},
|
|
810
|
+
"plantOnOtherLand": {
|
|
811
|
+
"baspiRef": "A7.2.6",
|
|
812
|
+
"RDSRef": "Services/OtherServices/Located,Services/OtherServices/{access=?}",
|
|
813
|
+
"lawSocietyRef": "TA6/12.10",
|
|
814
|
+
"title": "Is any part of the septic tank, cesspit or sewerage treatment plant located on someone else’s land?",
|
|
815
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
816
|
+
"description": "If yes, please supply a plan showing the location of the system and how access is obtained."
|
|
817
|
+
},
|
|
818
|
+
"plantRegistered": {
|
|
819
|
+
"baspiRef": "A7.2.7",
|
|
820
|
+
"RDSRef": "Services/OtherServices/Certificates",
|
|
821
|
+
"title": "Is the septic tank, cesspit or sewerage treatment plant registered with the Environment Agency or exempted?",
|
|
822
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
823
|
+
"description": "If yes, please supply the appropriate permit to discharge or exemption certificate"
|
|
824
|
+
},
|
|
825
|
+
"plantDrainsIntoWaterway": {
|
|
826
|
+
"baspiRef": "A7.2.8",
|
|
827
|
+
"RDSRef": "Services/OtherServices/{isExternallyConnected='yes?true'}",
|
|
828
|
+
"title": "Does the septic tank, cesspit or sewerage treatment plant drain into a waterway (lake, river, stream etc)",
|
|
829
|
+
"type": "string",
|
|
830
|
+
"enum": [
|
|
831
|
+
"Yes",
|
|
832
|
+
"No, the effluent is discharged through a soakaway system."
|
|
833
|
+
]
|
|
834
|
+
},
|
|
835
|
+
"dischageCompliesWithGBR": {
|
|
836
|
+
"baspiRef": "A7.2.9",
|
|
837
|
+
"RDSRef": "Services/OtherServices/ExternalConnections/Flags",
|
|
838
|
+
"title": "If Yes, does it comply with the General Binding Rules for discharge into a waterway. [NOTE: you can see the rules here.]",
|
|
839
|
+
"type": "string",
|
|
840
|
+
"enum": [
|
|
841
|
+
"Yes",
|
|
842
|
+
"No, it does not comply with the rules for discharge into a waterway."
|
|
843
|
+
]
|
|
844
|
+
}
|
|
845
|
+
},
|
|
846
|
+
"required": [
|
|
847
|
+
"plantDrainsIntoWaterway",
|
|
848
|
+
"dischageCompliesWithGBR"
|
|
849
|
+
]
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"properties": {
|
|
853
|
+
"yesNo": {
|
|
854
|
+
"enum": ["Yes"]
|
|
855
|
+
},
|
|
856
|
+
"connected": {
|
|
857
|
+
"title": "Connected (Yes, No or Date to be connected)",
|
|
858
|
+
"type": "string",
|
|
859
|
+
"minLength": 1
|
|
860
|
+
},
|
|
861
|
+
"supplier": {
|
|
862
|
+
"title": "Supplier (if known)",
|
|
863
|
+
"type": "string",
|
|
864
|
+
"minLength": 1
|
|
865
|
+
},
|
|
866
|
+
"maintenanceAgreements": {
|
|
867
|
+
"title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to this service?",
|
|
868
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
869
|
+
}
|
|
870
|
+
},
|
|
871
|
+
"required": ["connected", "maintenanceAgreements"]
|
|
872
|
+
}
|
|
873
|
+
]
|
|
874
|
+
}
|
|
875
|
+
}
|
|
876
|
+
}
|
|
877
|
+
}
|
|
878
|
+
},
|
|
879
|
+
"utilities": {
|
|
880
|
+
"baspiRef": "A7",
|
|
881
|
+
"lawSocietyRef": "TA6/13",
|
|
882
|
+
"title": "Utilities",
|
|
883
|
+
"description": "Please indicate which utilities are are connected to the property.",
|
|
884
|
+
"type": "object",
|
|
885
|
+
"required": [
|
|
886
|
+
"electricity",
|
|
887
|
+
"gas",
|
|
888
|
+
"lpg",
|
|
889
|
+
"oil",
|
|
890
|
+
"telephone",
|
|
891
|
+
"cableSatelliteTV",
|
|
892
|
+
"broadband",
|
|
893
|
+
"solarPanels",
|
|
894
|
+
"otherServices"
|
|
895
|
+
],
|
|
896
|
+
"properties": {
|
|
897
|
+
"electricity": {
|
|
898
|
+
"baspiRef": "A7.1.1",
|
|
899
|
+
"RDSRef": "Services/Electricity",
|
|
900
|
+
"title": "Electricity",
|
|
901
|
+
"$ref": "#/$defs/yesNoConnectedSupplier"
|
|
902
|
+
},
|
|
903
|
+
"gas": {
|
|
904
|
+
"baspiRef": "A7.1.2",
|
|
905
|
+
"RDSRef": "Services/Gas",
|
|
906
|
+
"title": "Gas",
|
|
907
|
+
"$ref": "#/$defs/yesNoConnectedSupplier"
|
|
908
|
+
},
|
|
909
|
+
"lpg": {
|
|
910
|
+
"baspiRef": "A7.1.3",
|
|
911
|
+
"RDSRef": "Services/LiquefiedPetroleumGas",
|
|
912
|
+
"title": "Liquid Petroleum Gas (LPG)",
|
|
913
|
+
"$ref": "#/$defs/yesNoConnectedSupplier"
|
|
914
|
+
},
|
|
915
|
+
"oil": {
|
|
916
|
+
"baspiRef": "A7.1.4",
|
|
917
|
+
"RDSRef": "Services/Oil",
|
|
918
|
+
"title": "Oil",
|
|
919
|
+
"$ref": "#/$defs/yesNoConnectedSupplier"
|
|
920
|
+
},
|
|
921
|
+
"telephone": {
|
|
922
|
+
"baspiRef": "A7.1.5",
|
|
923
|
+
"RDSRef": "Services/Telephone",
|
|
924
|
+
"title": "Telephone",
|
|
925
|
+
"$ref": "#/$defs/yesNoConnectedSupplier"
|
|
926
|
+
},
|
|
927
|
+
"cableSatelliteTV": {
|
|
928
|
+
"baspiRef": "A7.1.6",
|
|
929
|
+
"RDSRef": "Services/CableSatelliteTV",
|
|
930
|
+
"title": "Cable TV or satellite",
|
|
931
|
+
"$ref": "#/$defs/yesNoConnectedSupplier"
|
|
932
|
+
},
|
|
933
|
+
"broadband": {
|
|
934
|
+
"baspiRef": "A7.1.7",
|
|
935
|
+
"title": "Broadband",
|
|
936
|
+
"RDSRef": "Services/Internet",
|
|
937
|
+
"$ref": "#/$defs/yesNoConnectedSupplier"
|
|
938
|
+
},
|
|
939
|
+
"solarPanels": {
|
|
940
|
+
"baspiRef": "A7.1.8",
|
|
941
|
+
"RDSRef": "Services/Internet??",
|
|
942
|
+
"lawSocietyRef": "TA6/4.6",
|
|
943
|
+
"title": "Solar or photovoltaic panels",
|
|
944
|
+
"$ref": "#/$defs/yesNoConnectedSupplier"
|
|
945
|
+
},
|
|
946
|
+
"otherServices": {
|
|
947
|
+
"baspiRef": "A7.1.9",
|
|
948
|
+
"RDSRef": "Services/Other",
|
|
949
|
+
"title": "Other",
|
|
950
|
+
"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",
|
|
951
|
+
"$ref": "#/$defs/yesNoConnectedSupplier"
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
},
|
|
955
|
+
"greenDealLoan": {
|
|
956
|
+
"baspiRef": "A7.3",
|
|
957
|
+
"RDSRef": "RightsHolders/Loans,RightsHolders/OtherDocumentation",
|
|
958
|
+
"lawSocietyRef": "TA6/7.7",
|
|
959
|
+
"title": "Green Deal Loan",
|
|
960
|
+
"type": "object",
|
|
961
|
+
"required": ["hasGreenDealLoan"],
|
|
962
|
+
"properties": {
|
|
963
|
+
"hasGreenDealLoan": {
|
|
964
|
+
"title": "Is this property subject to a Green Deal loan or other financed home improvement scheme?",
|
|
965
|
+
"description": "If yes, please provide details below including any outstanding payments for the renewable devices and any feed-in tariffs and a copy of your fuel bills",
|
|
966
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
967
|
+
}
|
|
968
|
+
}
|
|
969
|
+
},
|
|
970
|
+
"centralHeating": {
|
|
971
|
+
"baspiRef": "A7.4",
|
|
972
|
+
"RDSRef": "Buildings|BuildingSections/isUnheated=no|yes|true|false",
|
|
973
|
+
"lawSocietyRef": "TA6/12.3",
|
|
974
|
+
"type": "object",
|
|
975
|
+
"required": ["hasCentralHeating"],
|
|
976
|
+
"properties": {
|
|
977
|
+
"hasCentralHeating": {
|
|
978
|
+
"title": "Is there full/partial central heating in your property?",
|
|
979
|
+
"$ref": "#/$defs/yesNoCentralHeatingDetailIfYes"
|
|
980
|
+
}
|
|
981
|
+
}
|
|
982
|
+
},
|
|
983
|
+
"insurance": {
|
|
984
|
+
"baspiRef": "A8",
|
|
985
|
+
"title": "Insurance",
|
|
986
|
+
"type": "object",
|
|
987
|
+
"required": ["isInsured"],
|
|
988
|
+
"properties": {
|
|
989
|
+
"isInsured": {
|
|
990
|
+
"baspiRef": "A8.1",
|
|
991
|
+
"RDSRef": "Insurance/isInsured=no|yes|true|false",
|
|
992
|
+
"lawSocietyRef": "TA6/6.1",
|
|
993
|
+
"title": "Do you insure the property?",
|
|
994
|
+
"type": "string",
|
|
995
|
+
"enum": ["Yes", "No"]
|
|
996
|
+
}
|
|
997
|
+
},
|
|
998
|
+
"dependencies": {
|
|
999
|
+
"isInsured": {
|
|
1000
|
+
"oneOf": [
|
|
1001
|
+
{
|
|
1002
|
+
"properties": {
|
|
1003
|
+
"isInsured": {
|
|
1004
|
+
"enum": ["No"]
|
|
1005
|
+
}
|
|
1006
|
+
}
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
"properties": {
|
|
1010
|
+
"isInsured": {
|
|
1011
|
+
"enum": ["Yes"]
|
|
1012
|
+
},
|
|
1013
|
+
"difficultiesObtainingInsurance": {
|
|
1014
|
+
"baspiRef": "A8.2",
|
|
1015
|
+
"RDSRef": "Insurance/Flags,Insurance/refusalReason=?",
|
|
1016
|
+
"lawSocietyRef": "TA6/6.4",
|
|
1017
|
+
"title": "Have you had any difficulty obtaining competitively priced building insurance due to the structure or location of the property or had insurance refused (e.g. high premiums, excess over £1,500, special conditions etc )",
|
|
1018
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1019
|
+
},
|
|
1020
|
+
"insuranceClaims": {
|
|
1021
|
+
"baspiRef": "A8.3",
|
|
1022
|
+
"RDSRef": "Insurance/Claims",
|
|
1023
|
+
"lawSocietyRef": "TA6/6.5",
|
|
1024
|
+
"title": "Have you ever made a claim against your building insurance in relation to the property?",
|
|
1025
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
}
|
|
1029
|
+
]
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
},
|
|
1033
|
+
"boundaries": {
|
|
1034
|
+
"baspiRef": "A9",
|
|
1035
|
+
"title": "Boundaries",
|
|
1036
|
+
"type": "object",
|
|
1037
|
+
"description": "You will need to check your title to answer these questions. If you do not have a copy, for a small fee to HM Land Registry, you can download both the title register and the title plan of the property at https://www.gov.uk/search-property-information-land-registry.",
|
|
1038
|
+
"required": [
|
|
1039
|
+
"partOutsideLegalOwnership",
|
|
1040
|
+
"partOnSeparateSiteOrDeed",
|
|
1041
|
+
"boundariesDifferFromTitlePlan",
|
|
1042
|
+
"boundaryAlterationProposal"
|
|
1043
|
+
],
|
|
1044
|
+
"properties": {
|
|
1045
|
+
"partOutsideLegalOwnership": {
|
|
1046
|
+
"baspiRef": "A9.1",
|
|
1047
|
+
"RDSRef": "Tenure/Interests",
|
|
1048
|
+
"title": "Is any part of the property outside the seller’s legal ownership?",
|
|
1049
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1050
|
+
"description": "If yes, please provide details. E.g. parking, garden, outbuilding, accessway, etc"
|
|
1051
|
+
},
|
|
1052
|
+
"partOnSeparateSiteOrDeed": {
|
|
1053
|
+
"baspiRef": "A9.2",
|
|
1054
|
+
"RDSRef": "Tenure *with different property entity and references etc*",
|
|
1055
|
+
"title": "Is any part of the property on a separate site or separate title deed e.g. garden, outbuilding, parking, garage?",
|
|
1056
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1057
|
+
},
|
|
1058
|
+
"boundariesDifferFromTitlePlan": {
|
|
1059
|
+
"baspiRef": "A9.3",
|
|
1060
|
+
"RDSRef": "Tenure/Boundaries,Tenure/BoundaryDifferences,Tenure/CadastralMapOfParcels",
|
|
1061
|
+
"title": "Do the boundaries differ from those shown on the title plan? (If you do not have a copy of the plan you can download it here)",
|
|
1062
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1063
|
+
"description": "If yes, please provide details of how they differ and why they changed and provide a plan showing where you believe the boundaries are"
|
|
1064
|
+
},
|
|
1065
|
+
"boundaryAlterationProposal": {
|
|
1066
|
+
"baspiRef": "A9.4",
|
|
1067
|
+
"RDSRef": "Tenure/Boundaries/proposedAlterations=?",
|
|
1068
|
+
"title": "Is there a current proposal with anyone to alter the boundaries of your property?",
|
|
1069
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1070
|
+
}
|
|
1071
|
+
}
|
|
1072
|
+
},
|
|
1073
|
+
"rightsAndInformalArrangements": {
|
|
1074
|
+
"baspiRef": "A10",
|
|
1075
|
+
"title": "Rights and Informal Arrangements",
|
|
1076
|
+
"type": "object",
|
|
1077
|
+
"required": [
|
|
1078
|
+
"sharedContributions",
|
|
1079
|
+
"neighbouringLandRights",
|
|
1080
|
+
"accessRestrictionAttempts",
|
|
1081
|
+
"rightsOrArrangements"
|
|
1082
|
+
],
|
|
1083
|
+
"properties": {
|
|
1084
|
+
"sharedContributions": {
|
|
1085
|
+
"baspiRef": "A10.1",
|
|
1086
|
+
"RDSRef": "Services/SharedCosts",
|
|
1087
|
+
"lawSocietyRef": "TA6/8.1",
|
|
1088
|
+
"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?",
|
|
1089
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1090
|
+
"description": "If yes, please give details including who collects payments and organises the work, the amount of the payments in the last year and whether they are regular payments or only when maintenance work is required"
|
|
1091
|
+
},
|
|
1092
|
+
"neighbouringLandRights": {
|
|
1093
|
+
"baspiRef": "A10.2",
|
|
1094
|
+
"RDSRef": "Tenure/Rights,Tenure *with different property entity and references etc*",
|
|
1095
|
+
"lawSocietyRef": "TA6/8.2",
|
|
1096
|
+
"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)",
|
|
1097
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1098
|
+
"description": "If yes, please give details and provide a plan showing the route of the access, parking etc"
|
|
1099
|
+
},
|
|
1100
|
+
"accessRestrictionAttempts": {
|
|
1101
|
+
"baspiRef": "A10.3",
|
|
1102
|
+
"RDSRef": "Tenure/Restrictions",
|
|
1103
|
+
"lawSocietyRef": "TA6/8.3",
|
|
1104
|
+
"title": "Has anyone tried to stop you using an access way to the property or asked you to pay to use the access?",
|
|
1105
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1106
|
+
},
|
|
1107
|
+
"rightsOrArrangements": {
|
|
1108
|
+
"baspiRef": "A10.4",
|
|
1109
|
+
"title": "Do you know if any of the following rights or arrangements affect the property?",
|
|
1110
|
+
"type": "object",
|
|
1111
|
+
"required": [
|
|
1112
|
+
"publicRightOfWay",
|
|
1113
|
+
"rightsofLightOrSupport",
|
|
1114
|
+
"rightsCreatedThroughCustom",
|
|
1115
|
+
"minesAndMinerals",
|
|
1116
|
+
"churchChancel",
|
|
1117
|
+
"otherRights"
|
|
1118
|
+
],
|
|
1119
|
+
"properties": {
|
|
1120
|
+
"publicRightOfWay": {
|
|
1121
|
+
"baspiRef": "A10.4.1",
|
|
1122
|
+
"RDSRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities,Tenure/CadastralMapOfParcels",
|
|
1123
|
+
"lawSocietyRef": "TA6/8.6",
|
|
1124
|
+
"title": "A public right of way through and/or across your property, buildings or land",
|
|
1125
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1126
|
+
"description": "If yes, please mark the route on a plan of the property"
|
|
1127
|
+
},
|
|
1128
|
+
"rightsofLightOrSupport": {
|
|
1129
|
+
"baspiRef": "A10.4.2",
|
|
1130
|
+
"RDSRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
|
|
1131
|
+
"lawSocietyRef": "TA6/8.4a",
|
|
1132
|
+
"title": "Rights of light or support for other properties",
|
|
1133
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1134
|
+
},
|
|
1135
|
+
"rightsCreatedThroughCustom": {
|
|
1136
|
+
"baspiRef": "A10.4.3",
|
|
1137
|
+
"RDSRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
|
|
1138
|
+
"lawSocietyRef": "TA6/8.4c",
|
|
1139
|
+
"title": "Rights created through custom or use (e.g. rights to graze on other land or forage, rights of the lord of the manor or others to take things from your property etc)",
|
|
1140
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1141
|
+
},
|
|
1142
|
+
"minesAndMinerals": {
|
|
1143
|
+
"baspiRef": "A10.4.4",
|
|
1144
|
+
"RDSRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
|
|
1145
|
+
"lawSocietyRef": "TA6/8.5a",
|
|
1146
|
+
"title": "Mines and minerals under the property",
|
|
1147
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1148
|
+
},
|
|
1149
|
+
"churchChancel": {
|
|
1150
|
+
"baspiRef": "A10.4.5",
|
|
1151
|
+
"RDSRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
|
|
1152
|
+
"lawSocietyRef": "TA6/8.5b",
|
|
1153
|
+
"title": "Liability to contribute to the maintenance of a church chancel?",
|
|
1154
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1155
|
+
},
|
|
1156
|
+
"otherRights": {
|
|
1157
|
+
"baspiRef": "A10.4.6",
|
|
1158
|
+
"RDSRef": "Tenure/Rights,Tenure/Restrictions,Tenure/Responsibilities",
|
|
1159
|
+
"lawSocietyRef": "TA6/8.6",
|
|
1160
|
+
"title": "Any other rights or arrangements affecting the property?",
|
|
1161
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1162
|
+
}
|
|
1163
|
+
}
|
|
1164
|
+
}
|
|
1165
|
+
}
|
|
1166
|
+
},
|
|
1167
|
+
"otherIssues": {
|
|
1168
|
+
"baspiRef": "A11",
|
|
1169
|
+
"title": "Other Issues Affecting the Property",
|
|
1170
|
+
"type": "object",
|
|
1171
|
+
"required": [
|
|
1172
|
+
"environmental",
|
|
1173
|
+
"excessiveNoise",
|
|
1174
|
+
"crime",
|
|
1175
|
+
"cautionOrConviction",
|
|
1176
|
+
"failedTransactionsInLast12Months",
|
|
1177
|
+
"comments"
|
|
1178
|
+
],
|
|
1179
|
+
"properties": {
|
|
1180
|
+
"environmental": {
|
|
1181
|
+
"baspiRef": "A11.1",
|
|
1182
|
+
"RDSRef": "Sustainability/Environmental|Natural|Situational",
|
|
1183
|
+
"lawSocietyRef": "TA6/7",
|
|
1184
|
+
"title": "To your knowledge, has there been any environmental issues that affect the property or garden (for example, these could include air pollution, flooding, radon gas, mining, sink holes, quarrying or fracking etc)?",
|
|
1185
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1186
|
+
"description": "If yes, please provide details. For example the level of air pollution, type of flooding (e.g. coastal, river, surface water, sewer, etc), level of radon, a copy of any radon report, location of fracking and whether any action has been taken to prevent harm."
|
|
1187
|
+
},
|
|
1188
|
+
"excessiveNoise": {
|
|
1189
|
+
"baspiRef": "A11.2",
|
|
1190
|
+
"RDSRef": "Tenure/OtherMaterialIssues",
|
|
1191
|
+
"title": "To your knowledge, has anyone occupying the property been disturbed by excessive noise which is likely to reoccur at the property?",
|
|
1192
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1193
|
+
},
|
|
1194
|
+
"crime": {
|
|
1195
|
+
"baspiRef": "A11.3",
|
|
1196
|
+
"RDSRef": "Tenure/OtherMaterialIssues",
|
|
1197
|
+
"title": "To your knowledge, has the property been subject to any crime, burglary or violent death?",
|
|
1198
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1199
|
+
},
|
|
1200
|
+
"cautionOrConviction": {
|
|
1201
|
+
"baspiRef": "A11.4",
|
|
1202
|
+
"RDSRef": "Tenure/OtherMaterialIssues",
|
|
1203
|
+
"title": "To your knowledge, has the property been occupied by someone who has been cautioned or convicted of a serious crime?",
|
|
1204
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1205
|
+
},
|
|
1206
|
+
"failedTransactionsInLast12Months": {
|
|
1207
|
+
"baspiRef": "A11.5",
|
|
1208
|
+
"RDSRef": "Tenure/OtherMaterialIssues",
|
|
1209
|
+
"title": "Have there been any failed purchase transactions on the property within the last 12 months?",
|
|
1210
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1211
|
+
},
|
|
1212
|
+
"comments": {
|
|
1213
|
+
"baspiRef": "A11.6",
|
|
1214
|
+
"RDSRef": "Tenure/OtherMaterialIssues,Tenure/OtherDocumentation",
|
|
1215
|
+
"title": "Please add any comments to the previous questions and provide any relevant documentation eg flood risk report, radon report and confirmation of any remedial measures on construction to reduce risk etc",
|
|
1216
|
+
"type": "string"
|
|
1217
|
+
}
|
|
1218
|
+
}
|
|
1219
|
+
},
|
|
1220
|
+
"additionalInformation": {
|
|
1221
|
+
"baspiRef": "A12",
|
|
1222
|
+
"title": "Additional Information",
|
|
1223
|
+
"type": "object",
|
|
1224
|
+
"required": ["restrictionsOnUseNotCompliedWith", "otherMaterialIssue"],
|
|
1225
|
+
"properties": {
|
|
1226
|
+
"restrictionsOnUseNotCompliedWith": {
|
|
1227
|
+
"baspiRef": "A12.1",
|
|
1228
|
+
"RDSRef": "Use/NonCompliance",
|
|
1229
|
+
"title": "Are you aware of any restrictions on the use or alteration of the property which have not been complied with?",
|
|
1230
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1231
|
+
},
|
|
1232
|
+
"otherMaterialIssue": {
|
|
1233
|
+
"baspiRef": "A12.2",
|
|
1234
|
+
"RDSRef": "Tenure/OtherMaterialIssues",
|
|
1235
|
+
"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? (This disclosure is required under the Consumer Protection from Unfair Trading Regulations 2008)",
|
|
1236
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1237
|
+
"description": "If yes, please describe this issue and any action that has been taken, if applicable ."
|
|
1238
|
+
}
|
|
1239
|
+
}
|
|
1240
|
+
},
|
|
1241
|
+
"consumerProtectionRegulationsDeclaration": {
|
|
1242
|
+
"baspiRef": "A13",
|
|
1243
|
+
"title": "Consumer Protection Regulations - Seller's Declaration",
|
|
1244
|
+
"description": "I/we confirm the answers to be truthful and accurate and to the best of my/our knowledge. The questions have been designed to assist with the disclosure of material information and any misleading or incorrect answers are likely to be exposed later in the legal process which may hinder my/our sale. I/we will provide my property lawyer with the additional documentation in support of the information supplied on this form. If there are any changes which alter the information provided, I/we will immediately notify the person marketing the property as well as my/our property lawyer.",
|
|
1245
|
+
"type": "boolean",
|
|
1246
|
+
"const": true
|
|
1247
|
+
}
|
|
1248
|
+
},
|
|
1249
|
+
"$defs": {
|
|
1250
|
+
"yesNo": {
|
|
1251
|
+
"type": "object",
|
|
1252
|
+
"properties": {
|
|
1253
|
+
"yesNo": {
|
|
1254
|
+
"type": "string",
|
|
1255
|
+
"title": "",
|
|
1256
|
+
"enum": ["Yes", "No"]
|
|
1257
|
+
}
|
|
1258
|
+
},
|
|
1259
|
+
"required": ["yesNo"]
|
|
1260
|
+
},
|
|
1261
|
+
"yesNoDetailIfYes": {
|
|
1262
|
+
"type": "object",
|
|
1263
|
+
"properties": {
|
|
1264
|
+
"yesNo": {
|
|
1265
|
+
"type": "string",
|
|
1266
|
+
"title": "",
|
|
1267
|
+
"enum": ["Yes", "No"]
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
1270
|
+
"required": ["yesNo"],
|
|
1271
|
+
"dependencies": {
|
|
1272
|
+
"yesNo": {
|
|
1273
|
+
"oneOf": [
|
|
1274
|
+
{
|
|
1275
|
+
"properties": {
|
|
1276
|
+
"yesNo": {
|
|
1277
|
+
"enum": ["No"]
|
|
1278
|
+
}
|
|
1279
|
+
},
|
|
1280
|
+
"additionalProperties": false
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
"properties": {
|
|
1284
|
+
"yesNo": {
|
|
1285
|
+
"enum": ["Yes"]
|
|
1286
|
+
},
|
|
1287
|
+
"details": {
|
|
1288
|
+
"title": "Details",
|
|
1289
|
+
"type": "string",
|
|
1290
|
+
"minLength": 1
|
|
1291
|
+
}
|
|
1292
|
+
},
|
|
1293
|
+
"required": ["details"]
|
|
1294
|
+
}
|
|
1295
|
+
]
|
|
1296
|
+
}
|
|
1297
|
+
}
|
|
1298
|
+
},
|
|
1299
|
+
"yesNoCentralHeatingDetailIfYes": {
|
|
1300
|
+
"type": "object",
|
|
1301
|
+
"properties": {
|
|
1302
|
+
"yesNo": {
|
|
1303
|
+
"type": "string",
|
|
1304
|
+
"title": "",
|
|
1305
|
+
"enum": ["Yes", "No"]
|
|
1306
|
+
}
|
|
1307
|
+
},
|
|
1308
|
+
"required": ["yesNo"],
|
|
1309
|
+
"dependencies": {
|
|
1310
|
+
"yesNo": {
|
|
1311
|
+
"oneOf": [
|
|
1312
|
+
{
|
|
1313
|
+
"properties": {
|
|
1314
|
+
"yesNo": {
|
|
1315
|
+
"enum": ["No"]
|
|
1316
|
+
}
|
|
1317
|
+
},
|
|
1318
|
+
"additionalProperties": false
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
"properties": {
|
|
1322
|
+
"yesNo": {
|
|
1323
|
+
"enum": ["Yes"]
|
|
1324
|
+
},
|
|
1325
|
+
"centralHeatingFuel": {
|
|
1326
|
+
"baspiRef": "A7.5.1",
|
|
1327
|
+
"RDSRef": "Buildings|BuildingSections/Heating/isGas=no|yes|true|false",
|
|
1328
|
+
"lawSocietyRef": "TA6/12.3a",
|
|
1329
|
+
"title": "Please provide details of the type of fuel which the system and boiler runs on",
|
|
1330
|
+
"type": "string",
|
|
1331
|
+
"minLength": 1
|
|
1332
|
+
},
|
|
1333
|
+
"centralHeatingInstalled": {
|
|
1334
|
+
"baspiRef": "A7.5.2",
|
|
1335
|
+
"RDSRef": "Objects/Installed",
|
|
1336
|
+
"lawSocietyRef": "TA6/12.3b",
|
|
1337
|
+
"title": "When was the heating system and boiler installed?",
|
|
1338
|
+
"type": "string",
|
|
1339
|
+
"format": "date"
|
|
1340
|
+
},
|
|
1341
|
+
"boilerInstallationCertificate": {
|
|
1342
|
+
"baspiRef": "A7.5.3",
|
|
1343
|
+
"RDSRef": "Objects/Installation,Objects/Certificates",
|
|
1344
|
+
"lawSocietyRef": "TA6/12.3b",
|
|
1345
|
+
"title": "Was a gas boiler installed after 1st April 2005, or a solid fuel or oil boiler installed after 1 October 2010?",
|
|
1346
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
1347
|
+
"description": "If yes, please supply a copy of the installation completion certificate from a competent person qualified under the relevant self-certification scheme e.g. HETAS etc"
|
|
1348
|
+
},
|
|
1349
|
+
"heatingLastServiced": {
|
|
1350
|
+
"baspiRef": "A7.5.4",
|
|
1351
|
+
"RDSRef": "Objects/Maintenance",
|
|
1352
|
+
"lawSocietyRef": "TA6/12.3d",
|
|
1353
|
+
"title": "When was the heating system and boiler last serviced or maintained?",
|
|
1354
|
+
"type": "string",
|
|
1355
|
+
"format": "date"
|
|
1356
|
+
},
|
|
1357
|
+
"heatingServiceReport": {
|
|
1358
|
+
"baspiRef": "A7.5.5",
|
|
1359
|
+
"RDSRef": "Objects/Servicing",
|
|
1360
|
+
"lawSocietyRef": "TA6/12.3d",
|
|
1361
|
+
"title": "Please provide a copy of the service or maintenance works report",
|
|
1362
|
+
"type": "string"
|
|
1363
|
+
},
|
|
1364
|
+
"heatingInGoodWorkingOrder": {
|
|
1365
|
+
"baspiRef": "A7.5.6",
|
|
1366
|
+
"RDSRef": "Objects/Condition=?",
|
|
1367
|
+
"lawSocietyRef": "TA6/12.3c",
|
|
1368
|
+
"title": "Is the heating system in good working order to your satisfaction?",
|
|
1369
|
+
"$ref": "#/$defs/yesNoDetailIfNo",
|
|
1370
|
+
"description": "If 'No' please provide details"
|
|
1371
|
+
}
|
|
1372
|
+
}
|
|
1373
|
+
}
|
|
1374
|
+
]
|
|
1375
|
+
}
|
|
1376
|
+
}
|
|
1377
|
+
},
|
|
1378
|
+
"yesNoDetailIfNo": {
|
|
1379
|
+
"type": "object",
|
|
1380
|
+
"properties": {
|
|
1381
|
+
"yesNo": {
|
|
1382
|
+
"type": "string",
|
|
1383
|
+
"title": "",
|
|
1384
|
+
"enum": ["Yes", "No"]
|
|
1385
|
+
}
|
|
1386
|
+
},
|
|
1387
|
+
"required": ["yesNo"],
|
|
1388
|
+
"dependencies": {
|
|
1389
|
+
"yesNo": {
|
|
1390
|
+
"oneOf": [
|
|
1391
|
+
{
|
|
1392
|
+
"properties": {
|
|
1393
|
+
"yesNo": {
|
|
1394
|
+
"enum": ["Yes"]
|
|
1395
|
+
}
|
|
1396
|
+
},
|
|
1397
|
+
"additionalProperties": false
|
|
1398
|
+
},
|
|
1399
|
+
{
|
|
1400
|
+
"properties": {
|
|
1401
|
+
"yesNo": {
|
|
1402
|
+
"enum": ["No"]
|
|
1403
|
+
},
|
|
1404
|
+
"details": {
|
|
1405
|
+
"title": "Details",
|
|
1406
|
+
"type": "string",
|
|
1407
|
+
"minLength": 1
|
|
1408
|
+
}
|
|
1409
|
+
},
|
|
1410
|
+
"required": ["details"]
|
|
1411
|
+
}
|
|
1412
|
+
]
|
|
1413
|
+
}
|
|
1414
|
+
}
|
|
1415
|
+
},
|
|
1416
|
+
"yesNoNotRequiredDetailIfNoNotRequired": {
|
|
1417
|
+
"type": "object",
|
|
1418
|
+
"properties": {
|
|
1419
|
+
"yesNo": {
|
|
1420
|
+
"type": "string",
|
|
1421
|
+
"title": "",
|
|
1422
|
+
"enum": ["Yes", "No", "Not required"]
|
|
1423
|
+
}
|
|
1424
|
+
},
|
|
1425
|
+
"required": ["yesNo"],
|
|
1426
|
+
"dependencies": {
|
|
1427
|
+
"yesNo": {
|
|
1428
|
+
"oneOf": [
|
|
1429
|
+
{
|
|
1430
|
+
"properties": {
|
|
1431
|
+
"yesNo": {
|
|
1432
|
+
"enum": ["Yes"]
|
|
1433
|
+
}
|
|
1434
|
+
},
|
|
1435
|
+
"additionalProperties": false
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
"properties": {
|
|
1439
|
+
"yesNo": {
|
|
1440
|
+
"enum": ["No", "Not required"]
|
|
1441
|
+
},
|
|
1442
|
+
"reasons": {
|
|
1443
|
+
"title": "Please outline the reasons why",
|
|
1444
|
+
"type": "string",
|
|
1445
|
+
"minLength": 1
|
|
1446
|
+
}
|
|
1447
|
+
},
|
|
1448
|
+
"required": ["reasons"]
|
|
1449
|
+
}
|
|
1450
|
+
]
|
|
1451
|
+
}
|
|
1452
|
+
}
|
|
1453
|
+
},
|
|
1454
|
+
"yesNoConnectedSupplier": {
|
|
1455
|
+
"type": "object",
|
|
1456
|
+
"properties": {
|
|
1457
|
+
"yesNo": {
|
|
1458
|
+
"type": "string",
|
|
1459
|
+
"title": "",
|
|
1460
|
+
"enum": ["Yes", "No"]
|
|
1461
|
+
}
|
|
1462
|
+
},
|
|
1463
|
+
"required": ["yesNo"],
|
|
1464
|
+
"dependencies": {
|
|
1465
|
+
"yesNo": {
|
|
1466
|
+
"oneOf": [
|
|
1467
|
+
{
|
|
1468
|
+
"properties": {
|
|
1469
|
+
"yesNo": {
|
|
1470
|
+
"enum": ["No"]
|
|
1471
|
+
}
|
|
1472
|
+
}
|
|
1473
|
+
},
|
|
1474
|
+
{
|
|
1475
|
+
"properties": {
|
|
1476
|
+
"yesNo": {
|
|
1477
|
+
"enum": ["Yes"]
|
|
1478
|
+
},
|
|
1479
|
+
"connected": {
|
|
1480
|
+
"title": "Connected? (Yes, No or Date to be connected)",
|
|
1481
|
+
"type": "string",
|
|
1482
|
+
"minLength": 1
|
|
1483
|
+
},
|
|
1484
|
+
"supplier": {
|
|
1485
|
+
"title": "Supplier (if known)",
|
|
1486
|
+
"type": "string"
|
|
1487
|
+
},
|
|
1488
|
+
"maintenanceAgreements": {
|
|
1489
|
+
"BASPIRef": "A7.2",
|
|
1490
|
+
"RDSRef": "Services/Certificates,Services/OtherServices/Certificates",
|
|
1491
|
+
"title": "Do you have any licences, maintenance agreements, contracts or service agreements in relation to this service?",
|
|
1492
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1493
|
+
}
|
|
1494
|
+
},
|
|
1495
|
+
"required": ["connected"]
|
|
1496
|
+
}
|
|
1497
|
+
]
|
|
1498
|
+
}
|
|
1499
|
+
}
|
|
1500
|
+
},
|
|
1501
|
+
"yesNoDetailConsents": {
|
|
1502
|
+
"type": "object",
|
|
1503
|
+
"properties": {
|
|
1504
|
+
"yesNo": {
|
|
1505
|
+
"type": "string",
|
|
1506
|
+
"title": "",
|
|
1507
|
+
"enum": ["Yes", "No"]
|
|
1508
|
+
}
|
|
1509
|
+
},
|
|
1510
|
+
"required": ["yesNo"],
|
|
1511
|
+
"dependencies": {
|
|
1512
|
+
"yesNo": {
|
|
1513
|
+
"oneOf": [
|
|
1514
|
+
{
|
|
1515
|
+
"properties": {
|
|
1516
|
+
"yesNo": {
|
|
1517
|
+
"enum": ["No"]
|
|
1518
|
+
}
|
|
1519
|
+
}
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
"properties": {
|
|
1523
|
+
"yesNo": {
|
|
1524
|
+
"enum": ["Yes"]
|
|
1525
|
+
},
|
|
1526
|
+
"details": {
|
|
1527
|
+
"title": "Details",
|
|
1528
|
+
"type": "string",
|
|
1529
|
+
"minLength": 1
|
|
1530
|
+
},
|
|
1531
|
+
"buildingRegApproval": {
|
|
1532
|
+
"baspiRef": "A3.4.1",
|
|
1533
|
+
"RDSRef": "WorksAlterationsChanges/ConsentApproval",
|
|
1534
|
+
"lawSocietyRef": "TA6/4.2",
|
|
1535
|
+
"title": "Was building regulation approval and a completion certificate obtained or an equivalent Competent Person Scheme Certificate?",
|
|
1536
|
+
"$ref": "#/$defs/yesNoNotRequiredDetailIfNoNotRequired"
|
|
1537
|
+
},
|
|
1538
|
+
"planningPermission": {
|
|
1539
|
+
"baspiRef": "A3.4.2",
|
|
1540
|
+
"RDSRef": "WorksAlterationsChanges/ConsentApproval",
|
|
1541
|
+
"lawSocietyRef": "TA6/4.2",
|
|
1542
|
+
"title": "Was planning permission obtained?",
|
|
1543
|
+
"$ref": "#/$defs/yesNoNotRequiredDetailIfNoNotRequired"
|
|
1544
|
+
},
|
|
1545
|
+
"listedBuildingConsent": {
|
|
1546
|
+
"baspiRef": "A3.4.3",
|
|
1547
|
+
"RDSRef": "WorksAlterationsChanges/ConsentApproval",
|
|
1548
|
+
"lawSocietyRef": "TA6/4.2",
|
|
1549
|
+
"title": "Was listed building consent obtained?",
|
|
1550
|
+
"$ref": "#/$defs/yesNoNotRequiredDetailIfNoNotRequired"
|
|
1551
|
+
},
|
|
1552
|
+
"deedRestrictionConsent": {
|
|
1553
|
+
"baspiRef": "A3.4.4",
|
|
1554
|
+
"RDSRef": "WorksAlterationsChanges/ConsentApproval",
|
|
1555
|
+
"lawSocietyRef": "TA6/4.2",
|
|
1556
|
+
"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",
|
|
1557
|
+
"$ref": "#/$defs/yesNoNotRequiredDetailIfNoNotRequired"
|
|
1558
|
+
},
|
|
1559
|
+
"unfinished": {
|
|
1560
|
+
"baspiRef": "A3.5",
|
|
1561
|
+
"RDSRef": "WorksAlterationsChanges/isIncomplete",
|
|
1562
|
+
"lawSocietyRef": "TA6/4.3",
|
|
1563
|
+
"title": "Are any of the works listed above unfinished?",
|
|
1564
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
1565
|
+
}
|
|
1566
|
+
},
|
|
1567
|
+
"required": [
|
|
1568
|
+
"details",
|
|
1569
|
+
"buildingRegApproval",
|
|
1570
|
+
"planningPermission",
|
|
1571
|
+
"listedBuildingConsent",
|
|
1572
|
+
"deedRestrictionConsent",
|
|
1573
|
+
"unfinished"
|
|
1574
|
+
]
|
|
1575
|
+
}
|
|
1576
|
+
]
|
|
1577
|
+
}
|
|
1578
|
+
}
|
|
1579
|
+
},
|
|
1580
|
+
"address": {
|
|
1581
|
+
"type": "object",
|
|
1582
|
+
"properties": {
|
|
1583
|
+
"address1": {
|
|
1584
|
+
"title": "Address 1",
|
|
1585
|
+
"type": "string",
|
|
1586
|
+
"minLength": 1
|
|
1587
|
+
},
|
|
1588
|
+
"address2": {
|
|
1589
|
+
"title": "Address 2",
|
|
1590
|
+
"type": "string"
|
|
1591
|
+
},
|
|
1592
|
+
"town": {
|
|
1593
|
+
"title": "Town",
|
|
1594
|
+
"type": "string"
|
|
1595
|
+
},
|
|
1596
|
+
"county": {
|
|
1597
|
+
"title": "County",
|
|
1598
|
+
"type": "string"
|
|
1599
|
+
},
|
|
1600
|
+
"postcode": {
|
|
1601
|
+
"title": "Postcode",
|
|
1602
|
+
"type": "string",
|
|
1603
|
+
"minLength": 1
|
|
1604
|
+
}
|
|
1605
|
+
},
|
|
1606
|
+
"required": ["address1", "postcode"]
|
|
1607
|
+
}
|
|
1608
|
+
}
|
|
1609
|
+
}
|