@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,51 +8,33 @@
|
|
|
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
35
|
"properties": {
|
|
45
36
|
"ownershipType": {
|
|
46
|
-
"ta7Ref": "1.1"
|
|
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
|
-
]
|
|
37
|
+
"ta7Ref": "1.1"
|
|
56
38
|
}
|
|
57
39
|
},
|
|
58
40
|
"oneOf": [
|
|
@@ -69,40 +51,32 @@
|
|
|
69
51
|
"ta7Ref": "4.1b",
|
|
70
52
|
"properties": {
|
|
71
53
|
"nameOrOrganisation": {
|
|
72
|
-
"ta7Ref": "4.1b.1"
|
|
73
|
-
"title": "Name or organisation"
|
|
54
|
+
"ta7Ref": "4.1b.1"
|
|
74
55
|
},
|
|
75
56
|
"address": {
|
|
76
57
|
"properties": {
|
|
77
58
|
"line1": {
|
|
78
|
-
"ta7Ref": "4.1b.2"
|
|
79
|
-
"title": "Address line 1"
|
|
59
|
+
"ta7Ref": "4.1b.2"
|
|
80
60
|
},
|
|
81
61
|
"line2": {
|
|
82
|
-
"ta7Ref": "4.1b.3"
|
|
83
|
-
"title": "Address line 2"
|
|
62
|
+
"ta7Ref": "4.1b.3"
|
|
84
63
|
},
|
|
85
64
|
"line3": {
|
|
86
|
-
"ta7Ref": "4.1b.4"
|
|
87
|
-
"title": "Address line 3"
|
|
65
|
+
"ta7Ref": "4.1b.4"
|
|
88
66
|
},
|
|
89
67
|
"town": {
|
|
90
|
-
"ta7Ref": "4.1b.5"
|
|
91
|
-
"title": "Town"
|
|
68
|
+
"ta7Ref": "4.1b.5"
|
|
92
69
|
},
|
|
93
70
|
"postcode": {
|
|
94
|
-
"ta7Ref": "4.1b.6"
|
|
95
|
-
"title": "Postcode"
|
|
71
|
+
"ta7Ref": "4.1b.6"
|
|
96
72
|
}
|
|
97
73
|
}
|
|
98
74
|
},
|
|
99
75
|
"telephone": {
|
|
100
|
-
"ta7Ref": "4.1b.7"
|
|
101
|
-
"title": "Telephone"
|
|
76
|
+
"ta7Ref": "4.1b.7"
|
|
102
77
|
},
|
|
103
78
|
"emailAddress": {
|
|
104
|
-
"ta7Ref": "4.1b.8"
|
|
105
|
-
"title": "Email address"
|
|
79
|
+
"ta7Ref": "4.1b.8"
|
|
106
80
|
}
|
|
107
81
|
}
|
|
108
82
|
}
|
|
@@ -114,40 +88,32 @@
|
|
|
114
88
|
"ta7Ref": "4.1c",
|
|
115
89
|
"properties": {
|
|
116
90
|
"nameOrOrganisation": {
|
|
117
|
-
"ta7Ref": "4.1c.1"
|
|
118
|
-
"title": "Name or organisation"
|
|
91
|
+
"ta7Ref": "4.1c.1"
|
|
119
92
|
},
|
|
120
93
|
"address": {
|
|
121
94
|
"properties": {
|
|
122
95
|
"line1": {
|
|
123
|
-
"ta7Ref": "4.1c.2"
|
|
124
|
-
"title": "Address line 1"
|
|
96
|
+
"ta7Ref": "4.1c.2"
|
|
125
97
|
},
|
|
126
98
|
"line2": {
|
|
127
|
-
"ta7Ref": "4.1c.3"
|
|
128
|
-
"title": "Address line 2"
|
|
99
|
+
"ta7Ref": "4.1c.3"
|
|
129
100
|
},
|
|
130
101
|
"line3": {
|
|
131
|
-
"ta7Ref": "4.1c.4"
|
|
132
|
-
"title": "Address line 3"
|
|
102
|
+
"ta7Ref": "4.1c.4"
|
|
133
103
|
},
|
|
134
104
|
"town": {
|
|
135
|
-
"ta7Ref": "4.1c.5"
|
|
136
|
-
"title": "Town"
|
|
105
|
+
"ta7Ref": "4.1c.5"
|
|
137
106
|
},
|
|
138
107
|
"postcode": {
|
|
139
|
-
"ta7Ref": "4.1c.6"
|
|
140
|
-
"title": "Postcode"
|
|
108
|
+
"ta7Ref": "4.1c.6"
|
|
141
109
|
}
|
|
142
110
|
}
|
|
143
111
|
},
|
|
144
112
|
"telephone": {
|
|
145
|
-
"ta7Ref": "4.1c.7"
|
|
146
|
-
"title": "Telephone"
|
|
113
|
+
"ta7Ref": "4.1c.7"
|
|
147
114
|
},
|
|
148
115
|
"emailAddress": {
|
|
149
|
-
"ta7Ref": "4.1c.8"
|
|
150
|
-
"title": "Email address"
|
|
116
|
+
"ta7Ref": "4.1c.8"
|
|
151
117
|
}
|
|
152
118
|
}
|
|
153
119
|
}
|
|
@@ -180,28 +146,18 @@
|
|
|
180
146
|
"typeOfLeasehold": {
|
|
181
147
|
"properties": {
|
|
182
148
|
"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
|
-
]
|
|
149
|
+
"ta7Ref": "1.1"
|
|
191
150
|
}
|
|
192
151
|
}
|
|
193
152
|
},
|
|
194
153
|
"contactDetails": {
|
|
195
154
|
"ta7Ref": "4.1",
|
|
196
|
-
"title": "Contact Details",
|
|
197
155
|
"required": [
|
|
198
156
|
"contacts"
|
|
199
157
|
],
|
|
200
158
|
"properties": {
|
|
201
159
|
"contacts": {
|
|
202
160
|
"ta7Ref": "4.1",
|
|
203
|
-
"title": "Contacts",
|
|
204
|
-
"description": "Complete the details for the relevant parties",
|
|
205
161
|
"required": [
|
|
206
162
|
"landlord",
|
|
207
163
|
"managementCompany",
|
|
@@ -210,47 +166,37 @@
|
|
|
210
166
|
"properties": {
|
|
211
167
|
"landlord": {
|
|
212
168
|
"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
169
|
"properties": {
|
|
216
170
|
"contact": {
|
|
217
171
|
"ta7Ref": "4.1a",
|
|
218
172
|
"properties": {
|
|
219
173
|
"nameOrOrganisation": {
|
|
220
|
-
"ta7Ref": "4.1a.1"
|
|
221
|
-
"title": "Name or organisation"
|
|
174
|
+
"ta7Ref": "4.1a.1"
|
|
222
175
|
},
|
|
223
176
|
"address": {
|
|
224
177
|
"properties": {
|
|
225
178
|
"line1": {
|
|
226
|
-
"ta7Ref": "4.1a.2"
|
|
227
|
-
"title": "Address line 1"
|
|
179
|
+
"ta7Ref": "4.1a.2"
|
|
228
180
|
},
|
|
229
181
|
"line2": {
|
|
230
|
-
"ta7Ref": "4.1a.3"
|
|
231
|
-
"title": "Address line 2"
|
|
182
|
+
"ta7Ref": "4.1a.3"
|
|
232
183
|
},
|
|
233
184
|
"line3": {
|
|
234
|
-
"ta7Ref": "4.1a.4"
|
|
235
|
-
"title": "Address line 3"
|
|
185
|
+
"ta7Ref": "4.1a.4"
|
|
236
186
|
},
|
|
237
187
|
"town": {
|
|
238
|
-
"ta7Ref": "4.1a.5"
|
|
239
|
-
"title": "Town"
|
|
188
|
+
"ta7Ref": "4.1a.5"
|
|
240
189
|
},
|
|
241
190
|
"postcode": {
|
|
242
|
-
"ta7Ref": "4.1a.6"
|
|
243
|
-
"title": "Postcode"
|
|
191
|
+
"ta7Ref": "4.1a.6"
|
|
244
192
|
}
|
|
245
193
|
}
|
|
246
194
|
},
|
|
247
195
|
"telephone": {
|
|
248
|
-
"ta7Ref": "4.1a.7"
|
|
249
|
-
"title": "Telephone"
|
|
196
|
+
"ta7Ref": "4.1a.7"
|
|
250
197
|
},
|
|
251
198
|
"emailAddress": {
|
|
252
|
-
"ta7Ref": "4.1a.8"
|
|
253
|
-
"title": "Email address"
|
|
199
|
+
"ta7Ref": "4.1a.8"
|
|
254
200
|
}
|
|
255
201
|
}
|
|
256
202
|
}
|
|
@@ -262,40 +208,32 @@
|
|
|
262
208
|
"ta7Ref": "4.1b",
|
|
263
209
|
"properties": {
|
|
264
210
|
"nameOrOrganisation": {
|
|
265
|
-
"ta7Ref": "4.1b.1"
|
|
266
|
-
"title": "Name or organisation"
|
|
211
|
+
"ta7Ref": "4.1b.1"
|
|
267
212
|
},
|
|
268
213
|
"address": {
|
|
269
214
|
"properties": {
|
|
270
215
|
"line1": {
|
|
271
|
-
"ta7Ref": "4.1b.2"
|
|
272
|
-
"title": "Address line 1"
|
|
216
|
+
"ta7Ref": "4.1b.2"
|
|
273
217
|
},
|
|
274
218
|
"line2": {
|
|
275
|
-
"ta7Ref": "4.1b.3"
|
|
276
|
-
"title": "Address line 2"
|
|
219
|
+
"ta7Ref": "4.1b.3"
|
|
277
220
|
},
|
|
278
221
|
"line3": {
|
|
279
|
-
"ta7Ref": "4.1b.4"
|
|
280
|
-
"title": "Address line 3"
|
|
222
|
+
"ta7Ref": "4.1b.4"
|
|
281
223
|
},
|
|
282
224
|
"town": {
|
|
283
|
-
"ta7Ref": "4.1b.5"
|
|
284
|
-
"title": "Town"
|
|
225
|
+
"ta7Ref": "4.1b.5"
|
|
285
226
|
},
|
|
286
227
|
"postcode": {
|
|
287
|
-
"ta7Ref": "4.1b.6"
|
|
288
|
-
"title": "Postcode"
|
|
228
|
+
"ta7Ref": "4.1b.6"
|
|
289
229
|
}
|
|
290
230
|
}
|
|
291
231
|
},
|
|
292
232
|
"telephone": {
|
|
293
|
-
"ta7Ref": "4.1b.7"
|
|
294
|
-
"title": "Telephone"
|
|
233
|
+
"ta7Ref": "4.1b.7"
|
|
295
234
|
},
|
|
296
235
|
"emailAddress": {
|
|
297
|
-
"ta7Ref": "4.1b.8"
|
|
298
|
-
"title": "Email address"
|
|
236
|
+
"ta7Ref": "4.1b.8"
|
|
299
237
|
}
|
|
300
238
|
}
|
|
301
239
|
}
|
|
@@ -303,47 +241,37 @@
|
|
|
303
241
|
},
|
|
304
242
|
"managingAgent": {
|
|
305
243
|
"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
244
|
"properties": {
|
|
309
245
|
"contact": {
|
|
310
246
|
"ta7Ref": "4.1c",
|
|
311
247
|
"properties": {
|
|
312
248
|
"nameOrOrganisation": {
|
|
313
|
-
"ta7Ref": "4.1c.1"
|
|
314
|
-
"title": "Name or organisation"
|
|
249
|
+
"ta7Ref": "4.1c.1"
|
|
315
250
|
},
|
|
316
251
|
"address": {
|
|
317
252
|
"properties": {
|
|
318
253
|
"line1": {
|
|
319
|
-
"ta7Ref": "4.1c.2"
|
|
320
|
-
"title": "Address line 1"
|
|
254
|
+
"ta7Ref": "4.1c.2"
|
|
321
255
|
},
|
|
322
256
|
"line2": {
|
|
323
|
-
"ta7Ref": "4.1c.3"
|
|
324
|
-
"title": "Address line 2"
|
|
257
|
+
"ta7Ref": "4.1c.3"
|
|
325
258
|
},
|
|
326
259
|
"line3": {
|
|
327
|
-
"ta7Ref": "4.1c.4"
|
|
328
|
-
"title": "Address line 3"
|
|
260
|
+
"ta7Ref": "4.1c.4"
|
|
329
261
|
},
|
|
330
262
|
"town": {
|
|
331
|
-
"ta7Ref": "4.1c.5"
|
|
332
|
-
"title": "Town"
|
|
263
|
+
"ta7Ref": "4.1c.5"
|
|
333
264
|
},
|
|
334
265
|
"postcode": {
|
|
335
|
-
"ta7Ref": "4.1c.6"
|
|
336
|
-
"title": "Postcode"
|
|
266
|
+
"ta7Ref": "4.1c.6"
|
|
337
267
|
}
|
|
338
268
|
}
|
|
339
269
|
},
|
|
340
270
|
"telephone": {
|
|
341
|
-
"ta7Ref": "4.1c.7"
|
|
342
|
-
"title": "Telephone"
|
|
271
|
+
"ta7Ref": "4.1c.7"
|
|
343
272
|
},
|
|
344
273
|
"emailAddress": {
|
|
345
|
-
"ta7Ref": "4.1c.8"
|
|
346
|
-
"title": "Email address"
|
|
274
|
+
"ta7Ref": "4.1c.8"
|
|
347
275
|
}
|
|
348
276
|
}
|
|
349
277
|
}
|
|
@@ -354,16 +282,7 @@
|
|
|
354
282
|
"serviceContactAssignments": {
|
|
355
283
|
"properties": {
|
|
356
284
|
"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
|
-
]
|
|
285
|
+
"ta7Ref": "5.1"
|
|
367
286
|
}
|
|
368
287
|
}
|
|
369
288
|
}
|
|
@@ -377,7 +296,6 @@
|
|
|
377
296
|
"properties": {
|
|
378
297
|
"awareOfConsents": {
|
|
379
298
|
"ta7Ref": "9.3",
|
|
380
|
-
"title": "Are you aware of consent having been given to any alterations or additions to the Property?",
|
|
381
299
|
"discriminator": {
|
|
382
300
|
"propertyName": "yesNo"
|
|
383
301
|
},
|
|
@@ -403,17 +321,12 @@
|
|
|
403
321
|
],
|
|
404
322
|
"properties": {
|
|
405
323
|
"yesNo": {
|
|
406
|
-
"ta7Ref": "9.3.1"
|
|
407
|
-
"enum": [
|
|
408
|
-
"Yes",
|
|
409
|
-
"No"
|
|
410
|
-
]
|
|
324
|
+
"ta7Ref": "9.3.1"
|
|
411
325
|
}
|
|
412
326
|
}
|
|
413
327
|
},
|
|
414
328
|
"changesInTermOfLease": {
|
|
415
329
|
"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
330
|
"discriminator": {
|
|
418
331
|
"propertyName": "isSellerAwareOfChanges"
|
|
419
332
|
},
|
|
@@ -438,8 +351,7 @@
|
|
|
438
351
|
]
|
|
439
352
|
},
|
|
440
353
|
"details": {
|
|
441
|
-
"ta7Ref": "7.1.3"
|
|
442
|
-
"title": "Please supply a copy or, if not in writing, please give details:"
|
|
354
|
+
"ta7Ref": "7.1.3"
|
|
443
355
|
}
|
|
444
356
|
}
|
|
445
357
|
}
|
|
@@ -449,7 +361,6 @@
|
|
|
449
361
|
},
|
|
450
362
|
"groundRent": {
|
|
451
363
|
"ta7Ref": "1.2",
|
|
452
|
-
"title": "Ground Rent",
|
|
453
364
|
"discriminator": {
|
|
454
365
|
"propertyName": "isGroundRentPayable"
|
|
455
366
|
},
|
|
@@ -471,16 +382,13 @@
|
|
|
471
382
|
]
|
|
472
383
|
},
|
|
473
384
|
"annualGroundRent": {
|
|
474
|
-
"ta7Ref": "1.2a"
|
|
475
|
-
"title": "What is the annual ground rent payable? (£)"
|
|
385
|
+
"ta7Ref": "1.2a"
|
|
476
386
|
},
|
|
477
387
|
"groundRentFrequency": {
|
|
478
|
-
"ta7Ref": "1.2b"
|
|
479
|
-
"title": "How regularly is the rent paid? (e.g. annually)"
|
|
388
|
+
"ta7Ref": "1.2b"
|
|
480
389
|
},
|
|
481
390
|
"rentSubjectToIncrease": {
|
|
482
391
|
"ta7Ref": "1.2c",
|
|
483
|
-
"title": "Is the ground rent subject to increase?",
|
|
484
392
|
"discriminator": {
|
|
485
393
|
"propertyName": "yesNo"
|
|
486
394
|
},
|
|
@@ -502,24 +410,17 @@
|
|
|
502
410
|
]
|
|
503
411
|
},
|
|
504
412
|
"rentReviewFrequency": {
|
|
505
|
-
"ta7Ref": "1.2d"
|
|
506
|
-
"title": "How often is the rent reviewed?"
|
|
413
|
+
"ta7Ref": "1.2d"
|
|
507
414
|
},
|
|
508
415
|
"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"
|
|
416
|
+
"ta7Ref": "1.2e"
|
|
512
417
|
}
|
|
513
418
|
}
|
|
514
419
|
}
|
|
515
420
|
],
|
|
516
421
|
"properties": {
|
|
517
422
|
"yesNo": {
|
|
518
|
-
"ta7Ref": "1.2c.1"
|
|
519
|
-
"enum": [
|
|
520
|
-
"Yes",
|
|
521
|
-
"No"
|
|
522
|
-
]
|
|
423
|
+
"ta7Ref": "1.2c.1"
|
|
523
424
|
}
|
|
524
425
|
}
|
|
525
426
|
}
|
|
@@ -531,18 +432,12 @@
|
|
|
531
432
|
],
|
|
532
433
|
"properties": {
|
|
533
434
|
"isGroundRentPayable": {
|
|
534
|
-
"ta7Ref": "1.2.1"
|
|
535
|
-
"title": "Does the seller pay ground rent for the property?",
|
|
536
|
-
"enum": [
|
|
537
|
-
"Yes",
|
|
538
|
-
"No"
|
|
539
|
-
]
|
|
435
|
+
"ta7Ref": "1.2.1"
|
|
540
436
|
}
|
|
541
437
|
}
|
|
542
438
|
},
|
|
543
439
|
"ownershipAndManagement": {
|
|
544
440
|
"ta7Ref": "2",
|
|
545
|
-
"title": "Ownership and management",
|
|
546
441
|
"required": [
|
|
547
442
|
"freeholdOwner",
|
|
548
443
|
"hasHeadlease",
|
|
@@ -552,16 +447,10 @@
|
|
|
552
447
|
],
|
|
553
448
|
"properties": {
|
|
554
449
|
"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
|
-
]
|
|
450
|
+
"ta7Ref": "2.1b"
|
|
561
451
|
},
|
|
562
452
|
"hasHeadlease": {
|
|
563
453
|
"ta7Ref": "2.2",
|
|
564
|
-
"title": "Is there a headlease?",
|
|
565
454
|
"discriminator": {
|
|
566
455
|
"propertyName": "yesNo"
|
|
567
456
|
},
|
|
@@ -583,29 +472,19 @@
|
|
|
583
472
|
]
|
|
584
473
|
},
|
|
585
474
|
"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
|
-
]
|
|
475
|
+
"ta7Ref": "2.2.2"
|
|
592
476
|
}
|
|
593
477
|
}
|
|
594
478
|
}
|
|
595
479
|
],
|
|
596
480
|
"properties": {
|
|
597
481
|
"yesNo": {
|
|
598
|
-
"ta7Ref": "2.2.1"
|
|
599
|
-
"enum": [
|
|
600
|
-
"Yes",
|
|
601
|
-
"No"
|
|
602
|
-
]
|
|
482
|
+
"ta7Ref": "2.2.1"
|
|
603
483
|
}
|
|
604
484
|
}
|
|
605
485
|
},
|
|
606
486
|
"buildingManager": {
|
|
607
487
|
"ta7Ref": "2.3",
|
|
608
|
-
"title": "Who is responsible for managing the building?",
|
|
609
488
|
"discriminator": {
|
|
610
489
|
"propertyName": "buildingManagerType"
|
|
611
490
|
},
|
|
@@ -630,40 +509,24 @@
|
|
|
630
509
|
]
|
|
631
510
|
},
|
|
632
511
|
"details": {
|
|
633
|
-
"ta7Ref": "2.3e"
|
|
634
|
-
"title": "Please specify"
|
|
512
|
+
"ta7Ref": "2.3e"
|
|
635
513
|
}
|
|
636
514
|
}
|
|
637
515
|
}
|
|
638
516
|
]
|
|
639
517
|
},
|
|
640
518
|
"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
|
-
]
|
|
519
|
+
"ta7Ref": "2.4"
|
|
647
520
|
},
|
|
648
521
|
"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
|
-
]
|
|
522
|
+
"ta7Ref": "2.5"
|
|
655
523
|
}
|
|
656
524
|
}
|
|
657
525
|
},
|
|
658
526
|
"serviceCharge": {
|
|
659
527
|
"properties": {
|
|
660
528
|
"sellerContributesToServiceCharge": {
|
|
661
|
-
"ta7Ref": "5.4"
|
|
662
|
-
"title": "Does the seller contribute to the cost of maintaining the building (a service charge)?",
|
|
663
|
-
"enum": [
|
|
664
|
-
"Yes",
|
|
665
|
-
"No"
|
|
666
|
-
]
|
|
529
|
+
"ta7Ref": "5.4"
|
|
667
530
|
}
|
|
668
531
|
},
|
|
669
532
|
"oneOf": [
|
|
@@ -672,7 +535,6 @@
|
|
|
672
535
|
"properties": {
|
|
673
536
|
"largeAdditionalExpense": {
|
|
674
537
|
"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
538
|
"discriminator": {
|
|
677
539
|
"propertyName": "yesNo"
|
|
678
540
|
},
|
|
@@ -694,25 +556,19 @@
|
|
|
694
556
|
]
|
|
695
557
|
},
|
|
696
558
|
"details": {
|
|
697
|
-
"ta7Ref": "5.5.2"
|
|
698
|
-
"title": "Details"
|
|
559
|
+
"ta7Ref": "5.5.2"
|
|
699
560
|
}
|
|
700
561
|
}
|
|
701
562
|
}
|
|
702
563
|
],
|
|
703
564
|
"properties": {
|
|
704
565
|
"yesNo": {
|
|
705
|
-
"ta7Ref": "5.5.1"
|
|
706
|
-
"enum": [
|
|
707
|
-
"Yes",
|
|
708
|
-
"No"
|
|
709
|
-
]
|
|
566
|
+
"ta7Ref": "5.5.1"
|
|
710
567
|
}
|
|
711
568
|
}
|
|
712
569
|
},
|
|
713
570
|
"problemInServiceChargeLevel": {
|
|
714
571
|
"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
572
|
"discriminator": {
|
|
717
573
|
"propertyName": "yesNo"
|
|
718
574
|
},
|
|
@@ -734,25 +590,19 @@
|
|
|
734
590
|
]
|
|
735
591
|
},
|
|
736
592
|
"details": {
|
|
737
|
-
"ta7Ref": "5.6.2"
|
|
738
|
-
"title": "Please give details:"
|
|
593
|
+
"ta7Ref": "5.6.2"
|
|
739
594
|
}
|
|
740
595
|
}
|
|
741
596
|
}
|
|
742
597
|
],
|
|
743
598
|
"properties": {
|
|
744
599
|
"yesNo": {
|
|
745
|
-
"ta7Ref": "5.6.1"
|
|
746
|
-
"enum": [
|
|
747
|
-
"Yes",
|
|
748
|
-
"No"
|
|
749
|
-
]
|
|
600
|
+
"ta7Ref": "5.6.1"
|
|
750
601
|
}
|
|
751
602
|
}
|
|
752
603
|
},
|
|
753
604
|
"serviceChargeChallenged": {
|
|
754
605
|
"ta7Ref": "5.7",
|
|
755
|
-
"title": "Has the seller challenged the service charge or any expense in the last three years?",
|
|
756
606
|
"discriminator": {
|
|
757
607
|
"propertyName": "yesNo"
|
|
758
608
|
},
|
|
@@ -774,33 +624,22 @@
|
|
|
774
624
|
]
|
|
775
625
|
},
|
|
776
626
|
"details": {
|
|
777
|
-
"ta7Ref": "5.7.2"
|
|
778
|
-
"title": "Please give details"
|
|
627
|
+
"ta7Ref": "5.7.2"
|
|
779
628
|
}
|
|
780
629
|
}
|
|
781
630
|
}
|
|
782
631
|
],
|
|
783
632
|
"properties": {
|
|
784
633
|
"yesNo": {
|
|
785
|
-
"ta7Ref": "5.7.1"
|
|
786
|
-
"enum": [
|
|
787
|
-
"Yes",
|
|
788
|
-
"No"
|
|
789
|
-
]
|
|
634
|
+
"ta7Ref": "5.7.1"
|
|
790
635
|
}
|
|
791
636
|
}
|
|
792
637
|
},
|
|
793
638
|
"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
|
-
]
|
|
639
|
+
"ta7Ref": "5.8"
|
|
800
640
|
},
|
|
801
641
|
"difficultyInCollectingServiceCharge": {
|
|
802
642
|
"ta7Ref": "5.9",
|
|
803
|
-
"title": "Is the seller aware of any difficulties encountered in collecting the service charges from other flat owners?",
|
|
804
643
|
"discriminator": {
|
|
805
644
|
"propertyName": "yesNo"
|
|
806
645
|
},
|
|
@@ -826,17 +665,12 @@
|
|
|
826
665
|
],
|
|
827
666
|
"properties": {
|
|
828
667
|
"yesNo": {
|
|
829
|
-
"ta7Ref": "5.9.1"
|
|
830
|
-
"enum": [
|
|
831
|
-
"Yes",
|
|
832
|
-
"No"
|
|
833
|
-
]
|
|
668
|
+
"ta7Ref": "5.9.1"
|
|
834
669
|
}
|
|
835
670
|
}
|
|
836
671
|
},
|
|
837
672
|
"serviceChargeOwed": {
|
|
838
673
|
"ta7Ref": "5.10",
|
|
839
|
-
"title": "Does the seller owe any service charges, rent, insurance premium or other financial contribution?",
|
|
840
674
|
"discriminator": {
|
|
841
675
|
"propertyName": "yesNo"
|
|
842
676
|
},
|
|
@@ -858,37 +692,29 @@
|
|
|
858
692
|
]
|
|
859
693
|
},
|
|
860
694
|
"details": {
|
|
861
|
-
"ta7Ref": "5.10.2"
|
|
862
|
-
"title": "Please give details"
|
|
695
|
+
"ta7Ref": "5.10.2"
|
|
863
696
|
}
|
|
864
697
|
}
|
|
865
698
|
}
|
|
866
699
|
],
|
|
867
700
|
"properties": {
|
|
868
701
|
"yesNo": {
|
|
869
|
-
"ta7Ref": "5.10.1"
|
|
870
|
-
"enum": [
|
|
871
|
-
"Yes",
|
|
872
|
-
"No"
|
|
873
|
-
]
|
|
702
|
+
"ta7Ref": "5.10.1"
|
|
874
703
|
}
|
|
875
704
|
}
|
|
876
705
|
},
|
|
877
706
|
"lastDecoratedPeriod": {
|
|
878
707
|
"properties": {
|
|
879
708
|
"internally": {
|
|
880
|
-
"ta7Ref": "5.3"
|
|
881
|
-
"title": "Internally"
|
|
709
|
+
"ta7Ref": "5.3"
|
|
882
710
|
},
|
|
883
711
|
"externally": {
|
|
884
|
-
"ta7Ref": "5.2"
|
|
885
|
-
"title": "Externally"
|
|
712
|
+
"ta7Ref": "5.2"
|
|
886
713
|
}
|
|
887
714
|
}
|
|
888
715
|
},
|
|
889
716
|
"deedOfCertificateServed": {
|
|
890
717
|
"ta7Ref": "11.3",
|
|
891
|
-
"title": "Is there a Leaseholder Deed of Certificate for the property?",
|
|
892
718
|
"discriminator": {
|
|
893
719
|
"propertyName": "yesNoNotApplicable"
|
|
894
720
|
},
|
|
@@ -919,24 +745,15 @@
|
|
|
919
745
|
]
|
|
920
746
|
},
|
|
921
747
|
"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
|
-
]
|
|
748
|
+
"ta7Ref": "11.3a"
|
|
928
749
|
}
|
|
929
750
|
}
|
|
930
751
|
}
|
|
931
752
|
],
|
|
753
|
+
"title": "Is there a Leaseholder Deed of Certificate for the property?",
|
|
932
754
|
"properties": {
|
|
933
755
|
"yesNoNotApplicable": {
|
|
934
|
-
"ta7Ref": "11.3.1"
|
|
935
|
-
"enum": [
|
|
936
|
-
"Yes",
|
|
937
|
-
"No",
|
|
938
|
-
"Not applicable"
|
|
939
|
-
]
|
|
756
|
+
"ta7Ref": "11.3.1"
|
|
940
757
|
}
|
|
941
758
|
}
|
|
942
759
|
}
|
|
@@ -952,7 +769,6 @@
|
|
|
952
769
|
"properties": {
|
|
953
770
|
"sellerReceivedComplaint": {
|
|
954
771
|
"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
772
|
"discriminator": {
|
|
957
773
|
"propertyName": "yesNo"
|
|
958
774
|
},
|
|
@@ -974,25 +790,19 @@
|
|
|
974
790
|
]
|
|
975
791
|
},
|
|
976
792
|
"details": {
|
|
977
|
-
"ta7Ref": "8.1.2"
|
|
978
|
-
"title": "Please give details"
|
|
793
|
+
"ta7Ref": "8.1.2"
|
|
979
794
|
}
|
|
980
795
|
}
|
|
981
796
|
}
|
|
982
797
|
],
|
|
983
798
|
"properties": {
|
|
984
799
|
"yesNo": {
|
|
985
|
-
"ta7Ref": "8.1.1"
|
|
986
|
-
"enum": [
|
|
987
|
-
"Yes",
|
|
988
|
-
"No"
|
|
989
|
-
]
|
|
800
|
+
"ta7Ref": "8.1.1"
|
|
990
801
|
}
|
|
991
802
|
}
|
|
992
803
|
},
|
|
993
804
|
"sellerSentComplaint": {
|
|
994
805
|
"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
806
|
"discriminator": {
|
|
997
807
|
"propertyName": "yesNo"
|
|
998
808
|
},
|
|
@@ -1014,19 +824,14 @@
|
|
|
1014
824
|
]
|
|
1015
825
|
},
|
|
1016
826
|
"details": {
|
|
1017
|
-
"ta7Ref": "8.2.2"
|
|
1018
|
-
"title": "Please give details"
|
|
827
|
+
"ta7Ref": "8.2.2"
|
|
1019
828
|
}
|
|
1020
829
|
}
|
|
1021
830
|
}
|
|
1022
831
|
],
|
|
1023
832
|
"properties": {
|
|
1024
833
|
"yesNo": {
|
|
1025
|
-
"ta7Ref": "8.2.1"
|
|
1026
|
-
"enum": [
|
|
1027
|
-
"Yes",
|
|
1028
|
-
"No"
|
|
1029
|
-
]
|
|
834
|
+
"ta7Ref": "8.2.1"
|
|
1030
835
|
}
|
|
1031
836
|
}
|
|
1032
837
|
}
|
|
@@ -1044,7 +849,6 @@
|
|
|
1044
849
|
"properties": {
|
|
1045
850
|
"sellerAwareOfAlterations": {
|
|
1046
851
|
"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
852
|
"discriminator": {
|
|
1049
853
|
"propertyName": "yesNo"
|
|
1050
854
|
},
|
|
@@ -1066,73 +870,31 @@
|
|
|
1066
870
|
]
|
|
1067
871
|
},
|
|
1068
872
|
"details": {
|
|
1069
|
-
"ta7Ref": "9.2"
|
|
1070
|
-
"title": "Please give details of these alterations"
|
|
873
|
+
"ta7Ref": "9.2"
|
|
1071
874
|
}
|
|
1072
875
|
}
|
|
1073
876
|
}
|
|
1074
877
|
],
|
|
1075
878
|
"properties": {
|
|
1076
879
|
"yesNo": {
|
|
1077
|
-
"ta7Ref": "9.1.1"
|
|
1078
|
-
"enum": [
|
|
1079
|
-
"Yes",
|
|
1080
|
-
"No"
|
|
1081
|
-
]
|
|
880
|
+
"ta7Ref": "9.1.1"
|
|
1082
881
|
}
|
|
1083
882
|
}
|
|
1084
883
|
},
|
|
1085
884
|
"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
|
-
]
|
|
885
|
+
"ta7Ref": "10.1"
|
|
1092
886
|
},
|
|
1093
887
|
"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
|
-
]
|
|
888
|
+
"ta7Ref": "10.2"
|
|
1104
889
|
},
|
|
1105
890
|
"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
|
-
]
|
|
891
|
+
"ta7Ref": "10.3"
|
|
1116
892
|
},
|
|
1117
893
|
"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
|
-
]
|
|
894
|
+
"ta7Ref": "10.4"
|
|
1128
895
|
},
|
|
1129
896
|
"isLeaseQualifying": {
|
|
1130
|
-
"ta7Ref": "11.2"
|
|
1131
|
-
"title": "Is the lease of the property a qualifying lease?",
|
|
1132
|
-
"enum": [
|
|
1133
|
-
"Yes",
|
|
1134
|
-
"No"
|
|
1135
|
-
]
|
|
897
|
+
"ta7Ref": "11.2"
|
|
1136
898
|
}
|
|
1137
899
|
}
|
|
1138
900
|
},
|
|
@@ -1156,145 +918,55 @@
|
|
|
1156
918
|
],
|
|
1157
919
|
"properties": {
|
|
1158
920
|
"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
|
-
]
|
|
921
|
+
"ta7Ref": "6.1"
|
|
1168
922
|
},
|
|
1169
923
|
"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
|
-
]
|
|
924
|
+
"ta7Ref": "6.2"
|
|
1179
925
|
},
|
|
1180
926
|
"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
|
-
]
|
|
927
|
+
"ta7Ref": "11.4"
|
|
1187
928
|
},
|
|
1188
929
|
"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
|
-
]
|
|
930
|
+
"ta7Ref": "3.2"
|
|
1195
931
|
},
|
|
1196
932
|
"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
|
-
]
|
|
933
|
+
"ta7Ref": "3.3a"
|
|
1204
934
|
},
|
|
1205
935
|
"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
|
-
]
|
|
936
|
+
"ta7Ref": "3.3b"
|
|
1213
937
|
},
|
|
1214
938
|
"buildingsInsurancePolicy": {
|
|
1215
939
|
"ta7Ref": "3.4",
|
|
1216
|
-
"title": "Buildings insurance policy and schedule.",
|
|
1217
940
|
"properties": {
|
|
1218
941
|
"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
|
-
]
|
|
942
|
+
"ta7Ref": "3.4a"
|
|
1225
943
|
},
|
|
1226
944
|
"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
|
-
]
|
|
945
|
+
"ta7Ref": "3.4b"
|
|
1233
946
|
}
|
|
1234
947
|
}
|
|
1235
948
|
},
|
|
1236
949
|
"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
|
-
]
|
|
950
|
+
"ta7Ref": "3.1b"
|
|
1244
951
|
},
|
|
1245
952
|
"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
|
-
]
|
|
953
|
+
"ta7Ref": "3.1a"
|
|
1255
954
|
},
|
|
1256
955
|
"deedOfCovenant": {
|
|
1257
|
-
"ta7Ref": "3.1a"
|
|
1258
|
-
"title": "Any required Deed of Covenant.",
|
|
1259
|
-
"enum": [
|
|
1260
|
-
"Enclosed",
|
|
1261
|
-
"To follow",
|
|
1262
|
-
"Not applicable"
|
|
1263
|
-
]
|
|
956
|
+
"ta7Ref": "3.1a"
|
|
1264
957
|
},
|
|
1265
958
|
"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
|
-
]
|
|
959
|
+
"ta7Ref": "3.5a"
|
|
1273
960
|
},
|
|
1274
961
|
"shareOrMembershipCertificate": {
|
|
1275
|
-
"ta7Ref": "3.5b"
|
|
1276
|
-
"title": "Share or membership certificate",
|
|
1277
|
-
"enum": [
|
|
1278
|
-
"Attached",
|
|
1279
|
-
"To follow"
|
|
1280
|
-
]
|
|
962
|
+
"ta7Ref": "3.5b"
|
|
1281
963
|
},
|
|
1282
964
|
"companyAccounts": {
|
|
1283
|
-
"ta7Ref": "3.5c"
|
|
1284
|
-
"title": "Company accounts for the past three years",
|
|
1285
|
-
"enum": [
|
|
1286
|
-
"Attached",
|
|
1287
|
-
"To follow"
|
|
1288
|
-
]
|
|
965
|
+
"ta7Ref": "3.5c"
|
|
1289
966
|
},
|
|
1290
967
|
"deedOfCertificate": {
|
|
1291
968
|
"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
|
-
]
|
|
969
|
+
"title": "Please supply a copy of the leaseholder deed of certificate and the accompanying evidence"
|
|
1298
970
|
},
|
|
1299
971
|
"landlordsCertificate": {
|
|
1300
972
|
"ta7Ref": "11.5",
|
|
@@ -1320,8 +992,6 @@
|
|
|
1320
992
|
"properties": {
|
|
1321
993
|
"buildingSafetyRemediation": {
|
|
1322
994
|
"ta7Ref": "11.1",
|
|
1323
|
-
"title": "Have any remediation works on the building been proposed or carried out?",
|
|
1324
|
-
"description": "This could be due to the property being high risk because of the building height or because of works completed without buildings regulations.",
|
|
1325
995
|
"discriminator": {
|
|
1326
996
|
"propertyName": "yesNo"
|
|
1327
997
|
},
|
|
@@ -1348,16 +1018,12 @@
|
|
|
1348
1018
|
"title": "Please provide details of the remediation works proposed and evidence of any carried out."
|
|
1349
1019
|
},
|
|
1350
1020
|
"attachments": {
|
|
1351
|
-
"ta7Ref": "11.1.3"
|
|
1352
|
-
"title": "Attachments",
|
|
1353
|
-
"enum": [
|
|
1354
|
-
"Attached",
|
|
1355
|
-
"To follow"
|
|
1356
|
-
]
|
|
1021
|
+
"ta7Ref": "11.1.3"
|
|
1357
1022
|
}
|
|
1358
1023
|
}
|
|
1359
1024
|
}
|
|
1360
1025
|
],
|
|
1026
|
+
"title": "Have any remediation works on the building been proposed or carried out?",
|
|
1361
1027
|
"properties": {
|
|
1362
1028
|
"yesNo": {
|
|
1363
1029
|
"ta7Ref": "11.1.1",
|