@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.
Files changed (33) hide show
  1. package/index.js +15 -13
  2. package/package.json +1 -1
  3. package/src/examples/v3/exampleTransaction.json +82 -75
  4. package/src/schemas/v2/overlays/baspi.json +510 -2331
  5. package/src/schemas/v2/overlays/con29DW.json +36 -125
  6. package/src/schemas/v2/overlays/con29R.json +5 -143
  7. package/src/schemas/v2/overlays/fme1.json +48 -233
  8. package/src/schemas/v2/overlays/lpe1.json +75 -367
  9. package/src/schemas/v2/overlays/nts.json +17 -103
  10. package/src/schemas/v2/overlays/piq.json +146 -693
  11. package/src/schemas/v2/overlays/rds.json +50 -316
  12. package/src/schemas/v2/overlays/ta10.json +540 -1755
  13. package/src/schemas/v2/overlays/ta6.json +241 -1193
  14. package/src/schemas/v2/overlays/ta7.json +106 -440
  15. package/src/schemas/v3/combined.json +2434 -2581
  16. package/src/schemas/v3/overlays/baspi.json +1360 -3480
  17. package/src/schemas/v3/overlays/con29DW.json +36 -125
  18. package/src/schemas/v3/overlays/con29R.json +5 -143
  19. package/src/schemas/v3/overlays/fme1.json +53 -233
  20. package/src/schemas/v3/overlays/lpe1.json +85 -367
  21. package/src/schemas/v3/overlays/nts.json +711 -634
  22. package/src/schemas/v3/overlays/piq.json +452 -1190
  23. package/src/schemas/v3/overlays/rds.json +500 -1059
  24. package/src/schemas/v3/overlays/ta10.json +540 -1755
  25. package/src/schemas/v3/overlays/ta6.json +787 -1678
  26. package/src/schemas/v3/overlays/ta7.json +220 -462
  27. package/src/schemas/v3/pdtf-transaction.json +1976 -2286
  28. package/src/schemas/v3/skeleton.json +248 -214
  29. package/src/tests/v3/transactionSchema.test.js +28 -18
  30. package/src/tests/v3/verifiedClaimsValidator.test.js +2 -2
  31. package/src/utils/extractOverlay.js +5 -27
  32. package/src/tests/v2/transactionSchema.test.js +0 -361
  33. package/src/tests/v2/verifiedClaimsValidator.test.js +0 -128
