@pdtf/schemas 3.0.0-2 → 3.0.0-21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +15 -13
- package/package.json +1 -1
- package/src/examples/v3/exampleTransaction.json +82 -75
- package/src/schemas/v2/overlays/baspi.json +510 -2331
- package/src/schemas/v2/overlays/con29DW.json +36 -125
- package/src/schemas/v2/overlays/con29R.json +5 -143
- package/src/schemas/v2/overlays/fme1.json +48 -233
- package/src/schemas/v2/overlays/lpe1.json +75 -367
- package/src/schemas/v2/overlays/nts.json +17 -103
- package/src/schemas/v2/overlays/piq.json +146 -693
- package/src/schemas/v2/overlays/rds.json +50 -316
- package/src/schemas/v2/overlays/ta10.json +540 -1755
- package/src/schemas/v2/overlays/ta6.json +241 -1193
- package/src/schemas/v2/overlays/ta7.json +106 -440
- package/src/schemas/v3/combined.json +2434 -2581
- package/src/schemas/v3/overlays/baspi.json +1360 -3480
- package/src/schemas/v3/overlays/con29DW.json +36 -125
- package/src/schemas/v3/overlays/con29R.json +5 -143
- package/src/schemas/v3/overlays/fme1.json +53 -233
- package/src/schemas/v3/overlays/lpe1.json +85 -367
- package/src/schemas/v3/overlays/nts.json +711 -634
- package/src/schemas/v3/overlays/piq.json +452 -1190
- package/src/schemas/v3/overlays/rds.json +500 -1059
- package/src/schemas/v3/overlays/ta10.json +540 -1755
- package/src/schemas/v3/overlays/ta6.json +787 -1678
- package/src/schemas/v3/overlays/ta7.json +220 -462
- package/src/schemas/v3/pdtf-transaction.json +1976 -2286
- package/src/schemas/v3/skeleton.json +248 -214
- package/src/tests/v3/transactionSchema.test.js +28 -18
- package/src/tests/v3/verifiedClaimsValidator.test.js +2 -2
- package/src/utils/extractOverlay.js +5 -27
- package/src/tests/v2/transactionSchema.test.js +0 -361
- package/src/tests/v2/verifiedClaimsValidator.test.js +0 -128
|
@@ -8,57 +8,52 @@
|
|
|
8
8
|
"properties": {
|
|
9
9
|
"address": {
|
|
10
10
|
"ta7Ref": "0.1",
|
|
11
|
-
"title": "Property Address",
|
|
12
11
|
"properties": {
|
|
13
12
|
"line1": {
|
|
14
|
-
"ta7Ref": "0.1.1"
|
|
15
|
-
"title": "Address line 1"
|
|
13
|
+
"ta7Ref": "0.1.1"
|
|
16
14
|
},
|
|
17
15
|
"line2": {
|
|
18
|
-
"ta7Ref": "0.1.2"
|
|
19
|
-
"title": "Address line 2"
|
|
16
|
+
"ta7Ref": "0.1.2"
|
|
20
17
|
},
|
|
21
18
|
"line3": {
|
|
22
|
-
"ta7Ref": "0.1.3"
|
|
23
|
-
"title": "Address line 3"
|
|
19
|
+
"ta7Ref": "0.1.3"
|
|
24
20
|
},
|
|
25
21
|
"town": {
|
|
26
|
-
"ta7Ref": "0.1.4"
|
|
27
|
-
"title": "Town"
|
|
22
|
+
"ta7Ref": "0.1.4"
|
|
28
23
|
},
|
|
29
24
|
"postcode": {
|
|
30
|
-
"ta7Ref": "0.1.5"
|
|
31
|
-
"title": "Postcode"
|
|
25
|
+
"ta7Ref": "0.1.5"
|
|
32
26
|
}
|
|
33
27
|
}
|
|
34
28
|
},
|
|
35
29
|
"ownership": {
|
|
36
30
|
"ta7Ref": "1",
|
|
37
|
-
"title": "Ownership",
|
|
38
31
|
"properties": {
|
|
39
32
|
"ownershipsToBeTransferred": {
|
|
40
33
|
"ta7Ref": "1",
|
|
41
|
-
"title": "Ownerships to be transferred on sale",
|
|
42
|
-
"minItems": 1,
|
|
43
34
|
"items": {
|
|
44
|
-
"
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"title": "What type of ownership is the property?",
|
|
48
|
-
"description": "A Managed Freehold is any freehold where there are shared amenities, the maintenance of which you pay for through an estate rentcharge, service charge, informal or formal contribution. Choose Leasehold if your property is under a Shared Ownership arrangement.",
|
|
49
|
-
"enum": [
|
|
50
|
-
"Freehold",
|
|
51
|
-
"Managed Freehold",
|
|
52
|
-
"Commonhold",
|
|
53
|
-
"Leasehold",
|
|
54
|
-
"Other"
|
|
55
|
-
]
|
|
56
|
-
}
|
|
35
|
+
"ta7Ref": "1",
|
|
36
|
+
"discriminator": {
|
|
37
|
+
"propertyName": "ownershipType"
|
|
57
38
|
},
|
|
58
39
|
"oneOf": [
|
|
59
|
-
null,
|
|
60
40
|
{
|
|
61
41
|
"properties": {
|
|
42
|
+
"ownershipType": {
|
|
43
|
+
"enum": [
|
|
44
|
+
"Freehold"
|
|
45
|
+
]
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"properties": {
|
|
51
|
+
"ownershipType": {
|
|
52
|
+
"enum": [
|
|
53
|
+
"Managed Freehold",
|
|
54
|
+
"Commonhold"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
62
57
|
"managedFreeholdOrCommonholdInformation": {
|
|
63
58
|
"properties": {
|
|
64
59
|
"contactDetails": {
|
|
@@ -69,40 +64,32 @@
|
|
|
69
64
|
"ta7Ref": "4.1b",
|
|
70
65
|
"properties": {
|
|
71
66
|
"nameOrOrganisation": {
|
|
72
|
-
"ta7Ref": "4.1b.1"
|
|
73
|
-
"title": "Name or organisation"
|
|
67
|
+
"ta7Ref": "4.1b.1"
|
|
74
68
|
},
|
|
75
69
|
"address": {
|
|
76
70
|
"properties": {
|
|
77
71
|
"line1": {
|
|
78
|
-
"ta7Ref": "4.1b.2"
|
|
79
|
-
"title": "Address line 1"
|
|
72
|
+
"ta7Ref": "4.1b.2"
|
|
80
73
|
},
|
|
81
74
|
"line2": {
|
|
82
|
-
"ta7Ref": "4.1b.3"
|
|
83
|
-
"title": "Address line 2"
|
|
75
|
+
"ta7Ref": "4.1b.3"
|
|
84
76
|
},
|
|
85
77
|
"line3": {
|
|
86
|
-
"ta7Ref": "4.1b.4"
|
|
87
|
-
"title": "Address line 3"
|
|
78
|
+
"ta7Ref": "4.1b.4"
|
|
88
79
|
},
|
|
89
80
|
"town": {
|
|
90
|
-
"ta7Ref": "4.1b.5"
|
|
91
|
-
"title": "Town"
|
|
81
|
+
"ta7Ref": "4.1b.5"
|
|
92
82
|
},
|
|
93
83
|
"postcode": {
|
|
94
|
-
"ta7Ref": "4.1b.6"
|
|
95
|
-
"title": "Postcode"
|
|
84
|
+
"ta7Ref": "4.1b.6"
|
|
96
85
|
}
|
|
97
86
|
}
|
|
98
87
|
},
|
|
99
88
|
"telephone": {
|
|
100
|
-
"ta7Ref": "4.1b.7"
|
|
101
|
-
"title": "Telephone"
|
|
89
|
+
"ta7Ref": "4.1b.7"
|
|
102
90
|
},
|
|
103
91
|
"emailAddress": {
|
|
104
|
-
"ta7Ref": "4.1b.8"
|
|
105
|
-
"title": "Email address"
|
|
92
|
+
"ta7Ref": "4.1b.8"
|
|
106
93
|
}
|
|
107
94
|
}
|
|
108
95
|
}
|
|
@@ -114,40 +101,32 @@
|
|
|
114
101
|
"ta7Ref": "4.1c",
|
|
115
102
|
"properties": {
|
|
116
103
|
"nameOrOrganisation": {
|
|
117
|
-
"ta7Ref": "4.1c.1"
|
|
118
|
-
"title": "Name or organisation"
|
|
104
|
+
"ta7Ref": "4.1c.1"
|
|
119
105
|
},
|
|
120
106
|
"address": {
|
|
121
107
|
"properties": {
|
|
122
108
|
"line1": {
|
|
123
|
-
"ta7Ref": "4.1c.2"
|
|
124
|
-
"title": "Address line 1"
|
|
109
|
+
"ta7Ref": "4.1c.2"
|
|
125
110
|
},
|
|
126
111
|
"line2": {
|
|
127
|
-
"ta7Ref": "4.1c.3"
|
|
128
|
-
"title": "Address line 2"
|
|
112
|
+
"ta7Ref": "4.1c.3"
|
|
129
113
|
},
|
|
130
114
|
"line3": {
|
|
131
|
-
"ta7Ref": "4.1c.4"
|
|
132
|
-
"title": "Address line 3"
|
|
115
|
+
"ta7Ref": "4.1c.4"
|
|
133
116
|
},
|
|
134
117
|
"town": {
|
|
135
|
-
"ta7Ref": "4.1c.5"
|
|
136
|
-
"title": "Town"
|
|
118
|
+
"ta7Ref": "4.1c.5"
|
|
137
119
|
},
|
|
138
120
|
"postcode": {
|
|
139
|
-
"ta7Ref": "4.1c.6"
|
|
140
|
-
"title": "Postcode"
|
|
121
|
+
"ta7Ref": "4.1c.6"
|
|
141
122
|
}
|
|
142
123
|
}
|
|
143
124
|
},
|
|
144
125
|
"telephone": {
|
|
145
|
-
"ta7Ref": "4.1c.7"
|
|
146
|
-
"title": "Telephone"
|
|
126
|
+
"ta7Ref": "4.1c.7"
|
|
147
127
|
},
|
|
148
128
|
"emailAddress": {
|
|
149
|
-
"ta7Ref": "4.1c.8"
|
|
150
|
-
"title": "Email address"
|
|
129
|
+
"ta7Ref": "4.1c.8"
|
|
151
130
|
}
|
|
152
131
|
}
|
|
153
132
|
}
|
|
@@ -160,10 +139,12 @@
|
|
|
160
139
|
}
|
|
161
140
|
},
|
|
162
141
|
{
|
|
163
|
-
"required": [
|
|
164
|
-
"leaseholdInformation"
|
|
165
|
-
],
|
|
166
142
|
"properties": {
|
|
143
|
+
"ownershipType": {
|
|
144
|
+
"enum": [
|
|
145
|
+
"Leasehold"
|
|
146
|
+
]
|
|
147
|
+
},
|
|
167
148
|
"leaseholdInformation": {
|
|
168
149
|
"required": [
|
|
169
150
|
"typeOfLeasehold",
|
|
@@ -180,28 +161,18 @@
|
|
|
180
161
|
"typeOfLeasehold": {
|
|
181
162
|
"properties": {
|
|
182
163
|
"leaseholdType": {
|
|
183
|
-
"ta7Ref": "1.1"
|
|
184
|
-
"title": "What type of leasehold property does the seller own?",
|
|
185
|
-
"description": "‘Flat’ includes maisonette and apartment.",
|
|
186
|
-
"enum": [
|
|
187
|
-
"Flat",
|
|
188
|
-
"Shared ownership",
|
|
189
|
-
"Long leasehold house"
|
|
190
|
-
]
|
|
164
|
+
"ta7Ref": "1.1"
|
|
191
165
|
}
|
|
192
166
|
}
|
|
193
167
|
},
|
|
194
168
|
"contactDetails": {
|
|
195
169
|
"ta7Ref": "4.1",
|
|
196
|
-
"title": "Contact Details",
|
|
197
170
|
"required": [
|
|
198
171
|
"contacts"
|
|
199
172
|
],
|
|
200
173
|
"properties": {
|
|
201
174
|
"contacts": {
|
|
202
175
|
"ta7Ref": "4.1",
|
|
203
|
-
"title": "Contacts",
|
|
204
|
-
"description": "Complete the details for the relevant parties",
|
|
205
176
|
"required": [
|
|
206
177
|
"landlord",
|
|
207
178
|
"managementCompany",
|
|
@@ -210,47 +181,37 @@
|
|
|
210
181
|
"properties": {
|
|
211
182
|
"landlord": {
|
|
212
183
|
"ta7Ref": "4.1a",
|
|
213
|
-
"title": "Landlord",
|
|
214
|
-
"description": "The landlord (or freeholder) may be, for example, a private individual, a housing association, or a management company owned by the residents",
|
|
215
184
|
"properties": {
|
|
216
185
|
"contact": {
|
|
217
186
|
"ta7Ref": "4.1a",
|
|
218
187
|
"properties": {
|
|
219
188
|
"nameOrOrganisation": {
|
|
220
|
-
"ta7Ref": "4.1a.1"
|
|
221
|
-
"title": "Name or organisation"
|
|
189
|
+
"ta7Ref": "4.1a.1"
|
|
222
190
|
},
|
|
223
191
|
"address": {
|
|
224
192
|
"properties": {
|
|
225
193
|
"line1": {
|
|
226
|
-
"ta7Ref": "4.1a.2"
|
|
227
|
-
"title": "Address line 1"
|
|
194
|
+
"ta7Ref": "4.1a.2"
|
|
228
195
|
},
|
|
229
196
|
"line2": {
|
|
230
|
-
"ta7Ref": "4.1a.3"
|
|
231
|
-
"title": "Address line 2"
|
|
197
|
+
"ta7Ref": "4.1a.3"
|
|
232
198
|
},
|
|
233
199
|
"line3": {
|
|
234
|
-
"ta7Ref": "4.1a.4"
|
|
235
|
-
"title": "Address line 3"
|
|
200
|
+
"ta7Ref": "4.1a.4"
|
|
236
201
|
},
|
|
237
202
|
"town": {
|
|
238
|
-
"ta7Ref": "4.1a.5"
|
|
239
|
-
"title": "Town"
|
|
203
|
+
"ta7Ref": "4.1a.5"
|
|
240
204
|
},
|
|
241
205
|
"postcode": {
|
|
242
|
-
"ta7Ref": "4.1a.6"
|
|
243
|
-
"title": "Postcode"
|
|
206
|
+
"ta7Ref": "4.1a.6"
|
|
244
207
|
}
|
|
245
208
|
}
|
|
246
209
|
},
|
|
247
210
|
"telephone": {
|
|
248
|
-
"ta7Ref": "4.1a.7"
|
|
249
|
-
"title": "Telephone"
|
|
211
|
+
"ta7Ref": "4.1a.7"
|
|
250
212
|
},
|
|
251
213
|
"emailAddress": {
|
|
252
|
-
"ta7Ref": "4.1a.8"
|
|
253
|
-
"title": "Email address"
|
|
214
|
+
"ta7Ref": "4.1a.8"
|
|
254
215
|
}
|
|
255
216
|
}
|
|
256
217
|
}
|
|
@@ -262,40 +223,32 @@
|
|
|
262
223
|
"ta7Ref": "4.1b",
|
|
263
224
|
"properties": {
|
|
264
225
|
"nameOrOrganisation": {
|
|
265
|
-
"ta7Ref": "4.1b.1"
|
|
266
|
-
"title": "Name or organisation"
|
|
226
|
+
"ta7Ref": "4.1b.1"
|
|
267
227
|
},
|
|
268
228
|
"address": {
|
|
269
229
|
"properties": {
|
|
270
230
|
"line1": {
|
|
271
|
-
"ta7Ref": "4.1b.2"
|
|
272
|
-
"title": "Address line 1"
|
|
231
|
+
"ta7Ref": "4.1b.2"
|
|
273
232
|
},
|
|
274
233
|
"line2": {
|
|
275
|
-
"ta7Ref": "4.1b.3"
|
|
276
|
-
"title": "Address line 2"
|
|
234
|
+
"ta7Ref": "4.1b.3"
|
|
277
235
|
},
|
|
278
236
|
"line3": {
|
|
279
|
-
"ta7Ref": "4.1b.4"
|
|
280
|
-
"title": "Address line 3"
|
|
237
|
+
"ta7Ref": "4.1b.4"
|
|
281
238
|
},
|
|
282
239
|
"town": {
|
|
283
|
-
"ta7Ref": "4.1b.5"
|
|
284
|
-
"title": "Town"
|
|
240
|
+
"ta7Ref": "4.1b.5"
|
|
285
241
|
},
|
|
286
242
|
"postcode": {
|
|
287
|
-
"ta7Ref": "4.1b.6"
|
|
288
|
-
"title": "Postcode"
|
|
243
|
+
"ta7Ref": "4.1b.6"
|
|
289
244
|
}
|
|
290
245
|
}
|
|
291
246
|
},
|
|
292
247
|
"telephone": {
|
|
293
|
-
"ta7Ref": "4.1b.7"
|
|
294
|
-
"title": "Telephone"
|
|
248
|
+
"ta7Ref": "4.1b.7"
|
|
295
249
|
},
|
|
296
250
|
"emailAddress": {
|
|
297
|
-
"ta7Ref": "4.1b.8"
|
|
298
|
-
"title": "Email address"
|
|
251
|
+
"ta7Ref": "4.1b.8"
|
|
299
252
|
}
|
|
300
253
|
}
|
|
301
254
|
}
|
|
@@ -303,47 +256,37 @@
|
|
|
303
256
|
},
|
|
304
257
|
"managingAgent": {
|
|
305
258
|
"ta7Ref": "4.1c",
|
|
306
|
-
"title": "Managing Agent",
|
|
307
|
-
"description": "A managing agent may be employed by the landlord or by the tenants’ management company to collect the rent and/or manage the building.",
|
|
308
259
|
"properties": {
|
|
309
260
|
"contact": {
|
|
310
261
|
"ta7Ref": "4.1c",
|
|
311
262
|
"properties": {
|
|
312
263
|
"nameOrOrganisation": {
|
|
313
|
-
"ta7Ref": "4.1c.1"
|
|
314
|
-
"title": "Name or organisation"
|
|
264
|
+
"ta7Ref": "4.1c.1"
|
|
315
265
|
},
|
|
316
266
|
"address": {
|
|
317
267
|
"properties": {
|
|
318
268
|
"line1": {
|
|
319
|
-
"ta7Ref": "4.1c.2"
|
|
320
|
-
"title": "Address line 1"
|
|
269
|
+
"ta7Ref": "4.1c.2"
|
|
321
270
|
},
|
|
322
271
|
"line2": {
|
|
323
|
-
"ta7Ref": "4.1c.3"
|
|
324
|
-
"title": "Address line 2"
|
|
272
|
+
"ta7Ref": "4.1c.3"
|
|
325
273
|
},
|
|
326
274
|
"line3": {
|
|
327
|
-
"ta7Ref": "4.1c.4"
|
|
328
|
-
"title": "Address line 3"
|
|
275
|
+
"ta7Ref": "4.1c.4"
|
|
329
276
|
},
|
|
330
277
|
"town": {
|
|
331
|
-
"ta7Ref": "4.1c.5"
|
|
332
|
-
"title": "Town"
|
|
278
|
+
"ta7Ref": "4.1c.5"
|
|
333
279
|
},
|
|
334
280
|
"postcode": {
|
|
335
|
-
"ta7Ref": "4.1c.6"
|
|
336
|
-
"title": "Postcode"
|
|
281
|
+
"ta7Ref": "4.1c.6"
|
|
337
282
|
}
|
|
338
283
|
}
|
|
339
284
|
},
|
|
340
285
|
"telephone": {
|
|
341
|
-
"ta7Ref": "4.1c.7"
|
|
342
|
-
"title": "Telephone"
|
|
286
|
+
"ta7Ref": "4.1c.7"
|
|
343
287
|
},
|
|
344
288
|
"emailAddress": {
|
|
345
|
-
"ta7Ref": "4.1c.8"
|
|
346
|
-
"title": "Email address"
|
|
289
|
+
"ta7Ref": "4.1c.8"
|
|
347
290
|
}
|
|
348
291
|
}
|
|
349
292
|
}
|
|
@@ -354,16 +297,7 @@
|
|
|
354
297
|
"serviceContactAssignments": {
|
|
355
298
|
"properties": {
|
|
356
299
|
"organisesBuildingInsurance": {
|
|
357
|
-
"ta7Ref": "5.1"
|
|
358
|
-
"title": "Who organises and administers the buildings insurance?",
|
|
359
|
-
"enum": [
|
|
360
|
-
"Rentcharge Owner",
|
|
361
|
-
"Landlord",
|
|
362
|
-
"Management Company",
|
|
363
|
-
"Managing Agent",
|
|
364
|
-
"the Lessees",
|
|
365
|
-
"Not applicable"
|
|
366
|
-
]
|
|
300
|
+
"ta7Ref": "5.1"
|
|
367
301
|
}
|
|
368
302
|
}
|
|
369
303
|
}
|
|
@@ -377,7 +311,6 @@
|
|
|
377
311
|
"properties": {
|
|
378
312
|
"awareOfConsents": {
|
|
379
313
|
"ta7Ref": "9.3",
|
|
380
|
-
"title": "Are you aware of consent having been given to any alterations or additions to the Property?",
|
|
381
314
|
"discriminator": {
|
|
382
315
|
"propertyName": "yesNo"
|
|
383
316
|
},
|
|
@@ -401,19 +334,17 @@
|
|
|
401
334
|
}
|
|
402
335
|
}
|
|
403
336
|
],
|
|
337
|
+
"required": [
|
|
338
|
+
"yesNo"
|
|
339
|
+
],
|
|
404
340
|
"properties": {
|
|
405
341
|
"yesNo": {
|
|
406
|
-
"ta7Ref": "9.3.1"
|
|
407
|
-
"enum": [
|
|
408
|
-
"Yes",
|
|
409
|
-
"No"
|
|
410
|
-
]
|
|
342
|
+
"ta7Ref": "9.3.1"
|
|
411
343
|
}
|
|
412
344
|
}
|
|
413
345
|
},
|
|
414
346
|
"changesInTermOfLease": {
|
|
415
347
|
"ta7Ref": "7.1",
|
|
416
|
-
"title": "Is the seller aware of any changes in the terms of the lease or of the landlord giving any consents under the lease?",
|
|
417
348
|
"discriminator": {
|
|
418
349
|
"propertyName": "isSellerAwareOfChanges"
|
|
419
350
|
},
|
|
@@ -438,18 +369,19 @@
|
|
|
438
369
|
]
|
|
439
370
|
},
|
|
440
371
|
"details": {
|
|
441
|
-
"ta7Ref": "7.1.3"
|
|
442
|
-
"title": "Please supply a copy or, if not in writing, please give details:"
|
|
372
|
+
"ta7Ref": "7.1.3"
|
|
443
373
|
}
|
|
444
374
|
}
|
|
445
375
|
}
|
|
376
|
+
],
|
|
377
|
+
"required": [
|
|
378
|
+
"isSellerAwareOfChanges"
|
|
446
379
|
]
|
|
447
380
|
}
|
|
448
381
|
}
|
|
449
382
|
},
|
|
450
383
|
"groundRent": {
|
|
451
384
|
"ta7Ref": "1.2",
|
|
452
|
-
"title": "Ground Rent",
|
|
453
385
|
"discriminator": {
|
|
454
386
|
"propertyName": "isGroundRentPayable"
|
|
455
387
|
},
|
|
@@ -471,16 +403,13 @@
|
|
|
471
403
|
]
|
|
472
404
|
},
|
|
473
405
|
"annualGroundRent": {
|
|
474
|
-
"ta7Ref": "1.2a"
|
|
475
|
-
"title": "What is the annual ground rent payable? (£)"
|
|
406
|
+
"ta7Ref": "1.2a"
|
|
476
407
|
},
|
|
477
408
|
"groundRentFrequency": {
|
|
478
|
-
"ta7Ref": "1.2b"
|
|
479
|
-
"title": "How regularly is the rent paid? (e.g. annually)"
|
|
409
|
+
"ta7Ref": "1.2b"
|
|
480
410
|
},
|
|
481
411
|
"rentSubjectToIncrease": {
|
|
482
412
|
"ta7Ref": "1.2c",
|
|
483
|
-
"title": "Is the ground rent subject to increase?",
|
|
484
413
|
"discriminator": {
|
|
485
414
|
"propertyName": "yesNo"
|
|
486
415
|
},
|
|
@@ -502,24 +431,20 @@
|
|
|
502
431
|
]
|
|
503
432
|
},
|
|
504
433
|
"rentReviewFrequency": {
|
|
505
|
-
"ta7Ref": "1.2d"
|
|
506
|
-
"title": "How often is the rent reviewed?"
|
|
434
|
+
"ta7Ref": "1.2d"
|
|
507
435
|
},
|
|
508
436
|
"rentIncreaseCalculated": {
|
|
509
|
-
"ta7Ref": "1.2e"
|
|
510
|
-
"title": "How is the increase calculated?",
|
|
511
|
-
"description": "e.g. set figure, doubling, in line with Retail Price Index, Consumer Price Index, etc"
|
|
437
|
+
"ta7Ref": "1.2e"
|
|
512
438
|
}
|
|
513
439
|
}
|
|
514
440
|
}
|
|
515
441
|
],
|
|
442
|
+
"required": [
|
|
443
|
+
"yesNo"
|
|
444
|
+
],
|
|
516
445
|
"properties": {
|
|
517
446
|
"yesNo": {
|
|
518
|
-
"ta7Ref": "1.2c.1"
|
|
519
|
-
"enum": [
|
|
520
|
-
"Yes",
|
|
521
|
-
"No"
|
|
522
|
-
]
|
|
447
|
+
"ta7Ref": "1.2c.1"
|
|
523
448
|
}
|
|
524
449
|
}
|
|
525
450
|
}
|
|
@@ -531,18 +456,12 @@
|
|
|
531
456
|
],
|
|
532
457
|
"properties": {
|
|
533
458
|
"isGroundRentPayable": {
|
|
534
|
-
"ta7Ref": "1.2.1"
|
|
535
|
-
"title": "Does the seller pay ground rent for the property?",
|
|
536
|
-
"enum": [
|
|
537
|
-
"Yes",
|
|
538
|
-
"No"
|
|
539
|
-
]
|
|
459
|
+
"ta7Ref": "1.2.1"
|
|
540
460
|
}
|
|
541
461
|
}
|
|
542
462
|
},
|
|
543
463
|
"ownershipAndManagement": {
|
|
544
464
|
"ta7Ref": "2",
|
|
545
|
-
"title": "Ownership and management",
|
|
546
465
|
"required": [
|
|
547
466
|
"freeholdOwner",
|
|
548
467
|
"hasHeadlease",
|
|
@@ -552,16 +471,10 @@
|
|
|
552
471
|
],
|
|
553
472
|
"properties": {
|
|
554
473
|
"freeholdOwner": {
|
|
555
|
-
"ta7Ref": "2.1b"
|
|
556
|
-
"title": "Is the freeholder a person or a company that the tenants control?",
|
|
557
|
-
"enum": [
|
|
558
|
-
"Yes",
|
|
559
|
-
"No"
|
|
560
|
-
]
|
|
474
|
+
"ta7Ref": "2.1b"
|
|
561
475
|
},
|
|
562
476
|
"hasHeadlease": {
|
|
563
477
|
"ta7Ref": "2.2",
|
|
564
|
-
"title": "Is there a headlease?",
|
|
565
478
|
"discriminator": {
|
|
566
479
|
"propertyName": "yesNo"
|
|
567
480
|
},
|
|
@@ -583,29 +496,22 @@
|
|
|
583
496
|
]
|
|
584
497
|
},
|
|
585
498
|
"headLeaseholderControlled": {
|
|
586
|
-
"ta7Ref": "2.2.2"
|
|
587
|
-
"title": "Is the head leaseholder a person or company that is controlled by the tenants?",
|
|
588
|
-
"enum": [
|
|
589
|
-
"Yes",
|
|
590
|
-
"No"
|
|
591
|
-
]
|
|
499
|
+
"ta7Ref": "2.2.2"
|
|
592
500
|
}
|
|
593
501
|
}
|
|
594
502
|
}
|
|
595
503
|
],
|
|
504
|
+
"required": [
|
|
505
|
+
"yesNo"
|
|
506
|
+
],
|
|
596
507
|
"properties": {
|
|
597
508
|
"yesNo": {
|
|
598
|
-
"ta7Ref": "2.2.1"
|
|
599
|
-
"enum": [
|
|
600
|
-
"Yes",
|
|
601
|
-
"No"
|
|
602
|
-
]
|
|
509
|
+
"ta7Ref": "2.2.1"
|
|
603
510
|
}
|
|
604
511
|
}
|
|
605
512
|
},
|
|
606
513
|
"buildingManager": {
|
|
607
514
|
"ta7Ref": "2.3",
|
|
608
|
-
"title": "Who is responsible for managing the building?",
|
|
609
515
|
"discriminator": {
|
|
610
516
|
"propertyName": "buildingManagerType"
|
|
611
517
|
},
|
|
@@ -630,49 +536,47 @@
|
|
|
630
536
|
]
|
|
631
537
|
},
|
|
632
538
|
"details": {
|
|
633
|
-
"ta7Ref": "2.3e"
|
|
634
|
-
"title": "Please specify"
|
|
539
|
+
"ta7Ref": "2.3e"
|
|
635
540
|
}
|
|
636
541
|
}
|
|
637
542
|
}
|
|
543
|
+
],
|
|
544
|
+
"required": [
|
|
545
|
+
"buildingManagerType"
|
|
638
546
|
]
|
|
639
547
|
},
|
|
640
548
|
"hasTenantCompanyDissolved": {
|
|
641
|
-
"ta7Ref": "2.4"
|
|
642
|
-
"title": "Has any tenants’ management company been dissolved or struck off the register at Companies House?",
|
|
643
|
-
"enum": [
|
|
644
|
-
"Yes",
|
|
645
|
-
"No"
|
|
646
|
-
]
|
|
549
|
+
"ta7Ref": "2.4"
|
|
647
550
|
},
|
|
648
551
|
"isManagingAgentEmployed": {
|
|
649
|
-
"ta7Ref": "2.5"
|
|
650
|
-
"title": "Does the landlord, tenants’ management company or Right to Manage company employ a managing agent to collect rent or manage the building?",
|
|
651
|
-
"enum": [
|
|
652
|
-
"Yes",
|
|
653
|
-
"No"
|
|
654
|
-
]
|
|
552
|
+
"ta7Ref": "2.5"
|
|
655
553
|
}
|
|
656
554
|
}
|
|
657
555
|
},
|
|
658
556
|
"serviceCharge": {
|
|
659
|
-
"
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
"title": "Does the seller contribute to the cost of maintaining the building (a service charge)?",
|
|
663
|
-
"enum": [
|
|
664
|
-
"Yes",
|
|
665
|
-
"No"
|
|
666
|
-
]
|
|
667
|
-
}
|
|
557
|
+
"ta7Ref": "5.4",
|
|
558
|
+
"discriminator": {
|
|
559
|
+
"propertyName": "sellerContributesToServiceCharge"
|
|
668
560
|
},
|
|
669
561
|
"oneOf": [
|
|
670
|
-
null,
|
|
671
562
|
{
|
|
672
563
|
"properties": {
|
|
564
|
+
"sellerContributesToServiceCharge": {
|
|
565
|
+
"enum": [
|
|
566
|
+
"No"
|
|
567
|
+
]
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"properties": {
|
|
573
|
+
"sellerContributesToServiceCharge": {
|
|
574
|
+
"enum": [
|
|
575
|
+
"Yes"
|
|
576
|
+
]
|
|
577
|
+
},
|
|
673
578
|
"largeAdditionalExpense": {
|
|
674
579
|
"ta7Ref": "5.5",
|
|
675
|
-
"title": "Does the seller know of any expense (e.g. the cost of redecoration of outside or communal areas not usually incurred annually) likely to be shown in the service charge accounts within the next three years?",
|
|
676
580
|
"discriminator": {
|
|
677
581
|
"propertyName": "yesNo"
|
|
678
582
|
},
|
|
@@ -694,25 +598,22 @@
|
|
|
694
598
|
]
|
|
695
599
|
},
|
|
696
600
|
"details": {
|
|
697
|
-
"ta7Ref": "5.5.2"
|
|
698
|
-
"title": "Details"
|
|
601
|
+
"ta7Ref": "5.5.2"
|
|
699
602
|
}
|
|
700
603
|
}
|
|
701
604
|
}
|
|
702
605
|
],
|
|
606
|
+
"required": [
|
|
607
|
+
"yesNo"
|
|
608
|
+
],
|
|
703
609
|
"properties": {
|
|
704
610
|
"yesNo": {
|
|
705
|
-
"ta7Ref": "5.5.1"
|
|
706
|
-
"enum": [
|
|
707
|
-
"Yes",
|
|
708
|
-
"No"
|
|
709
|
-
]
|
|
611
|
+
"ta7Ref": "5.5.1"
|
|
710
612
|
}
|
|
711
613
|
}
|
|
712
614
|
},
|
|
713
615
|
"problemInServiceChargeLevel": {
|
|
714
616
|
"ta7Ref": "5.6",
|
|
715
|
-
"title": "Does the seller know of any problems in the last three years regarding the level of service charges or with the management?",
|
|
716
617
|
"discriminator": {
|
|
717
618
|
"propertyName": "yesNo"
|
|
718
619
|
},
|
|
@@ -734,25 +635,22 @@
|
|
|
734
635
|
]
|
|
735
636
|
},
|
|
736
637
|
"details": {
|
|
737
|
-
"ta7Ref": "5.6.2"
|
|
738
|
-
"title": "Please give details:"
|
|
638
|
+
"ta7Ref": "5.6.2"
|
|
739
639
|
}
|
|
740
640
|
}
|
|
741
641
|
}
|
|
742
642
|
],
|
|
643
|
+
"required": [
|
|
644
|
+
"yesNo"
|
|
645
|
+
],
|
|
743
646
|
"properties": {
|
|
744
647
|
"yesNo": {
|
|
745
|
-
"ta7Ref": "5.6.1"
|
|
746
|
-
"enum": [
|
|
747
|
-
"Yes",
|
|
748
|
-
"No"
|
|
749
|
-
]
|
|
648
|
+
"ta7Ref": "5.6.1"
|
|
750
649
|
}
|
|
751
650
|
}
|
|
752
651
|
},
|
|
753
652
|
"serviceChargeChallenged": {
|
|
754
653
|
"ta7Ref": "5.7",
|
|
755
|
-
"title": "Has the seller challenged the service charge or any expense in the last three years?",
|
|
756
654
|
"discriminator": {
|
|
757
655
|
"propertyName": "yesNo"
|
|
758
656
|
},
|
|
@@ -774,33 +672,25 @@
|
|
|
774
672
|
]
|
|
775
673
|
},
|
|
776
674
|
"details": {
|
|
777
|
-
"ta7Ref": "5.7.2"
|
|
778
|
-
"title": "Please give details"
|
|
675
|
+
"ta7Ref": "5.7.2"
|
|
779
676
|
}
|
|
780
677
|
}
|
|
781
678
|
}
|
|
782
679
|
],
|
|
680
|
+
"required": [
|
|
681
|
+
"yesNo"
|
|
682
|
+
],
|
|
783
683
|
"properties": {
|
|
784
684
|
"yesNo": {
|
|
785
|
-
"ta7Ref": "5.7.1"
|
|
786
|
-
"enum": [
|
|
787
|
-
"Yes",
|
|
788
|
-
"No"
|
|
789
|
-
]
|
|
685
|
+
"ta7Ref": "5.7.1"
|
|
790
686
|
}
|
|
791
687
|
}
|
|
792
688
|
},
|
|
793
689
|
"dangerousCladdingOrDefects": {
|
|
794
|
-
"ta7Ref": "5.8"
|
|
795
|
-
"title": "Does the seller know of the existence or suspected existence in the building of dangerous cladding or any other defects that create a building safety risk?",
|
|
796
|
-
"enum": [
|
|
797
|
-
"Yes",
|
|
798
|
-
"No"
|
|
799
|
-
]
|
|
690
|
+
"ta7Ref": "5.8"
|
|
800
691
|
},
|
|
801
692
|
"difficultyInCollectingServiceCharge": {
|
|
802
693
|
"ta7Ref": "5.9",
|
|
803
|
-
"title": "Is the seller aware of any difficulties encountered in collecting the service charges from other flat owners?",
|
|
804
694
|
"discriminator": {
|
|
805
695
|
"propertyName": "yesNo"
|
|
806
696
|
},
|
|
@@ -824,19 +714,17 @@
|
|
|
824
714
|
}
|
|
825
715
|
}
|
|
826
716
|
],
|
|
717
|
+
"required": [
|
|
718
|
+
"yesNo"
|
|
719
|
+
],
|
|
827
720
|
"properties": {
|
|
828
721
|
"yesNo": {
|
|
829
|
-
"ta7Ref": "5.9.1"
|
|
830
|
-
"enum": [
|
|
831
|
-
"Yes",
|
|
832
|
-
"No"
|
|
833
|
-
]
|
|
722
|
+
"ta7Ref": "5.9.1"
|
|
834
723
|
}
|
|
835
724
|
}
|
|
836
725
|
},
|
|
837
726
|
"serviceChargeOwed": {
|
|
838
727
|
"ta7Ref": "5.10",
|
|
839
|
-
"title": "Does the seller owe any service charges, rent, insurance premium or other financial contribution?",
|
|
840
728
|
"discriminator": {
|
|
841
729
|
"propertyName": "yesNo"
|
|
842
730
|
},
|
|
@@ -858,37 +746,32 @@
|
|
|
858
746
|
]
|
|
859
747
|
},
|
|
860
748
|
"details": {
|
|
861
|
-
"ta7Ref": "5.10.2"
|
|
862
|
-
"title": "Please give details"
|
|
749
|
+
"ta7Ref": "5.10.2"
|
|
863
750
|
}
|
|
864
751
|
}
|
|
865
752
|
}
|
|
866
753
|
],
|
|
754
|
+
"required": [
|
|
755
|
+
"yesNo"
|
|
756
|
+
],
|
|
867
757
|
"properties": {
|
|
868
758
|
"yesNo": {
|
|
869
|
-
"ta7Ref": "5.10.1"
|
|
870
|
-
"enum": [
|
|
871
|
-
"Yes",
|
|
872
|
-
"No"
|
|
873
|
-
]
|
|
759
|
+
"ta7Ref": "5.10.1"
|
|
874
760
|
}
|
|
875
761
|
}
|
|
876
762
|
},
|
|
877
763
|
"lastDecoratedPeriod": {
|
|
878
764
|
"properties": {
|
|
879
765
|
"internally": {
|
|
880
|
-
"ta7Ref": "5.3"
|
|
881
|
-
"title": "Internally"
|
|
766
|
+
"ta7Ref": "5.3"
|
|
882
767
|
},
|
|
883
768
|
"externally": {
|
|
884
|
-
"ta7Ref": "5.2"
|
|
885
|
-
"title": "Externally"
|
|
769
|
+
"ta7Ref": "5.2"
|
|
886
770
|
}
|
|
887
771
|
}
|
|
888
772
|
},
|
|
889
773
|
"deedOfCertificateServed": {
|
|
890
774
|
"ta7Ref": "11.3",
|
|
891
|
-
"title": "Is there a Leaseholder Deed of Certificate for the property?",
|
|
892
775
|
"discriminator": {
|
|
893
776
|
"propertyName": "yesNoNotApplicable"
|
|
894
777
|
},
|
|
@@ -919,30 +802,32 @@
|
|
|
919
802
|
]
|
|
920
803
|
},
|
|
921
804
|
"sellerCompletedDeedOfCertificate": {
|
|
922
|
-
"ta7Ref": "11.3a"
|
|
923
|
-
"title": "Did the seller (the current leaseholder) complete the deed of certificate or was it completed by a previous leaseholder?",
|
|
924
|
-
"enum": [
|
|
925
|
-
"Current leaseholder",
|
|
926
|
-
"Previous leaseholder"
|
|
927
|
-
]
|
|
805
|
+
"ta7Ref": "11.3a"
|
|
928
806
|
}
|
|
929
807
|
}
|
|
930
808
|
}
|
|
931
809
|
],
|
|
810
|
+
"required": [
|
|
811
|
+
"yesNoNotApplicable"
|
|
812
|
+
],
|
|
813
|
+
"title": "Is there a Leaseholder Deed of Certificate for the property?",
|
|
932
814
|
"properties": {
|
|
933
815
|
"yesNoNotApplicable": {
|
|
934
|
-
"ta7Ref": "11.3.1"
|
|
935
|
-
"enum": [
|
|
936
|
-
"Yes",
|
|
937
|
-
"No",
|
|
938
|
-
"Not applicable"
|
|
939
|
-
]
|
|
816
|
+
"ta7Ref": "11.3.1"
|
|
940
817
|
}
|
|
941
818
|
}
|
|
942
819
|
}
|
|
943
820
|
}
|
|
944
821
|
}
|
|
945
|
-
]
|
|
822
|
+
],
|
|
823
|
+
"required": [
|
|
824
|
+
"sellerContributesToServiceCharge"
|
|
825
|
+
],
|
|
826
|
+
"properties": {
|
|
827
|
+
"sellerContributesToServiceCharge": {
|
|
828
|
+
"ta7Ref": "5.4"
|
|
829
|
+
}
|
|
830
|
+
}
|
|
946
831
|
},
|
|
947
832
|
"disputesAndEnfranchisement": {
|
|
948
833
|
"required": [
|
|
@@ -952,7 +837,6 @@
|
|
|
952
837
|
"properties": {
|
|
953
838
|
"sellerReceivedComplaint": {
|
|
954
839
|
"ta7Ref": "8.1",
|
|
955
|
-
"title": "Has the seller received any complaint from the landlord, the management company or any neighbour about anything the seller has or has not done?",
|
|
956
840
|
"discriminator": {
|
|
957
841
|
"propertyName": "yesNo"
|
|
958
842
|
},
|
|
@@ -974,25 +858,22 @@
|
|
|
974
858
|
]
|
|
975
859
|
},
|
|
976
860
|
"details": {
|
|
977
|
-
"ta7Ref": "8.1.2"
|
|
978
|
-
"title": "Please give details"
|
|
861
|
+
"ta7Ref": "8.1.2"
|
|
979
862
|
}
|
|
980
863
|
}
|
|
981
864
|
}
|
|
982
865
|
],
|
|
866
|
+
"required": [
|
|
867
|
+
"yesNo"
|
|
868
|
+
],
|
|
983
869
|
"properties": {
|
|
984
870
|
"yesNo": {
|
|
985
|
-
"ta7Ref": "8.1.1"
|
|
986
|
-
"enum": [
|
|
987
|
-
"Yes",
|
|
988
|
-
"No"
|
|
989
|
-
]
|
|
871
|
+
"ta7Ref": "8.1.1"
|
|
990
872
|
}
|
|
991
873
|
}
|
|
992
874
|
},
|
|
993
875
|
"sellerSentComplaint": {
|
|
994
876
|
"ta7Ref": "8.2",
|
|
995
|
-
"title": "Has the seller complained or had cause to complain to or about the landlord, the management company, or any neighbour?",
|
|
996
877
|
"discriminator": {
|
|
997
878
|
"propertyName": "yesNo"
|
|
998
879
|
},
|
|
@@ -1014,19 +895,17 @@
|
|
|
1014
895
|
]
|
|
1015
896
|
},
|
|
1016
897
|
"details": {
|
|
1017
|
-
"ta7Ref": "8.2.2"
|
|
1018
|
-
"title": "Please give details"
|
|
898
|
+
"ta7Ref": "8.2.2"
|
|
1019
899
|
}
|
|
1020
900
|
}
|
|
1021
901
|
}
|
|
1022
902
|
],
|
|
903
|
+
"required": [
|
|
904
|
+
"yesNo"
|
|
905
|
+
],
|
|
1023
906
|
"properties": {
|
|
1024
907
|
"yesNo": {
|
|
1025
|
-
"ta7Ref": "8.2.1"
|
|
1026
|
-
"enum": [
|
|
1027
|
-
"Yes",
|
|
1028
|
-
"No"
|
|
1029
|
-
]
|
|
908
|
+
"ta7Ref": "8.2.1"
|
|
1030
909
|
}
|
|
1031
910
|
}
|
|
1032
911
|
}
|
|
@@ -1044,7 +923,6 @@
|
|
|
1044
923
|
"properties": {
|
|
1045
924
|
"sellerAwareOfAlterations": {
|
|
1046
925
|
"ta7Ref": "9.1",
|
|
1047
|
-
"title": "Is the seller aware of any alterations having been made to the property since the lease was originally granted?",
|
|
1048
926
|
"discriminator": {
|
|
1049
927
|
"propertyName": "yesNo"
|
|
1050
928
|
},
|
|
@@ -1066,73 +944,34 @@
|
|
|
1066
944
|
]
|
|
1067
945
|
},
|
|
1068
946
|
"details": {
|
|
1069
|
-
"ta7Ref": "9.2"
|
|
1070
|
-
"title": "Please give details of these alterations"
|
|
947
|
+
"ta7Ref": "9.2"
|
|
1071
948
|
}
|
|
1072
949
|
}
|
|
1073
950
|
}
|
|
1074
951
|
],
|
|
952
|
+
"required": [
|
|
953
|
+
"yesNo"
|
|
954
|
+
],
|
|
1075
955
|
"properties": {
|
|
1076
956
|
"yesNo": {
|
|
1077
|
-
"ta7Ref": "9.1.1"
|
|
1078
|
-
"enum": [
|
|
1079
|
-
"Yes",
|
|
1080
|
-
"No"
|
|
1081
|
-
]
|
|
957
|
+
"ta7Ref": "9.1.1"
|
|
1082
958
|
}
|
|
1083
959
|
}
|
|
1084
960
|
},
|
|
1085
961
|
"sellerOwnedProperty": {
|
|
1086
|
-
"ta7Ref": "10.1"
|
|
1087
|
-
"title": "Has the seller owned the property for at least two years?",
|
|
1088
|
-
"enum": [
|
|
1089
|
-
"Yes",
|
|
1090
|
-
"No"
|
|
1091
|
-
]
|
|
962
|
+
"ta7Ref": "10.1"
|
|
1092
963
|
},
|
|
1093
964
|
"sellerServedNoticeOnLandlord": {
|
|
1094
|
-
"ta7Ref": "10.2"
|
|
1095
|
-
"title": "Has the seller served on the landlord a formal notice stating the seller’s wish to buy the freehold or be granted an extended lease? If Yes, please supply a copy.",
|
|
1096
|
-
"enum": [
|
|
1097
|
-
"Yes",
|
|
1098
|
-
"No",
|
|
1099
|
-
"Not known",
|
|
1100
|
-
"Not required",
|
|
1101
|
-
"Attached",
|
|
1102
|
-
"To follow"
|
|
1103
|
-
]
|
|
965
|
+
"ta7Ref": "10.2"
|
|
1104
966
|
},
|
|
1105
967
|
"sellerAwareOfNoticeOfCollectivePurchase": {
|
|
1106
|
-
"ta7Ref": "10.3"
|
|
1107
|
-
"title": "Is the seller aware of the service of any notice relating to the possible collective purchase of the freehold of the building or part of it by a group of tenants? If Yes, please supply a copy.",
|
|
1108
|
-
"enum": [
|
|
1109
|
-
"Yes",
|
|
1110
|
-
"No",
|
|
1111
|
-
"Not known",
|
|
1112
|
-
"Not required",
|
|
1113
|
-
"Attached",
|
|
1114
|
-
"To follow"
|
|
1115
|
-
]
|
|
968
|
+
"ta7Ref": "10.3"
|
|
1116
969
|
},
|
|
1117
970
|
"sellerAwareOfResponse": {
|
|
1118
|
-
"ta7Ref": "10.4"
|
|
1119
|
-
"title": "Is the seller aware of any response to a notice disclosed in replies to 10.2 and 10.3 above? If Yes, please supply a copy",
|
|
1120
|
-
"enum": [
|
|
1121
|
-
"Yes",
|
|
1122
|
-
"No",
|
|
1123
|
-
"Not known",
|
|
1124
|
-
"Not required",
|
|
1125
|
-
"Attached",
|
|
1126
|
-
"To follow"
|
|
1127
|
-
]
|
|
971
|
+
"ta7Ref": "10.4"
|
|
1128
972
|
},
|
|
1129
973
|
"isLeaseQualifying": {
|
|
1130
|
-
"ta7Ref": "11.2"
|
|
1131
|
-
"title": "Is the lease of the property a qualifying lease?",
|
|
1132
|
-
"enum": [
|
|
1133
|
-
"Yes",
|
|
1134
|
-
"No"
|
|
1135
|
-
]
|
|
974
|
+
"ta7Ref": "11.2"
|
|
1136
975
|
}
|
|
1137
976
|
}
|
|
1138
977
|
},
|
|
@@ -1156,145 +995,55 @@
|
|
|
1156
995
|
],
|
|
1157
996
|
"properties": {
|
|
1158
997
|
"noticeOfSale": {
|
|
1159
|
-
"ta7Ref": "6.1"
|
|
1160
|
-
"title": "Has the seller received a notice that the landlord wants to sell the building? If Yes, please supply a copy.",
|
|
1161
|
-
"enum": [
|
|
1162
|
-
"Yes",
|
|
1163
|
-
"No",
|
|
1164
|
-
"Attached",
|
|
1165
|
-
"To follow",
|
|
1166
|
-
"Lost"
|
|
1167
|
-
]
|
|
998
|
+
"ta7Ref": "6.1"
|
|
1168
999
|
},
|
|
1169
1000
|
"noticeOfBuildingCondition": {
|
|
1170
|
-
"ta7Ref": "6.2"
|
|
1171
|
-
"title": "Has the seller received any other notice about the building, its use, its condition or its repair and maintenance? If Yes, please supply a copy.",
|
|
1172
|
-
"enum": [
|
|
1173
|
-
"Yes",
|
|
1174
|
-
"No",
|
|
1175
|
-
"Attached",
|
|
1176
|
-
"To follow",
|
|
1177
|
-
"Lost"
|
|
1178
|
-
]
|
|
1001
|
+
"ta7Ref": "6.2"
|
|
1179
1002
|
},
|
|
1180
1003
|
"landlordNotifiedOfSale": {
|
|
1181
|
-
"ta7Ref": "11.4"
|
|
1182
|
-
"title": "Has the freeholder / landlord been notified of the intention to sell?",
|
|
1183
|
-
"enum": [
|
|
1184
|
-
"Yes",
|
|
1185
|
-
"No"
|
|
1186
|
-
]
|
|
1004
|
+
"ta7Ref": "11.4"
|
|
1187
1005
|
},
|
|
1188
1006
|
"copyOfcorrespondence": {
|
|
1189
|
-
"ta7Ref": "3.2"
|
|
1190
|
-
"title": "Please supply a copy of any correspondence from the landlord, any management company and any managing agent.",
|
|
1191
|
-
"enum": [
|
|
1192
|
-
"Attached",
|
|
1193
|
-
"To follow"
|
|
1194
|
-
]
|
|
1007
|
+
"ta7Ref": "3.2"
|
|
1195
1008
|
},
|
|
1196
1009
|
"serviceChargeAccounts": {
|
|
1197
|
-
"ta7Ref": "3.3a"
|
|
1198
|
-
"title": "The last 3 years published Service Charge accounts.",
|
|
1199
|
-
"enum": [
|
|
1200
|
-
"Enclosed",
|
|
1201
|
-
"To follow",
|
|
1202
|
-
"Not applicable"
|
|
1203
|
-
]
|
|
1010
|
+
"ta7Ref": "3.3a"
|
|
1204
1011
|
},
|
|
1205
1012
|
"groundRent": {
|
|
1206
|
-
"ta7Ref": "3.3b"
|
|
1207
|
-
"title": "Please supply a copy of any invoices or demands and any statements and receipts for the payment of ground rent for the last three years.",
|
|
1208
|
-
"enum": [
|
|
1209
|
-
"Enclosed",
|
|
1210
|
-
"To follow",
|
|
1211
|
-
"Not applicable"
|
|
1212
|
-
]
|
|
1013
|
+
"ta7Ref": "3.3b"
|
|
1213
1014
|
},
|
|
1214
1015
|
"buildingsInsurancePolicy": {
|
|
1215
1016
|
"ta7Ref": "3.4",
|
|
1216
|
-
"title": "Buildings insurance policy and schedule.",
|
|
1217
1017
|
"properties": {
|
|
1218
1018
|
"arrangedBySeller": {
|
|
1219
|
-
"ta7Ref": "3.4a"
|
|
1220
|
-
"title": "Arranged by the seller and a receipt for payment of the last premium",
|
|
1221
|
-
"enum": [
|
|
1222
|
-
"Attached",
|
|
1223
|
-
"To follow"
|
|
1224
|
-
]
|
|
1019
|
+
"ta7Ref": "3.4a"
|
|
1225
1020
|
},
|
|
1226
1021
|
"arrangedByLandlord": {
|
|
1227
|
-
"ta7Ref": "3.4b"
|
|
1228
|
-
"title": "Arranged by the landlord or management company and the schedule for the current year",
|
|
1229
|
-
"enum": [
|
|
1230
|
-
"Attached",
|
|
1231
|
-
"To follow"
|
|
1232
|
-
]
|
|
1022
|
+
"ta7Ref": "3.4b"
|
|
1233
1023
|
}
|
|
1234
1024
|
}
|
|
1235
1025
|
},
|
|
1236
1026
|
"additionalRegulationsNotInLease": {
|
|
1237
|
-
"ta7Ref": "3.1b"
|
|
1238
|
-
"title": "Any additional regulations or rules affecting the Property which are not contained in the lease.",
|
|
1239
|
-
"enum": [
|
|
1240
|
-
"Enclosed",
|
|
1241
|
-
"To follow",
|
|
1242
|
-
"Not applicable"
|
|
1243
|
-
]
|
|
1027
|
+
"ta7Ref": "3.1b"
|
|
1244
1028
|
},
|
|
1245
1029
|
"deedsOfVariation": {
|
|
1246
|
-
"ta7Ref": "3.1a"
|
|
1247
|
-
"title": "Any Deeds of Variation or other document varying the terms of the lease of this Property.",
|
|
1248
|
-
"enum": [
|
|
1249
|
-
"Enclosed",
|
|
1250
|
-
"To follow",
|
|
1251
|
-
"Landlord's lawyer provides",
|
|
1252
|
-
"Please supply draft",
|
|
1253
|
-
"Not applicable"
|
|
1254
|
-
]
|
|
1030
|
+
"ta7Ref": "3.1a"
|
|
1255
1031
|
},
|
|
1256
1032
|
"deedOfCovenant": {
|
|
1257
|
-
"ta7Ref": "3.1a"
|
|
1258
|
-
"title": "Any required Deed of Covenant.",
|
|
1259
|
-
"enum": [
|
|
1260
|
-
"Enclosed",
|
|
1261
|
-
"To follow",
|
|
1262
|
-
"Not applicable"
|
|
1263
|
-
]
|
|
1033
|
+
"ta7Ref": "3.1a"
|
|
1264
1034
|
},
|
|
1265
1035
|
"memorandumAndArticles": {
|
|
1266
|
-
"ta7Ref": "3.5a"
|
|
1267
|
-
"title": "Memorandum and Articles of Association of the Management Company.",
|
|
1268
|
-
"enum": [
|
|
1269
|
-
"Enclosed",
|
|
1270
|
-
"To follow",
|
|
1271
|
-
"Not applicable"
|
|
1272
|
-
]
|
|
1036
|
+
"ta7Ref": "3.5a"
|
|
1273
1037
|
},
|
|
1274
1038
|
"shareOrMembershipCertificate": {
|
|
1275
|
-
"ta7Ref": "3.5b"
|
|
1276
|
-
"title": "Share or membership certificate",
|
|
1277
|
-
"enum": [
|
|
1278
|
-
"Attached",
|
|
1279
|
-
"To follow"
|
|
1280
|
-
]
|
|
1039
|
+
"ta7Ref": "3.5b"
|
|
1281
1040
|
},
|
|
1282
1041
|
"companyAccounts": {
|
|
1283
|
-
"ta7Ref": "3.5c"
|
|
1284
|
-
"title": "Company accounts for the past three years",
|
|
1285
|
-
"enum": [
|
|
1286
|
-
"Attached",
|
|
1287
|
-
"To follow"
|
|
1288
|
-
]
|
|
1042
|
+
"ta7Ref": "3.5c"
|
|
1289
1043
|
},
|
|
1290
1044
|
"deedOfCertificate": {
|
|
1291
1045
|
"ta7Ref": "11.3b",
|
|
1292
|
-
"title": "Please supply a copy of the leaseholder deed of certificate and the accompanying evidence"
|
|
1293
|
-
"enum": [
|
|
1294
|
-
"Enclosed",
|
|
1295
|
-
"To follow",
|
|
1296
|
-
"Not applicable"
|
|
1297
|
-
]
|
|
1046
|
+
"title": "Please supply a copy of the leaseholder deed of certificate and the accompanying evidence"
|
|
1298
1047
|
},
|
|
1299
1048
|
"landlordsCertificate": {
|
|
1300
1049
|
"ta7Ref": "11.5",
|
|
@@ -1309,9 +1058,29 @@
|
|
|
1309
1058
|
}
|
|
1310
1059
|
}
|
|
1311
1060
|
}
|
|
1061
|
+
},
|
|
1062
|
+
"required": [
|
|
1063
|
+
"leaseholdInformation"
|
|
1064
|
+
]
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
"properties": {
|
|
1068
|
+
"ownershipType": {
|
|
1069
|
+
"enum": [
|
|
1070
|
+
"Other"
|
|
1071
|
+
]
|
|
1072
|
+
}
|
|
1312
1073
|
}
|
|
1313
1074
|
}
|
|
1314
|
-
]
|
|
1075
|
+
],
|
|
1076
|
+
"required": [
|
|
1077
|
+
"ownershipType"
|
|
1078
|
+
],
|
|
1079
|
+
"properties": {
|
|
1080
|
+
"ownershipType": {
|
|
1081
|
+
"ta7Ref": "1.1"
|
|
1082
|
+
}
|
|
1083
|
+
}
|
|
1315
1084
|
}
|
|
1316
1085
|
}
|
|
1317
1086
|
}
|
|
@@ -1320,8 +1089,6 @@
|
|
|
1320
1089
|
"properties": {
|
|
1321
1090
|
"buildingSafety": {
|
|
1322
1091
|
"ta7Ref": "11.1",
|
|
1323
|
-
"title": "Have any remediation works on the building been proposed or carried out?",
|
|
1324
|
-
"description": "For example issues related to unsafe cladding, integrity of building materials used in construction (e.g. asbestos), risk of collapse (e.g. damaged roofs or strucutural failures), at-risk wooden decking for external structures (including balconies), lack of emergency lighting where required or insufficient fire/smoke alarm systems",
|
|
1325
1092
|
"discriminator": {
|
|
1326
1093
|
"propertyName": "yesNo"
|
|
1327
1094
|
},
|
|
@@ -1348,29 +1115,19 @@
|
|
|
1348
1115
|
"title": "Please provide details of the remediation works proposed and evidence of any carried out."
|
|
1349
1116
|
},
|
|
1350
1117
|
"workAlreadyDone": {
|
|
1351
|
-
"ta7Ref": "11.1.2"
|
|
1352
|
-
"title": "What work has already been done?"
|
|
1118
|
+
"ta7Ref": "11.1.2"
|
|
1353
1119
|
},
|
|
1354
1120
|
"workToBeDone": {
|
|
1355
|
-
"ta7Ref": "11.1.2"
|
|
1356
|
-
"title": "What work is required to be done?"
|
|
1121
|
+
"ta7Ref": "11.1.2"
|
|
1357
1122
|
},
|
|
1358
1123
|
"potentialCost": {
|
|
1359
|
-
"ta7Ref": "11.1.2"
|
|
1360
|
-
"title": "What will the potential cost be?"
|
|
1124
|
+
"ta7Ref": "11.1.2"
|
|
1361
1125
|
},
|
|
1362
1126
|
"abilityToResideAtProperty": {
|
|
1363
|
-
"ta7Ref": "11.1.2"
|
|
1364
|
-
"title": "Will the work impact the ability to reside at the property?"
|
|
1127
|
+
"ta7Ref": "11.1.2"
|
|
1365
1128
|
},
|
|
1366
1129
|
"attachments": {
|
|
1367
|
-
"ta7Ref": "11.1.3"
|
|
1368
|
-
"title": "Attachments",
|
|
1369
|
-
"description": "Please attach evidence in support of the above",
|
|
1370
|
-
"enum": [
|
|
1371
|
-
"Attached",
|
|
1372
|
-
"To follow"
|
|
1373
|
-
]
|
|
1130
|
+
"ta7Ref": "11.1.3"
|
|
1374
1131
|
}
|
|
1375
1132
|
}
|
|
1376
1133
|
}
|
|
@@ -1378,6 +1135,7 @@
|
|
|
1378
1135
|
"required": [
|
|
1379
1136
|
"yesNo"
|
|
1380
1137
|
],
|
|
1138
|
+
"title": "Have any remediation works on the building been proposed or carried out?",
|
|
1381
1139
|
"properties": {
|
|
1382
1140
|
"yesNo": {
|
|
1383
1141
|
"ta7Ref": "11.1.1",
|