@pdtf/schemas 2.3.0 → 3.0.0-10

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 (41) hide show
  1. package/index.js +52 -94
  2. package/package.json +1 -1
  3. package/src/examples/v2/exampleTransaction.json +6 -20
  4. package/src/examples/v3/exampleTransaction.json +904 -0
  5. package/src/mappings/SendPropertyDetailsRequestSchema.json +1588 -0
  6. package/src/mappings/adf.js +1 -1
  7. package/src/schemas/v2/combined.json +13206 -12615
  8. package/src/schemas/v2/overlays/baspi.json +510 -2331
  9. package/src/schemas/v2/overlays/con29DW.json +682 -762
  10. package/src/schemas/v2/overlays/con29R.json +2914 -3073
  11. package/src/schemas/v2/overlays/fme1.json +48 -233
  12. package/src/schemas/v2/overlays/llc1.json +12 -33
  13. package/src/schemas/v2/overlays/lpe1.json +75 -367
  14. package/src/schemas/v2/overlays/nts.json +17 -103
  15. package/src/schemas/v2/overlays/piq.json +146 -693
  16. package/src/schemas/v2/overlays/rds.json +66 -300
  17. package/src/schemas/v2/overlays/ta10.json +540 -1755
  18. package/src/schemas/v2/overlays/ta6.json +241 -1193
  19. package/src/schemas/v2/overlays/ta7.json +106 -440
  20. package/src/schemas/v2/pdtf-transaction.json +13656 -12911
  21. package/src/schemas/v2/skeleton.json +1342 -1155
  22. package/src/schemas/v3/combined.json +38477 -0
  23. package/src/schemas/v3/overlays/baspi.json +8022 -0
  24. package/src/schemas/v3/overlays/con29DW.json +705 -0
  25. package/src/schemas/v3/overlays/con29R.json +2956 -0
  26. package/src/schemas/v3/overlays/fme1.json +1264 -0
  27. package/src/schemas/v3/overlays/llc1.json +25 -0
  28. package/src/schemas/v3/overlays/lpe1.json +2181 -0
  29. package/src/schemas/v3/overlays/nts.json +1937 -0
  30. package/src/schemas/v3/overlays/oc1.json +2799 -0
  31. package/src/schemas/v3/overlays/piq.json +3391 -0
  32. package/src/schemas/v3/overlays/rds.json +3818 -0
  33. package/src/schemas/v3/overlays/ta10.json +5306 -0
  34. package/src/schemas/v3/overlays/ta6.json +4410 -0
  35. package/src/schemas/v3/overlays/ta7.json +1157 -0
  36. package/src/schemas/v3/pdtf-transaction.json +34858 -0
  37. package/src/schemas/v3/skeleton.json +4018 -0
  38. package/src/tests/{v2 → v3}/transactionSchema.test.js +46 -36
  39. package/src/tests/{v2 → v3}/verifiedClaimsValidator.test.js +11 -11
  40. package/src/utils/extractOverlay.js +12 -34
  41. package/src/utils/hmlrLLC1.json +0 -275
@@ -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,8 +130,6 @@
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": [
@@ -230,7 +222,6 @@
230
222
  },
231
223
  "otherDetailsRequired": {
232
224
  "fme1Ref": "1.5.1",
233
- "title": "Are details other than the incoming owner's name, address and lender name required?",
234
225
  "discriminator": {
235
226
  "propertyName": "areOtherDetailsRequired"
236
227
  },
@@ -260,40 +251,18 @@
260
251
  }
261
252
  },
262
253
  "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
- ]
254
+ "fme1Ref": "1.6"
271
255
  },
272
256
  "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
- ]
257
+ "fme1Ref": "1.7"
281
258
  },
282
259
  "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
- ]
260
+ "fme1Ref": "1.8"
291
261
  }
292
262
  }
293
263
  },