@@ -30,8 +30,6 @@
30
30
  "properties": {
31
31
  "contactDetails": {
32
32
  "fme1Ref": "1",
33
- "title": "Contact Details",
34
- "description": "Complete the details for the relevant parties",
35
33
  "required": [
36
34
  "noticeOfTransferAndCharge",
37
35
  "collectsServiceCharges",
@@ -41,7 +39,6 @@
41
39
  "properties": {
42
40
  "rentchargeOwner": {
43
41
  "fme1Ref": "1.1",
44
- "title": "Rentcharge Owner",
45
42
  "required": [
46
43
  "contact"
47
44
  ],
@@ -66,7 +63,6 @@
66
63
  },
67
64
  "managementCompany": {
68
65
  "fme1Ref": "1.2",
69
- "title": "Management Company",
70
66
  "properties": {
71
67
  "contact": {
72
68
  "required": [
@@ -89,7 +85,6 @@
89
85
  },
90
86
  "managingAgent": {
91
87
  "fme1Ref": "1.3",
92
- "title": "Managing Agent",
93
88
  "required": [
94
89
  "contact"
95
90
  ],
@@ -113,7 +108,6 @@
113
108
  },
114
109
  "legalRepresentative": {
115
110
  "fme1Ref": "1.4",
116
- "title": "Legal Representative of one of the above",
117
111
  "properties": {
118
112
  "contact": {
119
113
  "required": [
@@ -136,13 +130,16 @@
136
130
  },
137
131
  "noticeOfTransferAndCharge": {
138
132
  "fme1Ref": "1.5",
139
- "title": "Who accepts service of the Notice of Transfer & Charge?",
140
- "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.",
141
133
  "properties": {
142
134
  "rentchargeOwner": {
143
135
  "required": [
144
136
  "isApplicableParty"
145
137
  ],
138
+ "properties": {
139
+ "isApplicableParty": {
140
+ "fme1Ref": "1.5.1"
141
+ }
142
+ },
146
143
  "oneOf": [
147
144
  null,
148
145
  {
@@ -230,7 +227,6 @@
230
227
  },
231
228
  "otherDetailsRequired": {
232
229
  "fme1Ref": "1.5.1",
233
- "title": "Are details other than the incoming owner's name, address and lender name required?",
234
230
  "discriminator": {
235
231
  "propertyName": "areOtherDetailsRequired"
236
232
  },
@@ -260,40 +256,18 @@
260
256
  }
261
257
  },
262
258
  "collectsServiceCharges": {
263
- "fme1Ref": "1.6",
264
- "title": "Who collects, or will collect, the Service charge?",
265
- "enum": [
266
- "Rentcharge Owner",
267
- "Management Company",
268
- "Managing Agent",
269
- "Not applicable"
270
- ]
259
+ "fme1Ref": "1.6"
271
260
  },
272
261
  "dealsWithDayToDayMaintenanceOfManagedArea": {
273
- "fme1Ref": "1.7",
274
- "title": "Who deals with, or will deal with, the day to day maintenance of the Managed Area?",
275
- "enum": [
276
- "Rentcharge Owner",
277
- "Management Company",
278
- "Managing Agent",
279
- "Not applicable"
280
- ]
262
+ "fme1Ref": "1.7"
281
263
  },
282
264
  "organisesManagedAreaInsurance": {
283
- "fme1Ref": "1.8",
284
- "title": "Who organises and administers the insurance for the Managed Areas?",
285
- "enum": [
286
- "Rentcharge Owner",
287
- "Management Company",
288
- "Managing Agent",
289
- "Not applicable"
290
- ]
265
+ "fme1Ref": "1.8"
291
266
  }
292
267
  }
293
268
  },
294
269
  "transferAndRegistration": {
295
270
  "fme1Ref": "2",
296
- "title": "Transfer and Registration",
297
271
  "required": [
298
272
  "deedOfCovenantRequired",
299
273
  "awareOfConsents",
@@ -303,7 +277,6 @@
303
277
  "properties": {
304
278
  "deedOfCovenantRequired": {
305
279
  "fme1Ref": "2.1",
306
- "title": "Is a Deed of Covenant Required?",
307
280
  "discriminator": {
308
281
  "propertyName": "yesNoNotKnown"
309
282
  },
@@ -326,12 +299,10 @@
326
299
  ]
327
300
  },
328
301
  "costsApplicableToTheDeed": {
329
- "fme1Ref": "2.1.1",
330
- "title": "Confirm the costs applicable to the Deed including VAT"
302
+ "fme1Ref": "2.1.1"
331
303
  },
332
304
  "personWhoDealsWithTheDeedOfCovenant": {
333
- "fme1Ref": "2.1.2",
334
- "title": "Provide details of the person who deals with the Deed of Covenant"
305
+ "fme1Ref": "2.1.2"
335
306
  }
336
307
  },
337
308
  "required": [
@@ -346,7 +317,6 @@
346
317
  },
347
318
  "awareOfConsents": {
348
319
  "fme1Ref": "2.2",
349
- "title": "Are you aware of consent having been given to any alterations or additions to the Property?",
350
320
  "discriminator": {
351
321
  "propertyName": "yesNo"
352
322
  },
@@ -368,8 +338,7 @@
368
338
  ]
369
339
  },
370
340
  "details": {
371
- "fme1Ref": "2.2.1",
372
- "title": "Provide details and copies of any consent"
341
+ "fme1Ref": "2.2.1"
373
342
  }
374
343
  },
375
344
  "required": [
@@ -383,7 +352,6 @@
383
352
  },
384
353
  "requirementsToBeMemberOfManagementCompany": {
385
354
  "fme1Ref": "2.3",
386
- "title": "Is the incoming Owner required to take a share in, or become a member of, the Management Company?",
387
355
  "discriminator": {
388
356
  "propertyName": "yesNo"
389
357
  },
@@ -405,8 +373,7 @@
405
373
  ]
406
374
  },
407
375
  "details": {
408
- "fme1Ref": "2.3.1",
409
- "title": "Provide details of the procedure and fees"
376
+ "fme1Ref": "2.3.1"
410
377
  }
411
378
  },
412
379
  "required": [
@@ -419,14 +386,12 @@
419
386
  ]
420
387
  },
421
388
  "procedureForObtainingCertificate": {
422
- "fme1Ref": "2.4",
423
- "title": "What is the procedure and cost for obtaining a certificate in accordance with a restriction in the Proprietorship Register at the Land Registry, if applicable?"
389
+ "fme1Ref": "2.4"
424
390
  }
425
391
  }
426
392
  },
427
393
  "serviceCharge": {
428
394
  "fme1Ref": "3",
429
- "title": "Service Charge",
430
395
  "required": [
431
396
  "annualServiceCharge",
432
397
  "serviceChargePaidUpToDate",
@@ -445,13 +410,10 @@
445
410
  ],
446
411
  "properties": {
447
412
  "annualServiceCharge": {
448
- "fme1Ref": "3.1",
449
- "title": "What is the annual Service Charge payable by this Property?",
450
- "description": "This should include any sums payable for the maintenance of the managed area"
413
+ "fme1Ref": "3.1"
451
414
  },
452
415
  "hasFixedRentcharge": {
453
- "fme1Ref": "3.1.1",
454
- "title": "If there is also a ‘fixed’ Rentcharge, please confirm the amount and explain why."
416
+ "fme1Ref": "3.1.1"
455
417
  },
456
418
  "largeAdditionalExpense": {
457
419
  "required": [
@@ -468,7 +430,6 @@
468
430
  },
469
431
  "serviceChargePaidUpToDate": {
470
432
  "fme1Ref": "3.2",
471
- "title": "Is the Service charge paid up-to-date?",
472
433
  "discriminator": {
473
434
  "propertyName": "yesNo"
474
435
  },
@@ -490,8 +451,7 @@
490
451
  ]
491
452
  },
492
453
  "details": {
493
- "fme1Ref": "3.2.1",
494
- "title": "Supply details of the arrears"
454
+ "fme1Ref": "3.2.1"
495
455
  }
496
456
  },
497
457
  "required": [
@@ -504,13 +464,10 @@
504
464
  ]
505
465
  },
506
466
  "lastDemandPeriod": {
507
- "fme1Ref": "3.3",
508
- "title": "What period is covered by the last demand?"
467
+ "fme1Ref": "3.3"
509
468
  },
510
469
  "propertiesContribute": {
511
470
  "fme1Ref": "3.4",
512
- "title": "How many properties contribute toward the maintenance of the Managed Area?",
513
- "description": "Stipulate the number of each applicable type of property",
514
471
  "required": [
515
472
  "residentialFreehold",
516
473
  "residentialLeasehold",
@@ -519,7 +476,6 @@
519
476
  },
520
477
  "doAllPropertiesContribute": {
521
478
  "fme1Ref": "3.4.1",
522
- "title": "Do all properties in the Managed Area contribute to the Service Charge?",
523
479
  "discriminator": {
524
480
  "propertyName": "yesNo"
525
481
  },
@@ -541,8 +497,7 @@
541
497
  ]
542
498
  },
543
499
  "details": {
544
- "fme1Ref": "3.4.1.1",
545
- "title": "If No, provide details as to why not"
500
+ "fme1Ref": "3.4.1.1"
546
501
  }
547
502
  }
548
503
  }
@@ -553,7 +508,6 @@
553
508
  },
554
509
  "excessPaymentAnticipated": {
555
510
  "fme1Ref": "3.5",
556
- "title": "Is any excess payment anticipated from the Property at the end of the financial year?",
557
511
  "discriminator": {
558
512
  "propertyName": "yesNo"
559
513
  },
@@ -575,8 +529,7 @@
575
529
  ]
576
530
  },
577
531
  "details": {
578
- "fme1Ref": "3.5.1",
579
- "title": "Provide details"
532
+ "fme1Ref": "3.5.1"
580
533
  }
581
534
  },
