@pdtf/schemas 0.5.7 → 0.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/schemas/baspi-a-material-facts.json +510 -473
- package/src/schemas/baspi-b-legal-information.json +720 -599
- package/src/schemas/energy-performance-certificate.json +95 -92
- package/src/schemas/pdtf-claim.json +1 -1
- package/src/schemas/property-pack.json +83 -1
- package/src/schemas/title-deed.json +2 -3
- package/src/tests/examplePropertyPack.json +46 -41
- package/src/tests/propertyPackSchema.test.js +1 -0
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"$id": "https://homebuyingandsellinggroup.co.uk/schemas/baspi-b-legal-information
|
|
3
|
+
"$id": "https://homebuyingandsellinggroup.co.uk/schemas/baspi-b-legal-information.json",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"title": "Additional information required for the legal process",
|
|
6
6
|
"description": "A schema defining Part B of BASPI v2.0 spporting mapping to BASPI, Law Society and RICS Data Schema elements.",
|
|
7
7
|
"baspiRef": "B",
|
|
8
8
|
"required": [
|
|
9
|
-
"
|
|
10
|
-
"
|
|
9
|
+
"namesOfLegalOwners",
|
|
10
|
+
"sellersConveyancer",
|
|
11
|
+
"sellersCapacity",
|
|
12
|
+
"legalBoundaries",
|
|
11
13
|
"servicesCrossing",
|
|
12
14
|
"energyAndMeters",
|
|
13
15
|
"guaranteesWarrantiesAndIndemnityInsurances",
|
|
@@ -16,616 +18,759 @@
|
|
|
16
18
|
"confirmationOfAccuracyByOwners"
|
|
17
19
|
],
|
|
18
20
|
"properties": {
|
|
19
|
-
"
|
|
20
|
-
"baspiRef": "B1",
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"title": "
|
|
38
|
-
"
|
|
21
|
+
"namesOfLegalOwners": {
|
|
22
|
+
"baspiRef": "B1.1",
|
|
23
|
+
"RDSRef": "RightsHolders",
|
|
24
|
+
"title": "Full names of all legal owner(s)",
|
|
25
|
+
"type": "array",
|
|
26
|
+
"minItems": 1,
|
|
27
|
+
"items": {
|
|
28
|
+
"type": "object",
|
|
29
|
+
"title": "Owner name",
|
|
30
|
+
"required": ["firstName", "lastName"],
|
|
31
|
+
"properties": {
|
|
32
|
+
"firstName": {
|
|
33
|
+
"baspiRef": "B1.1.1",
|
|
34
|
+
"title": "First name",
|
|
35
|
+
"type": "string"
|
|
36
|
+
},
|
|
37
|
+
"middleNames": {
|
|
38
|
+
"baspiRef": "B1.1.2",
|
|
39
|
+
"title": "Middle names",
|
|
40
|
+
"type": "string"
|
|
41
|
+
},
|
|
42
|
+
"lastName": {
|
|
43
|
+
"baspiRef": "B1.1.3",
|
|
44
|
+
"title": "Last name",
|
|
45
|
+
"type": "string"
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"sellersConveyancer": {
|
|
52
|
+
"baspiRef": "B1.2",
|
|
53
|
+
"RDSRef": "Participants/description=?,Participants/ActingFor/Participants/Role",
|
|
54
|
+
"title": "Sellers Conveyancer",
|
|
55
|
+
"type": "object",
|
|
56
|
+
"required": ["firstName", "lastName", "address", "email", "reference"],
|
|
57
|
+
"properties": {
|
|
58
|
+
"firstName": {
|
|
59
|
+
"title": "First name",
|
|
60
|
+
"type": "string"
|
|
61
|
+
},
|
|
62
|
+
"lastName": {
|
|
63
|
+
"title": "Last name",
|
|
64
|
+
"type": "string"
|
|
65
|
+
},
|
|
66
|
+
"address": {
|
|
67
|
+
"title": "Address",
|
|
68
|
+
"$ref": "#/$defs/address"
|
|
69
|
+
},
|
|
70
|
+
"email": {
|
|
71
|
+
"title": "Email address",
|
|
72
|
+
"type": "string",
|
|
73
|
+
"format": "email"
|
|
74
|
+
},
|
|
75
|
+
"reference": {
|
|
76
|
+
"title": "Reference",
|
|
77
|
+
"type": "string"
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"sellersCapacity": {
|
|
82
|
+
"baspiRef": "B1.3",
|
|
83
|
+
"RDSRef": "Participants/description=?,Participants/ActingFor/Participants/Role",
|
|
84
|
+
"title": "Capacity in which the Seller sells",
|
|
85
|
+
"description": "If necessary please provide your property lawyer with any probate, grant of representation or power of attorney.",
|
|
86
|
+
"type": "object",
|
|
87
|
+
"required": ["capacity"],
|
|
88
|
+
"properties": {
|
|
89
|
+
"capacity": {
|
|
90
|
+
"type": "string",
|
|
91
|
+
"title": "",
|
|
92
|
+
"enum": [
|
|
93
|
+
"Legal Owner",
|
|
94
|
+
"Personal Representative for a Deceased Owner",
|
|
95
|
+
"Under Power of Attorney",
|
|
96
|
+
"Mortgagee in Possession",
|
|
97
|
+
"Other (please give details)"
|
|
98
|
+
]
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"dependencies": {
|
|
102
|
+
"capacity": {
|
|
103
|
+
"oneOf": [
|
|
104
|
+
{
|
|
39
105
|
"properties": {
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"
|
|
106
|
+
"capacity": {
|
|
107
|
+
"enum": ["Legal Owner", "Mortgagee in Possession"]
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"properties": {
|
|
113
|
+
"capacity": {
|
|
114
|
+
"enum": [
|
|
115
|
+
"Personal Representative for a Deceased Owner",
|
|
116
|
+
"Under Power of Attorney",
|
|
117
|
+
"Other (please give details)"
|
|
118
|
+
]
|
|
49
119
|
},
|
|
50
|
-
"
|
|
51
|
-
"baspiRef": "B1.
|
|
52
|
-
"
|
|
120
|
+
"probateOrPowerOfAttorney": {
|
|
121
|
+
"baspiRef": "B1.4",
|
|
122
|
+
"RDSRef": "Participants/OtherDocumentation",
|
|
123
|
+
"title": "Please provide details.",
|
|
53
124
|
"type": "string"
|
|
54
125
|
}
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
"sellersConveyancer": {
|
|
59
|
-
"baspiRef": "B1.2",
|
|
60
|
-
"RDSRef": "Participants/description=?,Participants/ActingFor/Participants/Role",
|
|
61
|
-
"title": "Sellers Conveyancer",
|
|
62
|
-
"type": "object",
|
|
63
|
-
"required": [
|
|
64
|
-
"firstName",
|
|
65
|
-
"lastName",
|
|
66
|
-
"address",
|
|
67
|
-
"email",
|
|
68
|
-
"reference"
|
|
69
|
-
],
|
|
70
|
-
"properties": {
|
|
71
|
-
"firstName": {
|
|
72
|
-
"title": "First name",
|
|
73
|
-
"type": "string"
|
|
74
126
|
},
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
127
|
+
"required": ["probateOrPowerOfAttorney"]
|
|
128
|
+
}
|
|
129
|
+
]
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"legalBoundaries": {
|
|
134
|
+
"baspiRef": "B2.1",
|
|
135
|
+
"title": "Legal Boundaries",
|
|
136
|
+
"description": "Please indicate who has repaired, or treated as belonging to them, each of the boundaries. Identify each boundary as if you were looking at the property from the road",
|
|
137
|
+
"type": "object",
|
|
138
|
+
"required": [
|
|
139
|
+
"left",
|
|
140
|
+
"right",
|
|
141
|
+
"rear",
|
|
142
|
+
"front",
|
|
143
|
+
"areBoundariesUniform",
|
|
144
|
+
"haveBoundaryFeaturesMoved",
|
|
145
|
+
"adjacentLandIncluded",
|
|
146
|
+
"titlePlanAccurate",
|
|
147
|
+
"flyingFreehold"
|
|
148
|
+
],
|
|
149
|
+
"properties": {
|
|
150
|
+
"left": {
|
|
151
|
+
"baspiRef": "B2.1.1",
|
|
152
|
+
"RDSRef": "Tenure/Boundaries",
|
|
153
|
+
"lawSocietyRef": "TA6/1.1a",
|
|
154
|
+
"title": "On the left",
|
|
155
|
+
"type": "string",
|
|
156
|
+
"enum": ["Seller", "Shared", "Next-door neighbour"]
|
|
157
|
+
},
|
|
158
|
+
"right": {
|
|
159
|
+
"baspiRef": "B2.1.2",
|
|
160
|
+
"RDSRef": "Tenure/Boundaries",
|
|
161
|
+
"lawSocietyRef": "TA6/1.1b",
|
|
162
|
+
"title": "On the right",
|
|
163
|
+
"type": "string",
|
|
164
|
+
"enum": ["Seller", "Shared", "Next-door neighbour"]
|
|
165
|
+
},
|
|
166
|
+
"rear": {
|
|
167
|
+
"baspiRef": "B2.1.3",
|
|
168
|
+
"RDSRef": "Tenure/Boundaries",
|
|
169
|
+
"lawSocietyRef": "TA6/1.1c",
|
|
170
|
+
"title": "At the rear",
|
|
171
|
+
"type": "string",
|
|
172
|
+
"enum": ["Seller", "Shared", "Next-door neighbour"]
|
|
173
|
+
},
|
|
174
|
+
"front": {
|
|
175
|
+
"baspiRef": "B2.1.4",
|
|
176
|
+
"RDSRef": "Tenure/Boundaries",
|
|
177
|
+
"lawSocietyRef": "TA6/1.1d",
|
|
178
|
+
"title": "At the front",
|
|
179
|
+
"type": "string",
|
|
180
|
+
"enum": ["Seller", "Shared", "Next-door neighbour"]
|
|
181
|
+
},
|
|
182
|
+
"areBoundariesUniform": {
|
|
183
|
+
"baspiRef": "B2.1.5",
|
|
184
|
+
"RDSRef": "Tenure/Boundaries",
|
|
185
|
+
"lawSocietyRef": "TA6/1.2",
|
|
186
|
+
"title": "Are the boundaries uniform?",
|
|
187
|
+
"$ref": "#/$defs/yesNoDetailIfNo",
|
|
188
|
+
"description": "If no, please indicate ownership or those you have repaired by written description or marking them on a plan of the property"
|
|
189
|
+
},
|
|
190
|
+
"haveBoundaryFeaturesMoved": {
|
|
191
|
+
"baspiRef": "B2.2",
|
|
192
|
+
"RDSRef": "Tenure/Boundaries",
|
|
193
|
+
"lawSocietyRef": "TA6/1.3",
|
|
194
|
+
"title": "Has any boundary features been moved during your ownership or in the last 10 years, to your knowledge?",
|
|
195
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
196
|
+
},
|
|
197
|
+
"adjacentLandIncluded": {
|
|
198
|
+
"baspiRef": "B2.3",
|
|
199
|
+
"RDSRef": "Property/Flags,Property/GUID/name='UPRN'&id=?",
|
|
200
|
+
"lawSocietyRef": "TA6/1.4",
|
|
201
|
+
"title": "Has any adjacent land or property been purchased by you that will be included in the sale?",
|
|
202
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
203
|
+
},
|
|
204
|
+
"titlePlanAccurate": {
|
|
205
|
+
"baspiRef": "B2.4",
|
|
206
|
+
"RDSRef": "Tenure/BoundaryDifferences,Tenure/CadastralMapOfParcels",
|
|
207
|
+
"title": "Does the title plan for the property accurately show the extent of the land and property which you are selling?",
|
|
208
|
+
"$ref": "#/$defs/yesNoDetailIfNo"
|
|
209
|
+
},
|
|
210
|
+
"flyingFreehold": {
|
|
211
|
+
"baspiRef": "B2.5",
|
|
212
|
+
"RDSRef": "Tenure/tenure=?",
|
|
213
|
+
"lawSocietyRef": "TA6/1.5",
|
|
214
|
+
"title": "Is there a flying freehold?",
|
|
215
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
216
|
+
"description": "NOTE: a flying freehold is when part of the property overhangs a neighbour's property or an accessway - eg a terrace house where part of the upstairs is over an accessway which belongs to someone else."
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"servicesCrossing": {
|
|
221
|
+
"baspiRef": "B3",
|
|
222
|
+
"title": "Services Crossing Other Property",
|
|
223
|
+
"type": "object",
|
|
224
|
+
"required": [
|
|
225
|
+
"pipesWiresCablesDrainsToProperty",
|
|
226
|
+
"pipesWiresCablesDrainsFromProperty",
|
|
227
|
+
"formalOrInformalAgreements"
|
|
228
|
+
],
|
|
229
|
+
"properties": {
|
|
230
|
+
"pipesWiresCablesDrainsToProperty": {
|
|
231
|
+
"baspiRef": "B3.1",
|
|
232
|
+
"RDSRef": "Services/.../Located",
|
|
233
|
+
"lawSocietyRef": "TA6/8.7",
|
|
234
|
+
"title": "Are you aware of any pipes, wires, cables or drains bringing services to the property which cross any neighbouring land or property?",
|
|
235
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
236
|
+
},
|
|
237
|
+
"pipesWiresCablesDrainsFromProperty": {
|
|
238
|
+
"baspiRef": "B3.2",
|
|
239
|
+
"RDSRef": "Services/.../Located *with Property entities and references for the related properties etc",
|
|
240
|
+
"lawSocietyRef": "TA6/8.8",
|
|
241
|
+
"title": "Are you aware of any pipes, wires, cables or drains taking services to neighbouring property cross this property?",
|
|
242
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
243
|
+
},
|
|
244
|
+
"formalOrInformalAgreements": {
|
|
245
|
+
"baspiRef": "B3.3",
|
|
246
|
+
"RDSRef": "Services/.../Consent",
|
|
247
|
+
"lawSocietyRef": "TA6/8.9",
|
|
248
|
+
"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?",
|
|
249
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
"energyAndMeters": {
|
|
254
|
+
"baspiRef": "B4",
|
|
255
|
+
"title": "Energy and Meters",
|
|
256
|
+
"type": "object",
|
|
257
|
+
"required": [
|
|
258
|
+
"testedByQualifiedElectrician",
|
|
259
|
+
"electricalWorkSince2005",
|
|
260
|
+
"solarPanels"
|
|
261
|
+
],
|
|
262
|
+
"properties": {
|
|
263
|
+
"testedByQualifiedElectrician": {
|
|
264
|
+
"baspiRef": "B4.1",
|
|
265
|
+
"RDSRef": "Objects/Servicing",
|
|
266
|
+
"lawSocietyRef": "TA6/12.1",
|
|
267
|
+
"title": "State the year the electrics at the property were last tested by a qualified electrician and upload the test certificate.",
|
|
268
|
+
"type": "string",
|
|
269
|
+
"enum": ["Date", "N/A"],
|
|
270
|
+
"description": "If you have not had them tested then select N/A"
|
|
271
|
+
},
|
|
272
|
+
"electricalWorkSince2005": {
|
|
273
|
+
"baspiRef": "B4.2",
|
|
274
|
+
"RDSRef": "WorksAlterationsChanges/Consent,WorksAlterationsChanges/Consent/Certificates",
|
|
275
|
+
"lawSocietyRef": "TA6/12.2",
|
|
276
|
+
"title": "Since 1st January 2005, has any electrical work been carried out to the property?",
|
|
277
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
278
|
+
"description": "If yes, please provide details and supply the signed Electrical Safety Certificate (BS7671) and Building Regulations Compliance Certificate (or equivalent)"
|
|
279
|
+
},
|
|
280
|
+
"solarPanels": {
|
|
281
|
+
"baspiRef": "B4.3",
|
|
282
|
+
"title": "Solar or photovoltaic panels",
|
|
283
|
+
"type": "object",
|
|
284
|
+
"properties": {
|
|
285
|
+
"hasSolarPanels": {
|
|
286
|
+
"baspiRef": "B.4.3x",
|
|
287
|
+
"RDSRef": "Property/Flags",
|
|
288
|
+
"title": "Are there solar or photovoltaic panels installed at the property?",
|
|
289
|
+
"type": "string",
|
|
290
|
+
"enum": ["Yes", "No"]
|
|
92
291
|
}
|
|
93
292
|
},
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
"properties": {
|
|
102
|
-
"capacity": {
|
|
103
|
-
"type": "string",
|
|
104
|
-
"title": "",
|
|
105
|
-
"enum": [
|
|
106
|
-
"Legal Owner",
|
|
107
|
-
"Personal Representative for a Deceased Owner",
|
|
108
|
-
"Under Power of Attorney",
|
|
109
|
-
"Mortgagee in Possession",
|
|
110
|
-
"Other (please give details)"
|
|
111
|
-
]
|
|
112
|
-
}
|
|
113
|
-
},
|
|
114
|
-
"dependencies": {
|
|
115
|
-
"capacity": {
|
|
116
|
-
"oneOf": [
|
|
117
|
-
{
|
|
118
|
-
"properties": {
|
|
119
|
-
"capacity": {
|
|
120
|
-
"enum": ["Legal Owner", "Mortgagee in Possession"]
|
|
121
|
-
}
|
|
293
|
+
"dependencies": {
|
|
294
|
+
"hasSolarPanels": {
|
|
295
|
+
"oneOf": [
|
|
296
|
+
{
|
|
297
|
+
"properties": {
|
|
298
|
+
"hasSolarPanels": {
|
|
299
|
+
"enum": ["No"]
|
|
122
300
|
}
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
"Under Power of Attorney",
|
|
130
|
-
"Other (please give details)"
|
|
131
|
-
]
|
|
132
|
-
},
|
|
133
|
-
"probateOrPowerOfAttorney": {
|
|
134
|
-
"baspiRef": "B1.4",
|
|
135
|
-
"RDSRef": "Participants/OtherDocumentation",
|
|
136
|
-
"title": "Please provide details.",
|
|
137
|
-
"type": "string"
|
|
138
|
-
}
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"properties": {
|
|
305
|
+
"hasSolarPanels": {
|
|
306
|
+
"enum": ["Yes"]
|
|
139
307
|
},
|
|
140
|
-
"
|
|
308
|
+
"yearInstalled": {
|
|
309
|
+
"baspiRef": "B4.3.1",
|
|
310
|
+
"RDSRef": "Objects/Installation",
|
|
311
|
+
"title": "What year were they installed?",
|
|
312
|
+
"type": "number"
|
|
313
|
+
},
|
|
314
|
+
"panelsOwnedOutright": {
|
|
315
|
+
"baspiRef": "",
|
|
316
|
+
"RDSRef": "Objects/Ownership",
|
|
317
|
+
"title": "Do you own the panels, and all equipment related to them, outright?",
|
|
318
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
319
|
+
"description": "If yes, provide details of who owns them and the relevant documentation"
|
|
320
|
+
},
|
|
321
|
+
"panelProviderLease": {
|
|
322
|
+
"baspiRef": "B4.3.2",
|
|
323
|
+
"RDSRef": "Objects/Ownership",
|
|
324
|
+
"title": "Is there an existing long lease of the roof/air space granted to a panel provider?",
|
|
325
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
326
|
+
"description": "If yes, please supply copies of the relevant documents and the name of the provider"
|
|
327
|
+
},
|
|
328
|
+
"lastMaintained": {
|
|
329
|
+
"baspiRef": "B4.3.4",
|
|
330
|
+
"RDSRef": "Objects/Servicing",
|
|
331
|
+
"title": "When was the system last maintained or serviced?",
|
|
332
|
+
"type": "string",
|
|
333
|
+
"format": "date"
|
|
334
|
+
},
|
|
335
|
+
"inGoodWorkingOrder": {
|
|
336
|
+
"baspiRef": "B4.3.5",
|
|
337
|
+
"RDSRef": "Objects/isNotWorking=yes|no|true|false",
|
|
338
|
+
"title": "Is the system in good working order to your satisfaction?",
|
|
339
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
340
|
+
},
|
|
341
|
+
"isConnectedToNationalGrid": {
|
|
342
|
+
"baspiRef": "B4.3.6",
|
|
343
|
+
"RDSRef": "Objects/isExternallyConnected=yes|no|true|false,Connection,Objects/ExternalConnection",
|
|
344
|
+
"title": "Is the system connected to the National Grid e.g. for feed-in tariffs (FiT) or Smart Export Guarantee (SEG)",
|
|
345
|
+
"type": "string",
|
|
346
|
+
"enum": ["Yes (FiT)", "Yes (SEG)", "No"]
|
|
347
|
+
}
|
|
141
348
|
}
|
|
142
|
-
|
|
143
|
-
|
|
349
|
+
}
|
|
350
|
+
]
|
|
144
351
|
}
|
|
145
352
|
}
|
|
353
|
+
},
|
|
354
|
+
"electricityMeterLocation": {
|
|
355
|
+
"baspiRef": "B4.4",
|
|
356
|
+
"RDSRef": "Objects/class='meters|'&access=?&accessLocation=?",
|
|
357
|
+
"title": "Please describe, or attach a photograph of, the location of any electricity meter",
|
|
358
|
+
"type": "string"
|
|
359
|
+
},
|
|
360
|
+
"gasMeterLocation": {
|
|
361
|
+
"baspiRef": "B4.5",
|
|
362
|
+
"RDSRef": "Objects/class='meters'&access=?&accessLocation=?",
|
|
363
|
+
"title": "Please describe, or attach a photograph of, the location of any gas meter",
|
|
364
|
+
"type": "string"
|
|
365
|
+
},
|
|
366
|
+
"stopcockAndWaterMeterLocation": {
|
|
367
|
+
"baspiRef": "B4.6",
|
|
368
|
+
"RDSRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
|
|
369
|
+
"title": "Please describe, or attach a photograph of, the location of the stopcock and water meter",
|
|
370
|
+
"type": "string"
|
|
371
|
+
},
|
|
372
|
+
"photovoltaicMeterPanelLocation": {
|
|
373
|
+
"baspiRef": "B4.7",
|
|
374
|
+
"RDSRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
|
|
375
|
+
"title": "Please describe, or attach a photograph of, the location of any photovoltaic panel meter",
|
|
376
|
+
"type": "string"
|
|
377
|
+
},
|
|
378
|
+
"photovoltaicMeterBatteriesLocation": {
|
|
379
|
+
"baspiRef": "B4.8",
|
|
380
|
+
"RDSRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
|
|
381
|
+
"title": "Please describe, or attach a photograph of, the location of any photovoltaic batteries",
|
|
382
|
+
"type": "string"
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
"smartHomeSystems": {
|
|
387
|
+
"baspiRef": "B7.4",
|
|
388
|
+
"RDSRef": "",
|
|
389
|
+
"title": "Smart Home Systems",
|
|
390
|
+
"type": "object",
|
|
391
|
+
"required": ["hasSmartHomeSystems"],
|
|
392
|
+
"properties": {
|
|
393
|
+
"hasSmartHomeSystems": {
|
|
394
|
+
"title": "Are any Smart Home Systems included in the sale?",
|
|
395
|
+
"type": "string",
|
|
396
|
+
"enum": ["Yes", "No"]
|
|
146
397
|
}
|
|
147
398
|
},
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
399
|
+
"dependencies": {
|
|
400
|
+
"hasSmartHomeSystems": {
|
|
401
|
+
"oneOf": [
|
|
402
|
+
{
|
|
403
|
+
"properties": {
|
|
404
|
+
"hasSmartHomeSystems": {
|
|
405
|
+
"enum": ["No"]
|
|
406
|
+
}
|
|
407
|
+
},
|
|
408
|
+
"additionalProperties": false
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"properties": {
|
|
412
|
+
"hasSmartHomeSystems": {
|
|
413
|
+
"enum": ["Yes"]
|
|
414
|
+
},
|
|
415
|
+
"heatingAndPower": {
|
|
416
|
+
"title": "Heating and Power",
|
|
417
|
+
"description": "E.g. remote boiler control, solar panels, EV charging point, power storage, indoor or outdoor lighting systems",
|
|
418
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
419
|
+
},
|
|
420
|
+
"security": {
|
|
421
|
+
"title": "Security",
|
|
422
|
+
"description": "E.g. CCTV, alarms, barriers, doors or gates",
|
|
423
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
424
|
+
},
|
|
425
|
+
"entertainment": {
|
|
426
|
+
"title": "Entertainment",
|
|
427
|
+
"description": "E.g. integrated audio system",
|
|
428
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
429
|
+
},
|
|
430
|
+
"handoverOnCompletion": {
|
|
431
|
+
"title": "Confirm that you will handover details on day of completion",
|
|
432
|
+
"description": "Confirm that you will provide the buyer with the login, password and link to user instructions for the relevant system(s). [NOTE: It is recommended that you reset the password before handing it over to avoid security issues by passing on your own password.]",
|
|
433
|
+
"type": "boolean",
|
|
434
|
+
"const": true
|
|
435
|
+
}
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
]
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
"guaranteesWarrantiesAndIndemnityInsurances": {
|
|
443
|
+
"baspiRef": "B5",
|
|
444
|
+
"title": "Guarantees, Warranties and Indemnity Insurances",
|
|
445
|
+
"type": "object",
|
|
446
|
+
"required": ["hasValidGuaranteesOrWarranties"],
|
|
447
|
+
"properties": {
|
|
448
|
+
"hasValidGuaranteesOrWarranties": {
|
|
449
|
+
"baspiRef": "B5.1",
|
|
450
|
+
"RDSRef": "Certificates",
|
|
451
|
+
"title": "Are there any valid guarantees or warranties relating to this property?",
|
|
452
|
+
"type": "string",
|
|
453
|
+
"enum": ["Yes", "No"]
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"dependencies": {
|
|
457
|
+
"hasValidGuaranteesOrWarranties": {
|
|
458
|
+
"oneOf": [
|
|
459
|
+
{
|
|
460
|
+
"properties": {
|
|
461
|
+
"hasValidGuaranteesOrWarranties": {
|
|
462
|
+
"enum": ["No"]
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
"properties": {
|
|
468
|
+
"hasValidGuaranteesOrWarranties": {
|
|
469
|
+
"enum": ["Yes"]
|
|
470
|
+
},
|
|
471
|
+
"newHomeWarranty": {
|
|
472
|
+
"baspiRef": "B5.1.1",
|
|
473
|
+
"RDSRef": "Certificates",
|
|
474
|
+
"lawSocietyRef": "TA6/5.1a",
|
|
475
|
+
"title": "New Home Warranty",
|
|
476
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
477
|
+
"description": "If yes, please confirm the name of the warranty provider and the date of the warranty:"
|
|
478
|
+
},
|
|
479
|
+
"roofingWork": {
|
|
480
|
+
"baspiRef": "B5.1.2",
|
|
481
|
+
"RDSRef": "Certificates",
|
|
482
|
+
"lawSocietyRef": "TA6/5.1f",
|
|
483
|
+
"title": "Roofing work",
|
|
484
|
+
"$ref": "#/$defs/yesNo"
|
|
485
|
+
},
|
|
486
|
+
"dampProofingTreatment": {
|
|
487
|
+
"baspiRef": "B5.1.3",
|
|
488
|
+
"RDSRef": "Certificates",
|
|
489
|
+
"lawSocietyRef": "TA6/5.1b",
|
|
490
|
+
"title": "Damp proofing treatment",
|
|
491
|
+
"$ref": "#/$defs/yesNo"
|
|
492
|
+
},
|
|
493
|
+
"timberRotOrInfestationTreatment": {
|
|
494
|
+
"baspiRef": "B5.1.4",
|
|
495
|
+
"RDSRef": "Certificates",
|
|
496
|
+
"lawSocietyRef": "TA6/5.1c",
|
|
497
|
+
"title": "Timber rot or infestation treatment",
|
|
498
|
+
"$ref": "#/$defs/yesNo"
|
|
499
|
+
},
|
|
500
|
+
"centralHeatingAndorPlumbing": {
|
|
501
|
+
"baspiRef": "B5.1.5",
|
|
502
|
+
"RDSRef": "Certificates",
|
|
503
|
+
"lawSocietyRef": "TA6/5.1g",
|
|
504
|
+
"title": "Central heating and/or plumbing",
|
|
505
|
+
"$ref": "#/$defs/yesNo"
|
|
506
|
+
},
|
|
507
|
+
"doubleGlazing": {
|
|
508
|
+
"baspiRef": "B5.1.6",
|
|
509
|
+
"RDSRef": "Certificates",
|
|
510
|
+
"lawSocietyRef": "TA6/5.1d",
|
|
511
|
+
"title": "Double glazing (windows, doors, roof lights, conservatory etc)",
|
|
512
|
+
"$ref": "#/$defs/yesNo"
|
|
513
|
+
},
|
|
514
|
+
"electricalRepairOrInstallation": {
|
|
515
|
+
"baspiRef": "B5.1.7",
|
|
516
|
+
"RDSRef": "Certificates",
|
|
517
|
+
"lawSocietyRef": "TA6/5.1e",
|
|
518
|
+
"title": "Electrical repair or installation",
|
|
519
|
+
"$ref": "#/$defs/yesNo"
|
|
520
|
+
},
|
|
521
|
+
"subsidenceWork": {
|
|
522
|
+
"baspiRef": "B5.1.8",
|
|
523
|
+
"RDSRef": "Certificates",
|
|
524
|
+
"lawSocietyRef": "TA6/5.1h",
|
|
525
|
+
"title": "Preventative work and/or remedial action relating to subsidence",
|
|
526
|
+
"$ref": "#/$defs/yesNo"
|
|
527
|
+
},
|
|
528
|
+
"solarPanels": {
|
|
529
|
+
"baspiRef": "B5.1.9",
|
|
530
|
+
"RDSRef": "Certificates",
|
|
531
|
+
"title": "Solar panels",
|
|
532
|
+
"$ref": "#/$defs/yesNo"
|
|
533
|
+
},
|
|
534
|
+
"otherGuarantees": {
|
|
535
|
+
"baspiRef": "B5.1.10",
|
|
536
|
+
"RDSRef": "Certificates",
|
|
537
|
+
"lawSocietyRef": "TA6/5.1i",
|
|
538
|
+
"title": "Other Guarantees or Warranties",
|
|
539
|
+
"$ref": "#/$defs/yesNo"
|
|
540
|
+
},
|
|
541
|
+
"willLeaveGuaranteePaperwork": {
|
|
542
|
+
"baspiRef": "B5.1.11",
|
|
543
|
+
"RDSRef": "Property/Flags",
|
|
544
|
+
"title": "Please confirm that you will leave all paperwork relating to any guarantee or warranty at the property when you move out",
|
|
545
|
+
"$ref": "#/$defs/yesNo"
|
|
546
|
+
},
|
|
547
|
+
"outstandingClaimsOrApplications": {
|
|
548
|
+
"baspiRef": "B5.2",
|
|
549
|
+
"RDSRef": "Certificates",
|
|
550
|
+
"lawSocietyRef": "TA6/5.2",
|
|
551
|
+
"title": "Are there any outstanding claims or current applications relating to any of the above?",
|
|
552
|
+
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
553
|
+
},
|
|
554
|
+
"titleDefectInsurance": {
|
|
555
|
+
"baspiRef": "B5.3",
|
|
556
|
+
"RDSRef": "Certificates",
|
|
557
|
+
"title": "Do you have any title defect insurance policies e.g. for breach of planning permission, buildings regulations, restrictions, chancel repair etc",
|
|
558
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
559
|
+
"description": "If yes, please provide details and give the policy to your property lawyer"
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
"required": [
|
|
563
|
+
"newHomeWarranty",
|
|
564
|
+
"roofingWork",
|
|
565
|
+
"dampProofingTreatment",
|
|
566
|
+
"timberRotOrInfestationTreatment",
|
|
567
|
+
"centralHeatingAndorPlumbing",
|
|
568
|
+
"doubleGlazing",
|
|
569
|
+
"electricalRepairOrInstallation",
|
|
570
|
+
"subsidenceWork",
|
|
571
|
+
"solarPanels",
|
|
572
|
+
"otherGuarantees",
|
|
573
|
+
"willLeaveGuaranteePaperwork",
|
|
574
|
+
"outstandingClaimsOrApplications",
|
|
575
|
+
"titleDefectInsurance"
|
|
576
|
+
]
|
|
577
|
+
}
|
|
578
|
+
]
|
|
579
|
+
}
|
|
580
|
+
}
|
|
581
|
+
},
|
|
582
|
+
"occupiers": {
|
|
583
|
+
"baspiRef": "B6",
|
|
584
|
+
"title": "Occupiers",
|
|
585
|
+
"type": "object",
|
|
586
|
+
"required": [
|
|
587
|
+
"sellerLivesAtProperty",
|
|
588
|
+
"otherOver17sAtProperty",
|
|
589
|
+
"over17sWillSignToConfirmWillVacate"
|
|
590
|
+
],
|
|
591
|
+
"properties": {
|
|
592
|
+
"sellerLivesAtProperty": {
|
|
593
|
+
"baspiRef": "B6.1",
|
|
594
|
+
"RDSRef": "Property/Flags",
|
|
595
|
+
"lawSocietyRef": "TA6/11.1",
|
|
596
|
+
"title": "Does the seller live at the property?",
|
|
597
|
+
"$ref": "#/$defs/yesNo"
|
|
598
|
+
},
|
|
599
|
+
"otherOver17sAtProperty": {
|
|
600
|
+
"baspiRef": "B6.2",
|
|
601
|
+
"RDSRef": "Participants",
|
|
602
|
+
"lawSocietyRef": "TA6/11.3",
|
|
603
|
+
"title": "Please specify the full names and ages of anyone aged over 17, other than the owner(s), who live at the property?",
|
|
604
|
+
"type": "array",
|
|
605
|
+
"items": {
|
|
164
606
|
"type": "object",
|
|
165
607
|
"properties": {
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
"RDSRef": "Tenure/Boundaries",
|
|
169
|
-
"lawSocietyRef": "TA6/1.1a",
|
|
170
|
-
"title": "On the left",
|
|
171
|
-
"type": "string",
|
|
172
|
-
"enum": ["Seller", "Shared", "Next-door neighbour"]
|
|
173
|
-
},
|
|
174
|
-
"right": {
|
|
175
|
-
"baspiRef": "B2.1.2",
|
|
176
|
-
"RDSRef": "Tenure/Boundaries",
|
|
177
|
-
"lawSocietyRef": "TA6/1.1b",
|
|
178
|
-
"title": "On the right",
|
|
608
|
+
"firstName": {
|
|
609
|
+
"title": "First Name",
|
|
179
610
|
"type": "string",
|
|
180
|
-
"
|
|
611
|
+
"minLength": 1
|
|
181
612
|
},
|
|
182
|
-
"
|
|
183
|
-
"
|
|
184
|
-
"
|
|
185
|
-
"lawSocietyRef": "TA6/1.1c",
|
|
186
|
-
"title": "At the rear",
|
|
187
|
-
"type": "string",
|
|
188
|
-
"enum": ["Seller", "Shared", "Next-door neighbour"]
|
|
613
|
+
"middleNames": {
|
|
614
|
+
"title": "Middle name(s) if any",
|
|
615
|
+
"type": "string"
|
|
189
616
|
},
|
|
190
|
-
"
|
|
191
|
-
"
|
|
192
|
-
"RDSRef": "Tenure/Boundaries",
|
|
193
|
-
"lawSocietyRef": "TA6/1.1d",
|
|
194
|
-
"title": "At the front",
|
|
617
|
+
"lastName": {
|
|
618
|
+
"title": "LastName",
|
|
195
619
|
"type": "string",
|
|
196
|
-
"
|
|
620
|
+
"minLength": 1
|
|
197
621
|
},
|
|
198
|
-
"
|
|
199
|
-
"
|
|
200
|
-
"
|
|
201
|
-
"lawSocietyRef": "TA6/1.2",
|
|
202
|
-
"title": "Are the boundaries uniform?",
|
|
203
|
-
"$ref": "#/$defs/yesNoDetailIfNo",
|
|
204
|
-
"description": "If no, please indicate ownership or those you have repaired by written description or marking them on a plan of the property"
|
|
622
|
+
"age": {
|
|
623
|
+
"title": "Age",
|
|
624
|
+
"type": "integer"
|
|
205
625
|
}
|
|
206
626
|
},
|
|
207
|
-
"required": ["
|
|
208
|
-
},
|
|
209
|
-
"haveBoundaryFeaturesMoved": {
|
|
210
|
-
"baspiRef": "B2.2",
|
|
211
|
-
"RDSRef": "Tenure/Boundaries",
|
|
212
|
-
"lawSocietyRef": "TA6/1.3",
|
|
213
|
-
"title": "Has any boundary features been moved during your ownership or in the last 10 years, to your knowledge?",
|
|
214
|
-
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
215
|
-
},
|
|
216
|
-
"adjacentLandIncluded": {
|
|
217
|
-
"baspiRef": "B2.3",
|
|
218
|
-
"RDSRef": "Property/Flags,Property/GUID/name='UPRN'&id=?",
|
|
219
|
-
"lawSocietyRef": "TA6/1.4",
|
|
220
|
-
"title": "Has any adjacent land or property been purchased by you that will be included in the sale?",
|
|
221
|
-
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
222
|
-
},
|
|
223
|
-
"titlePlanAccurate": {
|
|
224
|
-
"baspiRef": "B2.4",
|
|
225
|
-
"RDSRef": "Tenure/BoundaryDifferences,Tenure/CadastralMapOfParcels",
|
|
226
|
-
"title": "Does the title plan for the property accurately show the extent of the land and property which you are selling?",
|
|
227
|
-
"$ref": "#/$defs/yesNoDetailIfNo"
|
|
228
|
-
},
|
|
229
|
-
"flyingFreehold": {
|
|
230
|
-
"baspiRef": "B2.5",
|
|
231
|
-
"RDSRef": "Tenure/tenure=?",
|
|
232
|
-
"lawSocietyRef": "TA6/1.5",
|
|
233
|
-
"title": "Is there a flying freehold?",
|
|
234
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
235
|
-
"description": "NOTE: a flying freehold is when part of the property overhangs a neighbour’s property or an accessway – eg a terrace house where part of the upstairs is over an accessway which belongs to someone else."
|
|
627
|
+
"required": ["firstName", "lastName", "age"]
|
|
236
628
|
}
|
|
629
|
+
},
|
|
630
|
+
"over17sWillSignToConfirmWillVacate": {
|
|
631
|
+
"baspiRef": "B6.4",
|
|
632
|
+
"RDSRef": "RightsHolders,TenureAgreements,Notifications",
|
|
633
|
+
"lawSocietyRef": "TA6/11.5",
|
|
634
|
+
"title": "Have all occupiers aged over 17, agreed to sign the contract to confirm that they will vacate the property prior to completion of the sale?",
|
|
635
|
+
"$ref": "#/$defs/yesNoDetailIfNo",
|
|
636
|
+
"description": "If 'No', please provide details (e.g. the property is sold let to tenants) and supply a copy of the tenancy agreement together with a copy of any notice to quit which has been served upon them."
|
|
237
637
|
}
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
"
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
638
|
+
}
|
|
639
|
+
},
|
|
640
|
+
"completionAndMoving": {
|
|
641
|
+
"baspiRef": "B7",
|
|
642
|
+
"title": "Completion and Moving",
|
|
643
|
+
"type": "object",
|
|
644
|
+
"required": [
|
|
645
|
+
"willRemoveAllRubbish",
|
|
646
|
+
"otherPropertyInChain",
|
|
647
|
+
"moveRestrictionDates"
|
|
648
|
+
],
|
|
649
|
+
"properties": {
|
|
650
|
+
"willRemoveAllRubbish": {
|
|
651
|
+
"baspiRef": "B7.1",
|
|
652
|
+
"RDSRef": "RightsHolders/Flags",
|
|
653
|
+
"lawSocietyRef": "TA6/14.4",
|
|
654
|
+
"title": "Please confirm that on completion you will remove all rubbish and items not included in the sale from the property including its garden, loft and any sheds or outbuildings.",
|
|
655
|
+
"description": "When the property is cleared out you will be expected to take reasonable care when clearing the property, leaving it clean and tidy and repairing any damage caused when removing items from the property and making safe any light or electrical fittings which are being removed.\n\nKeys for all door and window locks, along with any alarm codes, should be available for the buyer on the day of completion. If there is any reason why you cannot do this you should let the estate agent and your property lawyer know. For all internet connected services eg doorbells, boiler controls, burglar alarms, CCTV cameras etc) access to them will need to be provided to the buyer on the day of completion so that they can control them or sign up to the service. If there is any reason why you cannot do this you should let the estate agent and your property lawyer know.",
|
|
656
|
+
"type": "boolean",
|
|
657
|
+
"const": true
|
|
658
|
+
},
|
|
659
|
+
"otherPropertyInChain": {
|
|
660
|
+
"baspiRef": "B7.2",
|
|
661
|
+
"RDSRef": "RightsHolders/Flags",
|
|
662
|
+
"lawSocietyRef": "TA6/14.1",
|
|
663
|
+
"title": "Will you need the purchase, sale or remortgage of another property to co-ordinate with the sale of this property?",
|
|
664
|
+
"type": "object",
|
|
665
|
+
"properties": {
|
|
666
|
+
"yesNo": {
|
|
667
|
+
"type": "string",
|
|
668
|
+
"title": "",
|
|
669
|
+
"enum": ["Yes", "No"]
|
|
670
|
+
}
|
|
262
671
|
},
|
|
263
|
-
"
|
|
264
|
-
|
|
265
|
-
"
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
672
|
+
"required": ["yesNo"],
|
|
673
|
+
"dependencies": {
|
|
674
|
+
"yesNo": {
|
|
675
|
+
"oneOf": [
|
|
676
|
+
{
|
|
677
|
+
"properties": {
|
|
678
|
+
"yesNo": {
|
|
679
|
+
"enum": ["No"]
|
|
680
|
+
}
|
|
681
|
+
},
|
|
682
|
+
"additionalProperties": false
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"properties": {
|
|
686
|
+
"yesNo": {
|
|
687
|
+
"enum": ["Yes"]
|
|
688
|
+
},
|
|
689
|
+
"propertyDependencyType": {
|
|
690
|
+
"type": "string",
|
|
691
|
+
"enum": ["Sale", "Purchase", "Remortgage"]
|
|
692
|
+
},
|
|
693
|
+
"dependentPropertyAddress": {
|
|
694
|
+
"title": "Address",
|
|
695
|
+
"$ref": "#/$defs/address"
|
|
696
|
+
}
|
|
697
|
+
},
|
|
698
|
+
"required": [
|
|
699
|
+
"propertyDependencyType",
|
|
700
|
+
"dependentPropertyAddress"
|
|
701
|
+
]
|
|
702
|
+
}
|
|
703
|
+
]
|
|
704
|
+
}
|
|
269
705
|
}
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
"
|
|
278
|
-
"
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
"properties": {
|
|
285
|
-
"testedByQualifiedElectrician": {
|
|
286
|
-
"baspiRef": "B4.1",
|
|
287
|
-
"RDSRef": "Objects/Servicing",
|
|
288
|
-
"lawSocietyRef": "TA6/12.1",
|
|
289
|
-
"title": "Please confirm the year that the electrics at the property were last tested by a qualified electrician.",
|
|
290
|
-
"type": "string",
|
|
291
|
-
"enum": ["Date", "N/A"],
|
|
292
|
-
"description": "If you have not had them tested then select N/A"
|
|
293
|
-
},
|
|
294
|
-
"electricalWorkSince2005": {
|
|
295
|
-
"baspiRef": "B4.2",
|
|
296
|
-
"RDSRef": "WorksAlterationsChanges/Consent,WorksAlterationsChanges/Consent/Certificates",
|
|
297
|
-
"lawSocietyRef": "TA6/12.2",
|
|
298
|
-
"title": "Since 1st January 2005, has any electrical work been carried out to the property?",
|
|
299
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
300
|
-
"description": "If yes, please provide details and supply the signed Electrical Safety Certificate (BS7671) and Building Regulations Compliance Certificate (or equivalent)"
|
|
706
|
+
},
|
|
707
|
+
"moveRestrictionDates": {
|
|
708
|
+
"baspiRef": "B7.3",
|
|
709
|
+
"RDSRef": "RightsHolders/Text",
|
|
710
|
+
"lawSocietyRef": "TA6/14.2",
|
|
711
|
+
"title": "Are there any dates on which you cannot move? [Note: 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.]",
|
|
712
|
+
"description": "If yes, please give details of dates on which the seller cannot complete/move [Note: you do not need to be physically present on the day of Completion so long as the property is cleared]. Note: Timescales to completion vary depending on the complexity of the transaction, length of the chain and requirements of the people involved.",
|
|
713
|
+
"type": "object",
|
|
714
|
+
"properties": {
|
|
715
|
+
"yesNo": {
|
|
716
|
+
"type": "string",
|
|
717
|
+
"title": "",
|
|
718
|
+
"enum": ["No", "Yes"]
|
|
719
|
+
}
|
|
301
720
|
},
|
|
302
|
-
"
|
|
303
|
-
|
|
304
|
-
"
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
"title": "Are there solar or photovoltaic panels installed at the property?",
|
|
311
|
-
"type": "string",
|
|
312
|
-
"enum": ["Yes", "No"]
|
|
313
|
-
}
|
|
314
|
-
},
|
|
315
|
-
"dependencies": {
|
|
316
|
-
"hasSolarPanels": {
|
|
317
|
-
"oneOf": [
|
|
318
|
-
{
|
|
319
|
-
"properties": {
|
|
320
|
-
"hasSolarPanels": {
|
|
321
|
-
"enum": ["No"]
|
|
322
|
-
}
|
|
721
|
+
"required": ["yesNo"],
|
|
722
|
+
"dependencies": {
|
|
723
|
+
"yesNo": {
|
|
724
|
+
"oneOf": [
|
|
725
|
+
{
|
|
726
|
+
"properties": {
|
|
727
|
+
"yesNo": {
|
|
728
|
+
"enum": ["No"]
|
|
323
729
|
}
|
|
324
730
|
},
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
"
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
},
|
|
336
|
-
"panelsOwnedOutright": {
|
|
337
|
-
"baspiRef": "",
|
|
338
|
-
"RDSRef": "Objects/Ownership",
|
|
339
|
-
"title": "Do you own the panels, and all equipment related to them, outright?",
|
|
340
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
341
|
-
"description": "If yes, provide details of who owns them and the relevant documentation"
|
|
342
|
-
},
|
|
343
|
-
"panelProviderLease": {
|
|
344
|
-
"baspiRef": "B4.3.2",
|
|
345
|
-
"RDSRef": "Objects/Ownership",
|
|
346
|
-
"title": "Is there an existing long lease of the roof/air space granted to a panel provider?",
|
|
347
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
348
|
-
"description": "If yes, please supply copies of the relevant documents and the name of the provider"
|
|
349
|
-
},
|
|
350
|
-
"lastMaintained": {
|
|
351
|
-
"baspiRef": "B4.3.4",
|
|
352
|
-
"RDSRef": "Objects/Servicing",
|
|
353
|
-
"title": "When was the system last maintained or serviced?",
|
|
731
|
+
"additionalProperties": false
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"properties": {
|
|
735
|
+
"yesNo": {
|
|
736
|
+
"enum": ["Yes"]
|
|
737
|
+
},
|
|
738
|
+
"restrictedDates": {
|
|
739
|
+
"type": "array",
|
|
740
|
+
"items": {
|
|
354
741
|
"type": "string",
|
|
355
742
|
"format": "date"
|
|
356
|
-
},
|
|
357
|
-
"inGoodWorkingOrder": {
|
|
358
|
-
"baspiRef": "B4.3.5",
|
|
359
|
-
"RDSRef": "Objects/isNotWorking=yes|no|true|false",
|
|
360
|
-
"title": "Is the system in good working order to your satisfaction?",
|
|
361
|
-
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
362
|
-
},
|
|
363
|
-
"isConnectedToNationalGrid": {
|
|
364
|
-
"baspiRef": "B4.3.6",
|
|
365
|
-
"RDSRef": "Objects/isExternallyConnected=yes|no|true|false,Connection,Objects/ExternalConnection",
|
|
366
|
-
"title": "Is the system connected to the National Grid e.g. for feed-in tariffs",
|
|
367
|
-
"$ref": "#/$defs/yesNo"
|
|
368
743
|
}
|
|
369
744
|
}
|
|
370
|
-
}
|
|
371
|
-
]
|
|
372
|
-
}
|
|
373
|
-
}
|
|
374
|
-
},
|
|
375
|
-
"electricityMeterLocation": {
|
|
376
|
-
"baspiRef": "B4.4",
|
|
377
|
-
"RDSRef": "Objects/class='meters|'&access=?&accessLocation=?",
|
|
378
|
-
"title": "Please describe, or attach a photograph of, the location of any electricity meter (if any)",
|
|
379
|
-
"type": "string"
|
|
380
|
-
},
|
|
381
|
-
"gasMeterLocation": {
|
|
382
|
-
"baspiRef": "B4.5",
|
|
383
|
-
"RDSRef": "Objects/class='meters'&access=?&accessLocation=?",
|
|
384
|
-
"title": "Please describe, or attach a photograph of, the location of any gas meter (if any)",
|
|
385
|
-
"type": "string"
|
|
386
|
-
},
|
|
387
|
-
"stopcockAndWaterMeterLocation": {
|
|
388
|
-
"baspiRef": "B4.6",
|
|
389
|
-
"RDSRef": "Objects/class='meters|valve|stopcock'&access=?&accessLocation=?",
|
|
390
|
-
"title": "Please describe, or attach a photograph of, the location of the stopcock and water meter (if any)",
|
|
391
|
-
"type": "string"
|
|
392
|
-
}
|
|
393
|
-
}
|
|
394
|
-
},
|
|
395
|
-
"guaranteesWarrantiesAndIndemnityInsurances": {
|
|
396
|
-
"baspiRef": "B5",
|
|
397
|
-
"title": "Guarantees, Warranties and Indemnity Insurances",
|
|
398
|
-
"type": "object",
|
|
399
|
-
"required": ["hasValidGuaranteesOrWarranties"],
|
|
400
|
-
"properties": {
|
|
401
|
-
"hasValidGuaranteesOrWarranties": {
|
|
402
|
-
"baspiRef": "B5.1",
|
|
403
|
-
"RDSRef": "Certificates",
|
|
404
|
-
"title": "Are there any valid guarantees or warranties relating to this property?",
|
|
405
|
-
"type": "string",
|
|
406
|
-
"enum": ["Yes", "No"]
|
|
407
|
-
}
|
|
408
|
-
},
|
|
409
|
-
"dependencies": {
|
|
410
|
-
"hasValidGuaranteesOrWarranties": {
|
|
411
|
-
"oneOf": [
|
|
412
|
-
{
|
|
413
|
-
"properties": {
|
|
414
|
-
"hasValidGuaranteesOrWarranties": {
|
|
415
|
-
"enum": ["No"]
|
|
416
|
-
}
|
|
417
|
-
}
|
|
418
|
-
},
|
|
419
|
-
{
|
|
420
|
-
"properties": {
|
|
421
|
-
"hasValidGuaranteesOrWarranties": {
|
|
422
|
-
"enum": ["Yes"]
|
|
423
|
-
},
|
|
424
|
-
"newHomeWarranty": {
|
|
425
|
-
"baspiRef": "B5.1.1",
|
|
426
|
-
"RDSRef": "Certificates",
|
|
427
|
-
"lawSocietyRef": "TA6/5.1a",
|
|
428
|
-
"title": "New Home Warranty",
|
|
429
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
430
|
-
"description": "If yes, please confirm the name of the warranty provider and the date of the warranty:"
|
|
431
|
-
},
|
|
432
|
-
"roofingWork": {
|
|
433
|
-
"baspiRef": "B5.1.2",
|
|
434
|
-
"RDSRef": "Certificates",
|
|
435
|
-
"lawSocietyRef": "TA6/5.1f",
|
|
436
|
-
"title": "Roofing work",
|
|
437
|
-
"$ref": "#/$defs/yesNo"
|
|
438
|
-
},
|
|
439
|
-
"dampProofingTreatment": {
|
|
440
|
-
"baspiRef": "B5.1.3",
|
|
441
|
-
"RDSRef": "Certificates",
|
|
442
|
-
"lawSocietyRef": "TA6/5.1b",
|
|
443
|
-
"title": "Damp proofing treatment",
|
|
444
|
-
"$ref": "#/$defs/yesNo"
|
|
445
745
|
},
|
|
446
|
-
"
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
"lawSocietyRef": "TA6/5.1c",
|
|
450
|
-
"title": "Timber rot or infestation treatment",
|
|
451
|
-
"$ref": "#/$defs/yesNo"
|
|
452
|
-
},
|
|
453
|
-
"centralHeatingAndorPlumbing": {
|
|
454
|
-
"baspiRef": "B5.1.5",
|
|
455
|
-
"RDSRef": "Certificates",
|
|
456
|
-
"lawSocietyRef": "TA6/5.1g",
|
|
457
|
-
"title": "Central heating and/or plumbing",
|
|
458
|
-
"$ref": "#/$defs/yesNo"
|
|
459
|
-
},
|
|
460
|
-
"doubleGlazing": {
|
|
461
|
-
"baspiRef": "B5.1.6",
|
|
462
|
-
"RDSRef": "Certificates",
|
|
463
|
-
"lawSocietyRef": "TA6/5.1d",
|
|
464
|
-
"title": "Double glazing (windows, doors, roof lights, conservatory etc)",
|
|
465
|
-
"$ref": "#/$defs/yesNo"
|
|
466
|
-
},
|
|
467
|
-
"electricalRepairOrInstallation": {
|
|
468
|
-
"baspiRef": "B5.1.7",
|
|
469
|
-
"RDSRef": "Certificates",
|
|
470
|
-
"lawSocietyRef": "TA6/5.1e",
|
|
471
|
-
"title": "Electrical repair or installation",
|
|
472
|
-
"$ref": "#/$defs/yesNo"
|
|
473
|
-
},
|
|
474
|
-
"subsidenceWork": {
|
|
475
|
-
"baspiRef": "B5.1.8",
|
|
476
|
-
"RDSRef": "Certificates",
|
|
477
|
-
"lawSocietyRef": "TA6/5.1h",
|
|
478
|
-
"title": "Preventative work and/or remedial action relating to subsidence",
|
|
479
|
-
"$ref": "#/$defs/yesNo"
|
|
480
|
-
},
|
|
481
|
-
"solarPanels": {
|
|
482
|
-
"baspiRef": "B5.1.9",
|
|
483
|
-
"RDSRef": "Certificates",
|
|
484
|
-
"title": "Solar panels",
|
|
485
|
-
"$ref": "#/$defs/yesNo"
|
|
486
|
-
},
|
|
487
|
-
"otherGuarantees": {
|
|
488
|
-
"baspiRef": "B5.1.10",
|
|
489
|
-
"RDSRef": "Certificates",
|
|
490
|
-
"lawSocietyRef": "TA6/5.1i",
|
|
491
|
-
"title": "Other Guarantees or Warranties",
|
|
492
|
-
"$ref": "#/$defs/yesNo"
|
|
493
|
-
},
|
|
494
|
-
"willLeaveGuaranteePaperwork": {
|
|
495
|
-
"baspiRef": "B5.1.11",
|
|
496
|
-
"RDSRef": "Property/Flags",
|
|
497
|
-
"title": "Please confirm that you will leave all paperwork relating to any guarantee or warranty at the property when you move out",
|
|
498
|
-
"$ref": "#/$defs/yesNo"
|
|
499
|
-
},
|
|
500
|
-
"outstandingClaimsOrApplications": {
|
|
501
|
-
"baspiRef": "B5.2",
|
|
502
|
-
"RDSRef": "Certificates",
|
|
503
|
-
"lawSocietyRef": "TA6/5.2",
|
|
504
|
-
"title": "Are there any outstanding claims or current applications relating to any of the above?",
|
|
505
|
-
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
506
|
-
},
|
|
507
|
-
"titleDefectInsurance": {
|
|
508
|
-
"baspiRef": "B5.3",
|
|
509
|
-
"RDSRef": "Certificates",
|
|
510
|
-
"title": "Do you have any title defect insurance policies e.g. for breach of planning permission, buildings regulations, restrictions, chancel repair etc",
|
|
511
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
512
|
-
"description": "If yes, please provide details and give the policy to your property lawyer"
|
|
513
|
-
}
|
|
514
|
-
},
|
|
515
|
-
"required": [
|
|
516
|
-
"newHomeWarranty",
|
|
517
|
-
"roofingWork",
|
|
518
|
-
"dampProofingTreatment",
|
|
519
|
-
"timberRotOrInfestationTreatment",
|
|
520
|
-
"centralHeatingAndorPlumbing",
|
|
521
|
-
"doubleGlazing",
|
|
522
|
-
"electricalRepairOrInstallation",
|
|
523
|
-
"subsidenceWork",
|
|
524
|
-
"solarPanels",
|
|
525
|
-
"otherGuarantees",
|
|
526
|
-
"willLeaveGuaranteePaperwork",
|
|
527
|
-
"outstandingClaimsOrApplications",
|
|
528
|
-
"titleDefectInsurance"
|
|
529
|
-
]
|
|
530
|
-
}
|
|
531
|
-
]
|
|
532
|
-
}
|
|
533
|
-
}
|
|
534
|
-
},
|
|
535
|
-
"occupiers": {
|
|
536
|
-
"baspiRef": "B6",
|
|
537
|
-
"title": "Occupiers",
|
|
538
|
-
"type": "object",
|
|
539
|
-
"required": [
|
|
540
|
-
"sellerLivesAtProperty",
|
|
541
|
-
"otherOver17sAtProperty",
|
|
542
|
-
"over17sWillSignToConfirmWillVacate"
|
|
543
|
-
],
|
|
544
|
-
"properties": {
|
|
545
|
-
"sellerLivesAtProperty": {
|
|
546
|
-
"baspiRef": "B6.1",
|
|
547
|
-
"RDSRef": "Property/Flags",
|
|
548
|
-
"lawSocietyRef": "TA6/11.1",
|
|
549
|
-
"title": "Does the seller live at the property?",
|
|
550
|
-
"$ref": "#/$defs/yesNo"
|
|
551
|
-
},
|
|
552
|
-
"otherOver17sAtProperty": {
|
|
553
|
-
"baspiRef": "B6.2",
|
|
554
|
-
"RDSRef": "Participants",
|
|
555
|
-
"lawSocietyRef": "TA6/11.3",
|
|
556
|
-
"title": "Please specify the full names and ages of anyone aged over 17, other than the owner(s), who live at the property?",
|
|
557
|
-
"type": "array",
|
|
558
|
-
"items": {
|
|
559
|
-
"$ref": "#/$defs/fullNameAndAge"
|
|
746
|
+
"required": ["restrictedDates"]
|
|
747
|
+
}
|
|
748
|
+
]
|
|
560
749
|
}
|
|
561
|
-
},
|
|
562
|
-
"over17sWillSignToConfirmWillVacate": {
|
|
563
|
-
"baspiRef": "B6.4",
|
|
564
|
-
"RDSRef": "RightsHolders,TenureAgreements,Notifications",
|
|
565
|
-
"lawSocietyRef": "TA6/11.5",
|
|
566
|
-
"title": "Have all occupiers aged over 17, agreed to sign the contract to confirm that they will vacate the property prior to completion of the sale?",
|
|
567
|
-
"$ref": "#/$defs/yesNoDetailIfNo",
|
|
568
|
-
"description": "If 'No', please provide details (e.g. the property is sold let to tenants) and supply a copy of the tenancy agreement together with a copy of any notice to quit which has been served upon them."
|
|
569
|
-
}
|
|
570
|
-
}
|
|
571
|
-
},
|
|
572
|
-
"completionAndMoving": {
|
|
573
|
-
"baspiRef": "B7",
|
|
574
|
-
"title": "Completion and Moving",
|
|
575
|
-
"type": "object",
|
|
576
|
-
"required": [
|
|
577
|
-
"willRemoveAllRubbish",
|
|
578
|
-
"otherPropertyInChain",
|
|
579
|
-
"moveRestrictionDates"
|
|
580
|
-
],
|
|
581
|
-
"properties": {
|
|
582
|
-
"willRemoveAllRubbish": {
|
|
583
|
-
"baspiRef": "B7.1",
|
|
584
|
-
"RDSRef": "RightsHolders/Flags",
|
|
585
|
-
"lawSocietyRef": "TA6/14.4",
|
|
586
|
-
"title": "Please confirm that on completion you will remove all rubbish and items not included in the sale from the property including its garden, loft and any sheds or outbuildings.",
|
|
587
|
-
"description": "When the property is cleared out you will be expected to take reasonable care when clearing the property, leaving it clean and tidy and repairing any damage caused when removing items from the property and making safe any light or electrical fittings which are being removed.\n\nKeys for all door and window locks, along with any alarm codes, should be available for the buyer on the day of completion. If there is any reason why you cannot do this you should let the estate agent and your property lawyer know. For all internet connected services eg doorbells, boiler controls, burglar alarms, CCTV cameras etc) access to them will need to be provided to the buyer on the day of completion so that they can control them or sign up to the service. If there is any reason why you cannot do this you should let the estate agent and your property lawyer know.",
|
|
588
|
-
"type": "boolean",
|
|
589
|
-
"const": true
|
|
590
|
-
},
|
|
591
|
-
"otherPropertyInChain": {
|
|
592
|
-
"baspiRef": "B7.2",
|
|
593
|
-
"RDSRef": "RightsHolders/Flags",
|
|
594
|
-
"lawSocietyRef": "TA6/14.1",
|
|
595
|
-
"title": "Will you need the purchase, sale or remortgage of another property to co-ordinate with the sale of this property?",
|
|
596
|
-
"$ref": "#/$defs/yesNoDetailIfYes"
|
|
597
|
-
},
|
|
598
|
-
"moveRestrictionDates": {
|
|
599
|
-
"baspiRef": "B7.3",
|
|
600
|
-
"RDSRef": "RightsHolders/Text",
|
|
601
|
-
"lawSocietyRef": "TA6/14.2",
|
|
602
|
-
"title": "Are there any dates on which you cannot move? [Note: 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.]",
|
|
603
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
604
|
-
"description": "If yes, please give details of dates on which the seller cannot complete/move [Note: you do not need to be physically present on the day of Completion so long as the property is cleared]. Note: Timescales to completion vary depending on the complexity of the transaction, length of the chain and requirements of the people involved."
|
|
605
750
|
}
|
|
606
751
|
}
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
752
|
+
}
|
|
753
|
+
},
|
|
754
|
+
"confirmationOfAccuracyByOwners": {
|
|
755
|
+
"baspiRef": "B8",
|
|
756
|
+
"title": "Confirmation to be supplied by all owners or their representative",
|
|
757
|
+
"type": "object",
|
|
758
|
+
"required": [
|
|
759
|
+
"confirmWillProvideAdditionalDocumentation",
|
|
760
|
+
"confirmInformationIsAccurate"
|
|
761
|
+
],
|
|
762
|
+
"properties": {
|
|
763
|
+
"confirmWillProvideAdditionalDocumentation": {
|
|
764
|
+
"baspiRef": "B8.1",
|
|
765
|
+
"title": "I/we will provide my property lawyer with the additional documentation in support of the information supplied.",
|
|
766
|
+
"type": "boolean",
|
|
767
|
+
"const": true
|
|
768
|
+
},
|
|
769
|
+
"confirmInformationIsAccurate": {
|
|
770
|
+
"baspiRef": "B8.2",
|
|
771
|
+
"title": "I/we confirm that all information provided is accurate to the best of our knowledge and if we become aware of any change to/changes which alter the information supplied/provided prior to exchange of contracts for the sale of the property, I/we will update immediately notify the person marketing the property as well as my/our property lawyer. All sellers should sign this form",
|
|
772
|
+
"type": "boolean",
|
|
773
|
+
"const": true
|
|
629
774
|
}
|
|
630
775
|
}
|
|
631
776
|
},
|
|
@@ -780,30 +925,6 @@
|
|
|
780
925
|
}
|
|
781
926
|
},
|
|
782
927
|
"required": ["address1", "postcode"]
|
|
783
|
-
},
|
|
784
|
-
"fullNameAndAge": {
|
|
785
|
-
"type": "object",
|
|
786
|
-
"properties": {
|
|
787
|
-
"firstName": {
|
|
788
|
-
"title": "First Name",
|
|
789
|
-
"type": "string",
|
|
790
|
-
"minLength": 1
|
|
791
|
-
},
|
|
792
|
-
"middleNames": {
|
|
793
|
-
"title": "Middle name(s) if any",
|
|
794
|
-
"type": "string"
|
|
795
|
-
},
|
|
796
|
-
"lastName": {
|
|
797
|
-
"title": "LastName",
|
|
798
|
-
"type": "string",
|
|
799
|
-
"minLength": 1
|
|
800
|
-
},
|
|
801
|
-
"age": {
|
|
802
|
-
"title": "Age",
|
|
803
|
-
"type": "integer"
|
|
804
|
-
}
|
|
805
|
-
},
|
|
806
|
-
"required": ["firstName", "lastName", "age"]
|
|
807
928
|
}
|
|
808
929
|
}
|
|
809
930
|
}
|