294
264
  "transferAndRegistration": {
295
265
  "fme1Ref": "2",
296
- "title": "Transfer and Registration",
297
266
  "required": [
298
267
  "deedOfCovenantRequired",
299
268
  "awareOfConsents",
@@ -303,7 +272,6 @@
303
272
  "properties": {
304
273
  "deedOfCovenantRequired": {
305
274
  "fme1Ref": "2.1",
306
- "title": "Is a Deed of Covenant Required?",
307
275
  "discriminator": {
308
276
  "propertyName": "yesNoNotKnown"
309
277
  },
@@ -326,12 +294,10 @@
326
294
  ]
327
295
  },
328
296
  "costsApplicableToTheDeed": {
329
- "fme1Ref": "2.1.1",
330
- "title": "Confirm the costs applicable to the Deed including VAT"
297
+ "fme1Ref": "2.1.1"
331
298
  },
332
299
  "personWhoDealsWithTheDeedOfCovenant": {
333
- "fme1Ref": "2.1.2",
334
- "title": "Provide details of the person who deals with the Deed of Covenant"
300
+ "fme1Ref": "2.1.2"
335
301
  }
336
302
  },
337
303
  "required": [
@@ -346,7 +312,6 @@
346
312
  },
347
313
  "awareOfConsents": {
348
314
  "fme1Ref": "2.2",
349
- "title": "Are you aware of consent having been given to any alterations or additions to the Property?",
350
315
  "discriminator": {
351
316
  "propertyName": "yesNo"
352
317
  },
@@ -368,8 +333,7 @@
368
333
  ]
369
334
  },
370
335
  "details": {
371
- "fme1Ref": "2.2.1",
372
- "title": "Provide details and copies of any consent"
336
+ "fme1Ref": "2.2.1"
373
337
  }
374
338
  },
375
339
  "required": [
@@ -383,7 +347,6 @@
383
347
  },
384
348
  "requirementsToBeMemberOfManagementCompany": {
385
349
  "fme1Ref": "2.3",
386
- "title": "Is the incoming Owner required to take a share in, or become a member of, the Management Company?",
387
350
  "discriminator": {
388
351
  "propertyName": "yesNo"
389
352
  },
@@ -405,8 +368,7 @@
405
368
  ]
406
369
  },
407
370
  "details": {
408
- "fme1Ref": "2.3.1",
409
- "title": "Provide details of the procedure and fees"
371
+ "fme1Ref": "2.3.1"
410
372
  }
411
373
  },
412
374
  "required": [
@@ -419,14 +381,12 @@
419
381
  ]
420
382
  },
421
383
  "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?"
384
+ "fme1Ref": "2.4"
424
385
  }
425
386
  }
426
387
  },
427
388
  "serviceCharge": {
428
389
  "fme1Ref": "3",
429
- "title": "Service Charge",
430
390
  "required": [
431
391
  "annualServiceCharge",
432
392
  "serviceChargePaidUpToDate",
@@ -445,13 +405,10 @@
445
405
  ],
446
406
  "properties": {
447
407
  "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"
408
+ "fme1Ref": "3.1"
451
409
  },
452
410
  "hasFixedRentcharge": {
453
- "fme1Ref": "3.1.1",
454
- "title": "If there is also a ‘fixed’ Rentcharge, please confirm the amount and explain why."
411
+ "fme1Ref": "3.1.1"
455
412
  },
456
413
  "largeAdditionalExpense": {
457
414
  "required": [
@@ -468,7 +425,6 @@
468
425
  },
469
426
  "serviceChargePaidUpToDate": {
470
427
  "fme1Ref": "3.2",
471
- "title": "Is the Service charge paid up-to-date?",
472
428
  "discriminator": {
473
429
  "propertyName": "yesNo"
474
430
  },
@@ -490,8 +446,7 @@
490
446
  ]
491
447
  },
492
448
  "details": {
493
- "fme1Ref": "3.2.1",
494
- "title": "Supply details of the arrears"
449
+ "fme1Ref": "3.2.1"
495
450
  }
496
451
  },