582
535
  "required": [
@@ -590,7 +543,6 @@
590
543
  },
591
544
  "hasInabilityToCollectAffectedMaintenance": {
592
545
  "fme1Ref": "3.6",
593
- "title": "In the last 12 months, has any inability to collect payments, from any party, affected (or is it likely to affect), the maintenance of the Managed Area?",
594
546
  "discriminator": {
595
547
  "propertyName": "yesNo"
596
548
  },
@@ -612,8 +564,7 @@
612
564
  ]
613
565
  },
614
566
  "details": {
615
- "fme1Ref": "3.6.1",
616
- "title": "Provide details"
567
+ "fme1Ref": "3.6.1"
617
568
  }
618
569
  },
619
570
  "required": [
@@ -627,7 +578,6 @@
627
578
  },
628
579
  "reserveFund": {
629
580
  "fme1Ref": "3.7",
630
- "title": "Does a Reserve Fund apply to the Managed Area?",
631
581
  "discriminator": {
632
582
  "propertyName": "yesNo"
633
583
  },
@@ -650,21 +600,17 @@
650
600
  },
651
601
  "amount": {
652
602
  "fme1Ref": "3.7.1",
653
- "title": "Confirm the amount collected held in the Reserve Fund",
654
603
  "properties": {
655
604
  "fromTheOwners": {
656
- "fme1Ref": "3.7.1a",
657
- "title": "From the Owners"
605
+ "fme1Ref": "3.7.1a"
658
606
  },
659
607
  "forTheManagedAreas": {
660
- "fme1Ref": "3.7.1b",
661
- "title": "For the entirety of the Managed Areas."
608
+ "fme1Ref": "3.7.1b"
662
609
  }
663
610
  }
664
611
  },
