@pdtf/schemas 3.6.0-dev.6 → 3.6.0-dev.8

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 (131) hide show
  1. package/busy-spence-79c6bf/CLAUDE.md +101 -0
  2. package/busy-spence-79c6bf/LICENSE +21 -0
  3. package/busy-spence-79c6bf/README.md +435 -0
  4. package/busy-spence-79c6bf/docs/branch-release-workflow.md +138 -0
  5. package/busy-spence-79c6bf/docs/sef25-extensions-ui-spec.md +355 -0
  6. package/busy-spence-79c6bf/index.js +654 -0
  7. package/busy-spence-79c6bf/package-lock.json +7299 -0
  8. package/busy-spence-79c6bf/package.json +44 -0
  9. package/busy-spence-79c6bf/scripts/ta6ed6-titles.js +403 -0
  10. package/busy-spence-79c6bf/scripts/ta7ed5-titles.js +183 -0
  11. package/busy-spence-79c6bf/src/examples/v1/exampleAddParticipantVouch.json +32 -0
  12. package/busy-spence-79c6bf/src/examples/v1/exampleDocumentedVouch.json +40 -0
  13. package/busy-spence-79c6bf/src/examples/v1/exampleElectronicRecord.json +30 -0
  14. package/busy-spence-79c6bf/src/examples/v1/exampleTransaction.json +878 -0
  15. package/busy-spence-79c6bf/src/examples/v1/exampleVouch.json +25 -0
  16. package/busy-spence-79c6bf/src/examples/v2/exampleTransaction.json +901 -0
  17. package/busy-spence-79c6bf/src/examples/v3/exampleAddParticipantVouch.json +38 -0
  18. package/busy-spence-79c6bf/src/examples/v3/exampleCustomOverlay.json +55 -0
  19. package/busy-spence-79c6bf/src/examples/v3/exampleCustomOverlay2.json +93 -0
  20. package/busy-spence-79c6bf/src/examples/v3/exampleDocumentedVouch.json +47 -0
  21. package/busy-spence-79c6bf/src/examples/v3/exampleElectronicRecord.json +36 -0
  22. package/busy-spence-79c6bf/src/examples/v3/exampleTransaction.json +1038 -0
  23. package/busy-spence-79c6bf/src/examples/v3/exampleVouch.json +32 -0
  24. package/busy-spence-79c6bf/src/mappings/SendPropertyDetailsRequestSchema.json +1588 -0
  25. package/busy-spence-79c6bf/src/mappings/adf.js +198 -0
  26. package/busy-spence-79c6bf/src/schemas/v1/GeoJSON.json +1279 -0
  27. package/busy-spence-79c6bf/src/schemas/v1/baspiNotes.html +102 -0
  28. package/busy-spence-79c6bf/src/schemas/v1/energy-performance-certificate.json +124 -0
  29. package/busy-spence-79c6bf/src/schemas/v1/freehold-information.json +2051 -0
  30. package/busy-spence-79c6bf/src/schemas/v1/leasehold-information.json +2064 -0
  31. package/busy-spence-79c6bf/src/schemas/v1/legal-information.json +1045 -0
  32. package/busy-spence-79c6bf/src/schemas/v1/material-facts.json +2109 -0
  33. package/busy-spence-79c6bf/src/schemas/v1/pdtf-transaction-search-results.json +40 -0
  34. package/busy-spence-79c6bf/src/schemas/v1/pdtf-transaction.json +191 -0
  35. package/busy-spence-79c6bf/src/schemas/v1/searches/drainage-and-water.json +261 -0
  36. package/busy-spence-79c6bf/src/schemas/v1/searches/local-land-charges.json +69 -0
  37. package/busy-spence-79c6bf/src/schemas/v1/searches/local-searches-required.json +857 -0
  38. package/busy-spence-79c6bf/src/schemas/v1/searches.json +237 -0
  39. package/busy-spence-79c6bf/src/schemas/v1/title-deed.json +841 -0
  40. package/busy-spence-79c6bf/src/schemas/v2/baspiNotes.html +102 -0
  41. package/busy-spence-79c6bf/src/schemas/v2/combined.json +37731 -0
  42. package/busy-spence-79c6bf/src/schemas/v2/overlays/baspi.json +8132 -0
  43. package/busy-spence-79c6bf/src/schemas/v2/overlays/con29DW.json +705 -0
  44. package/busy-spence-79c6bf/src/schemas/v2/overlays/con29R.json +2956 -0
  45. package/busy-spence-79c6bf/src/schemas/v2/overlays/fme1.json +1259 -0
  46. package/busy-spence-79c6bf/src/schemas/v2/overlays/llc1.json +25 -0
  47. package/busy-spence-79c6bf/src/schemas/v2/overlays/lpe1.json +2171 -0
  48. package/busy-spence-79c6bf/src/schemas/v2/overlays/nts.json +326 -0
  49. package/busy-spence-79c6bf/src/schemas/v2/overlays/oc1.json +2799 -0
  50. package/busy-spence-79c6bf/src/schemas/v2/overlays/piq.json +3419 -0
  51. package/busy-spence-79c6bf/src/schemas/v2/overlays/rds.json +3736 -0
  52. package/busy-spence-79c6bf/src/schemas/v2/overlays/ta10.json +5306 -0
  53. package/busy-spence-79c6bf/src/schemas/v2/overlays/ta6.json +4533 -0
  54. package/busy-spence-79c6bf/src/schemas/v2/overlays/ta7.json +1045 -0
  55. package/busy-spence-79c6bf/src/schemas/v2/pdtf-transaction.json +34351 -0
  56. package/busy-spence-79c6bf/src/schemas/v2/skeleton.json +3973 -0
  57. package/busy-spence-79c6bf/src/schemas/v3/combined.json +48643 -0
  58. package/busy-spence-79c6bf/src/schemas/v3/compactSkeleton.txt +4519 -0
  59. package/busy-spence-79c6bf/src/schemas/v3/overlays/README.md +299 -0
  60. package/busy-spence-79c6bf/src/schemas/v3/overlays/baspi4.json +8030 -0
  61. package/busy-spence-79c6bf/src/schemas/v3/overlays/baspi5.json +8180 -0
  62. package/busy-spence-79c6bf/src/schemas/v3/overlays/con29DW.json +716 -0
  63. package/busy-spence-79c6bf/src/schemas/v3/overlays/con29R.json +2981 -0
  64. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ac.json +334 -0
  65. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/as.json +74 -0
  66. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/dk.json +33 -0
  67. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/dr.json +73 -0
  68. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/er.json +85 -0
  69. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/fd.json +75 -0
  70. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/hi.json +51 -0
  71. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/hs.json +73 -0
  72. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ic.json +94 -0
  73. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/jk.json +96 -0
  74. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/la.json +85 -0
  75. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/lc.json +76 -0
  76. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ma.json +90 -0
  77. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/mc.json +38 -0
  78. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/mi.json +70 -0
  79. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/nd.json +44 -0
  80. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/oa.json +24 -0
  81. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/oc.json +57 -0
  82. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/pc.json +38 -0
  83. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ph.json +195 -0
  84. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/rw.json +69 -0
  85. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sb.json +73 -0
  86. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sc.json +133 -0
  87. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sd.json +64 -0
  88. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sf.json +74 -0
  89. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sl.json +68 -0
  90. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ta.json +204 -0
  91. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/tf.json +103 -0
  92. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/tr.json +74 -0
  93. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/wg.json +351 -0
  94. package/busy-spence-79c6bf/src/schemas/v3/overlays/fme1.json +1266 -0
  95. package/busy-spence-79c6bf/src/schemas/v3/overlays/llc1.json +25 -0
  96. package/busy-spence-79c6bf/src/schemas/v3/overlays/lpe1.json +2199 -0
  97. package/busy-spence-79c6bf/src/schemas/v3/overlays/nts.json +2159 -0
  98. package/busy-spence-79c6bf/src/schemas/v3/overlays/nts2.json +2744 -0
  99. package/busy-spence-79c6bf/src/schemas/v3/overlays/ntsl.json +1815 -0
  100. package/busy-spence-79c6bf/src/schemas/v3/overlays/ntsl2.json +2219 -0
  101. package/busy-spence-79c6bf/src/schemas/v3/overlays/oc1.json +2817 -0
  102. package/busy-spence-79c6bf/src/schemas/v3/overlays/piq.json +3324 -0
  103. package/busy-spence-79c6bf/src/schemas/v3/overlays/rds.json +3668 -0
  104. package/busy-spence-79c6bf/src/schemas/v3/overlays/sef25.json +1653 -0
  105. package/busy-spence-79c6bf/src/schemas/v3/overlays/sr24.json +38 -0
  106. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta10.json +4645 -0
  107. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta6.json +4572 -0
  108. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta6ed6.json +6665 -0
  109. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta7.json +1537 -0
  110. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta7ed5.json +1585 -0
  111. package/busy-spence-79c6bf/src/schemas/v3/pdtf-transaction.json +41570 -0
  112. package/busy-spence-79c6bf/src/schemas/v3/skeleton.json +5767 -0
  113. package/busy-spence-79c6bf/src/schemas/verifiedClaims/README.md +21 -0
  114. package/busy-spence-79c6bf/src/schemas/verifiedClaims/pdtf-verified-claims.json +447 -0
  115. package/busy-spence-79c6bf/src/utils/compactSkeleton.js +84 -0
  116. package/busy-spence-79c6bf/src/utils/countTokens.js +67 -0
  117. package/busy-spence-79c6bf/src/utils/extractExtensionOverlays.js +633 -0
  118. package/busy-spence-79c6bf/src/utils/extractOverlay.js +381 -0
  119. package/busy-spence-79c6bf/src/utils/extractProperties.js +44 -0
  120. package/busy-spence-79c6bf/src/utils/listPathTitles.js +36 -0
  121. package/busy-spence-79c6bf/src/utils/minimalSkeleton.js +85 -0
  122. package/busy-spence-79c6bf/src/utils/pathList.csv +903 -0
  123. package/busy-spence-79c6bf/src/utils/pathSkeleton.js +181 -0
  124. package/busy-spence-79c6bf/ta6ed6-titles-plan.md +118 -0
  125. package/busy-spence-79c6bf/ta7ed5-titles-spec.md +89 -0
  126. package/package.json +1 -1
  127. package/src/schemas/v3/combined.json +228 -50
  128. package/src/schemas/v3/overlays/llc1.json +1 -2
  129. package/src/schemas/v3/overlays/ta6ed6.json +204 -75
  130. package/src/schemas/v3/overlays/ta7ed5.json +54 -20
  131. package/src/schemas/v3/pdtf-transaction.json +7 -7
