@pdtf/schemas 0.10.4 → 0.10.5
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
CHANGED
|
@@ -31,6 +31,12 @@
|
|
|
31
31
|
},
|
|
32
32
|
"ownership": {
|
|
33
33
|
"ownershipType": "Leasehold",
|
|
34
|
+
"sharedOwnership": {
|
|
35
|
+
"isSharedOwnership": "Yes",
|
|
36
|
+
"sharedOwnershipPercentage": 25,
|
|
37
|
+
"sharedOwnershipRent": 225,
|
|
38
|
+
"sharedOwnershipRentFrequency": "Monthly"
|
|
39
|
+
},
|
|
34
40
|
"startYearOfLease": 1900,
|
|
35
41
|
"lengthOfLeaseInYears": 999,
|
|
36
42
|
"currentGroundRent": 1750,
|
|
@@ -161,6 +161,7 @@
|
|
|
161
161
|
"ownership": {
|
|
162
162
|
"baspiRef": "A1.3",
|
|
163
163
|
"lawSocietyRef": "TA7/1",
|
|
164
|
+
"ntsRef": "A1.1",
|
|
164
165
|
"title": "Ownership",
|
|
165
166
|
"type": "object",
|
|
166
167
|
"required": ["ownershipType"],
|
|
@@ -170,16 +171,9 @@
|
|
|
170
171
|
"RDSRef": "Tenure/Tenure",
|
|
171
172
|
"lawSocietyRef": "TA7/1.1",
|
|
172
173
|
"title": "What type of ownership is the property?",
|
|
173
|
-
"description": "
|
|
174
|
+
"description": "Choose Freehold if your property is a Managed Freehold or Commonhold. Choose Leasehold if your property is under a Shared Ownership arrangement.",
|
|
174
175
|
"type": "string",
|
|
175
|
-
"enum": [
|
|
176
|
-
"Freehold",
|
|
177
|
-
"Managed Freehold",
|
|
178
|
-
"Leasehold",
|
|
179
|
-
"Commonhold",
|
|
180
|
-
"Shared Ownership",
|
|
181
|
-
"Other"
|
|
182
|
-
]
|
|
176
|
+
"enum": ["Freehold", "Leasehold", "Other"]
|
|
183
177
|
}
|
|
184
178
|
},
|
|
185
179
|
"dependencies": {
|
|
@@ -189,23 +183,97 @@
|
|
|
189
183
|
"properties": {
|
|
190
184
|
"ownershipType": {
|
|
191
185
|
"enum": ["Freehold"]
|
|
192
|
-
}
|
|
193
|
-
},
|
|
194
|
-
"additionalProperties": false
|
|
195
|
-
},
|
|
196
|
-
{
|
|
197
|
-
"properties": {
|
|
198
|
-
"ownershipType": {
|
|
199
|
-
"enum": ["Other"]
|
|
200
186
|
},
|
|
201
|
-
"
|
|
202
|
-
"
|
|
203
|
-
"
|
|
204
|
-
"
|
|
205
|
-
|
|
187
|
+
"wholeFreeholdForSale": {
|
|
188
|
+
"title": "Is the entire freehold being sold?",
|
|
189
|
+
"description": "If not, describe the share for sale (e.g. Ground floor flat only)",
|
|
190
|
+
"$ref": "#/$defs/yesNoDetailIfNo"
|
|
191
|
+
},
|
|
192
|
+
"managedFreeholdOrCommonhold": {
|
|
193
|
+
"type": "object",
|
|
194
|
+
"properties": {
|
|
195
|
+
"isManagedFreeholdOrCommonhold": {
|
|
196
|
+
"title": "Is the Freehold a Managed Freehold or Commonhold?",
|
|
197
|
+
"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.",
|
|
198
|
+
"type": "string",
|
|
199
|
+
"enum": ["Neither", "Managed Freehold", "Commonhold"]
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
"required": ["isManagedFreeholdOrCommonhold"],
|
|
203
|
+
"dependencies": {
|
|
204
|
+
"isManagedFreeholdOrCommonhold": {
|
|
205
|
+
"oneOf": [
|
|
206
|
+
{
|
|
207
|
+
"properties": {
|
|
208
|
+
"isManagedFreeholdOrCommonhold": {
|
|
209
|
+
"enum": ["Neither"]
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"additionalProperties": false
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"properties": {
|
|
216
|
+
"isManagedFreeholdOrCommonhold": {
|
|
217
|
+
"enum": ["Managed Freehold", "Commonhold"]
|
|
218
|
+
},
|
|
219
|
+
"annualServiceCharge": {
|
|
220
|
+
"baspiRef": "A1.5.1",
|
|
221
|
+
"lawSocietyRef": "TA6/10.1",
|
|
222
|
+
"ntsRef": "A1.6",
|
|
223
|
+
"RDSRef": "TenureAgreements/ServiceCharges",
|
|
224
|
+
"title": "Amount of current annual service charge/estate rentcharge/maintenance contribution (£)",
|
|
225
|
+
"type": "number"
|
|
226
|
+
},
|
|
227
|
+
"largeAdditionalExpense": {
|
|
228
|
+
"baspiRef": "A1.5.2",
|
|
229
|
+
"lawSocietyRef": "TA6/10.1",
|
|
230
|
+
"RDSRef": "TenureAgreements/Repairs,TenureAgreements/ServicesCharges/Breakdown",
|
|
231
|
+
"title": "Have you received notice of any large expense in addition to the annual payment?",
|
|
232
|
+
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
233
|
+
"description": "If yes, please provide details and confirm whether there is a reserve fund or sinking fund which will cover the cost of the works."
|
|
234
|
+
},
|
|
235
|
+
"additionalFeesOnSale": {
|
|
236
|
+
"baspiRef": "A1.5.3",
|
|
237
|
+
"lawSocietyRef": "TA6/10.1",
|
|
238
|
+
"RDSRef": "TenureAgreements/LegalCosts/Actual, TenureAgreements/LegalCosts/Estimated",
|
|
239
|
+
"title": "Additional fees payable on sale (£)",
|
|
240
|
+
"type": "number"
|
|
241
|
+
},
|
|
242
|
+
"freeholderContactDetails": {
|
|
243
|
+
"baspiRef": "A1.5.4",
|
|
244
|
+
"lawSocietyRef": "TA7/4.1a",
|
|
245
|
+
"RDSRef": "TenureAgreements/Assignor",
|
|
246
|
+
"title": "The contact details of the freeholder or rentcharge owner",
|
|
247
|
+
"$ref": "#/$defs/contactDetails"
|
|
248
|
+
},
|
|
249
|
+
"managingAgentContactDetails": {
|
|
250
|
+
"baspiRef": "A1.5.5",
|
|
251
|
+
"lawSocietyRef": "TA7/4.1b",
|
|
252
|
+
"RDSRef": "Participants/Role",
|
|
253
|
+
"title": "The contact details of the managing agent",
|
|
254
|
+
"$ref": "#/$defs/contactDetails"
|
|
255
|
+
},
|
|
256
|
+
"managementCompanyDirectorRequirement": {
|
|
257
|
+
"baspiRef": "A1.5.6",
|
|
258
|
+
"RDSRef": "Property/Flags",
|
|
259
|
+
"title": "Is the owner of the property required to become a director in a management company for the maintenance of shared amenities?",
|
|
260
|
+
"$ref": "#/$defs/yesNo"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"required": [
|
|
264
|
+
"annualServiceCharge",
|
|
265
|
+
"largeAdditionalExpense",
|
|
266
|
+
"additionalFeesOnSale",
|
|
267
|
+
"freeholderContactDetails",
|
|
268
|
+
"managingAgentContactDetails",
|
|
269
|
+
"managementCompanyDirectorRequirement"
|
|
270
|
+
]
|
|
271
|
+
}
|
|
272
|
+
]
|
|
273
|
+
}
|
|
274
|
+
}
|
|
206
275
|
}
|
|
207
276
|
},
|
|
208
|
-
"required": ["otherOwnershipDetails"],
|
|
209
277
|
"additionalProperties": false
|
|
210
278
|
},
|
|
211
279
|
{
|
|
@@ -213,26 +281,86 @@
|
|
|
213
281
|
"ownershipType": {
|
|
214
282
|
"enum": ["Leasehold"]
|
|
215
283
|
},
|
|
284
|
+
"sharedOwnership": {
|
|
285
|
+
"type": "object",
|
|
286
|
+
"properties": {
|
|
287
|
+
"isSharedOwnership": {
|
|
288
|
+
"title": "Is the property under Shared Owenership or a Part-buy Part-rent arrangement?",
|
|
289
|
+
"type": "string",
|
|
290
|
+
"enum": ["Yes", "No"]
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
"required": ["isSharedOwnership"],
|
|
294
|
+
"dependencies": {
|
|
295
|
+
"isSharedOwnership": {
|
|
296
|
+
"oneOf": [
|
|
297
|
+
{
|
|
298
|
+
"properties": {
|
|
299
|
+
"isSharedOwnership": {
|
|
300
|
+
"enum": ["No"]
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
"additionalProperties": false
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"properties": {
|
|
307
|
+
"isSharedOwnership": {
|
|
308
|
+
"enum": ["Yes"]
|
|
309
|
+
},
|
|
310
|
+
"sharedOwnershipPercentage": {
|
|
311
|
+
"ntsRef": "A1.7",
|
|
312
|
+
"title": "Shared ownership percentage",
|
|
313
|
+
"type": "integer",
|
|
314
|
+
"minimum": 5,
|
|
315
|
+
"exclusiveMaximum": 100
|
|
316
|
+
},
|
|
317
|
+
"sharedOwnershipRent": {
|
|
318
|
+
"ntsRef": "A1.7",
|
|
319
|
+
"title": "Shared ownership rent (£)",
|
|
320
|
+
"type": "number",
|
|
321
|
+
"minimum": 0
|
|
322
|
+
},
|
|
323
|
+
"sharedOwnershipRentFrequency": {
|
|
324
|
+
"ntsRef": "A1.7",
|
|
325
|
+
"title": "Shared ownership rent frequency",
|
|
326
|
+
"type": "string",
|
|
327
|
+
"enum": ["Yearly", "Monthly", "Weekly"]
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
"required": [
|
|
331
|
+
"sharedOwnershipPercentage",
|
|
332
|
+
"sharedOwnershipRent",
|
|
333
|
+
"sharedOwnershipRentFrequency"
|
|
334
|
+
]
|
|
335
|
+
}
|
|
336
|
+
]
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
},
|
|
216
340
|
"startYearOfLease": {
|
|
217
341
|
"baspiRef": "A1.4.1b",
|
|
342
|
+
"ntsRef": "A1.2",
|
|
218
343
|
"title": "Year that the lease commenced",
|
|
219
344
|
"type": "integer",
|
|
220
345
|
"minimum": 1000
|
|
221
346
|
},
|
|
222
347
|
"lengthOfLeaseInYears": {
|
|
223
348
|
"baspiRef": "A1.4.1a",
|
|
349
|
+
"ntsRef": "A1.3",
|
|
224
350
|
"title": "Length of lease (years)",
|
|
225
351
|
"type": "integer"
|
|
226
352
|
},
|
|
227
353
|
"currentGroundRent": {
|
|
228
354
|
"baspiRef": "A1.4.2",
|
|
355
|
+
"ntsRef": "A1.4",
|
|
229
356
|
"RDSRef": "TenureAgreements/RentPayable/Value",
|
|
230
|
-
"lawSocietyRef": "TA7/1.
|
|
357
|
+
"lawSocietyRef": "TA7/1.2a",
|
|
231
358
|
"title": "Current annual ground rent (£)",
|
|
232
359
|
"type": "number"
|
|
233
360
|
},
|
|
234
361
|
"rentIncrease": {
|
|
235
362
|
"baspiRef": "A1.4.3",
|
|
363
|
+
"ntsRef": "A1.5",
|
|
236
364
|
"RDSRef": "TenureAgreement/isRentChangeable, TenureAgreements/RentChanges",
|
|
237
365
|
"title": "Does the ground rent increase?",
|
|
238
366
|
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
@@ -240,6 +368,7 @@
|
|
|
240
368
|
},
|
|
241
369
|
"annualServiceCharge": {
|
|
242
370
|
"baspiRef": "A1.5.1",
|
|
371
|
+
"ntsRef": "A1.6",
|
|
243
372
|
"RDSRef": "TenureAgreements/ServiceCharges",
|
|
244
373
|
"title": "Amount of current annual service charge/estate rentcharge/maintenance contribution (£)",
|
|
245
374
|
"type": "number"
|
|
@@ -259,12 +388,14 @@
|
|
|
259
388
|
},
|
|
260
389
|
"freeholderContactDetails": {
|
|
261
390
|
"baspiRef": "A1.5.4",
|
|
391
|
+
"lawSocietyRef": "TA7/4.1a",
|
|
262
392
|
"RDSRef": "TenureAgreements/Assignor",
|
|
263
393
|
"title": "The name, address and email address of the freeholder or rentcharge owner",
|
|
264
394
|
"$ref": "#/$defs/contactDetails"
|
|
265
395
|
},
|
|
266
396
|
"managingAgentContactDetails": {
|
|
267
397
|
"baspiRef": "A1.5.5",
|
|
398
|
+
"lawSocietyRef": "TA7/4.1b",
|
|
268
399
|
"RDSRef": "Participants/Role",
|
|
269
400
|
"title": "The name, address and email address of the managing agent",
|
|
270
401
|
"$ref": "#/$defs/contactDetails"
|
|
@@ -277,6 +408,7 @@
|
|
|
277
408
|
}
|
|
278
409
|
},
|
|
279
410
|
"required": [
|
|
411
|
+
"sharedOwnership",
|
|
280
412
|
"startYearOfLease",
|
|
281
413
|
"lengthOfLeaseInYears",
|
|
282
414
|
"currentGroundRent",
|
|
@@ -292,157 +424,17 @@
|
|
|
292
424
|
{
|
|
293
425
|
"properties": {
|
|
294
426
|
"ownershipType": {
|
|
295
|
-
"enum": ["
|
|
296
|
-
},
|
|
297
|
-
"annualServiceCharge": {
|
|
298
|
-
"baspiRef": "A1.5.1",
|
|
299
|
-
"lawSocietyRef": "TA6/10.1",
|
|
300
|
-
"RDSRef": "TenureAgreements/ServiceCharges",
|
|
301
|
-
"title": "Amount of current annual service charge/estate rentcharge/maintenance contribution (£)",
|
|
302
|
-
"type": "number"
|
|
303
|
-
},
|
|
304
|
-
"largeAdditionalExpense": {
|
|
305
|
-
"baspiRef": "A1.5.2",
|
|
306
|
-
"lawSocietyRef": "TA6/10.1",
|
|
307
|
-
"RDSRef": "TenureAgreements/Repairs,TenureAgreements/ServicesCharges/Breakdown",
|
|
308
|
-
"title": "Have you received notice of any large expense in addition to the annual payment?",
|
|
309
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
310
|
-
"description": "If yes, please provide details and confirm whether there is a reserve fund or sinking fund which will cover the cost of the works."
|
|
311
|
-
},
|
|
312
|
-
"additionalFeesOnSale": {
|
|
313
|
-
"baspiRef": "A1.5.3",
|
|
314
|
-
"lawSocietyRef": "TA6/10.1",
|
|
315
|
-
"RDSRef": "TenureAgreements/LegalCosts/Actual, TenureAgreements/LegalCosts/Estimated",
|
|
316
|
-
"title": "Additional fees payable on sale (£)",
|
|
317
|
-
"type": "number"
|
|
318
|
-
},
|
|
319
|
-
"freeholderContactDetails": {
|
|
320
|
-
"baspiRef": "A1.5.4",
|
|
321
|
-
"RDSRef": "TenureAgreements/Assignor",
|
|
322
|
-
"title": "The contact details of the freeholder or rentcharge owner",
|
|
323
|
-
"$ref": "#/$defs/contactDetails"
|
|
324
|
-
},
|
|
325
|
-
"managingAgentContactDetails": {
|
|
326
|
-
"baspiRef": "A1.5.5",
|
|
327
|
-
"RDSRef": "Participants/Role",
|
|
328
|
-
"title": "The contact details of the managing agent",
|
|
329
|
-
"$ref": "#/$defs/contactDetails"
|
|
330
|
-
},
|
|
331
|
-
"managementCompanyDirectorRequirement": {
|
|
332
|
-
"baspiRef": "A1.5.6",
|
|
333
|
-
"RDSRef": "Property/Flags",
|
|
334
|
-
"title": "Is the owner of the property required to become a director in a management company for the maintenance of shared amenities?",
|
|
335
|
-
"$ref": "#/$defs/yesNo"
|
|
336
|
-
}
|
|
337
|
-
},
|
|
338
|
-
"required": [
|
|
339
|
-
"annualServiceCharge",
|
|
340
|
-
"largeAdditionalExpense",
|
|
341
|
-
"additionalFeesOnSale",
|
|
342
|
-
"freeholderContactDetails",
|
|
343
|
-
"managingAgentContactDetails",
|
|
344
|
-
"managementCompanyDirectorRequirement"
|
|
345
|
-
]
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
"properties": {
|
|
349
|
-
"ownershipType": {
|
|
350
|
-
"enum": ["Shared Ownership"]
|
|
351
|
-
},
|
|
352
|
-
"sharedOwnershipPercentage": {
|
|
353
|
-
"title": "Shared ownership percentage",
|
|
354
|
-
"type": "integer",
|
|
355
|
-
"minimum": 5,
|
|
356
|
-
"exclusiveMaximum": 100
|
|
357
|
-
},
|
|
358
|
-
"sharedOwnershipRent": {
|
|
359
|
-
"title": "Shared ownership rent (£)",
|
|
360
|
-
"type": "number",
|
|
361
|
-
"minimum": 0
|
|
427
|
+
"enum": ["Other"]
|
|
362
428
|
},
|
|
363
|
-
"
|
|
364
|
-
"
|
|
429
|
+
"otherOwnershipDetails": {
|
|
430
|
+
"baspiRef": "A1.3.2",
|
|
431
|
+
"title": "Details of the ownership type",
|
|
365
432
|
"type": "string",
|
|
366
|
-
"
|
|
367
|
-
},
|
|
368
|
-
"startYearOfLease": {
|
|
369
|
-
"baspiRef": "A1.4.1b",
|
|
370
|
-
"title": "Year that the lease commenced",
|
|
371
|
-
"type": "integer",
|
|
372
|
-
"minimum": 1000
|
|
373
|
-
},
|
|
374
|
-
"lengthOfLeaseInYears": {
|
|
375
|
-
"baspiRef": "A1.4.1a",
|
|
376
|
-
"title": "Length of lease (years)",
|
|
377
|
-
"type": "integer"
|
|
378
|
-
},
|
|
379
|
-
"currentGroundRent": {
|
|
380
|
-
"baspiRef": "A1.4.2",
|
|
381
|
-
"RDSRef": "TenureAgreements/RentPayable/Value",
|
|
382
|
-
"lawSocietyRef": "TA7/1.2",
|
|
383
|
-
"title": "Current annual ground rent (£)",
|
|
384
|
-
"type": "number"
|
|
385
|
-
},
|
|
386
|
-
"rentIncrease": {
|
|
387
|
-
"baspiRef": "A1.4.3",
|
|
388
|
-
"RDSRef": "TenureAgreement/isRentChangeable, TenureAgreements/RentChanges",
|
|
389
|
-
"title": "Does the ground rent increase?",
|
|
390
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
391
|
-
"description": "Please provide full details of the ground rent increase e.g. how often and by how much and when the next increase is due."
|
|
392
|
-
},
|
|
393
|
-
"annualServiceCharge": {
|
|
394
|
-
"baspiRef": "A1.5.1",
|
|
395
|
-
"RDSRef": "TenureAgreements/ServiceCharges",
|
|
396
|
-
"title": "Amount of current annual service charge/estate rentcharge/maintenance contribution (£)",
|
|
397
|
-
"type": "number"
|
|
398
|
-
},
|
|
399
|
-
"largeAdditionalExpense": {
|
|
400
|
-
"baspiRef": "A1.5.2",
|
|
401
|
-
"RDSRef": "TenureAgreements/Repairs,TenureAgreements/ServicesCharges/Breakdown",
|
|
402
|
-
"title": "Have you received notice of any large expense in addition to the annual payment?",
|
|
403
|
-
"$ref": "#/$defs/yesNoDetailIfYes",
|
|
404
|
-
"description": "If yes, please provide details and confirm whether there is a reserve fund or sinking fund which will cover the cost of the works."
|
|
405
|
-
},
|
|
406
|
-
"additionalFeesOnSale": {
|
|
407
|
-
"baspiRef": "A1.5.3",
|
|
408
|
-
"RDSRef": "TenureAgreements/LegalCosts/Actual, TenureAgreements/LegalCosts/Estimated",
|
|
409
|
-
"title": "Additional fees payable on sale or letting (£)",
|
|
410
|
-
"type": "number"
|
|
411
|
-
},
|
|
412
|
-
"freeholderContactDetails": {
|
|
413
|
-
"baspiRef": "A1.5.4",
|
|
414
|
-
"RDSRef": "TenureAgreements/Assignor",
|
|
415
|
-
"title": "The contact details of the freeholder or rentcharge owner",
|
|
416
|
-
"$ref": "#/$defs/contactDetails"
|
|
417
|
-
},
|
|
418
|
-
"managingAgentContactDetails": {
|
|
419
|
-
"baspiRef": "A1.5.5",
|
|
420
|
-
"RDSRef": "Participants/Role",
|
|
421
|
-
"title": "The contact details of the managing agent",
|
|
422
|
-
"$ref": "#/$defs/contactDetails"
|
|
423
|
-
},
|
|
424
|
-
"managementCompanyDirectorRequirement": {
|
|
425
|
-
"baspiRef": "A1.5.6",
|
|
426
|
-
"RDSRef": "Property/Flags",
|
|
427
|
-
"title": "Is the owner of the Property required to become a director in a management company for the maintenance of shared amenities?",
|
|
428
|
-
"$ref": "#/$defs/yesNo"
|
|
433
|
+
"minLength": 1
|
|
429
434
|
}
|
|
430
435
|
},
|
|
431
|
-
"required": [
|
|
432
|
-
|
|
433
|
-
"sharedOwnershipRent",
|
|
434
|
-
"sharedOwnershipRentFrequency",
|
|
435
|
-
"startYearOfLease",
|
|
436
|
-
"lengthOfLeaseInYears",
|
|
437
|
-
"currentGroundRent",
|
|
438
|
-
"rentIncrease",
|
|
439
|
-
"annualServiceCharge",
|
|
440
|
-
"largeAdditionalExpense",
|
|
441
|
-
"additionalFeesOnSale",
|
|
442
|
-
"freeholderContactDetails",
|
|
443
|
-
"managingAgentContactDetails",
|
|
444
|
-
"managementCompanyDirectorRequirement"
|
|
445
|
-
]
|
|
436
|
+
"required": ["otherOwnershipDetails"],
|
|
437
|
+
"additionalProperties": false
|
|
446
438
|
}
|
|
447
439
|
]
|
|
448
440
|
}
|