665
612
  "sufficentToCoverKnownExpenditure": {
666
613
  "fme1Ref": "3.7.2",
667
- "title": "Is the amount expected to be sufficient to cover the known expenditure?",
668
614
  "discriminator": {
669
615
  "propertyName": "yesNo"
670
616
  },
@@ -686,8 +632,7 @@
686
632
  ]
687
633
  },
688
634
  "details": {
689
- "fme1Ref": "3.7.3",
690
- "title": "Supply details"
635
+ "fme1Ref": "3.7.3"
691
636
  }
692
637
  },
693
638
  "required": [
@@ -710,12 +655,10 @@
710
655
  ]
711
656
  },
712
657
  "lastDecoratedPeriod": {
713
- "fme1Ref": "3.8",
714
- "title": "If parts of the Managed Areas require regular decoration confirm the date when the Managed Areas were last decorated, internally and externally."
658
+ "fme1Ref": "3.8"
715
659
  },
716
660
  "worksProposed": {
717
661
  "fme1Ref": "3.9",
718
- "title": "Within the next 2 years, are any works proposed to the Managed Areas anticipated to require an additional contribution greater than £250 from the Owner?",
719
662
  "discriminator": {
720
663
  "propertyName": "yesNo"
721
664
  },
@@ -739,8 +682,7 @@
739
682
  ]
740
683
  },
741
684
  "details": {
742
- "fme1Ref": "3.9.1",
743
- "title": "If so, provide details of the works and the contribution anticipated from the Owner."
685
+ "fme1Ref": "3.9.1"
744
686
  }