497
452
  "required": [
@@ -504,13 +459,10 @@
504
459
  ]
505
460
  },
506
461
  "lastDemandPeriod": {
507
- "fme1Ref": "3.3",
508
- "title": "What period is covered by the last demand?"
462
+ "fme1Ref": "3.3"
509
463
  },
510
464
  "propertiesContribute": {
511
465
  "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
466
  "required": [
515
467
  "residentialFreehold",
516
468
  "residentialLeasehold",
@@ -519,7 +471,6 @@
519
471
  },
520
472
  "doAllPropertiesContribute": {
521
473
  "fme1Ref": "3.4.1",
522
- "title": "Do all properties in the Managed Area contribute to the Service Charge?",
523
474
  "discriminator": {
524
475
  "propertyName": "yesNo"
525
476
  },
@@ -541,8 +492,7 @@
541
492
  ]
542
493
  },
543
494
  "details": {
544
- "fme1Ref": "3.4.1.1",
545
- "title": "If No, provide details as to why not"
495
+ "fme1Ref": "3.4.1.1"
546
496
  }
547
497
  }
548
498
  }
@@ -553,7 +503,6 @@
553
503
  },
554
504
  "excessPaymentAnticipated": {
555
505
  "fme1Ref": "3.5",
556
- "title": "Is any excess payment anticipated from the Property at the end of the financial year?",
557
506
  "discriminator": {
558
507
  "propertyName": "yesNo"
559
508
  },
@@ -575,8 +524,7 @@
575
524
  ]
576
525
  },
577
526
  "details": {
578
- "fme1Ref": "3.5.1",
579
- "title": "Provide details"
527
+ "fme1Ref": "3.5.1"
580
528
  }
581
529
  },
582
530
  "required": [
@@ -590,7 +538,6 @@
590
538
  },
591
539
  "hasInabilityToCollectAffectedMaintenance": {
592
540
  "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
541
  "discriminator": {
595
542
  "propertyName": "yesNo"
596
543
  },
@@ -612,8 +559,7 @@
612
559
  ]
613
560
  },
614
561
  "details": {
615
- "fme1Ref": "3.6.1",
616
- "title": "Provide details"
562
+ "fme1Ref": "3.6.1"
617
563
  }
618
564
  },
619
565
  "required": [
@@ -627,7 +573,6 @@
627
573
  },
628
574
  "reserveFund": {
629
575
  "fme1Ref": "3.7",
630
- "title": "Does a Reserve Fund apply to the Managed Area?",
631
576
  "discriminator": {
632
577
  "propertyName": "yesNo"
633
578
  },
@@ -650,21 +595,17 @@
650
595
  },
651
596
  "amount": {
652
597
  "fme1Ref": "3.7.1",
653
- "title": "Confirm the amount collected held in the Reserve Fund",
654
598
  "properties": {
655
599
  "fromTheOwners": {
656
- "fme1Ref": "3.7.1a",
657
- "title": "From the Owners"
600
+ "fme1Ref": "3.7.1a"
658
601
  },
659
602
  "forTheManagedAreas": {
660
- "fme1Ref": "3.7.1b",
661
- "title": "For the entirety of the Managed Areas."
603
+ "fme1Ref": "3.7.1b"
662
604
  }
663
605
  }
664
606
  },
665
607
  "sufficentToCoverKnownExpenditure": {
666
608
  "fme1Ref": "3.7.2",
667
- "title": "Is the amount expected to be sufficient to cover the known expenditure?",
668
609
  "discriminator": {
669
610
  "propertyName": "yesNo"
670
611
  },
@@ -686,8 +627,7 @@
686
627
  ]
687
628
  },
688
629
  "details": {
689
- "fme1Ref": "3.7.3",
690
- "title": "Supply details"
630
+ "fme1Ref": "3.7.3"
691
631
  }
692
632
  },
693
633
  "required": [
@@ -710,12 +650,10 @@
710
650
  ]
