@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,2064 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://trust.propdata.org.uk/schemas/v1/leasehold-information.json",
4
+ "type": "object",
5
+ "title": "LPE1",
6
+ "description": "Leasehold Property Enquiries - Fourth Edition 2023",
7
+ "baspiRef": "A",
8
+ "required": [
9
+ "contactDetails",
10
+ "transferAndRegistration",
11
+ "groundRent",
12
+ "serviceCharge",
13
+ "buildingsInsurance",
14
+ "disputesAndEnfranchisement",
15
+ "general",
16
+ "requiredDocuments",
17
+ "declaration"
18
+ ],
19
+ "properties": {
20
+ "contactDetails": {
21
+ "lpe1Ref": "1",
22
+ "title": "Contact Details",
23
+ "description": "Complete the details for the relevant parties",
24
+ "type": "object",
25
+ "required": [
26
+ "noticeOfAssignmentAndCharge",
27
+ "collectsGroundRent",
28
+ "collectsServiceCharges",
29
+ "collectsbuildingInsurancePremiums",
30
+ "dealsWithDayToDayMaintenanceOfManagedArea",
31
+ "dealsWithDayToDayMaintenanceOfBuilding"
32
+ ],
33
+ "properties": {
34
+ "landlord": {
35
+ "lpe1Ref": "1.1",
36
+ "title": "Landlord",
37
+ "type": "object",
38
+ "properties": {
39
+ "contact": {
40
+ "$ref": "#/$defs/contact"
41
+ },
42
+ "bankDetails": {
43
+ "$ref": "#/$defs/bankDetails"
44
+ }
45
+ }
46
+ },
47
+ "managementCompany": {
48
+ "lpe1Ref": "1.2",
49
+ "title": "Management Company",
50
+ "type": "object",
51
+ "properties": {
52
+ "contact": {
53
+ "$ref": "#/$defs/contact"
54
+ },
55
+ "bankDetails": {
56
+ "$ref": "#/$defs/bankDetails"
57
+ }
58
+ }
59
+ },
60
+ "managingAgent": {
61
+ "lpe1Ref": "1.3",
62
+ "title": "Managing Agent",
63
+ "type": "object",
64
+ "properties": {
65
+ "contact": {
66
+ "$ref": "#/$defs/contact"
67
+ },
68
+ "appointedBy": {
69
+ "title": "Appointed by",
70
+ "type": "string",
71
+ "enum": ["Management Company", "Landlord", "Other"]
72
+ },
73
+ "bankDetails": {
74
+ "$ref": "#/$defs/bankDetails"
75
+ }
76
+ }
77
+ },
78
+ "residentTenantsAssociation": {
79
+ "lpe1Ref": "1.4",
80
+ "title": "Residents'/Tenants' Association",
81
+ "type": "object",
82
+ "properties": {
83
+ "contact": {
84
+ "$ref": "#/$defs/contact"
85
+ },
86
+ "bankDetails": {
87
+ "$ref": "#/$defs/bankDetails"
88
+ }
89
+ }
90
+ },
91
+ "legalRepresentative": {
92
+ "lpe1Ref": "1.5",
93
+ "title": "Legal Representative of one of the above",
94
+ "type": "object",
95
+ "properties": {
96
+ "contact": {
97
+ "$ref": "#/$defs/contact"
98
+ },
99
+ "appointedBy": {
100
+ "title": "Appointed by",
101
+ "type": "string",
102
+ "enum": [
103
+ "Management Company",
104
+ "Landlord",
105
+ "Managing Agent",
106
+ "Residents'/Tenants' Association",
107
+ "Other"
108
+ ]
109
+ }
110
+ }
111
+ },
112
+ "noticeOfAssignmentAndCharge": {
113
+ "lpe1Ref": "1.6",
114
+ "title": "Who accepts service of the Notice of Assignment & Charge?",
115
+ "description": "Tick the box beside each applicable party and state the total fee including VAT for notice of assignment and charge. Tick 'Notice via email' to confirm whether you will accept notice via email",
116
+ "type": "object",
117
+ "properties": {
118
+ "landlord": {
119
+ "title": "Landlord",
120
+ "$ref": "#/defs/noticeOfAssignmentAndChargeParty"
121
+ },
122
+ "managementCompany": {
123
+ "title": "Management Company",
124
+ "$ref": "#/defs/noticeOfAssignmentAndChargeParty"
125
+ },
126
+ "managingAgent": {
127
+ "title": "Managing Agent",
128
+ "$ref": "#/defs/noticeOfAssignmentAndChargeParty"
129
+ },
130
+ "other": {
131
+ "type": "object",
132
+ "properties": {
133
+ "isApplicableParty": {
134
+ "type": "boolean"
135
+ }
136
+ },
137
+ "required": ["isApplicableParty"],
138
+ "discriminator": { "propertyName": "isApplicableParty" },
139
+ "oneOf": [
140
+ {
141
+ "properties": {
142
+ "isApplicableParty": {
143
+ "const": false
144
+ }
145
+ }
146
+ },
147
+ {
148
+ "properties": {
149
+ "isApplicableParty": {
150
+ "const": true
151
+ },
152
+ "fee": {
153
+ "title": "Total Fee including VAT",
154
+ "type": "number"
155
+ },
156
+ "noticeViaEmail": {
157
+ "type": "boolean"
158
+ }
159
+ },
160
+ "contact": {
161
+ "$ref": "#/$defs/contact"
162
+ },
163
+ "capacity": {
164
+ "title": "Capacity (e.g. Landlord's lawyer)",
165
+ "type": "string",
166
+ "minLength": 1
167
+ },
168
+ "required": [
169
+ "feeIncludingVAT",
170
+ "noticeViaEmail",
171
+ "contact",
172
+ "capacity"
173
+ ]
174
+ }
175
+ ]
176
+ }
177
+ }
178
+ },
179
+ "collectsGroundRent": {
180
+ "lpe1Ref": "1.7",
181
+ "title": "Who collects the Ground Rent?",
182
+ "type": "string",
183
+ "enum": ["Landlord", "Management Company", "Managing Agent", "N/A"]
184
+ },
185
+ "collectsServiceCharges": {
186
+ "lpe1Ref": "1.8",
187
+ "title": "Who collects the Service Charges?",
188
+ "type": "string",
189
+ "enum": ["Landlord", "Management Company", "Managing Agent", "N/A"]
190
+ },
191
+ "collectsbuildingInsurancePremiums": {
192
+ "lpe1Ref": "1.9",
193
+ "title": "Who collects the building insurance premiums?",
194
+ "type": "string",
195
+ "enum": ["Landlord", "Management Company", "Managing Agent", "N/A"]
196
+ },
197
+ "dealsWithDayToDayMaintenanceOfManagedArea": {
198
+ "lpe1Ref": "1.11",
199
+ "title": "Who deals with the day to day maintenance of the Managed Area?",
200
+ "type": "string",
201
+ "enum": [
202
+ "Landlord",
203
+ "Management Company",
204
+ "Managing Agent",
205
+ "the Lessees",
206
+ "N/A"
207
+ ]
208
+ },
209
+ "organisesBuildingInsurance": {
210
+ "lpe1Ref": "1.12",
211
+ "title": "Who organises and administers the buildings insurance?",
212
+ "type": "string",
213
+ "enum": [
214
+ "Landlord",
215
+ "Management Company",
216
+ "Managing Agent",
217
+ "the Lessees",
218
+ "N/A"
219
+ ]
220
+ },
221
+ "dealsWithDayToDayMaintenanceOfBuilding": {
222
+ "lpe1Ref": "1.10",
223
+ "title": "Who deals with the day to day maintenance of the building?",
224
+ "type": "string",
225
+ "enum": [
226
+ "Landlord",
227
+ "Management Company",
228
+ "Managing Agent",
229
+ "the Lessees"
230
+ ]
231
+ }
232
+ },
233
+ "discriminator": {
234
+ "propertyName": "dealsWithDayToDayMaintenanceOfBuilding"
235
+ },
236
+ "oneOf": [
237
+ {
238
+ "properties": {
239
+ "dealsWithDayToDayMaintenanceOfBuilding": {
240
+ "enum": ["Landlord", "Management Company", "Managing Agent"]
241
+ }
242
+ }
243
+ },
244
+ {
245
+ "properties": {
246
+ "dealsWithDayToDayMaintenanceOfBuilding": {
247
+ "enum": ["the Lessees"]
248
+ },
249
+ "lesseeInCharge": {
250
+ "lpe1Ref": "1.10.1",
251
+ "title": "Please provide contact details of the Lessee in charge",
252
+ "$ref": "#/$defs/contact"
253
+ }
254
+ },
255
+ "required": ["lesseeInCharge"]
256
+ }
257
+ ]
258
+ },
259
+ "transferAndRegistration": {
260
+ "lpe1Ref": "2",
261
+ "title": "Transfer and Registration",
262
+ "type": "object",
263
+ "required": [
264
+ "deedOfCovenantRequired",
265
+ "licenceToAssignRequired",
266
+ "awareOfConsents",
267
+ "requirementsToBeMemberOfManagementCompany",
268
+ "procedureForObtainingCertificate"
269
+ ],
270
+ "properties": {
271
+ "deedOfCovenantRequired": {
272
+ "lpe1Ref": "2.1",
273
+ "title": "Is a Deed of Covenant Required?",
274
+ "type": "object",
275
+ "properties": {
276
+ "yesNoNotKnown": {
277
+ "type": "string",
278
+ "title": "",
279
+ "enum": ["Yes", "No", "Not Known"]
280
+ }
281
+ },
282
+ "required": ["yesNoNotKnown"],
283
+ "discriminator": { "propertyName": "yesNoNotKnown" },
284
+ "oneOf": [
285
+ {
286
+ "properties": {
287
+ "yesNoNotKnown": {
288
+ "enum": ["No", "Not Known"]
289
+ }
290
+ }
291
+ },
292
+ {
293
+ "properties": {
294
+ "yesNoNotKnown": {
295
+ "enum": ["Yes"]
296
+ },
297
+ "costsApplicableToTheDeed": {
298
+ "lpe1Ref": "2.1.1",
299
+ "title": "Confirm the costs applicable to the Deed including VAT",
300
+ "type": "number"
301
+ },
302
+ "personWhoDealsWithTheDeedOfCovenant": {
303
+ "lpe1Ref": "2.1.2",
304
+ "title": "Provide details of the person who deals with the Deed of Covenant",
305
+ "type": "string",
306
+ "minLength": 1
307
+ }
308
+ },
309
+ "required": [
310
+ "costsApplicableToTheDeed",
311
+ "personWhoDealsWithTheDeedOfCovenant"
312
+ ]
313
+ }
314
+ ]
315
+ },
316
+ "licenceToAssignRequired": {
317
+ "lpe1Ref": "2.2",
318
+ "title": "Is a License to Assign required?",
319
+ "type": "object",
320
+ "properties": {
321
+ "yesNo": {
322
+ "type": "string",
323
+ "enum": ["Yes", "No"]
324
+ }
325
+ },
326
+ "required": ["yesNo"],
327
+ "discriminator": { "propertyName": "yesNo" },
328
+ "oneOf": [
329
+ {
330
+ "properties": {
331
+ "yesNo": {
332
+ "enum": ["No"]
333
+ }
334
+ }
335
+ },
336
+ {
337
+ "properties": {
338
+ "yesNo": {
339
+ "enum": ["Yes"]
340
+ },
341
+ "requirements": {
342
+ "lpe1Ref": "2.3",
343
+ "title": "Specify requirements e.g. references, and any costs applicable to the Licence",
344
+ "type": "string",
345
+ "minLength": 1
346
+ }
347
+ },
348
+ "required": ["requirements"]
349
+ }
350
+ ]
351
+ },
352
+ "awareOfConsents": {
353
+ "lpe1Ref": "2.4",
354
+ "title": "Are you aware of consent having been given to any alterations or additions to the Property?",
355
+ "type": "object",
356
+ "properties": {
357
+ "yesNo": {
358
+ "type": "string",
359
+ "enum": ["Yes", "No"]
360
+ }
361
+ },
362
+ "required": ["yesNo"],
363
+ "discriminator": { "propertyName": "yesNo" },
364
+ "oneOf": [
365
+ {
366
+ "properties": {
367
+ "yesNo": {
368
+ "enum": ["No"]
369
+ }
370
+ }
371
+ },
372
+ {
373
+ "properties": {
374
+ "yesNo": {
375
+ "enum": ["Yes"]
376
+ },
377
+ "details": {
378
+ "lpe1Ref": "2.4.1",
379
+ "title": "Provide details and copies of any consent",
380
+ "type": "string",
381
+ "minLength": 1
382
+ }
383
+ },
384
+ "required": ["details"]
385
+ }
386
+ ]
387
+ },
388
+ "requirementsToBeMemberOfManagementCompany": {
389
+ "lpe1Ref": "2.5",
390
+ "title": "Is the incoming Lessee required to take a share in, or Yes become a member of, the Management Company?",
391
+ "type": "object",
392
+ "properties": {
393
+ "yesNoNotApplicable": {
394
+ "type": "string",
395
+ "title": "",
396
+ "enum": ["Yes", "No", "N/A"]
397
+ }
398
+ },
399
+ "required": ["yesNoNotApplicable"],
400
+ "discriminator": { "propertyName": "yesNoNotApplicable" },
401
+ "oneOf": [
402
+ {
403
+ "properties": {
404
+ "yesNoNotApplicable": {
405
+ "enum": ["No", "N/A"]
406
+ }
407
+ }
408
+ },
409
+ {
410
+ "properties": {
411
+ "yesNoNotApplicable": {
412
+ "enum": ["Yes"]
413
+ },
414
+ "details": {
415
+ "lpe1Ref": "2.5.1",
416
+ "title": "Provide details of the procedures and fees. Include details of the person who deals with the new certificate or share.",
417
+ "type": "string",
418
+ "minLength": 1
419
+ }
420
+ },
421
+ "required": ["details"]
422
+ }
423
+ ]
424
+ },
425
+ "procedureForObtainingCertificate": {
426
+ "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?",
427
+ "type": "string"
428
+ }
429
+ }
430
+ },
431
+ "groundRent": {
432
+ "lpe1Ref": "3",
433
+ "title": "Ground Rent",
434
+ "type": "object",
435
+ "required": [
436
+ "groundRentPayable",
437
+ "groundRentPaidUpToDate",
438
+ "lastDemandPeriod",
439
+ "requirementsToBeMemberOfManagementCompany"
440
+ ],
441
+ "properties": {
442
+ "groundRentPayable": {
443
+ "lpe1Ref": "3.1",
444
+ "title": "What is the annual Ground Rent payable for the Property?",
445
+ "type": "number"
446
+ },
447
+ "groundRentPaidUpToDate": {
448
+ "lpe1Ref": "3.2",
449
+ "type": "object",
450
+ "title": "Is the Ground Rent paid up to date?",
451
+ "properties": {
452
+ "yesNoNotApplicable": {
453
+ "type": "string",
454
+ "title": "",
455
+ "enum": ["Yes", "No", "N/A"]
456
+ }
457
+ },
458
+ "required": ["yesNoNotApplicable"],
459
+ "discriminator": { "propertyName": "yesNoNotApplicable" },
460
+ "oneOf": [
461
+ {
462
+ "properties": {
463
+ "yesNoNotApplicable": {
464
+ "enum": ["Yes", "N/A"]
465
+ }
466
+ }
467
+ },
468
+ {
469
+ "properties": {
470
+ "yesNoNotApplicable": {
471
+ "enum": ["No"]
472
+ },
473
+ "details": {
474
+ "lpe1Ref": "3.2.1",
475
+ "title": "Supply details of the arrears",
476
+ "type": "string",
477
+ "minLength": 1
478
+ }
479
+ },
480
+ "required": ["details"]
481
+ }
482
+ ]
483
+ },
484
+ "lastDemandPeriod": {
485
+ "lpe1Ref": "3.3",
486
+ "title": "What period is covered by the last demand?",
487
+ "type": "object",
488
+ "properties": {
489
+ "from": {
490
+ "type": "string",
491
+ "format": "date"
492
+ },
493
+ "to": {
494
+ "type": "string",
495
+ "format": "date"
496
+ }
497
+ }
498
+ }
499
+ }
500
+ },
501
+ "serviceCharge": {
502
+ "lpe1Ref": "4",
503
+ "title": "Service Charge",
504
+ "type": "object",
505
+ "required": [
506
+ "propertiesContributingToMaintenaceOfManagedArea",
507
+ "serviceChargePayable",
508
+ "serviceChargePaidUpToDate",
509
+ "excessPaymentAnticipated",
510
+ "lastDemandPeriod",
511
+ "hasInabilityToCollectAffectedMaintenance",
512
+ "reserveFund",
513
+ "lastDecoratedPeriod",
514
+ "section20WorksProposed",
515
+ "increaseInServiceChargeAnticipated",
516
+ "outstandingServiceChargeConsultation",
517
+ "japaneseKnotweedAffectingManagedAreas",
518
+ "transferFees",
519
+ "allPropertiesContribute",
520
+ "deedOfCertificateServed",
521
+ "landlordsCertificateServed"
522
+ ],
523
+ "properties": {
524
+ "propertiesContributingToMaintenaceOfManagedArea": {
525
+ "lpe1Ref": "4.1",
526
+ "title": "How many properties contribute toward the maintenance of the Managed Area?",
527
+ "type": "number"
528
+ },
529
+ "serviceChargePayable": {
530
+ "lpe1Ref": "4.1.11",
531
+ "title": "What is the current annual Service Charge for the £ Property?",
532
+ "type": "number"
533
+ },
534
+ "adHocExpenses": {
535
+ "lpe1Ref": "4.1.2",
536
+ "title": "If the Service Charge has been collected on an 'ad hoc' basis, what have been the expenses over the last 3 years?",
537
+ "type": "string"
538
+ },
539
+ "serviceChargePaidUpToDate": {
540
+ "lpe1Ref": "4.2",
541
+ "type": "object",
542
+ "title": "Is the Service Charge paid up to date for the Property?",
543
+ "properties": {
544
+ "yesNo": {
545
+ "type": "string",
546
+ "title": "",
547
+ "enum": ["Yes", "No"]
548
+ }
549
+ },
550
+ "required": ["yesNo"],
551
+ "discriminator": { "propertyName": "yesNo" },
552
+ "oneOf": [
553
+ {
554
+ "properties": {
555
+ "yesNo": {
556
+ "enum": ["Yes"]
557
+ }
558
+ }
559
+ },
560
+ {
561
+ "properties": {
562
+ "yesNo": {
563
+ "enum": ["No"]
564
+ },
565
+ "details": {
566
+ "lpe1Ref": "4.2.1",
567
+ "title": "Supply details of the arrears",
568
+ "type": "string",
569
+ "minLength": 1
570
+ }
571
+ },
572
+ "required": ["details"]
573
+ }
574
+ ]
575
+ },
576
+ "excessPaymentAnticipated": {
577
+ "lpe1Ref": "4.3",
578
+ "type": "object",
579
+ "title": " Is any excess payment anticipated for the Property at the Yes end of the financial year?",
580
+ "properties": {
581
+ "yesNo": {
582
+ "type": "string",
583
+ "title": "",
584
+ "enum": ["Yes", "No"]
585
+ }
586
+ },
587
+ "required": ["yesNo"],
588
+ "discriminator": { "propertyName": "yesNo" },
589
+ "oneOf": [
590
+ {
591
+ "properties": {
592
+ "yesNo": {
593
+ "enum": ["No"]
594
+ }
595
+ }
596
+ },
597
+ {
598
+ "properties": {
599
+ "yesNo": {
600
+ "enum": ["Yes"]
601
+ },
602
+ "details": {
603
+ "lpe1Ref": "4.3.1",
604
+ "title": "Provide details",
605
+ "type": "string",
606
+ "minLength": 1
607
+ }
608
+ },
609
+ "required": ["details"]
610
+ }
611
+ ]
612
+ },
613
+ "lastDemandPeriod": {
614
+ "lpe1Ref": "4.4",
615
+ "title": "What period is covered by the last demand?",
616
+ "type": "object",
617
+ "properties": {
618
+ "from": {
619
+ "title": "From",
620
+ "type": "string",
621
+ "format": "date"
622
+ },
623
+ "to": {
624
+ "title": "To",
625
+ "type": "string",
626
+ "format": "date"
627
+ }
628
+ }
629
+ },
630
+ "hasInabilityToCollectAffectedMaintenance": {
631
+ "lpe1Ref": "4.5",
632
+ "type": "object",
633
+ "title": "In the last 12 months, has any inability to collect payments, from any party, affected (or is it likely to Yes affect), the maintenance of the Managed Area?",
634
+ "properties": {
635
+ "yesNo": {
636
+ "type": "string",
637
+ "title": "",
638
+ "enum": ["Yes", "No"]
639
+ }
640
+ },
641
+ "required": ["yesNo"],
642
+ "discriminator": { "propertyName": "yesNo" },
643
+ "oneOf": [
644
+ {
645
+ "properties": {
646
+ "yesNo": {
647
+ "enum": ["No"]
648
+ }
649
+ }
650
+ },
651
+ {
652
+ "properties": {
653
+ "yesNo": {
654
+ "enum": ["Yes"]
655
+ },
656
+ "details": {
657
+ "lpe1Ref": "4.5.1",
658
+ "title": "Provide details",
659
+ "type": "string",
660
+ "minLength": 1
661
+ }
662
+ },
663
+ "required": ["details"]
664
+ }
665
+ ]
666
+ },
667
+ "reserveFund": {
668
+ "lpe1Ref": "4.6",
669
+ "type": "object",
670
+ "title": "Does a Reserve Fund apply to the Managed Area?",
671
+ "properties": {
672
+ "yesNo": {
673
+ "type": "string",
674
+ "title": "",
675
+ "enum": ["Yes", "No"]
676
+ }
677
+ },
678
+ "required": ["yesNo"],
679
+ "discriminator": { "propertyName": "yesNo" },
680
+ "oneOf": [
681
+ {
682
+ "properties": {
683
+ "yesNo": {
684
+ "enum": ["No"]
685
+ }
686
+ }
687
+ },
688
+ {
689
+ "properties": {
690
+ "yesNo": {
691
+ "enum": ["Yes"]
692
+ },
693
+ "details": {
694
+ "lpe1Ref": "4.6.1",
695
+ "title": "Provide details",
696
+ "type": "string",
697
+ "minLength": 1
698
+ },
699
+ "sufficentToCoverSection20Expenditure": {
700
+ "lpe1Ref": "4.6.2",
701
+ "title": "Is the amount expected to be sufficient to cover the known Section 20 expenditure?",
702
+ "type": "object",
703
+ "properties": {
704
+ "yesNo": {
705
+ "type": "string",
706
+ "title": "",
707
+ "enum": ["Yes", "No"]
708
+ }
709
+ },
710
+ "required": ["yesNo"],
711
+ "discriminator": { "propertyName": "yesNo" },
712
+ "oneOf": [
713
+ {
714
+ "properties": {
715
+ "yesNo": {
716
+ "enum": ["Yes"]
717
+ }
718
+ }
719
+ },
720
+ {
721
+ "properties": {
722
+ "yesNo": {
723
+ "enum": ["No"]
724
+ },
725
+ "details": {
726
+ "lpe1Ref": "4.6.3",
727
+ "title": "Supply details",
728
+ "type": "string",
729
+ "minLength": 1
730
+ }
731
+ },
732
+ "required": ["details"]
733
+ }
734
+ ]
735
+ }
736
+ },
737
+ "required": ["details"]
738
+ }
739
+ ]
740
+ },
741
+ "lastDecoratedPeriod": {
742
+ "lpe1Ref": "4.7",
743
+ "title": "Confirm the date when the Managed Areas were last decorated, internally and externally.",
744
+ "type": "object",
745
+ "properties": {
746
+ "internally": {
747
+ "title": "Internally",
748
+ "type": "object",
749
+ "properties": {
750
+ "from": {
751
+ "title": "To",
752
+ "type": "string",
753
+ "format": "date"
754
+ },
755
+ "to": {
756
+ "title": "To",
757
+ "type": "string",
758
+ "format": "date"
759
+ }
760
+ }
761
+ },
762
+ "externally": {
763
+ "title": "Externally",
764
+ "type": "object",
765
+ "properties": {
766
+ "from": {
767
+ "title": "To",
768
+ "type": "string",
769
+ "format": "date"
770
+ },
771
+ "to": {
772
+ "title": "To",
773
+ "type": "string",
774
+ "format": "date"
775
+ }
776
+ }
777
+ }
778
+ }
779
+ },
780
+ "section20WorksProposed": {
781
+ "lpe1Ref": "4.8",
782
+ "type": "object",
783
+ "title": "Within the next 2 years, are any Section 20 works proposed to the Property?",
784
+ "properties": {
785
+ "yesNo": {
786
+ "type": "string",
787
+ "title": "",
788
+ "enum": ["Completed but unpaid", "Due", "Anticipated", "N/A"]
789
+ }
790
+ },
791
+ "required": ["yesNo"],
792
+ "discriminator": { "propertyName": "yesNo" },
793
+ "oneOf": [
794
+ {
795
+ "properties": {
796
+ "yesNo": {
797
+ "enum": ["N/A"]
798
+ }
799
+ }
800
+ },
801
+ {
802
+ "properties": {
803
+ "yesNo": {
804
+ "enum": ["Completed but unpaid", "Due", "Anticipated"]
805
+ },
806
+ "details": {
807
+ "lpe1Ref": "4.8.1",
808
+ "title": "If so, provide details of the works and the contribution anticipated from the Lessee",
809
+ "type": "string",
810
+ "minLength": 1
811
+ }
812
+ },
813
+ "required": ["details"]
814
+ }
815
+ ]
816
+ },
817
+ "increaseInServiceChargeAnticipated": {
818
+ "lpe1Ref": "4.9",
819
+ "title": "Is any increase in the Service Charge over 10% or £100, whichever is the greater, anticipated in the next 2 years?",
820
+ "type": "object",
821
+ "properties": {
822
+ "yesNo": {
823
+ "type": "string",
824
+ "title": "",
825
+ "enum": ["Yes", "No"]
826
+ }
827
+ },
828
+ "required": ["yesNo"],
829
+ "discriminator": { "propertyName": "yesNo" },
830
+ "oneOf": [
831
+ {
832
+ "properties": {
833
+ "yesNo": {
834
+ "enum": ["No"]
835
+ }
836
+ }
837
+ },
838
+ {
839
+ "properties": {
840
+ "yesNo": {
841
+ "enum": ["Yes"]
842
+ },
843
+ "details": {
844
+ "lpe1Ref": "4.9.1",
845
+ "title": "Provide details",
846
+ "type": "string",
847
+ "minLength": 1
848
+ }
849
+ },
850
+ "required": ["details"]
851
+ }
852
+ ]
853
+ },
854
+ "outstandingServiceChargeConsultation": {
855
+ "lpe1Ref": "4.10",
856
+ "title": "Are there any outstanding Service Charge consultation procedures?",
857
+ "type": "object",
858
+ "properties": {
859
+ "yesNo": {
860
+ "type": "string",
861
+ "title": "",
862
+ "enum": ["Yes", "No"]
863
+ }
864
+ },
865
+ "required": ["yesNo"],
866
+ "discriminator": { "propertyName": "yesNo" },
867
+ "oneOf": [
868
+ {
869
+ "properties": {
870
+ "yesNo": {
871
+ "enum": ["No"]
872
+ }
873
+ }
874
+ },
875
+ {
876
+ "properties": {
877
+ "yesNo": {
878
+ "enum": ["Yes"]
879
+ },
880
+ "details": {
881
+ "lpe1Ref": "4.10.1",
882
+ "title": "Provide details",
883
+ "type": "string",
884
+ "minLength": 1
885
+ }
886
+ },
887
+ "required": ["details"]
888
+ }
889
+ ]
890
+ },
891
+ "japaneseKnotweedAffectingManagedAreas": {
892
+ "lpe1Ref": "4.11",
893
+ "title": "Are the Managed Areas known to be affected by Japanese knotweed?",
894
+ "type": "object",
895
+ "properties": {
896
+ "yesNo": {
897
+ "type": "string",
898
+ "title": "",
899
+ "enum": ["Yes", "No"]
900
+ }
901
+ },
902
+ "required": ["yesNo"],
903
+ "discriminator": { "propertyName": "yesNo" },
904
+ "oneOf": [
905
+ {
906
+ "properties": {
907
+ "yesNo": {
908
+ "enum": ["No"]
909
+ }
910
+ }
911
+ },
912
+ {
913
+ "properties": {
914
+ "yesNo": {
915
+ "enum": ["Yes"]
916
+ },
917
+ "details": {
918
+ "lpe1Ref": "4.11.1",
919
+ "title": "Provide details and a copy of any Japanese knotweed management plan in place.",
920
+ "type": "string",
921
+ "minLength": 1
922
+ }
923
+ },
924
+ "required": ["details"]
925
+ }
926
+ ]
927
+ },
928
+ "transferFees": {
929
+ "lpe1Ref": "4.12",
930
+ "title": "Are there any transfer fees deferred service charges or similar fees, expressed as a percentage of the Property's value, payable on an event such as resale or subletting?",
931
+ "type": "object",
932
+ "properties": {
933
+ "yesNo": {
934
+ "type": "string",
935
+ "title": "",
936
+ "enum": ["Yes", "No"]
937
+ }
938
+ },
939
+ "required": ["yesNo"],
940
+ "discriminator": { "propertyName": "yesNo" },
941
+ "oneOf": [
942
+ {
943
+ "properties": {
944
+ "yesNo": {
945
+ "enum": ["No"]
946
+ }
947
+ }
948
+ },
949
+ {
950
+ "properties": {
951
+ "yesNo": {
952
+ "enum": ["Yes"]
953
+ },
954
+ "details": {
955
+ "lpe1Ref": "4.12.1",
956
+ "title": "Provide details.",
957
+ "type": "string",
958
+ "minLength": 1
959
+ }
960
+ },
961
+ "required": ["details"]
962
+ }
963
+ ]
964
+ },
965
+ "allPropertiesContribute": {
966
+ "lpe1Ref": "4.13",
967
+ "title": "Do all properties in the Managed Area contribute to the Service Charge?",
968
+ "type": "object",
969
+ "properties": {
970
+ "yesNo": {
971
+ "type": "string",
972
+ "title": "",
973
+ "enum": ["Yes", "No"]
974
+ }
975
+ },
976
+ "required": ["yesNo"],
977
+ "discriminator": { "propertyName": "yesNo" },
978
+ "oneOf": [
979
+ {
980
+ "properties": {
981
+ "yesNo": {
982
+ "enum": ["Yes"]
983
+ }
984
+ }
985
+ },
986
+ {
987
+ "properties": {
988
+ "yesNo": {
989
+ "enum": ["No"]
990
+ },
991
+ "details": {
992
+ "lpe1Ref": "4.13.1",
993
+ "title": "Provide details.",
994
+ "type": "string",
995
+ "minLength": 1
996
+ }
997
+ },
998
+ "required": ["details"]
999
+ }
1000
+ ]
1001
+ },
1002
+ "deedOfCertificateServed": {
1003
+ "lpe1Ref": "4.14",
1004
+ "title": "Has a Leaseholder Deed of Certificate been served on the Landlord in relation to the property or remedial works required to the property?",
1005
+ "type": "object",
1006
+ "properties": {
1007
+ "yesNoNotApplicable": {
1008
+ "type": "string",
1009
+ "title": "",
1010
+ "enum": ["Yes", "No Certificate Served", "N/A"]
1011
+ }
1012
+ },
1013
+ "required": ["yesNoNotApplicable"]
1014
+ },
1015
+ "landlordsCertificateServed": {
1016
+ "lpe1Ref": "4.14",
1017
+ "title": "Has a Landlord's Certificate been served?",
1018
+ "type": "object",
1019
+ "properties": {
1020
+ "yesNoNotApplicable": {
1021
+ "type": "string",
1022
+ "title": "",
1023
+ "enum": ["Yes", "No Certificate Served", "N/A"]
1024
+ }
1025
+ },
1026
+ "required": ["yesNoNotApplicable"]
1027
+ }
1028
+ }
1029
+ },
1030
+ "buildingsInsurance": {
1031
+ "lpe1Ref": "5",
1032
+ "title": "Buildings Insurance",
1033
+ "type": "object",
1034
+ "required": [
1035
+ "premiumsPaidUpToDate",
1036
+ "lastDemandPeriod",
1037
+ "premiumPaidinFull",
1038
+ "claimsMade",
1039
+ "claimsAnticipated",
1040
+ "managedAreasCoveredByPolicy",
1041
+ "standardTermsAvailable",
1042
+ "nonComplianceWithConditions",
1043
+ "buildingsReinstatementCostAssessment",
1044
+ "premiumIncludedInServiceCharge"
1045
+ ],
1046
+ "properties": {
1047
+ "premiumsPaidUpToDate": {
1048
+ "lpe1Ref": "5.1",
1049
+ "type": "object",
1050
+ "title": "Are the buildings insurance premium contributions paid up to date for the Managed Areas including the Property?",
1051
+ "properties": {
1052
+ "yesNo": {
1053
+ "type": "string",
1054
+ "title": "",
1055
+ "enum": ["Yes", "No"]
1056
+ }
1057
+ },
1058
+ "required": ["yesNo"],
1059
+ "discriminator": { "propertyName": "yesNo" },
1060
+ "oneOf": [
1061
+ {
1062
+ "properties": {
1063
+ "yesNo": {
1064
+ "enum": ["Yes"]
1065
+ }
1066
+ }
1067
+ },
1068
+ {
1069
+ "properties": {
1070
+ "yesNo": {
1071
+ "enum": ["No"]
1072
+ },
1073
+ "details": {
1074
+ "lpe1Ref": "5.1.1",
1075
+ "title": "Provide details of the arrears",
1076
+ "type": "string",
1077
+ "minLength": 1
1078
+ }
1079
+ },
1080
+ "required": ["details"]
1081
+ }
1082
+ ]
1083
+ },
1084
+ "lastDemandPeriod": {
1085
+ "lpe1Ref": "5.2",
1086
+ "title": "What period is covered by the last demand?",
1087
+ "type": "object",
1088
+ "properties": {
1089
+ "from": {
1090
+ "type": "string",
1091
+ "format": "date"
1092
+ },
1093
+ "to": {
1094
+ "type": "string",
1095
+ "format": "date"
1096
+ }
1097
+ }
1098
+ },
1099
+ "premiumPaidinFull": {
1100
+ "lpe1Ref": "5.3",
1101
+ "type": "object",
1102
+ "title": "Has the premium been paid in full?",
1103
+ "properties": {
1104
+ "yesNo": {
1105
+ "type": "string",
1106
+ "title": "",
1107
+ "enum": ["Yes", "No"]
1108
+ }
1109
+ },
1110
+ "required": ["yesNo"],
1111
+ "discriminator": { "propertyName": "yesNo" },
1112
+ "oneOf": [
1113
+ {
1114
+ "properties": {
1115
+ "yesNo": {
1116
+ "enum": ["Yes"]
1117
+ }
1118
+ }
1119
+ },
1120
+ {
1121
+ "properties": {
1122
+ "yesNo": {
1123
+ "enum": ["No"]
1124
+ },
1125
+ "details": {
1126
+ "lpe1Ref": "5.3.1",
1127
+ "title": "Provide details",
1128
+ "type": "string",
1129
+ "minLength": 1
1130
+ }
1131
+ },
1132
+ "required": ["details"]
1133
+ }
1134
+ ]
1135
+ },
1136
+ "claimsMade": {
1137
+ "lpe1Ref": "5.4",
1138
+ "type": "object",
1139
+ "title": "Have any claims been made against the policy during Yes the last 3 years?",
1140
+ "properties": {
1141
+ "yesNo": {
1142
+ "type": "string",
1143
+ "title": "",
1144
+ "enum": ["Yes", "No"]
1145
+ }
1146
+ },
1147
+ "required": ["yesNo"],
1148
+ "discriminator": { "propertyName": "yesNo" },
1149
+ "oneOf": [
1150
+ {
1151
+ "properties": {
1152
+ "yesNo": {
1153
+ "enum": ["No"]
1154
+ }
1155
+ }
1156
+ },
1157
+ {
1158
+ "properties": {
1159
+ "yesNo": {
1160
+ "enum": ["Yes"]
1161
+ },
1162
+ "details": {
1163
+ "lpe1Ref": "5.4.1",
1164
+ "title": "Provide details",
1165
+ "type": "string",
1166
+ "minLength": 1
1167
+ }
1168
+ },
1169
+ "required": ["details"]
1170
+ }
1171
+ ]
1172
+ },
1173
+ "claimsAnticipated": {
1174
+ "lpe1Ref": "5.5",
1175
+ "type": "object",
1176
+ "title": "Are any claims anticipated?",
1177
+ "properties": {
1178
+ "yesNo": {
1179
+ "type": "string",
1180
+ "title": "",
1181
+ "enum": ["Yes", "No"]
1182
+ }
1183
+ },
1184
+ "required": ["yesNo"],
1185
+ "discriminator": { "propertyName": "yesNo" },
1186
+ "oneOf": [
1187
+ {
1188
+ "properties": {
1189
+ "yesNo": {
1190
+ "enum": ["No"]
1191
+ }
1192
+ }
1193
+ },
1194
+ {
1195
+ "properties": {
1196
+ "yesNo": {
1197
+ "enum": ["Yes"]
1198
+ },
1199
+ "details": {
1200
+ "lpe1Ref": "5.5.1",
1201
+ "title": "Provide details",
1202
+ "type": "string",
1203
+ "minLength": 1
1204
+ }
1205
+ },
1206
+ "required": ["details"]
1207
+ }
1208
+ ]
1209
+ },
1210
+ "managedAreasCoveredByPolicy": {
1211
+ "lpe1Ref": "4.6",
1212
+ "type": "object",
1213
+ "title": "Are the Managed Areas covered by the policy?",
1214
+ "properties": {
1215
+ "yesNo": {
1216
+ "type": "string",
1217
+ "title": "",
1218
+ "enum": ["Yes", "No"]
1219
+ }
1220
+ },
1221
+ "required": ["yesNo"],
1222
+ "discriminator": { "propertyName": "yesNo" },
1223
+ "oneOf": [
1224
+ {
1225
+ "properties": {
1226
+ "yesNo": {
1227
+ "enum": ["No"]
1228
+ }
1229
+ }
1230
+ },
1231
+ {
1232
+ "properties": {
1233
+ "yesNo": {
1234
+ "enum": ["Yes"]
1235
+ },
1236
+ "riskAssessments": {
1237
+ "lpe1Ref": "5.6.1",
1238
+ "title": "Whas risk assessments have been completed?",
1239
+ "type": "object",
1240
+ "properties": {
1241
+ "assessmentsCarriedOut": {
1242
+ "type": "string",
1243
+ "enum": [
1244
+ "None",
1245
+ "Fire risk assessment",
1246
+ "External wall fire risk assessment",
1247
+ "Both"
1248
+ ]
1249
+ }
1250
+ },
1251
+ "required": ["assessmentsCarriedOut"],
1252
+ "discriminator": { "propertyName": "assessmentsCarriedOut" },
1253
+ "oneOf": [
1254
+ {
1255
+ "properties": {
1256
+ "assessmentsCarriedOut": {
1257
+ "enum": ["None"]
1258
+ }
1259
+ }
1260
+ },
1261
+ {
1262
+ "properties": {
1263
+ "assessmentsCarriedOut": {
1264
+ "enum": [
1265
+ "Fire risk assessment",
1266
+ "External Wall fire risk assessment",
1267
+ "Both"
1268
+ ]
1269
+ },
1270
+ "urgentWorksRecommended": {
1271
+ "lpe1Ref": "5.6.2(i)",
1272
+ "title": "Have urgent or essential works been recommended?",
1273
+ "type": "string",
1274
+ "enum": ["Yes", "No"]
1275
+ }
1276
+ },
1277
+ "required": ["urgentWorksRecommended"],
1278
+ "discriminator": {
1279
+ "propertyName": "urgentWorksRecommended"
1280
+ },
1281
+ "oneOf": [
1282
+ {
1283
+ "properties": {
1284
+ "urgentWorksRecommended": {
1285
+ "enum": ["No"]
1286
+ }
1287
+ }
1288
+ },
1289
+ {
1290
+ "properties": {
1291
+ "urgentWorksRecommended": {
1292
+ "enum": ["Yes"]
1293
+ },
1294
+ "urgentWorksCarriedOut": {
1295
+ "lpe1Ref": "5.6.2(ii)",
1296
+ "title": "Have these been carried out?",
1297
+ "type": "string",
1298
+ "enum": ["Yes", "No"]
1299
+ },
1300
+ "outstandingEnforcementAction": {
1301
+ "lpe1Ref": "5.6.2(iii)",
1302
+ "title": "Is there any outstanding enforcement action Yes against the landlord or accountable person (such as outstanding enforcement notices)?",
1303
+ "type": "string",
1304
+ "enum": ["Yes", "No"]
1305
+ }
1306
+ },
1307
+ "required": [
1308
+ "urgentWorksCarriedOut",
1309
+ "outstandingEnforcementAction"
1310
+ ],
1311
+ "discriminator": {
1312
+ "propertyName": "outstandingEnforcementAction"
1313
+ },
1314
+ "oneOf": [
1315
+ {
1316
+ "properties": {
1317
+ "outstandingEnforcementAction": {
1318
+ "enum": ["No"]
1319
+ }
1320
+ }
1321
+ },
1322
+ {
1323
+ "properties": {
1324
+ "outstandingEnforcementAction": {
1325
+ "enum": ["Yes"]
1326
+ },
1327
+ "dateRemedialActionRequired": {
1328
+ "lpe1Ref": "5.6.2(iv)",
1329
+ "title": "By what date is remedial action required?",
1330
+ "type": "string",
1331
+ "format": "date"
1332
+ }
1333
+ },
1334
+ "required": ["dateRemedialActionRequired"]
1335
+ }
1336
+ ]
1337
+ }
1338
+ ]
1339
+ }
1340
+ ]
1341
+ }
1342
+ },
1343
+ "required": ["riskAssessments"]
1344
+ }
1345
+ ]
1346
+ },
1347
+ "standardTermsAvailable": {
1348
+ "lpe1Ref": "5.7",
1349
+ "type": "object",
1350
+ "title": "Are you aware of any reason why comprehensive insurance will not be available on standard terms in future?",
1351
+ "properties": {
1352
+ "yesNo": {
1353
+ "type": "string",
1354
+ "title": "",
1355
+ "enum": ["Yes", "No"]
1356
+ }
1357
+ },
1358
+ "required": ["yesNo"],
1359
+ "discriminator": { "propertyName": "yesNo" },
1360
+ "oneOf": [
1361
+ {
1362
+ "properties": {
1363
+ "yesNo": {
1364
+ "enum": ["No"]
1365
+ }
1366
+ }
1367
+ },
1368
+ {
1369
+ "properties": {
1370
+ "yesNo": {
1371
+ "enum": ["Yes"]
1372
+ },
1373
+ "details": {
1374
+ "lpe1Ref": "5.7.1",
1375
+ "title": "Provide details",
1376
+ "type": "string",
1377
+ "minLength": 1
1378
+ }
1379
+ },
1380
+ "required": ["details"]
1381
+ }
1382
+ ]
1383
+ },
1384
+ "nonComplianceWithConditions": {
1385
+ "lpe1Ref": "5.8",
1386
+ "type": "object",
1387
+ "title": "Are you aware of any non-compliance with the insurance conditions that would render the policy void?",
1388
+ "properties": {
1389
+ "yesNo": {
1390
+ "type": "string",
1391
+ "title": "",
1392
+ "enum": ["Yes", "No"]
1393
+ }
1394
+ },
1395
+ "required": ["yesNo"],
1396
+ "discriminator": { "propertyName": "yesNo" },
1397
+ "oneOf": [
1398
+ {
1399
+ "properties": {
1400
+ "yesNo": {
1401
+ "enum": ["No"]
1402
+ }
1403
+ }
1404
+ },
1405
+ {
1406
+ "properties": {
1407
+ "yesNo": {
1408
+ "enum": ["Yes"]
1409
+ },
1410
+ "details": {
1411
+ "lpe1Ref": "5.8.1",
1412
+ "title": "Provide details",
1413
+ "type": "string",
1414
+ "minLength": 1
1415
+ }
1416
+ },
1417
+ "required": ["details"]
1418
+ }
1419
+ ]
1420
+ },
1421
+ "buildingsReinstatementCostAssessment": {
1422
+ "lpe1Ref": "5.9",
1423
+ "title": "Please confirm the date of the last buildings reinstatement/cost assessment.",
1424
+ "type": "string",
1425
+ "format": "date"
1426
+ },
1427
+ "premiumIncludedInServiceCharge": {
1428
+ "lpe1Ref": "5.10",
1429
+ "type": "object",
1430
+ "title": "Is the insurance premium included in the service charge Yes budget?",
1431
+ "properties": {
1432
+ "yesNo": {
1433
+ "type": "string",
1434
+ "title": "",
1435
+ "enum": ["Yes", "No"]
1436
+ }
1437
+ },
1438
+ "required": ["yesNo"],
1439
+ "discriminator": { "propertyName": "yesNo" },
1440
+ "oneOf": [
1441
+ {
1442
+ "properties": {
1443
+ "yesNo": {
1444
+ "enum": ["Yes"]
1445
+ }
1446
+ }
1447
+ },
1448
+ {
1449
+ "properties": {
1450
+ "yesNo": {
1451
+ "enum": ["No"]
1452
+ },
1453
+ "details": {
1454
+ "lpe1Ref": "5.10.1",
1455
+ "title": "confirm the annual amount payable for the Property",
1456
+ "type": "number"
1457
+ }
1458
+ },
1459
+ "required": ["details"]
1460
+ }
1461
+ ]
1462
+ }
1463
+ }
1464
+ },
1465
+ "disputesAndEnfranchisement": {
1466
+ "lpe1Ref": "6",
1467
+ "title": "Disputes & Enfranchisement",
1468
+ "type": "object",
1469
+ "required": [
1470
+ "ongoingForfeitureProceedings",
1471
+ "unresolvedDisputes",
1472
+ "enfranchisementSteps",
1473
+ "breachOfTermsOfLease"
1474
+ ],
1475
+ "properties": {
1476
+ "ongoingForfeitureProceedings": {
1477
+ "lpe1Ref": "6.1",
1478
+ "type": "object",
1479
+ "title": "Are there any on-going forfeiture proceedings in relation to the Property?",
1480
+ "properties": {
1481
+ "yesNo": {
1482
+ "type": "string",
1483
+ "title": "",
1484
+ "enum": ["Yes", "No"]
1485
+ }
1486
+ }
1487
+ },
1488
+ "unresolvedDisputes": {
1489
+ "lpe1Ref": "6.2",
1490
+ "type": "object",
1491
+ "title": "Are there any documented unresolved disputes with the Yes Lessees of any of the properties in the Managed Area?",
1492
+ "properties": {
1493
+ "yesNo": {
1494
+ "type": "string",
1495
+ "title": "",
1496
+ "enum": ["Yes", "No"]
1497
+ }
1498
+ },
1499
+ "required": ["yesNo"],
1500
+ "discriminator": { "propertyName": "yesNo" },
1501
+ "oneOf": [
1502
+ {
1503
+ "properties": {
1504
+ "yesNo": {
1505
+ "enum": ["No"]
1506
+ }
1507
+ }
1508
+ },
1509
+ {
1510
+ "properties": {
1511
+ "yesNo": {
1512
+ "enum": ["Yes"]
1513
+ },
1514
+ "details": {
1515
+ "lpe1Ref": "6.2.1",
1516
+ "title": "To the extent permitted by the UK General Data Protection Regulations, please supply details",
1517
+ "type": "string",
1518
+ "minLength": 1
1519
+ }
1520
+ },
1521
+ "required": ["details"]
1522
+ }
1523
+ ]
1524
+ },
1525
+ "enfranchisementSteps": {
1526
+ "lpe1Ref": "6.3",
1527
+ "type": "object",
1528
+ "title": "Have any steps been taken by anyone to enfranchise, exercise the right to manage, form a right to enfranchise or management company, extend the term of the lease of the Property or anything similar?",
1529
+ "properties": {
1530
+ "yesNo": {
1531
+ "type": "string",
1532
+ "title": "",
1533
+ "enum": ["Yes", "No", "Not Known"]
1534
+ }
1535
+ },
1536
+ "required": ["yesNo"],
1537
+ "discriminator": { "propertyName": "yesNo" },
1538
+ "oneOf": [
1539
+ {
1540
+ "properties": {
1541
+ "yesNo": {
1542
+ "enum": ["No", "Not Known"]
1543
+ }
1544
+ }
1545
+ },
1546
+ {
1547
+ "properties": {
1548
+ "yesNo": {
1549
+ "enum": ["Yes"]
1550
+ },
1551
+ "details": {
1552
+ "lpe1Ref": "5.8.1",
1553
+ "title": "Provide details and copies of relevant documentation",
1554
+ "type": "string",
1555
+ "minLength": 1
1556
+ }
1557
+ },
1558
+ "required": ["details"]
1559
+ }
1560
+ ]
1561
+ },
1562
+ "breachOfTermsOfLease": {
1563
+ "lpe1Ref": "6.4",
1564
+ "type": "object",
1565
+ "title": "Are you aware of any breach of the terms of the lease of this Property?",
1566
+ "properties": {
1567
+ "yesNo": {
1568
+ "type": "string",
1569
+ "title": "",
1570
+ "enum": ["Yes", "No"]
1571
+ }
1572
+ },
1573
+ "required": ["yesNo"],
1574
+ "discriminator": { "propertyName": "yesNo" },
1575
+ "oneOf": [
1576
+ {
1577
+ "properties": {
1578
+ "yesNo": {
1579
+ "enum": ["No"]
1580
+ }
1581
+ }
1582
+ },
1583
+ {
1584
+ "properties": {
1585
+ "yesNo": {
1586
+ "enum": ["Yes"]
1587
+ },
1588
+ "details": {
1589
+ "lpe1Ref": "6.4.1",
1590
+ "title": "Provide details",
1591
+ "type": "string",
1592
+ "minLength": 1
1593
+ }
1594
+ },
1595
+ "required": ["details"]
1596
+ }
1597
+ ]
1598
+ }
1599
+ }
1600
+ },
1601
+ "general": {
1602
+ "lpe1Ref": "7",
1603
+ "title": "General",
1604
+ "type": "object",
1605
+ "required": [
1606
+ "otherPropertiesInManagedArea",
1607
+ "leasedOnSimilarTerms",
1608
+ "buildingKnownToBeHMO",
1609
+ "additionalParkingRegulations",
1610
+ "restrictionOnKeepingPets"
1611
+ ],
1612
+ "properties": {
1613
+ "otherPropertiesInManagedArea": {
1614
+ "lpe1Ref": "7.1",
1615
+ "title": "How many other properties are there in the Managed Area?",
1616
+ "type": "number"
1617
+ },
1618
+ "leasedOnSimilarTerms": {
1619
+ "lpe1Ref": "7.2",
1620
+ "type": "object",
1621
+ "title": "Are they all leased on leases with similar terms?",
1622
+ "properties": {
1623
+ "yesNo": {
1624
+ "type": "string",
1625
+ "title": "",
1626
+ "enum": ["Yes", "No", "Not Known"]
1627
+ }
1628
+ },
1629
+ "required": ["yesNo"],
1630
+ "discriminator": { "propertyName": "yesNo" },
1631
+ "oneOf": [
1632
+ {
1633
+ "properties": {
1634
+ "yesNo": {
1635
+ "enum": ["Yes", "Not Known"]
1636
+ }
1637
+ }
1638
+ },
1639
+ {
1640
+ "properties": {
1641
+ "yesNo": {
1642
+ "enum": ["No"]
1643
+ },
1644
+ "details": {
1645
+ "lpe1Ref": "7.2.1",
1646
+ "title": "Provide details",
1647
+ "type": "string",
1648
+ "minLength": 1
1649
+ }
1650
+ },
1651
+ "required": ["details"]
1652
+ }
1653
+ ]
1654
+ },
1655
+ "buildingKnownToBeHMO": {
1656
+ "lpe1Ref": "7.3",
1657
+ "type": "object",
1658
+ "title": "Is the building in which the Property is situated known to be an HMO?",
1659
+ "properties": {
1660
+ "yesNo": {
1661
+ "type": "string",
1662
+ "title": "",
1663
+ "enum": ["Yes", "No", "Not Known"]
1664
+ }
1665
+ },
1666
+ "required": ["yesNo"],
1667
+ "discriminator": { "propertyName": "yesNo" },
1668
+ "oneOf": [
1669
+ {
1670
+ "properties": {
1671
+ "yesNo": {
1672
+ "enum": ["No", "Not Known"]
1673
+ }
1674
+ }
1675
+ },
1676
+ {
1677
+ "properties": {
1678
+ "yesNo": {
1679
+ "enum": ["Yes"]
1680
+ },
1681
+ "details": {
1682
+ "lpe1Ref": "7.3.1",
1683
+ "title": "Confirm that regulations applicable to section 257 Housing Act 2004 HMOs have been complied with",
1684
+ "type": "string",
1685
+ "minLength": 1
1686
+ }
1687
+ },
1688
+ "required": ["details"]
1689
+ }
1690
+ ]
1691
+ },
1692
+ "additionalParkingRegulations": {
1693
+ "lpe1Ref": "7.4",
1694
+ "type": "object",
1695
+ "title": "Are there any parking regulations or restrictions in addition to any set out in the lease?",
1696
+ "properties": {
1697
+ "yesNo": {
1698
+ "type": "string",
1699
+ "title": "",
1700
+ "enum": ["Yes", "No"]
1701
+ }
1702
+ },
1703
+ "required": ["yesNo"],
1704
+ "discriminator": { "propertyName": "yesNo" },
1705
+ "oneOf": [
1706
+ {
1707
+ "properties": {
1708
+ "yesNo": {
1709
+ "enum": ["No"]
1710
+ }
1711
+ }
1712
+ },
1713
+ {
1714
+ "properties": {
1715
+ "yesNo": {
1716
+ "enum": ["Yes"]
1717
+ },
1718
+ "details": {
1719
+ "lpe1Ref": "7.4.1",
1720
+ "title": "Provide details",
1721
+ "type": "string",
1722
+ "minLength": 1
1723
+ }
1724
+ },
1725
+ "required": ["details"]
1726
+ }
1727
+ ]
1728
+ },
1729
+ "restrictionOnKeepingPets": {
1730
+ "lpe1Ref": "7.5",
1731
+ "type": "object",
1732
+ "title": "Is there a restriction in the lease on keeping pets?",
1733
+ "properties": {
1734
+ "yesNo": {
1735
+ "type": "string",
1736
+ "title": "",
1737
+ "enum": ["Yes", "No"]
1738
+ }
1739
+ },
1740
+ "required": ["yesNo"],
1741
+ "discriminator": { "propertyName": "yesNo" },
1742
+ "oneOf": [
1743
+ {
1744
+ "properties": {
1745
+ "yesNo": {
1746
+ "enum": ["No"]
1747
+ }
1748
+ }
1749
+ },
1750
+ {
1751
+ "properties": {
1752
+ "yesNo": {
1753
+ "enum": ["Yes"]
1754
+ },
1755
+ "details": {
1756
+ "lpe1Ref": "7.5.1",
1757
+ "title": "Provide outline the requirements.",
1758
+ "type": "string",
1759
+ "minLength": 1
1760
+ }
1761
+ },
1762
+ "required": ["details"]
1763
+ }
1764
+ ]
1765
+ }
1766
+ }
1767
+ },
1768
+ "requiredDocuments": {
1769
+ "lpe1Ref": "8",
1770
+ "title": "Required Documents",
1771
+ "description": "Please provide the following applicable documents:",
1772
+ "type": "object",
1773
+ "required": [
1774
+ "serviceChargeAccounts",
1775
+ "buildingsInsurancePolicy",
1776
+ "managedAreasBuildingsInsurancePolicy",
1777
+ "serviceChargeEstimatesCurrent",
1778
+ "serviceChargeEstimatesPrevious",
1779
+ "proposedWorksNotices",
1780
+ "forfeitureDocumentation",
1781
+ "additionalRegulationsNotInLease",
1782
+ "deedsOfVariation",
1783
+ "deedOfCovenant",
1784
+ "certificateOfCompliance",
1785
+ "licenceToAssign",
1786
+ "permissionToAlter",
1787
+ "noticesServedOnLessee",
1788
+ "asbestosSurvey",
1789
+ "managedAreaFireRiskAssessment",
1790
+ "memorandumAndArticles",
1791
+ "managementCompanyAGMMinutes",
1792
+ "deedOfCertificate",
1793
+ "landlordsCertificate",
1794
+ "enforcementNotices"
1795
+ ],
1796
+ "properties": {
1797
+ "serviceChargeAccounts": {
1798
+ "lpe1Ref": "8.1",
1799
+ "title": "The last 3 years published Service Charge accounts.",
1800
+ "type": "string",
1801
+ "enum": ["Enclosed", "To follow", "N/A"]
1802
+ },
1803
+ "buildingsInsurancePolicy": {
1804
+ "lpe1Ref": "8.2",
1805
+ "title": "Buildings insurance policy and schedule.",
1806
+ "type": "string",
1807
+ "enum": ["Enclosed", "To follow", "N/A"]
1808
+ },
1809
+ "managedAreasBuildingsInsurancePolicy": {
1810
+ "lpe1Ref": "8.3",
1811
+ "title": "Buildings insurance policy and schedule for the Managed Areas.",
1812
+ "type": "string",
1813
+ "enum": ["Enclosed", "To follow", "N/A"]
1814
+ },
1815
+ "serviceChargeEstimatesCurrent": {
1816
+ "lpe1Ref": "8.4",
1817
+ "title": "Service charge estimate for the current year and details of the anticipated payments on account for the Property.",
1818
+ "type": "string",
1819
+ "enum": ["Enclosed", "To follow", "N/A"]
1820
+ },
1821
+ "serviceChargeEstimatesPrevious": {
1822
+ "lpe1Ref": "8.5",
1823
+ "title": "Service charge estimate for the previous year for which accounts have not yet been prepared for the Property.",
1824
+ "type": "string",
1825
+ "enum": ["Enclosed", "To follow", "N/A"]
1826
+ },
1827
+ "proposedWorksNotices": {
1828
+ "lpe1Ref": "8.6",
1829
+ "title": "Copies of any notices served on the Lessees under Section 20 in respect of any proposed works or any works which have not yet been paid for.",
1830
+ "type": "string",
1831
+ "enum": ["Enclosed", "To follow", "N/A"]
1832
+ },
1833
+ "forfeitureDocumentation": {
1834
+ "lpe1Ref": "8.7",
1835
+ "title": "Documentation relating to any forfeiture proceedings applicable to the Property.",
1836
+ "type": "string",
1837
+ "enum": ["Enclosed", "To follow", "N/A"]
1838
+ },
1839
+ "additionalRegulationsNotInLease": {
1840
+ "lpe1Ref": "8.8",
1841
+ "title": "Any additional regulations or rules affecting the Property which are not contained in the lease.",
1842
+ "type": "string",
1843
+ "enum": ["Enclosed", "To follow", "N/A"]
1844
+ },
1845
+ "deedsOfVariation": {
1846
+ "lpe1Ref": "8.9",
1847
+ "title": "Any Deeds of Variation or other document varying the terms of the lease of this Property.",
1848
+ "type": "string",
1849
+ "enum": [
1850
+ "Enclosed",
1851
+ "To follow",
1852
+ "Landlord's lawyer provides",
1853
+ "Please supply draft",
1854
+ "N/A"
1855
+ ]
1856
+ },
1857
+ "deedOfCovenant": {
1858
+ "lpe1Ref": "8.10",
1859
+ "title": "Any required Deed of Covenant.",
1860
+ "type": "string",
1861
+ "enum": ["Enclosed", "To follow", "N/A"]
1862
+ },
1863
+ "certificateOfCompliance": {
1864
+ "lpe1Ref": "8.11",
1865
+ "title": "Any Certificate of Compliance.",
1866
+ "type": "string",
1867
+ "enum": ["Enclosed", "To follow", "N/A"]
1868
+ },
1869
+ "certificateOfComplianceFee": {
1870
+ "lpe1Ref": "8.11",
1871
+ "title": "Certificate of Compliance fee.",
1872
+ "type": "number"
1873
+ },
1874
+ "licenceToAssign": {
1875
+ "lpe1Ref": "8.12",
1876
+ "title": "Any required Licence to Assign.",
1877
+ "type": "string",
1878
+ "enum": [
1879
+ "Enclosed",
1880
+ "To follow",
1881
+ "Landlord's lawyer provides",
1882
+ "Please supply draft",
1883
+ "N/A"
1884
+ ]
1885
+ },
1886
+ "permissionToAlter": {
1887
+ "lpe1Ref": "8.13",
1888
+ "title": "Copy of any permission to alter the Property which has been issued.",
1889
+ "type": "string",
1890
+ "enum": ["Enclosed", "To follow", "N/A"]
1891
+ },
1892
+ "noticesServedOnLessee": {
1893
+ "lpe1Ref": "8.14",
1894
+ "title": "Copy of any known notices served on the Lessee and documentation arising from them.",
1895
+ "type": "string",
1896
+ "enum": ["Enclosed", "To follow", "N/A"]
1897
+ },
1898
+ "asbestosSurvey": {
1899
+ "lpe1Ref": "8.15",
1900
+ "title": "Asbestos Survey for parts of the Managed Area built or converted before 2001.",
1901
+ "type": "string",
1902
+ "enum": ["Enclosed", "To follow", "N/A"]
1903
+ },
1904
+ "managedAreaFireRiskAssessment": {
1905
+ "lpe1Ref": "8.16",
1906
+ "title": "Fire Risk Assessment for the Managed Area.",
1907
+ "type": "string",
1908
+ "enum": ["Enclosed", "To follow", "N/A"]
1909
+ },
1910
+ "memorandumAndArticles": {
1911
+ "lpe1Ref": "8.17",
1912
+ "title": "Memorandum and Articles of Association of the Management Company.",
1913
+ "type": "string",
1914
+ "enum": ["Enclosed", "To follow", "N/A"]
1915
+ },
1916
+ "managementCompanyAGMMinutes": {
1917
+ "lpe1Ref": "8.18",
1918
+ "title": "Minutes from the last AGM for the Management Company.",
1919
+ "type": "string",
1920
+ "enum": ["Enclosed", "To follow", "N/A"]
1921
+ },
1922
+ "deedOfCertificate": {
1923
+ "lpe1Ref": "8.19",
1924
+ "title": "Leaseholder Deed of Certificate.",
1925
+ "type": "string",
1926
+ "enum": ["Enclosed", "To follow", "N/A"]
1927
+ },
1928
+ "landlordsCertificate": {
1929
+ "lpe1Ref": "8.20",
1930
+ "title": "Landlord's Certificate.",
1931
+ "type": "string",
1932
+ "enum": ["Enclosed", "To follow", "N/A"]
1933
+ },
1934
+ "enforcementNotices": {
1935
+ "lpe1Ref": "8.21",
1936
+ "title": "Known enforcement notices served on the landlord or accountable person (where the building is residential and is at least 18 meters or 7 storeys).",
1937
+ "type": "string",
1938
+ "enum": ["Enclosed", "To follow", "N/A"]
1939
+ }
1940
+ }
1941
+ },
1942
+ "confirmation": {
1943
+ "lpe1Ref": "9",
1944
+ "title": "Confirmation",
1945
+ "description": "By checking the box you are .",
1946
+ "type": "object",
1947
+ "required": ["response"],
1948
+ "properties": {
1949
+ "response": {
1950
+ "baspiRef": "A13.1",
1951
+ "title": "Declaration",
1952
+ "description": "I/we confirm that I am the person authorised to provide the information which I have completed in it on behalf of those parties which I have selected from the list, and that a buyer may rely on the information which I have supplied without applying to any other party except where I have left a section blank because I do not have the authority to provide the information",
1953
+ "type": "boolean"
1954
+ },
1955
+ "capacity": {
1956
+ "title": "Confirm the capacity in which the answers are given.",
1957
+ "type": "string",
1958
+ "enum": [
1959
+ "Managing Agent",
1960
+ "Management Company",
1961
+ "Landlord",
1962
+ "Residents' Association"
1963
+ ]
1964
+ }
1965
+ }
1966
+ }
1967
+ },
1968
+ "$defs": {
1969
+ "contact": {
1970
+ "type": "object",
1971
+ "properties": {
1972
+ "nameOrOrganisation": {
1973
+ "title": "Name or organisation",
1974
+ "type": "string",
1975
+ "minLength": 1
1976
+ },
1977
+ "address": {
1978
+ "title": "Address",
1979
+ "type": "string",
1980
+ "minLength": 1
1981
+ },
1982
+ "telephone": {
1983
+ "title": "Address",
1984
+ "type": "string",
1985
+ "minLength": 1
1986
+ },
1987
+ "emailAddress": {
1988
+ "title": "Email address",
1989
+ "type": "string",
1990
+ "format": "email"
1991
+ }
1992
+ },
1993
+ "required": ["nameOrOrganisation"]
1994
+ },
1995
+ "bankDetails": {
1996
+ "type": "object",
1997
+ "properties": {
1998
+ "accountName": {
1999
+ "title": "Account name",
2000
+ "type": "string",
2001
+ "minLength": 1
2002
+ },
2003
+ "sortCode": {
2004
+ "title": "Sort code",
2005
+ "type": "string",
2006
+ "minLength": 1
2007
+ },
2008
+ "accountNumber": {
2009
+ "title": "Account number",
2010
+ "type": "integer"
2011
+ },
2012
+ "reference": {
2013
+ "title": "Reference to quote",
2014
+ "type": "string",
2015
+ "minLength": 1
2016
+ },
2017
+ "feeType": {
2018
+ "title": "Type of fee",
2019
+ "type": "string",
2020
+ "enum": [
2021
+ "Ground rent",
2022
+ "Service charges",
2023
+ "Administration fees",
2024
+ "All"
2025
+ ]
2026
+ }
2027
+ }
2028
+ },
2029
+ "noticeOfAssignmentAndChargeParty": {
2030
+ "type": "object",
2031
+ "properties": {
2032
+ "isApplicableParty": {
2033
+ "type": "boolean"
2034
+ }
2035
+ },
2036
+ "required": ["isApplicableParty"],
2037
+ "discriminator": { "propertyName": "isApplicableParty" },
2038
+ "oneOf": [
2039
+ {
2040
+ "properties": {
2041
+ "isApplicableParty": {
2042
+ "const": false
2043
+ }
2044
+ }
2045
+ },
2046
+ {
2047
+ "properties": {
2048
+ "isApplicableParty": {
2049
+ "const": true
2050
+ },
2051
+ "fee": {
2052
+ "title": "Total Fee including VAT",
2053
+ "type": "number"
2054
+ },
2055
+ "noticeViaEmail": {
2056
+ "type": "boolean"
2057
+ }
2058
+ },
2059
+ "required": ["feeIncludingVAT", "noticeViaEmail"]
2060
+ }
2061
+ ]
2062
+ }
2063
+ }
2064
+ }