745
687
  },
746
688
  "required": [
@@ -754,7 +696,6 @@
754
696
  },
755
697
  "increaseInServiceChargeAnticipated": {
756
698
  "fme1Ref": "3.10",
757
- "title": "Is any increase in the Service Charge over 10% or £100, whichever is the greater, anticipated in the next 2 years?",
758
699
  "discriminator": {
759
700
  "propertyName": "yesNo"
760
701
  },
@@ -776,8 +717,7 @@
776
717
  ]
777
718
  },
778
719
  "details": {
779
- "fme1Ref": "3.10.1",
780
- "title": "Provide details"
720
+ "fme1Ref": "3.10.1"
781
721
  }
782
722
  },
783
723
  "required": [
@@ -791,7 +731,6 @@
791
731
  },
792
732
  "outstandingServiceChargeConsultation": {
793
733
  "fme1Ref": "3.11",
794
- "title": "Where you operate Service charge consultation, are there any outstanding Service charge consultation procedures?",
795
734
  "discriminator": {
796
735
  "propertyName": "yesNo"
797
736
  },
@@ -813,8 +752,7 @@
813
752
  ]
814
753
  },
815
754
  "details": {
816
- "fme1Ref": "3.11.1",
817
- "title": "Provide details"
755
+ "fme1Ref": "3.11.1"
818
756
  }
819
757
  },
820
758
  "required": [
@@ -828,7 +766,6 @@
828
766
  },
829
767
  "japaneseKnotweedAffectingManagedAreas": {
830
768
  "fme1Ref": "3.12",
831
- "title": "Are the Managed Areas known to be affected by Japanese knotweed or other invasive species?",
832
769
  "discriminator": {
833
770
  "propertyName": "yesNo"
834
771
  },
@@ -850,8 +787,7 @@
850
787
  ]
851
788
  },
852
789
  "details": {
853
- "fme1Ref": "3.12.1",
854
- "title": "Provide details and a copy of any invasive species management plan in place."
790
+ "fme1Ref": "3.12.1"
855
791
  }
856
792
  },
857
793
  "required": [
@@ -865,7 +801,6 @@
865
801
  },
866
802
  "transferFees": {
867
803
  "fme1Ref": "3.13",
868
- "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?",
869
804
  "discriminator": {
870
805
  "propertyName": "yesNo"
871
806
  },
@@ -887,8 +822,7 @@
887
822
  ]
888
823
  },
889
824
  "details": {
890
- "fme1Ref": "3.13.1",
891
- "title": "Provide details."
825
+ "fme1Ref": "3.13.1"
892
826
  }
893
827
  },
894
828
  "required": [
@@ -904,14 +838,12 @@
904
838
  },
905
839
  "insurance": {
906
840
  "fme1Ref": "4",
907
- "title": "Insurance",
908
841
  "required": [
909
842
  "managedAreaInsured"
910
843
  ],
911
844
  "properties": {
912
845
  "managedAreaInsured": {
913
846
  "fme1Ref": "4.1",
914
- "title": "Are the Managed Areas insured?",
915
847
  "discriminator": {
916
848
  "propertyName": "yesNo"
917
849
  },
@@ -934,7 +866,6 @@
934
866
  },
935
867
  "premiumsPaidUpToDate": {
936
868
  "fme1Ref": "4.1.1",
937
- "title": "Are the buildings insurance premium contributions payable by the Owner paid up to date for the Managed Areas?",
938
869
  "discriminator": {
939
870
  "propertyName": "yesNo"
940
871
  },
@@ -956,8 +887,7 @@
956
887
  ]
957
888
  },
958
889
  "details": {
959
- "fme1Ref": "4.1.1.1",
960
- "title": "Provide details of the arrears"
890
+ "fme1Ref": "4.1.1.1"
961
891
  }
962
892
  },