711
651
  },
712
652
  "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."
653
+ "fme1Ref": "3.8"
715
654
  },
716
655
  "worksProposed": {
717
656
  "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
657
  "discriminator": {
720
658
  "propertyName": "yesNo"
721
659
  },
@@ -739,8 +677,7 @@
739
677
  ]
740
678
  },
741
679
  "details": {
742
- "fme1Ref": "3.9.1",
743
- "title": "If so, provide details of the works and the contribution anticipated from the Owner."
680
+ "fme1Ref": "3.9.1"
744
681
  }
745
682
  },
746
683
  "required": [
@@ -754,7 +691,6 @@
754
691
  },
755
692
  "increaseInServiceChargeAnticipated": {
756
693
  "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
694
  "discriminator": {
759
695
  "propertyName": "yesNo"
760
696
  },
@@ -776,8 +712,7 @@
776
712
  ]
777
713
  },
778
714
  "details": {
779
- "fme1Ref": "3.10.1",
780
- "title": "Provide details"
715
+ "fme1Ref": "3.10.1"
781
716
  }
782
717
  },
783
718
  "required": [
@@ -791,7 +726,6 @@
791
726
  },
792
727
  "outstandingServiceChargeConsultation": {
793
728
  "fme1Ref": "3.11",
794
- "title": "Where you operate Service charge consultation, are there any outstanding Service charge consultation procedures?",
795
729
  "discriminator": {
796
730
  "propertyName": "yesNo"
797
731
  },
@@ -813,8 +747,7 @@
813
747
  ]
814
748
  },
815
749
  "details": {
816
- "fme1Ref": "3.11.1",
817
- "title": "Provide details"
750
+ "fme1Ref": "3.11.1"
818
751
  }
819
752
  },
820
753
  "required": [
@@ -828,7 +761,6 @@
828
761
  },
829
762
  "japaneseKnotweedAffectingManagedAreas": {
830
763
  "fme1Ref": "3.12",
831
- "title": "Are the Managed Areas known to be affected by Japanese knotweed or other invasive species?",
832
764
  "discriminator": {
833
765
  "propertyName": "yesNo"
834
766
  },
@@ -850,8 +782,7 @@
850
782
  ]
851
783
  },
852
784
  "details": {
853
- "fme1Ref": "3.12.1",
854
- "title": "Provide details and a copy of any invasive species management plan in place."
785
+ "fme1Ref": "3.12.1"
855
786
  }
856
787
  },
857
788
  "required": [
@@ -865,7 +796,6 @@
865
796
  },
866
797
  "transferFees": {
867
798
  "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
799
  "discriminator": {
870
800
  "propertyName": "yesNo"
871
801
  },
@@ -887,8 +817,7 @@
887
817
  ]
888
818
  },
889
819
  "details": {
890
- "fme1Ref": "3.13.1",
891
- "title": "Provide details."
820
+ "fme1Ref": "3.13.1"
892
821
  }
893
822
  },
894
823
  "required": [
@@ -904,14 +833,12 @@
904
833
  },
905
834
  "insurance": {
906
835
  "fme1Ref": "4",
907
- "title": "Insurance",
908
836
  "required": [
909
837
  "managedAreaInsured"
910
838
  ],
911
839
  "properties": {
912
840
  "managedAreaInsured": {
913
841
  "fme1Ref": "4.1",
914
- "title": "Are the Managed Areas insured?",
915
842
  "discriminator": {
916
843
  "propertyName": "yesNo"
917
844
  },
@@ -934,7 +861,6 @@
934
861
  },
935
862
  "premiumsPaidUpToDate": {
936
863
  "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
864
  "discriminator": {
939
865
  "propertyName": "yesNo"
940
866
  },
@@ -956,8 +882,7 @@
956
882
  ]
957
883
  },
958
884
  "details": {
959
- "fme1Ref": "4.1.1.1",
960
- "title": "Provide details of the arrears"
885
+ "fme1Ref": "4.1.1.1"
961
886
  }
962
887
  },
