@pdtf/schemas 2.0.0-10 → 2.0.0-12

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdtf/schemas",
3
- "version": "2.0.0-10",
3
+ "version": "2.0.0-12",
4
4
  "description": "Property Data Trust Framework Schemas and Utilities",
5
5
  "main": "index.js",
6
6
  "directories": {
@@ -520,6 +520,7 @@
520
520
  "baspiRequired": ["contact"],
521
521
  "properties": {
522
522
  "contact": {
523
+ "baspiRef": "A1.5.4.1",
523
524
  "type": "object",
524
525
  "fme1Required": [
525
526
  "nameOrOrganisation",
@@ -534,32 +535,39 @@
534
535
  ],
535
536
  "properties": {
536
537
  "nameOrOrganisation": {
538
+ "baspiRef": "A1.5.4.1.1",
537
539
  "title": "Name or organisation",
538
540
  "type": "string",
539
541
  "minLength": 1
540
542
  },
541
543
  "address": {
544
+ "baspiRef": "A1.5.4.1.2",
542
545
  "title": "Address",
543
546
  "type": "object",
544
547
  "properties": {
545
548
  "line1": {
549
+ "baspiRef": "A1.5.4.1.2.1",
546
550
  "title": "Address line 1",
547
551
  "type": "string",
548
552
  "minLength": 1
549
553
  },
550
554
  "line2": {
555
+ "baspiRef": "A1.5.4.1.2.2",
551
556
  "title": "Address line 2",
552
557
  "type": "string"
553
558
  },
554
559
  "line3": {
560
+ "baspiRef": "A1.5.4.1.2.3",
555
561
  "title": "Address line 3",
556
562
  "type": "string"
557
563
  },
558
564
  "town": {
565
+ "baspiRef": "A1.5.4.1.2.4",
559
566
  "title": "Town",
560
567
  "type": "string"
561
568
  },
562
569
  "postcode": {
570
+ "baspiRef": "A1.5.4.1.2.5",
563
571
  "title": "Postcode",
564
572
  "type": "string",
565
573
  "minLength": 1
@@ -580,6 +588,7 @@
580
588
  "minLength": 1
581
589
  },
582
590
  "emailAddress": {
591
+ "baspiRef": "A1.5.5.1.3",
583
592
  "title": "Email address",
584
593
  "type": "string",
585
594
  "format": "email"
@@ -1395,16 +1404,19 @@
1395
1404
  },
1396
1405
  "requirementsToBeMemberOfManagementCompany": {
1397
1406
  "fme1Ref": "2.3",
1407
+ "baspiRef": "A1.5.6",
1398
1408
  "title": "Is the incoming Owner required to take a share in, or become a member of, the Management Company?",
1399
1409
  "type": "object",
1400
1410
  "properties": {
1401
1411
  "yesNo": {
1412
+ "baspiRef": "A1.5.6.1",
1402
1413
  "type": "string",
1403
1414
  "title": "",
1404
1415
  "enum": ["Yes", "No"]
1405
1416
  }
1406
1417
  },
1407
1418
  "fme1Required": ["yesNo"],
1419
+ "baspiRequired": ["yesNo"],
1408
1420
  "discriminator": {
1409
1421
  "propertyName": "yesNo"
1410
1422
  },
@@ -1445,7 +1457,7 @@
1445
1457
  "title": "Service Charge",
1446
1458
  "type": "object",
1447
1459
  "fme1Required": [
1448
- "serviceChargePayable",
1460
+ "annualServiceCharge",
1449
1461
  "serviceChargePaidUpToDate",
1450
1462
  "lastDemandPeriod",
1451
1463
  "propertiesContribute",
@@ -1460,22 +1472,64 @@
1460
1472
  "japaneseKnotweedAffectingManagedAreas",
1461
1473
  "transferFees"
1462
1474
  ],
1475
+ "baspiRequired": [
1476
+ "annualServiceCharge",
1477
+ "largeAdditionalExpense",
1478
+ "reserveFund"
1479
+ ],
1463
1480
  "properties": {
1464
- "serviceChargePayable": {
1481
+ "annualServiceCharge": {
1482
+ "baspiRef": "A1.5.1.1.2",
1465
1483
  "fme1Ref": "3.1",
1466
- "title": "What is the annual Service charge payable by this Property?",
1484
+ "title": "What is the annual Service Charge payable by this Property?",
1467
1485
  "description": "This should include any sums payable for the maintenance of the managed area",
1486
+ "type": "number"
1487
+ },
1488
+ "hasFixedRentcharge": {
1489
+ "type": "string",
1490
+ "fme1Ref": "3.1.1",
1491
+ "title": "If there is also a ‘fixed’ Rentcharge, please confirm the amount and explain why."
1492
+ },
1493
+ "largeAdditionalExpense": {
1494
+ "baspiRef": "A1.5.2.1",
1495
+ "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?",
1468
1496
  "type": "object",
1469
1497
  "properties": {
1470
- "amount": {
1471
- "type": "number",
1472
- "title": "Amount"
1473
- },
1474
- "hasFixedRentcharge": {
1498
+ "yesNo": {
1499
+ "baspiRef": "A1.5.2.2",
1475
1500
  "type": "string",
1476
- "title": "If there is also a ‘fixed’ Rentcharge, please confirm the amount and explain why."
1501
+ "title": "",
1502
+ "enum": ["Yes", "No"]
1477
1503
  }
1478
- }
1504
+ },
1505
+ "fme1Required": ["yesNo"],
1506
+ "baspiRequired": ["yesNo"],
1507
+ "discriminator": {
1508
+ "propertyName": "yesNo"
1509
+ },
1510
+ "oneOf": [
1511
+ {
1512
+ "properties": {
1513
+ "yesNo": {
1514
+ "enum": ["No"]
1515
+ }
1516
+ }
1517
+ },
1518
+ {
1519
+ "properties": {
1520
+ "yesNo": {
1521
+ "enum": ["Yes"]
1522
+ },
1523
+ "details": {
1524
+ "baspiRef": "A1.5.2.3",
1525
+ "title": "Details",
1526
+ "type": "string"
1527
+ }
1528
+ },
1529
+ "fme1Required": ["details"],
1530
+ "baspiRequired": ["details"]
1531
+ }
1532
+ ]
1479
1533
  },
1480
1534
  "serviceChargePaidUpToDate": {
1481
1535
  "fme1Ref": "3.2",
@@ -1968,16 +2022,19 @@
1968
2022
  },
1969
2023
  "transferFees": {
1970
2024
  "fme1Ref": "3.13",
2025
+ "baspiRef": "A1.5.3",
1971
2026
  "title": "Are there any transfer fees, deferred charges or similar fees, expressed as a percentage of the Property's value payable on an event such as resale or subletting?",
1972
2027
  "type": "object",
1973
2028
  "properties": {
1974
2029
  "yesNo": {
2030
+ "baspiRef": "A1.5.3.1",
1975
2031
  "type": "string",
1976
2032
  "title": "",
1977
2033
  "enum": ["Yes", "No"]
1978
2034
  }
1979
2035
  },
1980
2036
  "fme1Required": ["yesNo"],
2037
+ "baspiRequired": ["yesNo"],
1981
2038
  "discriminator": {
1982
2039
  "propertyName": "yesNo"
1983
2040
  },
@@ -1996,6 +2053,7 @@
1996
2053
  },
1997
2054
  "details": {
1998
2055
  "fme1Ref": "3.13.1",
2056
+ "baspiRef": "A1.5.3.2",
1999
2057
  "title": "Provide details.",
2000
2058
  "type": "string",
2001
2059
  "minLength": 1
@@ -2935,7 +2993,7 @@
2935
2993
  "minLength": 1
2936
2994
  }
2937
2995
  },
2938
- "fme1Required": [
2996
+ "lpe1Required": [
2939
2997
  "line1",
2940
2998
  "postcode"
2941
2999
  ]
@@ -3098,7 +3156,6 @@
3098
3156
  "baspiRef": "A1.5.5",
3099
3157
  "ta7Ref": "4.1b",
3100
3158
  "lpe1Ref": "1.3",
3101
- "fme1Ref": "1.3",
3102
3159
  "title": "Managing Agent",
3103
3160
  "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.",
3104
3161
  "type": "object",
@@ -3333,7 +3390,6 @@
3333
3390
  },
3334
3391
  "legalRepresentative": {
3335
3392
  "lpe1Ref": "1.5",
3336
- "fme1Ref": "1.4",
3337
3393
  "title": "Legal Representative of one of the above",
3338
3394
  "type": "object",
3339
3395
  "properties": {
@@ -3679,7 +3735,7 @@
3679
3735
  }
3680
3736
  },
3681
3737
  "noticeOfTransferAndCharge": {
3682
- "fme1Ref": "1.5",
3738
+ "lpe1Ref": "1.5",
3683
3739
  "title": "Who accepts service of the Notice of Transfer & Charge?",
3684
3740
  "description": "Tick the box beside each party and state the total fee including VAT for notice of transfer and charge. Tick 'Notice via email' column to confirm whether you will accept notice via email.",
3685
3741
  "type": "object",
@@ -3980,7 +4036,7 @@
3980
4036
  ]
3981
4037
  },
3982
4038
  "otherDetailsRequired": {
3983
- "fme1Ref": "1.5.1",
4039
+ "lpe1Ref": "1.5.1",
3984
4040
  "title": "Are details other than the incoming owner's name, address and lender name required?",
3985
4041
  "type": "object",
3986
4042
  "lpe1Required": [
@@ -4034,7 +4090,6 @@
4034
4090
  },
4035
4091
  "collectsServiceCharges": {
4036
4092
  "lpe1Ref": "1.8",
4037
- "fme1Ref": "1.6",
4038
4093
  "title": "Who collects the Service Charges?",
4039
4094
  "type": "string",
4040
4095
  "enum": [
@@ -4058,7 +4113,6 @@
4058
4113
  },
4059
4114
  "dealsWithDayToDayMaintenanceOfManagedArea": {
4060
4115
  "lpe1Ref": "1.11",
4061
- "fme1Ref": "1.7",
4062
4116
  "title": "Who deals with the day to day maintenance of the Managed Area?",
4063
4117
  "type": "string",
4064
4118
  "enum": [
@@ -4072,7 +4126,6 @@
4072
4126
  },
4073
4127
  "organisesBuildingInsurance": {
4074
4128
  "lpe1Ref": "1.12",
4075
- "fme1Ref": "1.8",
4076
4129
  "ta7Ref": "5.1",
4077
4130
  "title": "Who organises and administers the buildings insurance?",
4078
4131
  "type": "string",
@@ -4207,7 +4260,6 @@
4207
4260
  "properties": {
4208
4261
  "deedOfCovenantRequired": {
4209
4262
  "lpe1Ref": "2.1",
4210
- "fme1Ref": "2.1",
4211
4263
  "title": "Is a Deed of Covenant Required?",
4212
4264
  "type": "object",
4213
4265
  "properties": {
@@ -4236,13 +4288,11 @@
4236
4288
  },
4237
4289
  "costsApplicableToTheDeed": {
4238
4290
  "lpe1Ref": "2.1.1",
4239
- "fme1Ref": "2.1.1",
4240
4291
  "title": "Confirm the costs applicable to the Deed including VAT",
4241
4292
  "type": "number"
4242
4293
  },
4243
4294
  "personWhoDealsWithTheDeedOfCovenant": {
4244
4295
  "lpe1Ref": "2.1.2",
4245
- "fme1Ref": "2.1.2",
4246
4296
  "title": "Provide details of the person who deals with the Deed of Covenant",
4247
4297
  "type": "string",
4248
4298
  "minLength": 1
@@ -4295,7 +4345,6 @@
4295
4345
  },
4296
4346
  "awareOfConsents": {
4297
4347
  "lpe1Ref": "2.4",
4298
- "fme1Ref": "2.2",
4299
4348
  "ta7Ref": "9.3",
4300
4349
  "title": "Are you aware of consent having been given to any alterations or additions to the Property?",
4301
4350
  "type": "object",
@@ -4324,7 +4373,6 @@
4324
4373
  },
4325
4374
  "details": {
4326
4375
  "lpe1Ref": "2.4.1",
4327
- "fme1Ref": "2.2.1",
4328
4376
  "title": "Provide details and copies of any consent",
4329
4377
  "type": "string",
4330
4378
  "minLength": 1
@@ -4416,7 +4464,6 @@
4416
4464
  },
4417
4465
  "details": {
4418
4466
  "lpe1Ref": "2.5.1",
4419
- "fme1Ref": "2.4",
4420
4467
  "title": "Provide details of the procedures and fees. Include details of the person who deals with the new certificate or share.",
4421
4468
  "type": "string",
4422
4469
  "minLength": 1
@@ -5405,16 +5452,20 @@
5405
5452
  },
5406
5453
  "transferFees": {
5407
5454
  "lpe1Ref": "4.12",
5455
+ "baspiRef": "A1.5.3",
5408
5456
  "title": "Are there any transfer fees deferred service charges or similar fees, expressed as a percentage of the Property's value, payable on an event such as resale or subletting?",
5409
5457
  "type": "object",
5410
5458
  "properties": {
5411
5459
  "yesNo": {
5460
+ "lpe1Ref": "4.12.1",
5461
+ "baspiRef": "A1.5.3.1",
5412
5462
  "type": "string",
5413
5463
  "title": "",
5414
5464
  "enum": ["Yes", "No"]
5415
5465
  }
5416
5466
  },
5417
5467
  "lpe1Required": ["yesNo"],
5468
+ "baspiRequired": ["yesNo"],
5418
5469
  "discriminator": {
5419
5470
  "propertyName": "yesNo"
5420
5471
  },
@@ -5432,7 +5483,9 @@
5432
5483
  "enum": ["Yes"]
5433
5484
  },
5434
5485
  "details": {
5435
- "lpe1Ref": "4.12.1",
5486
+ "lpe1Ref": "4.12.2",
5487
+ "baspiRef": "A1.5.3.2",
5488
+
5436
5489
  "title": "Provide details.",
5437
5490
  "type": "string",
5438
5491
  "minLength": 1
@@ -5566,7 +5619,7 @@
5566
5619
  "difficultyInCollectingServiceCharge",
5567
5620
  "serviceChargeOwed",
5568
5621
  "propertiesContributingToMaintenanceOfManagedArea",
5569
- "serviceChargePayable",
5622
+ "adHocExpenses",
5570
5623
  "serviceChargePaidUpToDate",
5571
5624
  "excessPaymentAnticipated",
5572
5625
  "lastDemandPeriod",
@@ -8182,7 +8235,7 @@
8182
8235
  "baspiRef": "A3.2",
8183
8236
  "rdsRef": "WorksAlterationsChanges",
8184
8237
  "ta6Ref": "4.1b",
8185
- "title": "Has there been any change of use (e.g. from an office to a residence?",
8238
+ "title": "Has there been any change of use (e.g. from an office to a residence)?",
8186
8239
  "type": "object",
8187
8240
  "properties": {
8188
8241
  "yesNo": {
@@ -8311,7 +8364,7 @@
8311
8364
  {
8312
8365
  "properties": {
8313
8366
  "yesNo": {
8314
- "enum": ["No"]
8367
+ "enum": ["No", "Not required"]
8315
8368
  },
8316
8369
  "details": {
8317
8370
  "baspiRef": "A3.5.2.2",
@@ -13044,6 +13097,7 @@
13044
13097
  ],
13045
13098
  "properties": {
13046
13099
  "curtainRailsPolesPelmets": {
13100
+ "type": "object",
13047
13101
  "title": "Curtain rails/poles/pelmets",
13048
13102
  "properties": {
13049
13103
  "hallStairsLanding": {
@@ -13481,6 +13535,7 @@
13481
13535
  },
13482
13536
  "curtainsBlinds": {
13483
13537
  "title": "Curtains/blinds",
13538
+ "type": "object",
13484
13539
  "properties": {
13485
13540
  "hallStairsLanding": {
13486
13541
  "title": "Hall, stairs and landing",
@@ -17276,6 +17331,8 @@
17276
17331
  "enum": ["Yes"]
17277
17332
  },
17278
17333
  "centralHeatingDetails": {
17334
+ "baspiRef": "A7.4.0.0",
17335
+ "ta6Ref": "12.3",
17279
17336
  "type": "object",
17280
17337
  "title": "Central Heating Details",
17281
17338
  "properties": {
@@ -20021,10 +20078,8 @@
20021
20078
  "baspiRef": "B7.4.2",
20022
20079
  "title": "Confirm that you will handover details on day of completion",
20023
20080
  "description": "Confirm that you will provide the buyer with the login, password and link to user instructions for the relevant system(s). [NOTE: It is recommended that you reset the password before handing it over to avoid security issues by passing on your own password]",
20024
- "confirmation": {
20025
- "type": "string",
20026
- "enum": ["true", "false"]
20027
- }
20081
+ "type": "string",
20082
+ "enum": ["true", "false"]
20028
20083
  }
20029
20084
  },
20030
20085
  "baspiRequired": [
@@ -282,17 +282,50 @@
282
282
  ],
283
283
  "properties": {
284
284
  "contact": {
285
+ "baspiRef": "A1.5.4.1",
285
286
  "required": [
286
287
  "nameOrOrganisation",
287
288
  "address",
288
289
  "emailAddress"
289
290
  ],
290
291
  "properties": {
292
+ "nameOrOrganisation": {
293
+ "baspiRef": "A1.5.4.1.1",
294
+ "title": "Name or organisation"
295
+ },
291
296
  "address": {
297
+ "baspiRef": "A1.5.4.1.2",
298
+ "title": "Address",
292
299
  "required": [
293
300
  "line1",
294
301
  "postcode"
295
- ]
302
+ ],
303
+ "properties": {
304
+ "line1": {
305
+ "baspiRef": "A1.5.4.1.2.1",
306
+ "title": "Address line 1"
307
+ },
308
+ "line2": {
309
+ "baspiRef": "A1.5.4.1.2.2",
310
+ "title": "Address line 2"
311
+ },
312
+ "line3": {
313
+ "baspiRef": "A1.5.4.1.2.3",
314
+ "title": "Address line 3"
315
+ },
316
+ "town": {
317
+ "baspiRef": "A1.5.4.1.2.4",
318
+ "title": "Town"
319
+ },
320
+ "postcode": {
321
+ "baspiRef": "A1.5.4.1.2.5",
322
+ "title": "Postcode"
323
+ }
324
+ }
325
+ },
326
+ "emailAddress": {
327
+ "baspiRef": "A1.5.5.1.3",
328
+ "title": "Email address"
296
329
  }
297
330
  }
298
331
  }
@@ -357,9 +390,153 @@
357
390
  }
358
391
  }
359
392
  },
393
+ "transferAndRegistration": {
394
+ "properties": {
395
+ "requirementsToBeMemberOfManagementCompany": {
396
+ "baspiRef": "A1.5.6",
397
+ "title": "Is the incoming Owner required to take a share in, or become a member of, the Management Company?",
398
+ "discriminator": {
399
+ "propertyName": "yesNo"
400
+ },
401
+ "oneOf": [
402
+ {
403
+ "properties": {
404
+ "yesNo": {
405
+ "enum": [
406
+ "No"
407
+ ]
408
+ }
409
+ }
410
+ },
411
+ {
412
+ "properties": {
413
+ "yesNo": {
414
+ "enum": [
415
+ "Yes"
416
+ ]
417
+ }
418
+ }
419
+ }
420
+ ],
421
+ "required": [
422
+ "yesNo"
423
+ ],
424
+ "properties": {
425
+ "yesNo": {
426
+ "baspiRef": "A1.5.6.1",
427
+ "enum": [
428
+ "Yes",
429
+ "No"
430
+ ]
431
+ }
432
+ }
433
+ }
434
+ }
435
+ },
360
436
  "serviceCharge": {
361
437
  "baspiRef": "A1.5.1",
362
- "title": "Service Charge"
438
+ "title": "Service Charge",
439
+ "required": [
440
+ "annualServiceCharge",
441
+ "largeAdditionalExpense",
442
+ "reserveFund"
443
+ ],
444
+ "properties": {
445
+ "annualServiceCharge": {
446
+ "baspiRef": "A1.5.1.1.2",
447
+ "title": "What is the annual Service Charge payable by this Property?",
448
+ "description": "This should include any sums payable for the maintenance of the managed area"
449
+ },
450
+ "largeAdditionalExpense": {
451
+ "baspiRef": "A1.5.2.1",
452
+ "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?",
453
+ "discriminator": {
454
+ "propertyName": "yesNo"
455
+ },
456
+ "oneOf": [
457
+ {
458
+ "properties": {
459
+ "yesNo": {
460
+ "enum": [
461
+ "No"
462
+ ]
463
+ }
464
+ }
465
+ },
466
+ {
467
+ "properties": {
468
+ "yesNo": {
469
+ "enum": [
470
+ "Yes"
471
+ ]
472
+ },
473
+ "details": {
474
+ "baspiRef": "A1.5.2.3",
475
+ "title": "Details"
476
+ }
477
+ },
478
+ "required": [
479
+ "details"
480
+ ]
481
+ }
482
+ ],
483
+ "required": [
484
+ "yesNo"
485
+ ],
486
+ "properties": {
487
+ "yesNo": {
488
+ "baspiRef": "A1.5.2.2",
489
+ "enum": [
490
+ "Yes",
491
+ "No"
492
+ ]
493
+ }
494
+ }
495
+ },
496
+ "transferFees": {
497
+ "baspiRef": "A1.5.3",
498
+ "title": "Are there any transfer fees, deferred charges or similar fees, expressed as a percentage of the Property's value payable on an event such as resale or subletting?",
499
+ "discriminator": {
500
+ "propertyName": "yesNo"
501
+ },
502
+ "oneOf": [
503
+ {
504
+ "properties": {
505
+ "yesNo": {
506
+ "enum": [
507
+ "No"
508
+ ]
509
+ }
510
+ }
511
+ },
512
+ {
513
+ "properties": {
514
+ "yesNo": {
515
+ "enum": [
516
+ "Yes"
517
+ ]
518
+ },
519
+ "details": {
520
+ "baspiRef": "A1.5.3.2",
521
+ "title": "Provide details."
522
+ }
523
+ }
524
+ }
525
+ ],
526
+ "required": [
527
+ "yesNo"
528
+ ],
529
+ "properties": {
530
+ "yesNo": {
531
+ "baspiRef": "A1.5.3.1",
532
+ "enum": [
533
+ "Yes",
534
+ "No"
535
+ ]
536
+ }
537
+ }
538
+ }
539
+ }
363
540
  }
364
541
  }
365
542
  }
@@ -876,6 +1053,49 @@
876
1053
  ]
877
1054
  }
878
1055
  }
1056
+ },
1057
+ "transferFees": {
1058
+ "baspiRef": "A1.5.3",
1059
+ "title": "Are there any transfer fees deferred service charges or similar fees, expressed as a percentage of the Property's value, payable on an event such as resale or subletting?",
1060
+ "discriminator": {
1061
+ "propertyName": "yesNo"
1062
+ },
1063
+ "oneOf": [
1064
+ {
1065
+ "properties": {
1066
+ "yesNo": {
1067
+ "enum": [
1068
+ "No"
1069
+ ]
1070
+ }
1071
+ }
1072
+ },
1073
+ {
1074
+ "properties": {
1075
+ "yesNo": {
1076
+ "enum": [
1077
+ "Yes"
1078
+ ]
1079
+ },
1080
+ "details": {
1081
+ "baspiRef": "A1.5.3.2",
1082
+ "title": "Provide details."
1083
+ }
1084
+ }
1085
+ }
1086
+ ],
1087
+ "required": [
1088
+ "yesNo"
1089
+ ],
1090
+ "properties": {
1091
+ "yesNo": {
1092
+ "baspiRef": "A1.5.3.1",
1093
+ "enum": [
1094
+ "Yes",
1095
+ "No"
1096
+ ]
1097
+ }
1098
+ }
879
1099
  }
880
1100
  },
881
1101
  "required": [
@@ -1961,7 +2181,7 @@
1961
2181
  },
1962
2182
  "changeOfUse": {
1963
2183
  "baspiRef": "A3.2",
1964
- "title": "Has there been any change of use (e.g. from an office to a residence?",
2184
+ "title": "Has there been any change of use (e.g. from an office to a residence)?",
1965
2185
  "discriminator": {
1966
2186
  "propertyName": "yesNo"
1967
2187
  },
@@ -2081,7 +2301,8 @@
2081
2301
  "properties": {
2082
2302
  "yesNo": {
2083
2303
  "enum": [
2084
- "No"
2304
+ "No",
2305
+ "Not required"
2085
2306
  ]
2086
2307
  },
2087
2308
  "details": {
@@ -5245,6 +5466,8 @@
5245
5466
  ]
5246
5467
  },
5247
5468
  "centralHeatingDetails": {
5469
+ "baspiRef": "A7.4.0.0",
5470
+ "title": "Central Heating Details",
5248
5471
  "required": [
5249
5472
  "centralHeatingFuel",
5250
5473
  "centralHeatingInstalled",
@@ -8172,7 +8395,11 @@
8172
8395
  "handoverOnCompletion": {
8173
8396
  "baspiRef": "B7.4.2",
8174
8397
  "title": "Confirm that you will handover details on day of completion",
8175
- "description": "Confirm that you will provide the buyer with the login, password and link to user instructions for the relevant system(s). [NOTE: It is recommended that you reset the password before handing it over to avoid security issues by passing on your own password]"
8398
+ "description": "Confirm that you will provide the buyer with the login, password and link to user instructions for the relevant system(s). [NOTE: It is recommended that you reset the password before handing it over to avoid security issues by passing on your own password]",
8399
+ "enum": [
8400
+ "true",
8401
+ "false"
8402
+ ]
8176
8403
  }
8177
8404
  },
8178
8405
  "required": [
@@ -428,7 +428,7 @@
428
428
  "fme1Ref": "3",
429
429
  "title": "Service Charge",
430
430
  "required": [
431
- "serviceChargePayable",
431
+ "annualServiceCharge",
432
432
  "serviceChargePaidUpToDate",
433
433
  "lastDemandPeriod",
434
434
  "propertiesContribute",
@@ -444,11 +444,28 @@
444
444
  "transferFees"
445
445
  ],
446
446
  "properties": {
447
- "serviceChargePayable": {
447
+ "annualServiceCharge": {
448
448
  "fme1Ref": "3.1",
449
- "title": "What is the annual Service charge payable by this Property?",
449
+ "title": "What is the annual Service Charge payable by this Property?",
450
450
  "description": "This should include any sums payable for the maintenance of the managed area"
451
451
  },
452
+ "hasFixedRentcharge": {
453
+ "fme1Ref": "3.1.1",
454
+ "title": "If there is also a ‘fixed’ Rentcharge, please confirm the amount and explain why."
455
+ },
456
+ "largeAdditionalExpense": {
457
+ "required": [
458
+ "yesNo"
459
+ ],
460
+ "oneOf": [
461
+ null,
462
+ {
463
+ "required": [
464
+ "details"
465
+ ]
466
+ }
467
+ ]
468
+ },
452
469
  "serviceChargePaidUpToDate": {
453
470
  "fme1Ref": "3.2",
454
471
  "title": "Is the Service charge paid up-to-date?",
@@ -1413,198 +1430,6 @@
1413
1430
  }
1414
1431
  }
1415
1432
  }
1416
- },
1417
- {
1418
- "properties": {
1419
- "leaseholdInformation": {
1420
- "properties": {
1421
- "contactDetails": {
1422
- "properties": {
1423
- "contacts": {
1424
- "properties": {
1425
- "rentchargeOwner": {
1426
- "properties": {
1427
- "contact": {
1428
- "properties": {
1429
- "address": {
1430
- "required": [
1431
- "line1",
1432
- "postcode"
1433
- ]
1434
- }
1435
- }
1436
- }
1437
- }
1438
- },
1439
- "managingAgent": {
1440
- "fme1Ref": "1.3",
1441
- "title": "Managing Agent",
1442
- "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."
1443
- },
1444
- "legalRepresentative": {
1445
- "fme1Ref": "1.4",
1446
- "title": "Legal Representative of one of the above"
1447
- }
1448
- }
1449
- },
1450
- "serviceContactAssignments": {
1451
- "properties": {
1452
- "noticeOfTransferAndCharge": {
1453
- "fme1Ref": "1.5",
1454
- "title": "Who accepts service of the Notice of Transfer & Charge?",
1455
- "description": "Tick the box beside each party and state the total fee including VAT for notice of transfer and charge. Tick 'Notice via email' column to confirm whether you will accept notice via email.",
1456
- "properties": {
1457
- "otherDetailsRequired": {
1458
- "fme1Ref": "1.5.1",
1459
- "title": "Are details other than the incoming owner's name, address and lender name required?",
1460
- "discriminator": {
1461
- "propertyName": "areOtherDetailsRequired"
1462
- },
1463
- "oneOf": [
1464
- {
1465
- "properties": {
1466
- "areOtherDetailsRequired": {
1467
- "const": "No"
1468
- }
1469
- }
1470
- },
1471
- {
1472
- "properties": {
1473
- "areOtherDetailsRequired": {
1474
- "const": "Yes"
1475
- }
1476
- }
1477
- }
1478
- ]
1479
- }
1480
- }
1481
- },
1482
- "collectsServiceCharges": {
1483
- "fme1Ref": "1.6",
1484
- "title": "Who collects the Service Charges?",
1485
- "enum": [
1486
- "Rentcharge Owner",
1487
- "Landlord",
1488
- "Management Company",
1489
- "Managing Agent",
1490
- "Not applicable"
1491
- ]
1492
- },
1493
- "dealsWithDayToDayMaintenanceOfManagedArea": {
1494
- "fme1Ref": "1.7",
1495
- "title": "Who deals with the day to day maintenance of the Managed Area?",
1496
- "enum": [
1497
- "Rentcharge Owner",
1498
- "Landlord",
1499
- "Management Company",
1500
- "Managing Agent",
1501
- "the Lessees",
1502
- "Not applicable"
1503
- ]
1504
- },
1505
- "organisesBuildingInsurance": {
1506
- "fme1Ref": "1.8",
1507
- "title": "Who organises and administers the buildings insurance?",
1508
- "enum": [
1509
- "Rentcharge Owner",
1510
- "Landlord",
1511
- "Management Company",
1512
- "Managing Agent",
1513
- "the Lessees",
1514
- "Not applicable"
1515
- ]
1516
- }
1517
- }
1518
- }
1519
- }
1520
- },
1521
- "transferAndRegistration": {
1522
- "properties": {
1523
- "deedOfCovenantRequired": {
1524
- "fme1Ref": "2.1",
1525
- "title": "Is a Deed of Covenant Required?",
1526
- "discriminator": {
1527
- "propertyName": "yesNoNotKnown"
1528
- },
1529
- "oneOf": [
1530
- {
1531
- "properties": {
1532
- "yesNoNotKnown": {
1533
- "enum": [
1534
- "No",
1535
- "Not Known"
1536
- ]
1537
- }
1538
- }
1539
- },
1540
- {
1541
- "properties": {
1542
- "yesNoNotKnown": {
1543
- "enum": [
1544
- "Yes"
1545
- ]
1546
- },
1547
- "costsApplicableToTheDeed": {
1548
- "fme1Ref": "2.1.1",
1549
- "title": "Confirm the costs applicable to the Deed including VAT"
1550
- },
1551
- "personWhoDealsWithTheDeedOfCovenant": {
1552
- "fme1Ref": "2.1.2",
1553
- "title": "Provide details of the person who deals with the Deed of Covenant"
1554
- }
1555
- }
1556
- }
1557
- ]
1558
- },
1559
- "awareOfConsents": {
1560
- "fme1Ref": "2.2",
1561
- "title": "Are you aware of consent having been given to any alterations or additions to the Property?",
1562
- "discriminator": {
1563
- "propertyName": "yesNo"
1564
- },
1565
- "oneOf": [
1566
- {
1567
- "properties": {
1568
- "yesNo": {
1569
- "enum": [
1570
- "No"
1571
- ]
1572
- }
1573
- }
1574
- },
1575
- {
1576
- "properties": {
1577
- "yesNo": {
1578
- "enum": [
1579
- "Yes"
1580
- ]
1581
- },
1582
- "details": {
1583
- "fme1Ref": "2.2.1",
1584
- "title": "Provide details and copies of any consent"
1585
- }
1586
- }
1587
- }
1588
- ]
1589
- },
1590
- "requirementsToBeMemberOfManagementCompany": {
1591
- "oneOf": [
1592
- null,
1593
- {
1594
- "properties": {
1595
- "details": {
1596
- "fme1Ref": "2.4",
1597
- "title": "Provide details of the procedures and fees. Include details of the person who deals with the new certificate or share."
1598
- }
1599
- }
1600
- }
1601
- ]
1602
- }
1603
- }
1604
- }
1605
- }
1606
- }
1607
- }
1608
1433
  }
1609
1434
  ]
1610
1435
  }
@@ -99,7 +99,15 @@
99
99
  "address",
100
100
  "telephone",
101
101
  "emailAddress"
102
- ]
102
+ ],
103
+ "properties": {
104
+ "address": {
105
+ "required": [
106
+ "line1",
107
+ "postcode"
108
+ ]
109
+ }
110
+ }
103
111
  }
104
112
  }
105
113
  },
@@ -337,6 +345,9 @@
337
345
  }
338
346
  },
339
347
  "noticeOfTransferAndCharge": {
348
+ "lpe1Ref": "1.5",
349
+ "title": "Who accepts service of the Notice of Transfer & Charge?",
350
+ "description": "Tick the box beside each party and state the total fee including VAT for notice of transfer and charge. Tick 'Notice via email' column to confirm whether you will accept notice via email.",
340
351
  "properties": {
341
352
  "rentchargeOwner": {
342
353
  "required": [
@@ -428,16 +439,32 @@
428
439
  ]
429
440
  },
430
441
  "otherDetailsRequired": {
431
- "required": [
432
- "areOtherDetailsRequired"
433
- ],
442
+ "lpe1Ref": "1.5.1",
443
+ "title": "Are details other than the incoming owner's name, address and lender name required?",
444
+ "discriminator": {
445
+ "propertyName": "areOtherDetailsRequired"
446
+ },
434
447
  "oneOf": [
435
- null,
436
448
  {
449
+ "properties": {
450
+ "areOtherDetailsRequired": {
451
+ "const": "No"
452
+ }
453
+ }
454
+ },
455
+ {
456
+ "properties": {
457
+ "areOtherDetailsRequired": {
458
+ "const": "Yes"
459
+ }
460
+ },
437
461
  "required": [
438
462
  "details"
439
463
  ]
440
464
  }
465
+ ],
466
+ "required": [
467
+ "areOtherDetailsRequired"
441
468
  ]
442
469
  }
443
470
  }
@@ -1286,7 +1313,7 @@
1286
1313
  ]
1287
1314
  },
1288
1315
  "details": {
1289
- "lpe1Ref": "4.12.1",
1316
+ "lpe1Ref": "4.12.2",
1290
1317
  "title": "Provide details."
1291
1318
  }
1292
1319
  },
@@ -1297,7 +1324,16 @@
1297
1324
  ],
1298
1325
  "required": [
1299
1326
  "yesNo"
1300
- ]
1327
+ ],
1328
+ "properties": {
1329
+ "yesNo": {
1330
+ "lpe1Ref": "4.12.1",
1331
+ "enum": [
1332
+ "Yes",
1333
+ "No"
1334
+ ]
1335
+ }
1336
+ }
1301
1337
  },
1302
1338
  "allPropertiesContribute": {
1303
1339
  "lpe1Ref": "4.13",
@@ -1395,7 +1431,7 @@
1395
1431
  "difficultyInCollectingServiceCharge",
1396
1432
  "serviceChargeOwed",
1397
1433
  "propertiesContributingToMaintenanceOfManagedArea",
1398
- "serviceChargePayable",
1434
+ "adHocExpenses",
1399
1435
  "serviceChargePaidUpToDate",
1400
1436
  "excessPaymentAnticipated",
1401
1437
  "lastDemandPeriod",
@@ -473,7 +473,7 @@
473
473
  },
474
474
  "changeOfUse": {
475
475
  "rdsRef": "WorksAlterationsChanges",
476
- "title": "Has there been any change of use (e.g. from an office to a residence?",
476
+ "title": "Has there been any change of use (e.g. from an office to a residence)?",
477
477
  "discriminator": {
478
478
  "propertyName": "yesNo"
479
479
  },
@@ -542,7 +542,8 @@
542
542
  "properties": {
543
543
  "yesNo": {
544
544
  "enum": [
545
- "No"
545
+ "No",
546
+ "Not required"
546
547
  ]
547
548
  }
548
549
  }
@@ -413,7 +413,7 @@
413
413
  },
414
414
  "changeOfUse": {
415
415
  "ta6Ref": "4.1b",
416
- "title": "Has there been any change of use (e.g. from an office to a residence?",
416
+ "title": "Has there been any change of use (e.g. from an office to a residence)?",
417
417
  "discriminator": {
418
418
  "propertyName": "yesNo"
419
419
  },
@@ -513,7 +513,8 @@
513
513
  "properties": {
514
514
  "yesNo": {
515
515
  "enum": [
516
- "No"
516
+ "No",
517
+ "Not required"
517
518
  ]
518
519
  },
519
520
  "details": {
@@ -1716,6 +1717,8 @@
1716
1717
  {
1717
1718
  "properties": {
1718
1719
  "centralHeatingDetails": {
1720
+ "ta6Ref": "12.3",
1721
+ "title": "Central Heating Details",
1719
1722
  "properties": {
1720
1723
  "centralHeatingFuel": {
1721
1724
  "properties": {
@@ -1236,20 +1236,52 @@
1236
1236
  "title": "Service Charge",
1237
1237
  "type": "object",
1238
1238
  "properties": {
1239
- "serviceChargePayable": {
1240
- "title": "What is the annual Service charge payable by this Property?",
1239
+ "annualServiceCharge": {
1240
+ "title": "What is the annual Service Charge payable by this Property?",
1241
1241
  "description": "This should include any sums payable for the maintenance of the managed area",
1242
+ "type": "number"
1243
+ },
1244
+ "hasFixedRentcharge": {
1245
+ "type": "string",
1246
+ "title": "If there is also a ‘fixed’ Rentcharge, please confirm the amount and explain why."
1247
+ },
1248
+ "largeAdditionalExpense": {
1249
+ "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?",
1242
1250
  "type": "object",
1243
1251
  "properties": {
1244
- "amount": {
1245
- "type": "number",
1246
- "title": "Amount"
1247
- },
1248
- "hasFixedRentcharge": {
1252
+ "yesNo": {
1249
1253
  "type": "string",
1250
- "title": "If there is also a ‘fixed’ Rentcharge, please confirm the amount and explain why."
1254
+ "title": "",
1255
+ "enum": [
1256
+ "Yes",
1257
+ "No"
1258
+ ]
1251
1259
  }
1252
- }
1260
+ },
1261
+ "oneOf": [
1262
+ {
1263
+ "properties": {
1264
+ "yesNo": {
1265
+ "enum": [
1266
+ "No"
1267
+ ]
1268
+ }
1269
+ }
1270
+ },
1271
+ {
1272
+ "properties": {
1273
+ "yesNo": {
1274
+ "enum": [
1275
+ "Yes"
1276
+ ]
1277
+ },
1278
+ "details": {
1279
+ "title": "Details",
1280
+ "type": "string"
1281
+ }
1282
+ }
1283
+ }
1284
+ ]
1253
1285
  },
1254
1286
  "serviceChargePaidUpToDate": {
1255
1287
  "type": "object",
@@ -7267,7 +7299,7 @@
7267
7299
  ]
7268
7300
  },
7269
7301
  "changeOfUse": {
7270
- "title": "Has there been any change of use (e.g. from an office to a residence?",
7302
+ "title": "Has there been any change of use (e.g. from an office to a residence)?",
7271
7303
  "type": "object",
7272
7304
  "properties": {
7273
7305
  "yesNo": {
@@ -7391,7 +7423,8 @@
7391
7423
  "properties": {
7392
7424
  "yesNo": {
7393
7425
  "enum": [
7394
- "No"
7426
+ "No",
7427
+ "Not required"
7395
7428
  ]
7396
7429
  },
7397
7430
  "details": {
@@ -11992,6 +12025,7 @@
11992
12025
  "type": "object",
11993
12026
  "properties": {
11994
12027
  "curtainRailsPolesPelmets": {
12028
+ "type": "object",
11995
12029
  "title": "Curtain rails/poles/pelmets",
11996
12030
  "properties": {
11997
12031
  "hallStairsLanding": {
@@ -12425,6 +12459,7 @@
12425
12459
  },
12426
12460
  "curtainsBlinds": {
12427
12461
  "title": "Curtains/blinds",
12462
+ "type": "object",
12428
12463
  "properties": {
12429
12464
  "hallStairsLanding": {
12430
12465
  "title": "Hall, stairs and landing",
@@ -18656,13 +18691,11 @@
18656
18691
  "handoverOnCompletion": {
18657
18692
  "title": "Confirm that you will handover details on day of completion",
18658
18693
  "description": "Confirm that you will provide the buyer with the login, password and link to user instructions for the relevant system(s). [NOTE: It is recommended that you reset the password before handing it over to avoid security issues by passing on your own password]",
18659
- "confirmation": {
18660
- "type": "string",
18661
- "enum": [
18662
- "true",
18663
- "false"
18664
- ]
18665
- }
18694
+ "type": "string",
18695
+ "enum": [
18696
+ "true",
18697
+ "false"
18698
+ ]
18666
18699
  }
18667
18700
  }
18668
18701
  }