963
893
  "required": [
@@ -970,12 +900,10 @@
970
900
  ]
971
901
  },
972
902
  "lastDemandPeriod": {
973
- "fme1Ref": "4.2",
974
- "title": "What period is covered by the last demand?"
903
+ "fme1Ref": "4.2"
975
904
  },
976
905
  "claimsMade": {
977
906
  "fme1Ref": "4.3",
978
- "title": "Have any claims been made against the policy during the last 3 years?",
979
907
  "discriminator": {
980
908
  "propertyName": "yesNo"
981
909
  },
@@ -997,8 +925,7 @@
997
925
  ]
998
926
  },
999
927
  "details": {
1000
- "fme1Ref": "4.3.1",
1001
- "title": "Provide details"
928
+ "fme1Ref": "4.3.1"
1002
929
  }
1003
930
  },
1004
931
  "required": [
@@ -1012,7 +939,6 @@
1012
939
  },
1013
940
  "claimsAnticipated": {
1014
941
  "fme1Ref": "4.4",
1015
- "title": "Are any claims anticipated?",
1016
942
  "discriminator": {
1017
943
  "propertyName": "yesNo"
1018
944
  },
@@ -1034,8 +960,7 @@
1034
960
  ]
1035
961
  },
1036
962
  "details": {
1037
- "fme1Ref": "4.4.1",
1038
- "title": "Provide details"
963
+ "fme1Ref": "4.4.1"
1039
964
  }
1040
965
  },
1041
966
  "required": [
@@ -1049,7 +974,6 @@
1049
974
  },
1050
975
  "premiumIncludedInServiceCharge": {
1051
976
  "fme1Ref": "4.5",
1052
- "title": "Is the insurance premium included in the service charge?",
1053
977
  "discriminator": {
1054
978
  "propertyName": "yesNo"
1055
979
  },
@@ -1071,8 +995,7 @@
1071
995
  ]
1072
996
  },
1073
997
  "details": {
1074
- "fme1Ref": "4.6",
1075
- "title": "Confirm the annual amount payable for the Property"
998
+ "fme1Ref": "4.6"
1076
999
  }
1077
1000
  },
1078
1001
  "required": [
@@ -1086,7 +1009,6 @@
1086
1009
  },
1087
1010
  "standardTermsAvailable": {
1088
1011
  "fme1Ref": "4.7",
1089
- "title": "Are you aware of any reason why comprehensive insurance will not be available on standard terms in future?",
1090
1012
  "discriminator": {
1091
1013
  "propertyName": "yesNo"
1092
1014
  },
@@ -1108,8 +1030,7 @@
1108
1030
  ]
1109
1031
  },
1110
1032
  "details": {
1111
- "fme1Ref": "4.7.1",
1112
- "title": "Provide details"
1033
+ "fme1Ref": "4.7.1"
1113
1034
  }
1114
1035
  },
1115
1036
  "required": [
@@ -1123,7 +1044,6 @@
1123
1044
  },
1124
1045
  "nonComplianceWithConditions": {
1125
1046
  "fme1Ref": "4.8",
1126
- "title": "Are you aware of any non-compliance with the insurance conditions that would render the policy void?",
1127
1047
  "discriminator": {
1128
1048
  "propertyName": "yesNo"
1129
1049
  },
@@ -1145,8 +1065,7 @@
1145
1065
  ]
1146
1066
  },
1147
1067
  "details": {
1148
- "fme1Ref": "4.8.1",
1149
- "title": "Provide details"
1068
+ "fme1Ref": "4.8.1"
1150
1069
  }
1151
1070
  },
1152
1071
  "required": [
@@ -1179,7 +1098,6 @@
1179
1098
  },