@@ -0,0 +1,2171 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://trust.propdata.org.uk/schemas/v2/overlays/lpe1.json",
4
+ "properties": {
5
+ "propertyPack": {
6
+ "properties": {
7
+ "materialFacts": {
8
+ "properties": {
9
+ "ownership": {
10
+ "properties": {
11
+ "ownershipsToBeTransferred": {
12
+ "items": {
13
+ "oneOf": [
14
+ null,
15
+ {
16
+ "properties": {
17
+ "managedFreeholdOrCommonholdInformation": {
18
+ "properties": {
19
+ "transferAndRegistration": {
20
+ "properties": {
21
+ "procedureForObtainingCertificate": {
22
+ "lpe1Ref": "2.6"
23
+ }
24
+ }
25
+ }
26
+ }
27
+ }
28
+ }
29
+ },
30
+ {
31
+ "required": [
32
+ "leaseholdInformation"
33
+ ],
34
+ "properties": {
35
+ "leaseholdInformation": {
36
+ "required": [
37
+ "contactDetails",
38
+ "transferAndRegistration",
39
+ "groundRent",
40
+ "ownershipAndManagement",
41
+ "serviceCharge",
42
+ "buildingsInsurance",
43
+ "disputesAndEnfranchisement",
44
+ "general",
45
+ "requiredDocuments",
46
+ "confirmation"
47
+ ],
48
+ "properties": {
49
+ "typeOfLeasehold": {
50
+ "required": [
51
+ "leaseholdType"
52
+ ],
53
+ "oneOf": [
54
+ null,
55
+ {
56
+ "required": [
57
+ "sharedOwnershipPercentage",
58
+ "sharedOwnershipRent",
59
+ "sharedOwnershipRentFrequency"
60
+ ]
61
+ }
62
+ ]
63
+ },
64
+ "contactDetails": {
65
+ "lpe1Ref": "1",
66
+ "required": [
67
+ "contacts",
68
+ "serviceContactAssignments"
69
+ ],
70
+ "properties": {
71
+ "contacts": {
72
+ "lpe1Ref": "1",
73
+ "properties": {
74
+ "landlord": {
75
+ "lpe1Ref": "1.1",
76
+ "required": [
77
+ "contact"
78
+ ],
79
+ "properties": {
80
+ "contact": {
81
+ "required": [
82
+ "nameOrOrganisation",
83
+ "address",
84
+ "telephone",
85
+ "emailAddress"
86
+ ],
87
+ "properties": {
88
+ "address": {
89
+ "required": [
90
+ "line1",
91
+ "postcode"
92
+ ]
93
+ }
94
+ }
95
+ }
96
+ }
97
+ },
98
+ "rentchargeOwner": {
99
+ "lpe1Ref": "1.1",
100
+ "required": [
101
+ "contact"
102
+ ],
103
+ "properties": {
104
+ "contact": {
105
+ "required": [
106
+ "nameOrOrganisation",
107
+ "address",
108
+ "telephone",
109
+ "emailAddress"
110
+ ],
111
+ "properties": {
112
+ "address": {
113
+ "required": [
114
+ "line1",
115
+ "postcode"
116
+ ]
117
+ }
118
+ }
119
+ }
120
+ }
121
+ },
122
+ "managementCompany": {
123
+ "lpe1Ref": "1.2",
124
+ "properties": {
125
+ "contact": {
126
+ "required": [
127
+ "nameOrOrganisation",
128
+ "address",
129
+ "telephone",
130
+ "emailAddress"
131
+ ],
132
+ "properties": {
133
+ "address": {
134
+ "required": [
135
+ "line1",
136
+ "postcode"
137
+ ]
138
+ }
139
+ }
140
+ }
141
+ }
142
+ },
143
+ "managingAgent": {
144
+ "lpe1Ref": "1.3",
145
+ "properties": {
146
+ "contact": {
147
+ "required": [
148
+ "nameOrOrganisation",
149
+ "address",
150
+ "telephone",
151
+ "emailAddress"
152
+ ],
153
+ "properties": {
154
+ "address": {
155
+ "required": [
156
+ "line1",
157
+ "postcode"
158
+ ]
159
+ }
160
+ }
161
+ }
162
+ }
163
+ },
164
+ "residentTenantsAssociation": {
165
+ "lpe1Ref": "1.4",
166
+ "properties": {
167
+ "contact": {
168
+ "required": [
169
+ "nameOrOrganisation",
170
+ "line1",
171
+ "postcode",
172
+ "telephone",
173
+ "emailAddress"
174
+ ],
175
+ "properties": {
176
+ "address": {
177
+ "required": [
178
+ "line1",
179
+ "postcode"
180
+ ]
181
+ }
182
+ }
183
+ }
184
+ }
185
+ },
186
+ "legalRepresentative": {
187
+ "lpe1Ref": "1.5",
188
+ "properties": {
189
+ "contact": {
190
+ "required": [
191
+ "nameOrOrganisation",
192
+ "line1",
193
+ "postcode",
194
+ "telephone",
195
+ "emailAddress"
196
+ ],
197
+ "properties": {
198
+ "address": {
199
+ "required": [
200
+ "line1",
201
+ "postcode"
202
+ ]
203
+ }
204
+ }
205
+ }
206
+ }
207
+ }
208
+ }
209
+ },
210
+ "serviceContactAssignments": {
211
+ "lpe1Ref": "1.6",
212
+ "discriminator": {
213
+ "propertyName": "dealsWithDayToDayMaintenanceOfBuilding"
214
+ },
215
+ "oneOf": [
216
+ {
217
+ "properties": {
218
+ "dealsWithDayToDayMaintenanceOfBuilding": {
219
+ "enum": [
220
+ "Landlord",
221
+ "Management Company",
222
+ "Managing Agent"
223
+ ]
224
+ }
225
+ }
226
+ },
227
+ {
228
+ "properties": {
229
+ "dealsWithDayToDayMaintenanceOfBuilding": {
230
+ "enum": [
231
+ "the Lessees"
232
+ ]
233
+ },
234
+ "lesseeInCharge": {
235
+ "lpe1Ref": "1.10.1",
236
+ "required": [
237
+ "nameOrOrganisation",
238
+ "line1",
239
+ "postcode",
240
+ "telephone",
241
+ "emailAddress"
242
+ ],
243
+ "properties": {
244
+ "address": {
245
+ "required": [
246
+ "line1",
247
+ "postcode"
248
+ ]
249
+ }
250
+ }
251
+ }
252
+ },
253
+ "required": [
254
+ "lesseeInCharge"
255
+ ]
256
+ }
257
+ ],
258
+ "required": [
259
+ "noticeOfAssignmentAndCharge",
260
+ "collectsGroundRent",
261
+ "collectsServiceCharges",
262
+ "collectsbuildingInsurancePremiums",
263
+ "dealsWithDayToDayMaintenanceOfManagedArea",
264
+ "dealsWithDayToDayMaintenanceOfBuilding"
265
+ ],
266
+ "properties": {
267
+ "noticeOfAssignmentAndCharge": {
268
+ "lpe1Ref": "1.6",
269
+ "properties": {
270
+ "landlord": {
271
+ "required": [
272
+ "isApplicableParty"
273
+ ],
274
+ "oneOf": [
275
+ null,
276
+ {
277
+ "required": [
278
+ "feeIncludingVAT",
279
+ "noticeViaEmail"
280
+ ]
281
+ }
282
+ ]
283
+ },
284
+ "managementCompany": {
285
+ "required": [
286
+ "isApplicableParty"
287
+ ],
288
+ "oneOf": [
289
+ null,
290
+ {
291
+ "required": [
292
+ "feeIncludingVAT",
293
+ "noticeViaEmail"
294
+ ]
295
+ }
296
+ ]
297
+ },
298
+ "managingAgent": {
299
+ "required": [
300
+ "isApplicableParty"
301
+ ],
302
+ "oneOf": [
303
+ null,
304
+ {
305
+ "required": [
306
+ "feeIncludingVAT",
307
+ "noticeViaEmail"
308
+ ]
309
+ }
310
+ ]
311
+ },
312
+ "other": {
313
+ "required": [
314
+ "isApplicableParty"
315
+ ],
316
+ "oneOf": [
317
+ null,
318
+ {
319
+ "required": [
320
+ "feeIncludingVAT",
321
+ "noticeViaEmail",
322
+ "contact",
323
+ "capacity"
324
+ ],
325
+ "contact": {
326
+ "required": [
327
+ "nameOrOrganisation",
328
+ "line1",
329
+ "postcode",
330
+ "telephone",
331
+ "emailAddress"
332
+ ],
333
+ "properties": {
334
+ "address": {
335
+ "required": [
336
+ "line1",
337
+ "postcode"
338
+ ]
339
+ }
340
+ }
341
+ }
342
+ }
343
+ ]
344
+ }
345
+ }
346
+ },
347
+ "noticeOfTransferAndCharge": {
348
+ "lpe1Ref": "1.5",
349
+ "properties": {
350
+ "rentchargeOwner": {
351
+ "required": [
352
+ "isApplicableParty"
353
+ ],
354
+ "oneOf": [
355
+ null,
356
+ {
357
+ "required": [
358
+ "feeIncludingVAT",
359
+ "noticeViaEmail"
360
+ ]
361
+ }
362
+ ]
363
+ },
364
+ "managementCompany": {
365
+ "required": [
366
+ "isApplicableParty"
367
+ ],
368
+ "oneOf": [
369
+ null,
370
+ {
371
+ "required": [
372
+ "feeIncludingVAT",
373
+ "noticeViaEmail"
374
+ ]
375
+ }
376
+ ]
377
+ },
378
+ "managingAgent": {
379
+ "required": [
380
+ "isApplicableParty"
381
+ ],
382
+ "oneOf": [
383
+ null,
384
+ {
385
+ "required": [
386
+ "feeIncludingVAT",
387
+ "noticeViaEmail"
388
+ ]
389
+ }
390
+ ]
391
+ },
392
+ "legalRepresentative": {
393
+ "required": [
394
+ "isApplicableParty"
395
+ ],
396
+ "oneOf": [
397
+ null,
398
+ {
399
+ "required": [
400
+ "feeIncludingVAT",
401
+ "noticeViaEmail"
402
+ ]
403
+ }
404
+ ]
405
+ },
406
+ "other": {
407
+ "required": [
408
+ "isApplicableParty"
409
+ ],
410
+ "oneOf": [
411
+ null,
412
+ {
413
+ "required": [
414
+ "feeIncludingVAT",
415
+ "noticeViaEmail",
416
+ "contact",
417
+ "capacity"
418
+ ],
419
+ "contact": {
420
+ "required": [
421
+ "nameOrOrganisation",
422
+ "line1",
423
+ "postcode",
424
+ "telephone",
425
+ "emailAddress"
426
+ ],
427
+ "properties": {
428
+ "address": {
429
+ "required": [
430
+ "line1",
431
+ "postcode"
432
+ ]
433
+ }
434
+ }
435
+ }
436
+ }
437
+ ]
438
+ },
439
+ "otherDetailsRequired": {
440
+ "lpe1Ref": "1.5.1",
441
+ "discriminator": {
442
+ "propertyName": "areOtherDetailsRequired"
443
+ },
444
+ "oneOf": [
445
+ {
446
+ "properties": {
447
+ "areOtherDetailsRequired": {
448
+ "const": "No"
449
+ }
450
+ }
451
+ },
452
+ {
453
+ "properties": {
454
+ "areOtherDetailsRequired": {
455
+ "const": "Yes"
456
+ }
457
+ },
458
+ "required": [
459
+ "details"
460
+ ]
461
+ }
462
+ ],
463
+ "required": [
464
+ "areOtherDetailsRequired"
465
+ ]
466
+ }
467
+ }
468
+ },
469
+ "collectsGroundRent": {
470
+ "lpe1Ref": "1.7"
471
+ },
472
+ "collectsServiceCharges": {
473
+ "lpe1Ref": "1.8"
474
+ },
475
+ "collectsbuildingInsurancePremiums": {
476
+ "lpe1Ref": "1.9"
477
+ },
478
+ "dealsWithDayToDayMaintenanceOfManagedArea": {
479
+ "lpe1Ref": "1.11"
480
+ },
481
+ "organisesBuildingInsurance": {
482
+ "lpe1Ref": "1.12"
483
+ },
484
+ "dealsWithDayToDayMaintenanceOfBuilding": {
485
+ "lpe1Ref": "1.10"
486
+ }
487
+ }
488
+ }
489
+ }
490
+ },
491
+ "transferAndRegistration": {
492
+ "lpe1Ref": "2",
493
+ "required": [
494
+ "deedOfCovenantRequired",
495
+ "licenceToAssignRequired",
496
+ "awareOfConsents",
497
+ "requirementsToBeMemberOfManagementCompany",
498
+ "procedureForObtainingCertificate"
499
+ ],
500
+ "properties": {
501
+ "deedOfCovenantRequired": {
502
+ "lpe1Ref": "2.1",
503
+ "discriminator": {
504
+ "propertyName": "yesNoNotKnown"
505
+ },
506
+ "oneOf": [
507
+ {
508
+ "properties": {
509
+ "yesNoNotKnown": {
510
+ "enum": [
511
+ "No",
512
+ "Not Known"
513
+ ]
514
+ }
515
+ }
516
+ },
517
+ {
518
+ "properties": {
519
+ "yesNoNotKnown": {
520
+ "enum": [
521
+ "Yes"
522
+ ]
523
+ },
524
+ "costsApplicableToTheDeed": {
525
+ "lpe1Ref": "2.1.1"
526
+ },
527
+ "personWhoDealsWithTheDeedOfCovenant": {
528
+ "lpe1Ref": "2.1.2"
529
+ }
530
+ },
531
+ "required": [
532
+ "costsApplicableToTheDeed",
533
+ "personWhoDealsWithTheDeedOfCovenant"
534
+ ]
535
+ }
536
+ ],
537
+ "required": [
538
+ "yesNoNotKnown"
539
+ ]
540
+ },
541
+ "licenceToAssignRequired": {
542
+ "lpe1Ref": "2.2",
543
+ "discriminator": {
544
+ "propertyName": "yesNo"
545
+ },
546
+ "oneOf": [
547
+ {
548
+ "properties": {
549
+ "yesNo": {
550
+ "enum": [
551
+ "No"
552
+ ]
553
+ }
554
+ }
555
+ },
556
+ {
557
+ "properties": {
558
+ "yesNo": {
559
+ "enum": [
560
+ "Yes"
561
+ ]
562
+ },
563
+ "requirements": {
564
+ "lpe1Ref": "2.3"
565
+ }
566
+ },
567
+ "required": [
568
+ "requirements"
569
+ ]
570
+ }
571
+ ],
572
+ "required": [
573
+ "yesNo"
574
+ ]
575
+ },
576
+ "awareOfConsents": {
577
+ "lpe1Ref": "2.4",
578
+ "discriminator": {
579
+ "propertyName": "yesNo"
580
+ },
581
+ "oneOf": [
582
+ {
583
+ "properties": {
584
+ "yesNo": {
585
+ "enum": [
586
+ "No"
587
+ ]
588
+ }
589
+ }
590
+ },
591
+ {
592
+ "properties": {
593
+ "yesNo": {
594
+ "enum": [
595
+ "Yes"
596
+ ]
597
+ },
598
+ "details": {
599
+ "lpe1Ref": "2.4.1"
600
+ }
601
+ },
602
+ "required": [
603
+ "details"
604
+ ]
605
+ }
606
+ ],
607
+ "required": [
608
+ "yesNo"
609
+ ]
610
+ },
611
+ "changesInTermOfLease": {
612
+ "required": [
613
+ "isSellerAwareOfChanges"
614
+ ],
615
+ "oneOf": [
616
+ null,
617
+ {
618
+ "required": [
619
+ "details"
620
+ ]
621
+ }
622
+ ]
623
+ },
624
+ "requirementsToBeMemberOfManagementCompany": {
625
+ "lpe1Ref": "2.5",
626
+ "discriminator": {
627
+ "propertyName": "yesNoNotApplicable"
628
+ },
629
+ "oneOf": [
630
+ {
631
+ "properties": {
632
+ "yesNoNotApplicable": {
633
+ "enum": [
634
+ "No",
635
+ "Not applicable"
636
+ ]
637
+ }
638
+ }
639
+ },
640
+ {
641
+ "properties": {
642
+ "yesNoNotApplicable": {
643
+ "enum": [
644
+ "Yes"
645
+ ]
646
+ },
647
+ "details": {
648
+ "lpe1Ref": "2.5.1"
649
+ }
650
+ },
651
+ "required": [
652
+ "details"
653
+ ]
654
+ }
655
+ ],
656
+ "required": [
657
+ "yesNoNotApplicable"
658
+ ]
659
+ }
660
+ }
661
+ },
662
+ "groundRent": {
663
+ "lpe1Ref": "3",
664
+ "discriminator": {
665
+ "propertyName": "isGroundRentPayable"
666
+ },
667
+ "oneOf": [
668
+ {
669
+ "properties": {
670
+ "isGroundRentPayable": {
671
+ "enum": [
672
+ "No"
673
+ ]
674
+ }
675
+ }
676
+ },
677
+ {
678
+ "properties": {
679
+ "isGroundRentPayable": {
680
+ "enum": [
681
+ "Yes"
682
+ ]
683
+ },
684
+ "annualGroundRent": {
685
+ "lpe1Ref": "3.1"
686
+ },
687
+ "rentSubjectToIncrease": {
688
+ "required": [
689
+ "yesNo"
690
+ ],
691
+ "oneOf": [
692
+ null,
693
+ {
694
+ "required": [
695
+ "rentReviewFrequency",
696
+ "rentIncreaseCalculated"
697
+ ]
698
+ }
699
+ ]
700
+ },
701
+ "groundRentPaidUpToDate": {
702
+ "lpe1Ref": "3.2",
703
+ "discriminator": {
704
+ "propertyName": "yesNoNotApplicable"
705
+ },
706
+ "oneOf": [
707
+ {
708
+ "properties": {
709
+ "yesNoNotApplicable": {
710
+ "enum": [
711
+ "Yes",
712
+ "Not applicable"
713
+ ]
714
+ }
715
+ }
716
+ },
717
+ {
718
+ "properties": {
719
+ "yesNoNotApplicable": {
720
+ "enum": [
721
+ "No"
722
+ ]
723
+ },
724
+ "details": {
725
+ "lpe1Ref": "3.2.1"
726
+ }
727
+ },
728
+ "required": [
729
+ "details"
730
+ ]
731
+ }
732
+ ],
733
+ "required": [
734
+ "yesNoNotApplicable"
735
+ ]
736
+ },
737
+ "lastDemandPeriod": {
738
+ "lpe1Ref": "3.3"
739
+ }
740
+ },
741
+ "required": [
742
+ "annualGroundRent",
743
+ "groundRentFrequency",
744
+ "rentSubjectToIncrease",
745
+ "groundRentPaidUpToDate",
746
+ "lastDemandPeriod"
747
+ ]
748
+ }
749
+ ],
750
+ "required": [
751
+ "isGroundRentPayable"
752
+ ]
753
+ },
754
+ "ownershipAndManagement": {
755
+ "properties": {
756
+ "hasHeadlease": {
757
+ "required": [
758
+ "yesNo"
759
+ ],
760
+ "oneOf": [
761
+ null,
762
+ {
763
+ "required": [
764
+ "headLeaseholderControlled"
765
+ ]
766
+ }
767
+ ]
768
+ },
769
+ "buildingManager": {
770
+ "required": [
771
+ "buildingManagerType"
772
+ ],
773
+ "oneOf": [
774
+ null,
775
+ {
776
+ "required": [
777
+ "details"
778
+ ]
779
+ }
780
+ ]
781
+ }
782
+ }
783
+ },
784
+ "serviceCharge": {
785
+ "lpe1Ref": "4",
786
+ "discriminator": {
787
+ "propertyName": "sellerContributesToServiceCharge"
788
+ },
789
+ "oneOf": [
790
+ {
791
+ "properties": {
792
+ "sellerContributesToServiceCharge": {
793
+ "enum": [
794
+ "No"
795
+ ]
796
+ }
797
+ }
798
+ },
799
+ {
800
+ "properties": {
801
+ "sellerContributesToServiceCharge": {
802
+ "enum": [
803
+ "Yes"
804
+ ]
805
+ },
806
+ "annualServiceCharge": {
807
+ "lpe1Ref": "4.1.1"
808
+ },
809
+ "largeAdditionalExpense": {
810
+ "required": [
811
+ "yesNo"
812
+ ],
813
+ "oneOf": [
814
+ null,
815
+ {
816
+ "required": [
817
+ "details"
818
+ ]
819
+ }
820
+ ]
821
+ },
822
+ "problemInServiceChargeLevel": {
823
+ "required": [
824
+ "yesNo"
825
+ ],
826
+ "oneOf": [
827
+ null,
828
+ {
829
+ "required": [
830
+ "details"
831
+ ]
832
+ }
833
+ ]
834
+ },
835
+ "serviceChargeChallenged": {
836
+ "required": [
837
+ "yesNo"
838
+ ],
839
+ "oneOf": [
840
+ null,
841
+ {
842
+ "required": [
843
+ "details"
844
+ ]
845
+ }
846
+ ]
847
+ },
848
+ "difficultyInCollectingServiceCharge": {
849
+ "required": [
850
+ "yesNo"
851
+ ],
852
+ "oneOf": [
853
+ null,
854
+ {
855
+ "required": [
856
+ "details"
857
+ ]
858
+ }
859
+ ]
860
+ },
861
+ "serviceChargeOwed": {
862
+ "required": [
863
+ "yesNo"
864
+ ],
865
+ "oneOf": [
866
+ null,
867
+ {
868
+ "required": [
869
+ "details"
870
+ ]
871
+ }
872
+ ]
873
+ },
874
+ "propertiesContributingToMaintenanceOfManagedArea": {
875
+ "lpe1Ref": "4.1"
876
+ },
877
+ "adHocExpenses": {
878
+ "lpe1Ref": "4.1.2"
879
+ },
880
+ "serviceChargePaidUpToDate": {
881
+ "lpe1Ref": "4.2",
882
+ "discriminator": {
883
+ "propertyName": "yesNo"
884
+ },
885
+ "oneOf": [
886
+ {
887
+ "properties": {
888
+ "yesNo": {
889
+ "enum": [
890
+ "Yes"
891
+ ]
892
+ }
893
+ }
894
+ },
895
+ {
896
+ "properties": {
897
+ "yesNo": {
898
+ "enum": [
899
+ "No"
900
+ ]
901
+ },
902
+ "details": {
903
+ "lpe1Ref": "4.2.1"
904
+ }
905
+ },
906
+ "required": [
907
+ "details"
908
+ ]
909
+ }
910
+ ],
911
+ "required": [
912
+ "yesNo"
913
+ ]
914
+ },
915
+ "excessPaymentAnticipated": {
916
+ "lpe1Ref": "4.3",
917
+ "discriminator": {
918
+ "propertyName": "yesNo"
919
+ },
920
+ "oneOf": [
921
+ {
922
+ "properties": {
923
+ "yesNo": {
924
+ "enum": [
925
+ "No"
926
+ ]
927
+ }
928
+ }
929
+ },
930
+ {
931
+ "properties": {
932
+ "yesNo": {
933
+ "enum": [
934
+ "Yes"
935
+ ]
936
+ },
937
+ "details": {
938
+ "lpe1Ref": "4.3.1"
939
+ }
940
+ },
941
+ "required": [
942
+ "details"
943
+ ]
944
+ }
945
+ ],
946
+ "required": [
947
+ "yesNo"
948
+ ]
949
+ },
950
+ "lastDemandPeriod": {
951
+ "lpe1Ref": "4.4"
952
+ },
953
+ "hasInabilityToCollectAffectedMaintenance": {
954
+ "lpe1Ref": "4.5",
955
+ "discriminator": {
956
+ "propertyName": "yesNo"
957
+ },
958
+ "oneOf": [
959
+ {
960
+ "properties": {
961
+ "yesNo": {
962
+ "enum": [
963
+ "No"
964
+ ]
965
+ }
966
+ }
967
+ },
968
+ {
969
+ "properties": {
970
+ "yesNo": {
971
+ "enum": [
972
+ "Yes"
973
+ ]
974
+ },
975
+ "details": {
976
+ "lpe1Ref": "4.5.1"
977
+ }
978
+ },
979
+ "required": [
980
+ "details"
981
+ ]
982
+ }
983
+ ],
984
+ "required": [
985
+ "yesNo"
986
+ ]
987
+ },
988
+ "reserveFund": {
989
+ "lpe1Ref": "4.6",
990
+ "discriminator": {
991
+ "propertyName": "yesNo"
992
+ },
993
+ "oneOf": [
994
+ {
995
+ "properties": {
996
+ "yesNo": {
997
+ "enum": [
998
+ "No"
999
+ ]
1000
+ }
1001
+ }
1002
+ },
1003
+ {
1004
+ "properties": {
1005
+ "yesNo": {
1006
+ "enum": [
1007
+ "Yes"
1008
+ ]
1009
+ },
1010
+ "details": {
1011
+ "lpe1Ref": "4.6.1"
1012
+ },
1013
+ "sufficentToCoverSection20Expenditure": {
1014
+ "lpe1Ref": "4.6.2",
1015
+ "discriminator": {
1016
+ "propertyName": "yesNo"
1017
+ },
1018
+ "oneOf": [
1019
+ {
1020
+ "properties": {
1021
+ "yesNo": {
1022
+ "enum": [
1023
+ "Yes"
1024
+ ]
1025
+ }
1026
+ }
1027
+ },
1028
+ {
1029
+ "properties": {
1030
+ "yesNo": {
1031
+ "enum": [
1032
+ "No"
1033
+ ]
1034
+ },
1035
+ "details": {
1036
+ "lpe1Ref": "4.6.3"
1037
+ }
1038
+ },
1039
+ "required": [
1040
+ "details"
1041
+ ]
1042
+ }
1043
+ ],
1044
+ "required": [
1045
+ "yesNo"
1046
+ ]
1047
+ }
1048
+ },
1049
+ "required": [
1050
+ "details"
1051
+ ]
1052
+ }
1053
+ ],
1054
+ "required": [
1055
+ "yesNo"
1056
+ ]
1057
+ },
1058
+ "lastDecoratedPeriod": {
1059
+ "lpe1Ref": "4.7"
1060
+ },
1061
+ "section20WorksProposed": {
1062
+ "lpe1Ref": "4.8",
1063
+ "discriminator": {
1064
+ "propertyName": "yesNo"
1065
+ },
1066
+ "oneOf": [
1067
+ {
1068
+ "properties": {
1069
+ "yesNo": {
1070
+ "enum": [
1071
+ "Not applicable"
1072
+ ]
1073
+ }
1074
+ }
1075
+ },
1076
+ {
1077
+ "properties": {
1078
+ "yesNo": {
1079
+ "enum": [
1080
+ "Completed but unpaid",
1081
+ "Due",
1082
+ "Anticipated"
1083
+ ]
1084
+ },
1085
+ "details": {
1086
+ "lpe1Ref": "4.8.1"
1087
+ }
1088
+ },
1089
+ "required": [
1090
+ "details"
1091
+ ]
1092
+ }
1093
+ ],
1094
+ "required": [
1095
+ "yesNo"
1096
+ ]
1097
+ },
1098
+ "increaseInServiceChargeAnticipated": {
1099
+ "lpe1Ref": "4.9",
1100
+ "discriminator": {
1101
+ "propertyName": "yesNo"
1102
+ },
1103
+ "oneOf": [
1104
+ {
1105
+ "properties": {
1106
+ "yesNo": {
1107
+ "enum": [
1108
+ "No"
1109
+ ]
1110
+ }
1111
+ }
1112
+ },
1113
+ {
1114
+ "properties": {
1115
+ "yesNo": {
1116
+ "enum": [
1117
+ "Yes"
1118
+ ]
1119
+ },
1120
+ "details": {
1121
+ "lpe1Ref": "4.9.1"
1122
+ }
1123
+ },
1124
+ "required": [
1125
+ "details"
1126
+ ]
1127
+ }
1128
+ ],
1129
+ "required": [
1130
+ "yesNo"
1131
+ ]
1132
+ },
1133
+ "outstandingServiceChargeConsultation": {
1134
+ "lpe1Ref": "4.10",
1135
+ "discriminator": {
1136
+ "propertyName": "yesNo"
1137
+ },
1138
+ "oneOf": [
1139
+ {
1140
+ "properties": {
1141
+ "yesNo": {
1142
+ "enum": [
1143
+ "No"
1144
+ ]
1145
+ }
1146
+ }
1147
+ },
1148
+ {
1149
+ "properties": {
1150
+ "yesNo": {
1151
+ "enum": [
1152
+ "Yes"
1153
+ ]
1154
+ },
1155
+ "details": {
1156
+ "lpe1Ref": "4.10.1"
1157
+ }
1158
+ },
1159
+ "required": [
1160
+ "details"
1161
+ ]
1162
+ }
1163
+ ],
1164
+ "required": [
1165
+ "yesNo"
1166
+ ]
1167
+ },
1168
+ "japaneseKnotweedAffectingManagedAreas": {
1169
+ "lpe1Ref": "4.11",
1170
+ "discriminator": {
1171
+ "propertyName": "yesNo"
1172
+ },
1173
+ "oneOf": [
1174
+ {
1175
+ "properties": {
1176
+ "yesNo": {
1177
+ "enum": [
1178
+ "No"
1179
+ ]
1180
+ }
1181
+ }
1182
+ },
1183
+ {
1184
+ "properties": {
1185
+ "yesNo": {
1186
+ "enum": [
1187
+ "Yes"
1188
+ ]
1189
+ },
1190
+ "details": {
1191
+ "lpe1Ref": "4.11.1"
1192
+ }
1193
+ },
1194
+ "required": [
1195
+ "details"
1196
+ ]
1197
+ }
1198
+ ],
1199
+ "required": [
1200
+ "yesNo"
1201
+ ]
1202
+ },
1203
+ "transferFees": {
1204
+ "lpe1Ref": "4.12",
1205
+ "discriminator": {
1206
+ "propertyName": "yesNo"
1207
+ },
1208
+ "oneOf": [
1209
+ {
1210
+ "properties": {
1211
+ "yesNo": {
1212
+ "enum": [
1213
+ "No"
1214
+ ]
1215
+ }
1216
+ }
1217
+ },
1218
+ {
1219
+ "properties": {
1220
+ "yesNo": {
1221
+ "enum": [
1222
+ "Yes"
1223
+ ]
1224
+ },
1225
+ "details": {
1226
+ "lpe1Ref": "4.12.2"
1227
+ }
1228
+ },
1229
+ "required": [
1230
+ "details"
1231
+ ]
1232
+ }
1233
+ ],
1234
+ "required": [
1235
+ "yesNo"
1236
+ ],
1237
+ "properties": {
1238
+ "yesNo": {
1239
+ "lpe1Ref": "4.12.1"
1240
+ }
1241
+ }
1242
+ },
1243
+ "allPropertiesContribute": {
1244
+ "lpe1Ref": "4.13",
1245
+ "discriminator": {
1246
+ "propertyName": "yesNo"
1247
+ },
1248
+ "oneOf": [
1249
+ {
1250
+ "properties": {
1251
+ "yesNo": {
1252
+ "enum": [
1253
+ "Yes"
1254
+ ]
1255
+ }
1256
+ }
1257
+ },
1258
+ {
1259
+ "properties": {
1260
+ "yesNo": {
1261
+ "enum": [
1262
+ "No"
1263
+ ]
1264
+ },
1265
+ "details": {
1266
+ "lpe1Ref": "4.13.1"
1267
+ }
1268
+ },
1269
+ "required": [
1270
+ "details"
1271
+ ]
1272
+ }
1273
+ ],
1274
+ "required": [
1275
+ "yesNo"
1276
+ ]
1277
+ },
1278
+ "deedOfCertificateServed": {
1279
+ "lpe1Ref": "4.14",
1280
+ "discriminator": {
1281
+ "propertyName": "yesNoNotApplicable"
1282
+ },
1283
+ "oneOf": [
1284
+ {
1285
+ "properties": {
1286
+ "yesNoNotApplicable": {
1287
+ "enum": [
1288
+ "Not applicable"
1289
+ ]
1290
+ }
1291
+ }
1292
+ },
1293
+ {
1294
+ "properties": {
1295
+ "yesNoNotApplicable": {
1296
+ "enum": [
1297
+ "No"
1298
+ ]
1299
+ }
1300
+ }
1301
+ },
1302
+ {
1303
+ "properties": {
1304
+ "yesNoNotApplicable": {
1305
+ "enum": [
1306
+ "Yes"
1307
+ ]
1308
+ }
1309
+ },
1310
+ "required": [
1311
+ "sellerCompletedDeedOfCertificate"
1312
+ ]
1313
+ }
1314
+ ],
1315
+ "required": [
1316
+ "yesNoNotApplicable"
1317
+ ]
1318
+ },
1319
+ "landlordsCertificateServed": {
1320
+ "lpe1Ref": "4.14",
1321
+ "required": [
1322
+ "yesNoNotApplicable"
1323
+ ]
1324
+ }
1325
+ },
1326
+ "required": [
1327
+ "annualServiceCharge",
1328
+ "largeAdditionalExpense",
1329
+ "problemInServiceChargeLevel",
1330
+ "serviceChargeChallenged",
1331
+ "dangerousCladdingOrDefects",
1332
+ "difficultyInCollectingServiceCharge",
1333
+ "serviceChargeOwed",
1334
+ "propertiesContributingToMaintenanceOfManagedArea",
1335
+ "adHocExpenses",
1336
+ "serviceChargePaidUpToDate",
1337
+ "excessPaymentAnticipated",
1338
+ "lastDemandPeriod",
1339
+ "hasInabilityToCollectAffectedMaintenance",
1340
+ "reserveFund",
1341
+ "lastDecoratedPeriod",
1342
+ "section20WorksProposed",
1343
+ "increaseInServiceChargeAnticipated",
1344
+ "outstandingServiceChargeConsultation",
1345
+ "japaneseKnotweedAffectingManagedAreas",
1346
+ "transferFees",
1347
+ "allPropertiesContribute",
1348
+ "deedOfCertificateServed",
1349
+ "landlordsCertificateServed"
1350
+ ]
1351
+ }
1352
+ ],
1353
+ "required": [
1354
+ "sellerContributesToServiceCharge"
1355
+ ]
1356
+ },
1357
+ "buildingsInsurance": {
1358
+ "lpe1Ref": "5",
1359
+ "required": [
1360
+ "premiumsPaidUpToDate",
1361
+ "lastDemandPeriod",
1362
+ "premiumPaidinFull",
1363
+ "claimsMade",
1364
+ "claimsAnticipated",
1365
+ "managedAreasCoveredByPolicy",
1366
+ "standardTermsAvailable",
1367
+ "nonComplianceWithConditions",
1368
+ "buildingsReinstatementCostAssessment",
1369
+ "premiumIncludedInServiceCharge"
1370
+ ],
1371
+ "properties": {
1372
+ "premiumsPaidUpToDate": {
1373
+ "lpe1Ref": "5.1",
1374
+ "discriminator": {
1375
+ "propertyName": "yesNo"
1376
+ },
1377
+ "oneOf": [
1378
+ {
1379
+ "properties": {
1380
+ "yesNo": {
1381
+ "enum": [
1382
+ "Yes"
1383
+ ]
1384
+ }
1385
+ }
1386
+ },
1387
+ {
1388
+ "properties": {
1389
+ "yesNo": {
1390
+ "enum": [
1391
+ "No"
1392
+ ]
1393
+ },
1394
+ "details": {
1395
+ "lpe1Ref": "5.1.1"
1396
+ }
1397
+ },
1398
+ "required": [
1399
+ "details"
1400
+ ]
1401
+ }
1402
+ ],
1403
+ "required": [
1404
+ "yesNo"
1405
+ ]
1406
+ },
1407
+ "lastDemandPeriod": {
1408
+ "lpe1Ref": "5.2"
1409
+ },
1410
+ "premiumPaidinFull": {
1411
+ "lpe1Ref": "5.3",
1412
+ "discriminator": {
1413
+ "propertyName": "yesNo"
1414
+ },
1415
+ "oneOf": [
1416
+ {
1417
+ "properties": {
1418
+ "yesNo": {
1419
+ "enum": [
1420
+ "Yes"
1421
+ ]
1422
+ }
1423
+ }
1424
+ },
1425
+ {
1426
+ "properties": {
1427
+ "yesNo": {
1428
+ "enum": [
1429
+ "No"
1430
+ ]
1431
+ },
1432
+ "details": {
1433
+ "lpe1Ref": "5.3.1"
1434
+ }
1435
+ },
1436
+ "required": [
1437
+ "details"
1438
+ ]
1439
+ }
1440
+ ],
1441
+ "required": [
1442
+ "yesNo"
1443
+ ]
1444
+ },
1445
+ "claimsMade": {
1446
+ "lpe1Ref": "5.4",
1447
+ "discriminator": {
1448
+ "propertyName": "yesNo"
1449
+ },
1450
+ "oneOf": [
1451
+ {
1452
+ "properties": {
1453
+ "yesNo": {
1454
+ "enum": [
1455
+ "No"
1456
+ ]
1457
+ }
1458
+ }
1459
+ },
1460
+ {
1461
+ "properties": {
1462
+ "yesNo": {
1463
+ "enum": [
1464
+ "Yes"
1465
+ ]
1466
+ },
1467
+ "details": {
1468
+ "lpe1Ref": "5.4.1"
1469
+ }
1470
+ },
1471
+ "required": [
1472
+ "details"
1473
+ ]
1474
+ }
1475
+ ],
1476
+ "required": [
1477
+ "yesNo"
1478
+ ]
1479
+ },
1480
+ "claimsAnticipated": {
1481
+ "lpe1Ref": "5.5",
1482
+ "discriminator": {
1483
+ "propertyName": "yesNo"
1484
+ },
1485
+ "oneOf": [
1486
+ {
1487
+ "properties": {
1488
+ "yesNo": {
1489
+ "enum": [
1490
+ "No"
1491
+ ]
1492
+ }
1493
+ }
1494
+ },
1495
+ {
1496
+ "properties": {
1497
+ "yesNo": {
1498
+ "enum": [
1499
+ "Yes"
1500
+ ]
1501
+ },
1502
+ "details": {
1503
+ "lpe1Ref": "5.5.1"
1504
+ }
1505
+ },
1506
+ "required": [
1507
+ "details"
1508
+ ]
1509
+ }
1510
+ ],
1511
+ "required": [
1512
+ "yesNo"
1513
+ ]
1514
+ },
1515
+ "managedAreasCoveredByPolicy": {
1516
+ "lpe1Ref": "5.6",
1517
+ "discriminator": {
1518
+ "propertyName": "yesNo"
1519
+ },
1520
+ "oneOf": [
1521
+ {
1522
+ "properties": {
1523
+ "yesNo": {
1524
+ "enum": [
1525
+ "No"
1526
+ ]
1527
+ }
1528
+ }
1529
+ },
1530
+ {
1531
+ "properties": {
1532
+ "yesNo": {
1533
+ "enum": [
1534
+ "Yes"
1535
+ ]
1536
+ },
1537
+ "riskAssessments": {
1538
+ "lpe1Ref": "5.6.1",
1539
+ "discriminator": {
1540
+ "propertyName": "assessmentsCarriedOut"
1541
+ },
1542
+ "oneOf": [
1543
+ {
1544
+ "properties": {
1545
+ "assessmentsCarriedOut": {
1546
+ "enum": [
1547
+ "None"
1548
+ ]
1549
+ }
1550
+ }
1551
+ },
1552
+ {
1553
+ "properties": {
1554
+ "assessmentsCarriedOut": {
1555
+ "enum": [
1556
+ "Fire risk assessment",
1557
+ "External Wall fire risk assessment",
1558
+ "Both"
1559
+ ]
1560
+ },
1561
+ "urgentWorksRecommended": {
1562
+ "lpe1Ref": "5.6.2(i)"
1563
+ }
1564
+ },
1565
+ "required": [
1566
+ "urgentWorksRecommended"
1567
+ ],
1568
+ "oneOf": [
1569
+ null,
1570
+ {
1571
+ "required": [
1572
+ "urgentWorksCarriedOut",
1573
+ "outstandingEnforcementAction"
1574
+ ],
1575
+ "properties": {
1576
+ "urgentWorksCarriedOut": {
1577
+ "lpe1Ref": "5.6.2(ii)"
1578
+ },
1579
+ "outstandingEnforcementAction": {
1580
+ "lpe1Ref": "5.6.2(iii)"
1581
+ }
1582
+ },
1583
+ "oneOf": [
1584
+ null,
1585
+ {
1586
+ "required": [
1587
+ "dateRemedialActionRequired"
1588
+ ],
1589
+ "properties": {
1590
+ "dateRemedialActionRequired": {
1591
+ "lpe1Ref": "5.6.2(iv)"
1592
+ }
1593
+ }
1594
+ }
1595
+ ]
1596
+ }
1597
+ ]
1598
+ }
1599
+ ],
1600
+ "required": [
1601
+ "assessmentsCarriedOut"
1602
+ ]
1603
+ }
1604
+ },
1605
+ "required": [
1606
+ "riskAssessments"
1607
+ ]
1608
+ }
1609
+ ],
1610
+ "required": [
1611
+ "yesNo"
1612
+ ]
1613
+ },
1614
+ "standardTermsAvailable": {
1615
+ "lpe1Ref": "5.7",
1616
+ "discriminator": {
1617
+ "propertyName": "yesNo"
1618
+ },
1619
+ "oneOf": [
1620
+ {
1621
+ "properties": {
1622
+ "yesNo": {
1623
+ "enum": [
1624
+ "No"
1625
+ ]
1626
+ }
1627
+ }
1628
+ },
1629
+ {
1630
+ "properties": {
1631
+ "yesNo": {
1632
+ "enum": [
1633
+ "Yes"
1634
+ ]
1635
+ },
1636
+ "details": {
1637
+ "lpe1Ref": "5.7.1"
1638
+ }
1639
+ },
1640
+ "required": [
1641
+ "details"
1642
+ ]
1643
+ }
1644
+ ],
1645
+ "required": [
1646
+ "yesNo"
1647
+ ]
1648
+ },
1649
+ "nonComplianceWithConditions": {
1650
+ "lpe1Ref": "5.8",
1651
+ "discriminator": {
1652
+ "propertyName": "yesNo"
1653
+ },
1654
+ "oneOf": [
1655
+ {
1656
+ "properties": {
1657
+ "yesNo": {
1658
+ "enum": [
1659
+ "No"
1660
+ ]
1661
+ }
1662
+ }
1663
+ },
1664
+ {
1665
+ "properties": {
1666
+ "yesNo": {
1667
+ "enum": [
1668
+ "Yes"
1669
+ ]
1670
+ },
1671
+ "details": {
1672
+ "lpe1Ref": "5.8.1"
1673
+ }
1674
+ },
1675
+ "required": [
1676
+ "details"
1677
+ ]
1678
+ }
1679
+ ],
1680
+ "required": [
1681
+ "yesNo"
1682
+ ]
1683
+ },
1684
+ "buildingsReinstatementCostAssessment": {
1685
+ "lpe1Ref": "5.9"
1686
+ },
1687
+ "premiumIncludedInServiceCharge": {
1688
+ "lpe1Ref": "5.10",
1689
+ "discriminator": {
1690
+ "propertyName": "yesNo"
1691
+ },
1692
+ "oneOf": [
1693
+ {
1694
+ "properties": {
1695
+ "yesNo": {
1696
+ "enum": [
1697
+ "Yes"
1698
+ ]
1699
+ }
1700
+ }
1701
+ },
1702
+ {
1703
+ "properties": {
1704
+ "yesNo": {
1705
+ "enum": [
1706
+ "No"
1707
+ ]
1708
+ },
1709
+ "details": {
1710
+ "lpe1Ref": "5.10.1"
1711
+ }
1712
+ },
1713
+ "required": [
1714
+ "details"
1715
+ ]
1716
+ }
1717
+ ],
1718
+ "required": [
1719
+ "yesNo"
1720
+ ]
1721
+ }
1722
+ }
1723
+ },
1724
+ "disputesAndEnfranchisement": {
1725
+ "lpe1Ref": "6",
1726
+ "required": [
1727
+ "sellerReceivedComplaint",
1728
+ "sellerSentComplaint",
1729
+ "ongoingForfeitureProceedings",
1730
+ "unresolvedDisputes",
1731
+ "enfranchisementSteps",
1732
+ "breachOfTermsOfLease"
1733
+ ],
1734
+ "properties": {
1735
+ "sellerReceivedComplaint": {
1736
+ "required": [
1737
+ "yesNo"
1738
+ ],
1739
+ "oneOf": [
1740
+ null,
1741
+ {
1742
+ "required": [
1743
+ "details"
1744
+ ]
1745
+ }
1746
+ ]
1747
+ },
1748
+ "sellerSentComplaint": {
1749
+ "required": [
1750
+ "yesNo"
1751
+ ],
1752
+ "oneOf": [
1753
+ null,
1754
+ {
1755
+ "required": [
1756
+ "details"
1757
+ ]
1758
+ }
1759
+ ]
1760
+ },
1761
+ "ongoingForfeitureProceedings": {
1762
+ "lpe1Ref": "6.1"
1763
+ },
1764
+ "unresolvedDisputes": {
1765
+ "lpe1Ref": "6.2",
1766
+ "discriminator": {
1767
+ "propertyName": "yesNo"
1768
+ },
1769
+ "oneOf": [
1770
+ {
1771
+ "properties": {
1772
+ "yesNo": {
1773
+ "enum": [
1774
+ "No"
1775
+ ]
1776
+ }
1777
+ }
1778
+ },
1779
+ {
1780
+ "properties": {
1781
+ "yesNo": {
1782
+ "enum": [
1783
+ "Yes"
1784
+ ]
1785
+ },
1786
+ "details": {
1787
+ "lpe1Ref": "6.2.1"
1788
+ }
1789
+ },
1790
+ "required": [
1791
+ "details"
1792
+ ]
1793
+ }
1794
+ ],
1795
+ "required": [
1796
+ "yesNo"
1797
+ ]
1798
+ },
1799
+ "enfranchisementSteps": {
1800
+ "lpe1Ref": "6.3",
1801
+ "discriminator": {
1802
+ "propertyName": "yesNo"
1803
+ },
1804
+ "oneOf": [
1805
+ {
1806
+ "properties": {
1807
+ "yesNo": {
1808
+ "enum": [
1809
+ "No",
1810
+ "Not Known"
1811
+ ]
1812
+ }
1813
+ }
1814
+ },
1815
+ {
1816
+ "properties": {
1817
+ "yesNo": {
1818
+ "enum": [
1819
+ "Yes"
1820
+ ]
1821
+ },
1822
+ "details": {
1823
+ "lpe1Ref": "6.3.1"
1824
+ }
1825
+ },
1826
+ "required": [
1827
+ "details"
1828
+ ]
1829
+ }
1830
+ ],
1831
+ "required": [
1832
+ "yesNo"
1833
+ ]
1834
+ },
1835
+ "breachOfTermsOfLease": {
1836
+ "lpe1Ref": "6.4",
1837
+ "discriminator": {
1838
+ "propertyName": "yesNo"
1839
+ },
1840
+ "oneOf": [
1841
+ {
1842
+ "properties": {
1843
+ "yesNo": {
1844
+ "enum": [
1845
+ "No"
1846
+ ]
1847
+ }
1848
+ }
1849
+ },
1850
+ {
1851
+ "properties": {
1852
+ "yesNo": {
1853
+ "enum": [
1854
+ "Yes"
1855
+ ]
1856
+ },
1857
+ "details": {
1858
+ "lpe1Ref": "6.4.1"
1859
+ }
1860
+ },
1861
+ "required": [
1862
+ "details"
1863
+ ]
1864
+ }
1865
+ ],
1866
+ "required": [
1867
+ "yesNo"
1868
+ ]
1869
+ }
1870
+ }
1871
+ },
1872
+ "general": {
1873
+ "lpe1Ref": "7",
1874
+ "required": [
1875
+ "sellerAwareOfAlterations",
1876
+ "sellerOwnedProperty",
1877
+ "sellerServedNoticeOnLandlord",
1878
+ "sellerAwareOfNoticeOfCollectivePurchase",
1879
+ "sellerAwareOfResponse",
1880
+ "isLeaseQualifying",
1881
+ "otherPropertiesInManagedArea",
1882
+ "leasedOnSimilarTerms",
1883
+ "buildingKnownToBeHMO",
1884
+ "additionalParkingRegulations",
1885
+ "restrictionOnKeepingPets"
1886
+ ],
1887
+ "properties": {
1888
+ "sellerAwareOfAlterations": {
1889
+ "required": [
1890
+ "yesNo"
1891
+ ],
1892
+ "oneOf": [
1893
+ null,
1894
+ {
1895
+ "required": [
1896
+ "details"
1897
+ ]
1898
+ }
1899
+ ]
1900
+ },
1901
+ "otherPropertiesInManagedArea": {
1902
+ "lpe1Ref": "7.1"
1903
+ },
1904
+ "leasedOnSimilarTerms": {
1905
+ "lpe1Ref": "7.2",
1906
+ "discriminator": {
1907
+ "propertyName": "yesNo"
1908
+ },
1909
+ "oneOf": [
1910
+ {
1911
+ "properties": {
1912
+ "yesNo": {
1913
+ "enum": [
1914
+ "Yes",
1915
+ "Not Known"
1916
+ ]
1917
+ }
1918
+ }
1919
+ },
1920
+ {
1921
+ "properties": {
1922
+ "yesNo": {
1923
+ "enum": [
1924
+ "No"
1925
+ ]
1926
+ },
1927
+ "details": {
1928
+ "lpe1Ref": "7.2.1"
1929
+ }
1930
+ },
1931
+ "required": [
1932
+ "details"
1933
+ ]
1934
+ }
1935
+ ],
1936
+ "required": [
1937
+ "yesNo"
1938
+ ]
1939
+ },
1940
+ "buildingKnownToBeHMO": {
1941
+ "lpe1Ref": "7.3",
1942
+ "discriminator": {
1943
+ "propertyName": "yesNo"
1944
+ },
1945
+ "oneOf": [
1946
+ {
1947
+ "properties": {
1948
+ "yesNo": {
1949
+ "enum": [
1950
+ "No",
1951
+ "Not Known"
1952
+ ]
1953
+ }
1954
+ }
1955
+ },
1956
+ {
1957
+ "properties": {
1958
+ "yesNo": {
1959
+ "enum": [
1960
+ "Yes"
1961
+ ]
1962
+ },
1963
+ "details": {
1964
+ "lpe1Ref": "7.3.1"
1965
+ }
1966
+ },
1967
+ "required": [
1968
+ "details"
1969
+ ]
1970
+ }
1971
+ ],
1972
+ "required": [
1973
+ "yesNo"
1974
+ ]
1975
+ },
1976
+ "additionalParkingRegulations": {
1977
+ "lpe1Ref": "7.4",
1978
+ "discriminator": {
1979
+ "propertyName": "yesNo"
1980
+ },
1981
+ "oneOf": [
1982
+ {
1983
+ "properties": {
1984
+ "yesNo": {
1985
+ "enum": [
1986
+ "No"
1987
+ ]
1988
+ }
1989
+ }
1990
+ },
1991
+ {
1992
+ "properties": {
1993
+ "yesNo": {
1994
+ "enum": [
1995
+ "Yes"
1996
+ ]
1997
+ },
1998
+ "details": {
1999
+ "lpe1Ref": "7.4.1"
2000
+ }
2001
+ },
2002
+ "required": [
2003
+ "details"
2004
+ ]
2005
+ }
2006
+ ],
2007
+ "required": [
2008
+ "yesNo"
2009
+ ]
2010
+ },
2011
+ "restrictionOnKeepingPets": {
2012
+ "lpe1Ref": "7.5",
2013
+ "discriminator": {
2014
+ "propertyName": "yesNo"
2015
+ },
2016
+ "oneOf": [
2017
+ {
2018
+ "properties": {
2019
+ "yesNo": {
2020
+ "enum": [
2021
+ "No"
2022
+ ]
2023
+ }
2024
+ }
2025
+ },
2026
+ {
2027
+ "properties": {
2028
+ "yesNo": {
2029
+ "enum": [
2030
+ "Yes"
2031
+ ]
2032
+ },
2033
+ "details": {
2034
+ "lpe1Ref": "7.5.1"
2035
+ }
2036
+ },
2037
+ "required": [
2038
+ "details"
2039
+ ]
2040
+ }
2041
+ ],
2042
+ "required": [
2043
+ "yesNo"
2044
+ ]
2045
+ }
2046
+ }
2047
+ },
2048
+ "requiredDocuments": {
2049
+ "lpe1Ref": "8",
2050
+ "required": [
2051
+ "noticeOfSale",
2052
+ "noticeOfBuildingCondition",
2053
+ "landlordNotifiedOfSale",
2054
+ "serviceChargeAccounts",
2055
+ "groundRent",
2056
+ "buildingsInsurancePolicy",
2057
+ "managedAreasBuildingsInsurancePolicy",
2058
+ "serviceChargeEstimatesCurrent",
2059
+ "serviceChargeEstimatesPrevious",
2060
+ "proposedWorksNotices",
2061
+ "forfeitureDocumentation",
2062
+ "additionalRegulationsNotInLease",
2063
+ "deedsOfVariation",
2064
+ "deedOfCovenant",
2065
+ "certificateOfCompliance",
2066
+ "licenceToAssign",
2067
+ "permissionToAlter",
2068
+ "noticesServedOnLessee",
2069
+ "asbestosSurvey",
2070
+ "managedAreaFireRiskAssessment",
2071
+ "memorandumAndArticles",
2072
+ "managementCompanyAGMMinutes",
2073
+ "deedOfCertificate",
2074
+ "landlordsCertificate",
2075
+ "enforcementNotices"
2076
+ ],
2077
+ "properties": {
2078
+ "serviceChargeAccounts": {
2079
+ "lpe1Ref": "8.1"
2080
+ },
2081
+ "buildingsInsurancePolicy": {
2082
+ "lpe1Ref": "8.2"
2083
+ },
2084
+ "managedAreasBuildingsInsurancePolicy": {
2085
+ "lpe1Ref": "8.3"
2086
+ },
2087
+ "serviceChargeEstimatesCurrent": {
2088
+ "lpe1Ref": "8.4"
2089
+ },
2090
+ "serviceChargeEstimatesPrevious": {
2091
+ "lpe1Ref": "8.5"
2092
+ },
2093
+ "proposedWorksNotices": {
2094
+ "lpe1Ref": "8.6"
2095
+ },
2096
+ "forfeitureDocumentation": {
2097
+ "lpe1Ref": "8.7"
2098
+ },
2099
+ "additionalRegulationsNotInLease": {
2100
+ "lpe1Ref": "8.8"
2101
+ },
2102
+ "deedsOfVariation": {
2103
+ "lpe1Ref": "8.9"
2104
+ },
2105
+ "deedOfCovenant": {
2106
+ "lpe1Ref": "8.10"
2107
+ },
2108
+ "certificateOfCompliance": {
2109
+ "lpe1Ref": "8.11"
2110
+ },
2111
+ "certificateOfComplianceFee": {
2112
+ "lpe1Ref": "8.11.1"
2113
+ },
2114
+ "licenceToAssign": {
2115
+ "lpe1Ref": "8.12"
2116
+ },
2117
+ "permissionToAlter": {
2118
+ "lpe1Ref": "8.13"
2119
+ },
2120
+ "noticesServedOnLessee": {
2121
+ "lpe1Ref": "8.14"
2122
+ },
2123
+ "asbestosSurvey": {
2124
+ "lpe1Ref": "8.15"
2125
+ },
2126
+ "managedAreaFireRiskAssessment": {
2127
+ "lpe1Ref": "8.16"
2128
+ },
2129
+ "memorandumAndArticles": {
2130
+ "lpe1Ref": "8.17"
2131
+ },
2132
+ "managementCompanyAGMMinutes": {
2133
+ "lpe1Ref": "8.18"
2134
+ },
2135
+ "deedOfCertificate": {
2136
+ "lpe1Ref": "8.19"
2137
+ },
2138
+ "landlordsCertificate": {
2139
+ "lpe1Ref": "8.20",
2140
+ "enum": [
2141
+ "Enclosed",
2142
+ "To follow",
2143
+ "Not applicable"
2144
+ ]
2145
+ },
2146
+ "enforcementNotices": {
2147
+ "lpe1Ref": "8.21"
2148
+ }
2149
+ }
2150
+ },
2151
+ "confirmation": {
2152
+ "lpe1Ref": "9",
2153
+ "required": [
2154
+ "response"
2155
+ ]
2156
+ }
2157
+ }
2158
+ }
2159
+ }
2160
+ }
2161
+ ]
2162
+ }
2163
+ }
2164
+ }
2165
+ }
2166
+ }
2167
+ }
2168
+ }
2169
+ }
2170
+ }
2171
+ }