963
888
  "required": [
@@ -970,12 +895,10 @@
970
895
  ]
971
896
  },
972
897
  "lastDemandPeriod": {
973
- "fme1Ref": "4.2",
974
- "title": "What period is covered by the last demand?"
898
+ "fme1Ref": "4.2"
975
899
  },
976
900
  "claimsMade": {
977
901
  "fme1Ref": "4.3",
978
- "title": "Have any claims been made against the policy during the last 3 years?",
979
902
  "discriminator": {
980
903
  "propertyName": "yesNo"
981
904
  },
@@ -997,8 +920,7 @@
997
920
  ]
998
921
  },
999
922
  "details": {
1000
- "fme1Ref": "4.3.1",
1001
- "title": "Provide details"
923
+ "fme1Ref": "4.3.1"
1002
924
  }
1003
925
  },
1004
926
  "required": [
@@ -1012,7 +934,6 @@
1012
934
  },
1013
935
  "claimsAnticipated": {
1014
936
  "fme1Ref": "4.4",
1015
- "title": "Are any claims anticipated?",
1016
937
  "discriminator": {
1017
938
  "propertyName": "yesNo"
1018
939
  },
@@ -1034,8 +955,7 @@
1034
955
  ]
1035
956
  },
1036
957
  "details": {
1037
- "fme1Ref": "4.4.1",
1038
- "title": "Provide details"
958
+ "fme1Ref": "4.4.1"
1039
959
  }
1040
960
  },
1041
961
  "required": [
@@ -1049,7 +969,6 @@
1049
969
  },
1050
970
  "premiumIncludedInServiceCharge": {
1051
971
  "fme1Ref": "4.5",
1052
- "title": "Is the insurance premium included in the service charge?",
1053
972
  "discriminator": {
1054
973
  "propertyName": "yesNo"
1055
974
  },
@@ -1071,8 +990,7 @@
1071
990
  ]
1072
991
  },
1073
992
  "details": {
1074
- "fme1Ref": "4.6",
1075
- "title": "Confirm the annual amount payable for the Property"
993
+ "fme1Ref": "4.6"
1076
994
  }
1077
995
  },
1078
996
  "required": [
@@ -1086,7 +1004,6 @@
1086
1004
  },
1087
1005
  "standardTermsAvailable": {
1088
1006
  "fme1Ref": "4.7",
1089
- "title": "Are you aware of any reason why comprehensive insurance will not be available on standard terms in future?",
1090
1007
  "discriminator": {
1091
1008
  "propertyName": "yesNo"
1092
1009
  },
@@ -1108,8 +1025,7 @@
1108
1025
  ]
1109
1026
  },
1110
1027
  "details": {
1111
- "fme1Ref": "4.7.1",
1112
- "title": "Provide details"
1028
+ "fme1Ref": "4.7.1"
1113
1029
  }
1114
1030
  },
1115
1031
  "required": [
@@ -1123,7 +1039,6 @@
1123
1039
  },
1124
1040
  "nonComplianceWithConditions": {
1125
1041
  "fme1Ref": "4.8",
1126
- "title": "Are you aware of any non-compliance with the insurance conditions that would render the policy void?",
1127
1042
  "discriminator": {
1128
1043
  "propertyName": "yesNo"
1129
1044
  },
@@ -1145,8 +1060,7 @@
1145
1060
  ]
1146
1061
  },
1147
1062
  "details": {
1148
- "fme1Ref": "4.8.1",
1149
- "title": "Provide details"
1063
+ "fme1Ref": "4.8.1"
1150
1064
  }
1151
1065
  },
1152
1066
  "required": [
@@ -1179,7 +1093,6 @@
1179
1093
  },