1180
1099
  "disputes": {
1181
1100
  "fme1Ref": "5",
1182
- "title": "Disputes",
1183
1101
  "required": [
1184
1102
  "unresolvedDisputes",
1185
1103
  "breachOfTermsOfTransfer"
@@ -1187,7 +1105,6 @@
1187
1105
  "properties": {
1188
1106
  "unresolvedDisputes": {
1189
1107
  "fme1Ref": "5.1",
1190
- "title": "Are there any documented unresolved disputes with the Owners of any of the properties in the Managed Area?",
1191
1108
  "discriminator": {
1192
1109
  "propertyName": "yesNo"
1193
1110
  },
@@ -1209,8 +1126,7 @@
1209
1126
  ]
1210
1127
  },
1211
1128
  "details": {
1212
- "fme1Ref": "5.1.1",
1213
- "title": "To the extent permitted by the UK General Data Protection Regulations, please supply details"
1129
+ "fme1Ref": "5.1.1"
1214
1130
  }
1215
1131
  },
1216
1132
  "required": [
@@ -1224,7 +1140,6 @@
1224
1140
  },
1225
1141
  "breachOfTermsOfTransfer": {
1226
1142
  "fme1Ref": "5.2",
1227
- "title": "Are you aware of any breach of the terms of the Transfer of this Property?",
1228
1143
  "discriminator": {
1229
1144
  "propertyName": "yesNo"
1230
1145
  },
@@ -1246,8 +1161,7 @@
1246
1161
  ]
1247
1162
  },
1248
1163
  "details": {
1249
- "fme1Ref": "5.2.1",
1250
- "title": "Provide details"
1164
+ "fme1Ref": "5.2.1"
1251
1165
  }
1252
1166
  },
1253
1167
  "required": [
@@ -1263,8 +1177,6 @@
1263
1177
  },
1264
1178
  "requiredDocuments": {
1265
1179
  "fme1Ref": "6",
1266
- "title": "Required Documents",
1267
- "description": "Please provide the following applicable documents:",
1268
1180
  "required": [
1269
1181
  "serviceChargeAccounts",
1270
1182
  "managedAreasInsurancePolicy",
@@ -1284,141 +1196,49 @@
1284
1196
  ],
1285
1197
  "properties": {
1286
1198
  "serviceChargeAccounts": {
1287
- "fme1Ref": "6.1",
1288
- "title": "The last 3 years published Service Charge accounts.",
1289
- "enum": [
1290
- "Enclosed",
1291
- "To follow",
1292
- "Not applicable"
1293
- ]
1199
+ "fme1Ref": "6.1"
1294
1200
  },
1295
1201
  "managedAreasInsurancePolicy": {
1296
- "fme1Ref": "6.2",
1297
- "title": "Managed Areas insurance policy and schedule.",
1298
- "enum": [
1299
- "Enclosed",
1300
- "To follow",
1301
- "Not applicable"
1302
- ]
1202
+ "fme1Ref": "6.2"
1303
1203
  },
1304
1204
  "serviceChargeEstimatesCurrent": {
1305
- "fme1Ref": "6.3",
1306
- "title": "Service charge estimate for the current year and details of the anticipated payments on account for the Property.",
1307
- "enum": [
1308
- "Enclosed",
1309
- "To follow",
1310
- "Not applicable"
1311
- ]
1205
+ "fme1Ref": "6.3"
1312
1206
  },
1313
1207
  "serviceChargeEstimatesPrevious": {
1314
- "fme1Ref": "6.4",
1315
- "title": "Service charge estimate for the previous year for which accounts have not yet been prepared for the Property.",
1316
- "enum": [
1317
- "Enclosed",
1318
- "To follow",
1319
- "Not applicable"
1320
- ]
1208
+ "fme1Ref": "6.4"
1321
1209
  },
1322
1210
  "proposedWorksNotices": {
1323
- "fme1Ref": "6.5",
1324
- "title": "Copies of any notices served on the Owners in respect of any proposed works or any works which have not yet been paid for.",
1325
- "enum": [
1326
- "Enclosed",
1327
- "To follow",
1328
- "Not applicable"
1329
- ]
1211
+ "fme1Ref": "6.5"
1330
1212
  },
1331
1213
  "additionalRegulationsNotInTransfer": {
1332
- "fme1Ref": "6.6",
1333
- "title": "Any additional regulations or rules affecting the Property which are not contained in the transfer.",
1334
- "enum": [
1335
- "Enclosed",
1336
- "To follow",
1337
- "Not applicable"
1338
- ]
1214
+ "fme1Ref": "6.6"
1339
1215
  },
1340
1216
  "deedOfCovenant": {
1341
- "fme1Ref": "6.7",
1342
- "title": "Any required Deed of Covenant.",
1343
- "enum": [
1344
- "Enclosed",
1345
- "To follow",
1346
- "Buyer's lawyer to draft",
1347
- "Not applicable"
1348
- ]
1217
+ "fme1Ref": "6.7"
1349
1218
  },
1350
1219
  "certificateOfCompliance": {
1351
- "fme1Ref": "6.8",
1352
- "title": "Any Certificate of Compliance required by a Restriction on the registered title.",
1353
- "enum": [
1354
- "Enclosed",
1355
- "To follow",
1356
- "Buyer's lawyer to draft",
1357
- "Not applicable"
1358
- ]
1220
+ "fme1Ref": "6.8"
1359
1221
  },
1360
1222
  "permissionToAlter": {
1361
- "fme1Ref": "6.9",
1362
- "title": "Copy of any permission to alter the Property which has been issued.",
1363
- "enum": [
1364
- "Enclosed",
1365
- "To follow",
1366
- "Not applicable"
1367
- ]
1223
+ "fme1Ref": "6.9"
1368
1224
  },
1369
1225
  "noticesServedOnOwner": {
1370
- "fme1Ref": "6.10",
1371
- "title": "Copy of any known notices served on the Owner and documentation arising from them.",
1372
- "enum": [
1373
- "Enclosed",
1374
- "To follow",
1375
- "Not applicable"
1376
- ]
1226
+ "fme1Ref": "6.10"
1377
1227
  },
1378
1228
  "asbestosSurvey": {
1379
- "fme1Ref": "6.11",
1380
- "title": "Asbestos Survey for buildings part of the Managed Area built or converted before 2001.",
1381
- "enum": [
1382
- "Enclosed",
1383
- "To follow",
1384
- "Not applicable"
1385
- ]
1229
+ "fme1Ref": "6.11"
1386
1230
  },
1387
1231
  "managedAreaFireRiskAssessment": {
1388
- "fme1Ref": "6.12",
1389
- "title": "Fire Risk Assessment for communal areas in buildings forming part of the Managed Area.",
1390
- "enum": [
1391
- "Enclosed",
1392
- "To follow",
1393
- "Not applicable"
1394
- ]
1232
+ "fme1Ref": "6.12"
1395
1233
  },
1396
1234
  "memorandumAndArticles": {
1397
- "fme1Ref": "6.13",
1398
- "title": "Memorandum and Articles of Association of the Management Company.",
1399
- "enum": [
1400
- "Enclosed",
1401
- "To follow",
1402
- "Not applicable"
1403
- ]
1235
+ "fme1Ref": "6.13"
1404
1236
  },
1405
1237
  "managementCompanyAGMMinutes": {
1406
- "fme1Ref": "6.14",
1407
- "title": "Minutes from the last AGM for the Management Company.",
1408
- "enum": [
1409
- "Enclosed",
1410
- "To follow",
1411
- "Not applicable"
1412
- ]
1238
+ "fme1Ref": "6.14"
1413
1239
  },
1414
1240
  "feesForAdminServices": {
1415
- "fme1Ref": "6.15",
1416
- "title": "Menu of fees for your administrative services.",
1417
- "enum": [
1418
- "Enclosed",
1419
- "To follow",
1420
- "Not applicable"
1421
- ]
1241
+ "fme1Ref": "6.15"
1422
1242
  }
1423
1243
  }
1424
1244
  },