1180
1094
  "disputes": {
1181
1095
  "fme1Ref": "5",
1182
- "title": "Disputes",
1183
1096
  "required": [
1184
1097
  "unresolvedDisputes",
1185
1098
  "breachOfTermsOfTransfer"
@@ -1187,7 +1100,6 @@
1187
1100
  "properties": {
1188
1101
  "unresolvedDisputes": {
1189
1102
  "fme1Ref": "5.1",
1190
- "title": "Are there any documented unresolved disputes with the Owners of any of the properties in the Managed Area?",
1191
1103
  "discriminator": {
1192
1104
  "propertyName": "yesNo"
1193
1105
  },
@@ -1209,8 +1121,7 @@
1209
1121
  ]
1210
1122
  },
1211
1123
  "details": {
1212
- "fme1Ref": "5.1.1",
1213
- "title": "To the extent permitted by the UK General Data Protection Regulations, please supply details"
1124
+ "fme1Ref": "5.1.1"
1214
1125
  }
1215
1126
  },
1216
1127
  "required": [
@@ -1224,7 +1135,6 @@
1224
1135
  },
1225
1136
  "breachOfTermsOfTransfer": {
1226
1137
  "fme1Ref": "5.2",
1227
- "title": "Are you aware of any breach of the terms of the Transfer of this Property?",
1228
1138
  "discriminator": {
1229
1139
  "propertyName": "yesNo"
1230
1140
  },
@@ -1246,8 +1156,7 @@
1246
1156
  ]
1247
1157
  },
1248
1158
  "details": {
1249
- "fme1Ref": "5.2.1",
1250
- "title": "Provide details"
1159
+ "fme1Ref": "5.2.1"
1251
1160
  }
1252
1161
  },
1253
1162
  "required": [
@@ -1263,8 +1172,6 @@
1263
1172
  },
1264
1173
  "requiredDocuments": {
1265
1174
  "fme1Ref": "6",
1266
- "title": "Required Documents",
1267
- "description": "Please provide the following applicable documents:",
1268
1175
  "required": [
1269
1176
  "serviceChargeAccounts",
1270
1177
  "managedAreasInsurancePolicy",
@@ -1284,141 +1191,49 @@
1284
1191
  ],
1285
1192
  "properties": {
1286
1193
  "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
- ]
1194
+ "fme1Ref": "6.1"
1294
1195
  },
1295
1196
  "managedAreasInsurancePolicy": {
1296
- "fme1Ref": "6.2",
1297
- "title": "Managed Areas insurance policy and schedule.",
1298
- "enum": [
1299
- "Enclosed",
1300
- "To follow",
1301
- "Not applicable"
1302
- ]
1197
+ "fme1Ref": "6.2"
1303
1198
  },
1304
1199
  "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
- ]
1200
+ "fme1Ref": "6.3"
1312
1201
  },
1313
1202
  "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
- ]
1203
+ "fme1Ref": "6.4"
1321
1204
  },
1322
1205
  "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
- ]
1206
+ "fme1Ref": "6.5"
1330
1207
  },
1331
1208
  "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
- ]
1209
+ "fme1Ref": "6.6"
1339
1210
  },
1340
1211
  "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
- ]
1212
+ "fme1Ref": "6.7"
1349
1213
  },
1350
1214
  "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
- ]
1215
+ "fme1Ref": "6.8"
1359
1216
  },
1360
1217
  "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
- ]
1218
+ "fme1Ref": "6.9"
1368
1219
  },
1369
1220
  "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
- ]
1221
+ "fme1Ref": "6.10"
1377
1222
  },
1378
1223
  "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
- ]
1224
+ "fme1Ref": "6.11"
1386
1225
  },
1387
1226
  "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
- ]
1227
+ "fme1Ref": "6.12"
1395
1228
  },
1396
1229
  "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
- ]
1230
+ "fme1Ref": "6.13"
1404
1231
  },
1405
1232
  "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
- ]
1233
+ "fme1Ref": "6.14"
1413
1234
  },
1414
1235
  "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
- ]
1236
+ "fme1Ref": "6.15"
1422
1237
  }
1423
1238
  }
1424
1239
  },