@pdtf/schemas 3.6.0-dev.7 → 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 (130) 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 +225 -47
  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
@@ -0,0 +1,1585 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://trust.propdata.org.uk/schemas/v3/overlays/ta7ed5.json",
4
+ "properties": {
5
+ "propertyPack": {
6
+ "required": [
7
+ "address",
8
+ "ownership"
9
+ ],
10
+ "properties": {
11
+ "address": {
12
+ "ta7ed5Ref": "1.1",
13
+ "title": "Address of the property",
14
+ "properties": {
15
+ "line1": {
16
+ "ta7ed5Ref": "1.1.1"
17
+ },
18
+ "line2": {
19
+ "ta7ed5Ref": "1.1.1"
20
+ },
21
+ "line3": {
22
+ "ta7ed5Ref": "1.1.1"
23
+ },
24
+ "town": {
25
+ "ta7ed5Ref": "1.1.1"
26
+ },
27
+ "postcode": {
28
+ "ta7ed5Ref": "1.1.2"
29
+ }
30
+ }
31
+ },
32
+ "uprn": {
33
+ "ta7ed5Ref": "1.1.3",
34
+ "title": "UPRN (if known)"
35
+ },
36
+ "ownership": {
37
+ "ta7ed5Ref": "2",
38
+ "required": [
39
+ "ownershipsToBeTransferred"
40
+ ],
41
+ "properties": {
42
+ "ownershipsToBeTransferred": {
43
+ "ta7ed5Ref": "2",
44
+ "items": {
45
+ "discriminator": {
46
+ "propertyName": "ownershipType"
47
+ },
48
+ "oneOf": [
49
+ {
50
+ "properties": {
51
+ "ownershipType": {
52
+ "enum": [
53
+ "Freehold"
54
+ ]
55
+ }
56
+ }
57
+ },
58
+ {
59
+ "properties": {
60
+ "ownershipType": {
61
+ "enum": [
62
+ "Managed Freehold",
63
+ "Commonhold"
64
+ ]
65
+ }
66
+ }
67
+ },
68
+ {
69
+ "properties": {
70
+ "ownershipType": {
71
+ "enum": [
72
+ "Leasehold"
73
+ ]
74
+ },
75
+ "leaseholdInformation": {
76
+ "ta7ed5Ref": "2",
77
+ "required": [
78
+ "typeOfLeasehold",
79
+ "contactDetails",
80
+ "consents",
81
+ "groundRent",
82
+ "ownershipAndManagement",
83
+ "serviceCharge",
84
+ "disputes",
85
+ "buildingSafetyAct",
86
+ "enfranchisement",
87
+ "requiredDocuments",
88
+ "additionalInformation",
89
+ "confirmationOfAccuracy"
90
+ ],
91
+ "properties": {
92
+ "typeOfLeasehold": {
93
+ "ta7ed5Ref": "2.1",
94
+ "discriminator": {
95
+ "propertyName": "leaseholdType"
96
+ },
97
+ "oneOf": [
98
+ {
99
+ "properties": {
100
+ "leaseholdType": {
101
+ "enum": [
102
+ "Flat",
103
+ "Shared ownership",
104
+ "Long leasehold house",
105
+ "Maisonette",
106
+ "Leasehold garage"
107
+ ]
108
+ }
109
+ }
110
+ },
111
+ {
112
+ "properties": {
113
+ "leaseholdType": {
114
+ "enum": [
115
+ "Other"
116
+ ]
117
+ },
118
+ "otherLeaseholdType": {
119
+ "ta7ed5Ref": "2.1.2"
120
+ }
121
+ },
122
+ "required": [
123
+ "otherLeaseholdType"
124
+ ]
125
+ }
126
+ ],
127
+ "required": [
128
+ "leaseholdType"
129
+ ],
130
+ "properties": {
131
+ "leaseholdType": {
132
+ "ta7ed5Ref": "2.1.1",
133
+ "title": "What is the type of property included in the lease?"
134
+ }
135
+ }
136
+ },
137
+ "contactDetails": {
138
+ "ta7ed5Ref": "3",
139
+ "required": [
140
+ "contacts",
141
+ "serviceContactAssignments"
142
+ ],
143
+ "title": "Contact details",
144
+ "properties": {
145
+ "contacts": {
146
+ "ta7ed5Ref": "3",
147
+ "properties": {
148
+ "landlord": {
149
+ "ta7ed5Ref": "3.1.1",
150
+ "properties": {
151
+ "contact": {
152
+ "ta7ed5Ref": "3.1.1",
153
+ "properties": {
154
+ "nameOrOrganisation": {
155
+ "ta7ed5Ref": "3.1.1.1",
156
+ "title": "Name"
157
+ },
158
+ "address": {
159
+ "ta7ed5Ref": "3.1.1.2",
160
+ "properties": {
161
+ "line1": {
162
+ "ta7ed5Ref": "3.1.1.2"
163
+ },
164
+ "postcode": {
165
+ "ta7ed5Ref": "3.1.1.2"
166
+ }
167
+ }
168
+ },
169
+ "emailAddress": {
170
+ "ta7ed5Ref": "3.1.1.3",
171
+ "title": "Email"
172
+ }
173
+ }
174
+ }
175
+ }
176
+ },
177
+ "managementCompany": {
178
+ "ta7ed5Ref": "3.1.2",
179
+ "title": "Management company",
180
+ "properties": {
181
+ "contact": {
182
+ "ta7ed5Ref": "3.1.2",
183
+ "properties": {
184
+ "nameOrOrganisation": {
185
+ "ta7ed5Ref": "3.1.2.1",
186
+ "title": "Name"
187
+ },
188
+ "address": {
189
+ "ta7ed5Ref": "3.1.2.2",
190
+ "properties": {
191
+ "line1": {
192
+ "ta7ed5Ref": "3.1.2.2"
193
+ },
194
+ "postcode": {
195
+ "ta7ed5Ref": "3.1.2.2"
196
+ }
197
+ }
198
+ },
199
+ "emailAddress": {
200
+ "ta7ed5Ref": "3.1.2.3",
201
+ "title": "Email"
202
+ }
203
+ }
204
+ }
205
+ }
206
+ },
207
+ "rightToManageCompany": {
208
+ "ta7ed5Ref": "3.1.3",
209
+ "properties": {
210
+ "contact": {
211
+ "ta7ed5Ref": "3.1.3",
212
+ "properties": {
213
+ "nameOrOrganisation": {
214
+ "ta7ed5Ref": "3.1.3.1",
215
+ "title": "Name"
216
+ },
217
+ "address": {
218
+ "ta7ed5Ref": "3.1.3.2",
219
+ "properties": {
220
+ "line1": {
221
+ "ta7ed5Ref": "3.1.3.2"
222
+ },
223
+ "postcode": {
224
+ "ta7ed5Ref": "3.1.3.2"
225
+ }
226
+ }
227
+ },
228
+ "emailAddress": {
229
+ "ta7ed5Ref": "3.1.3.3",
230
+ "title": "Email"
231
+ }
232
+ }
233
+ }
234
+ }
235
+ },
236
+ "freeholder": {
237
+ "ta7ed5Ref": "3.1.4",
238
+ "properties": {
239
+ "contact": {
240
+ "ta7ed5Ref": "3.1.4",
241
+ "properties": {
242
+ "nameOrOrganisation": {
243
+ "ta7ed5Ref": "3.1.4.1",
244
+ "title": "Name"
245
+ },
246
+ "address": {
247
+ "ta7ed5Ref": "3.1.4.2",
248
+ "properties": {
249
+ "line1": {
250
+ "ta7ed5Ref": "3.1.4.2"
251
+ },
252
+ "postcode": {
253
+ "ta7ed5Ref": "3.1.4.2"
254
+ }
255
+ }
256
+ },
257
+ "emailAddress": {
258
+ "ta7ed5Ref": "3.1.4.3",
259
+ "title": "Email"
260
+ }
261
+ }
262
+ }
263
+ }
264
+ },
265
+ "headLeaseHolder": {
266
+ "ta7ed5Ref": "3.1.5",
267
+ "properties": {
268
+ "contact": {
269
+ "ta7ed5Ref": "3.1.5",
270
+ "properties": {
271
+ "nameOrOrganisation": {
272
+ "ta7ed5Ref": "3.1.5.1",
273
+ "title": "Name"
274
+ },
275
+ "address": {
276
+ "ta7ed5Ref": "3.1.5.2",
277
+ "properties": {
278
+ "line1": {
279
+ "ta7ed5Ref": "3.1.5.2"
280
+ },
281
+ "postcode": {
282
+ "ta7ed5Ref": "3.1.5.2"
283
+ }
284
+ }
285
+ },
286
+ "emailAddress": {
287
+ "ta7ed5Ref": "3.1.5.3",
288
+ "title": "Email"
289
+ }
290
+ }
291
+ }
292
+ }
293
+ },
294
+ "managingAgent": {
295
+ "ta7ed5Ref": "4.1",
296
+ "required": [
297
+ "contact"
298
+ ],
299
+ "properties": {
300
+ "contact": {
301
+ "ta7ed5Ref": "4.1.2",
302
+ "required": [
303
+ "nameOrOrganisation",
304
+ "address",
305
+ "emailAddress"
306
+ ],
307
+ "properties": {
308
+ "nameOrOrganisation": {
309
+ "ta7ed5Ref": "4.1.2.1",
310
+ "title": "Name"
311
+ },
312
+ "address": {
313
+ "ta7ed5Ref": "4.1.2.2",
314
+ "properties": {
315
+ "line1": {
316
+ "ta7ed5Ref": "4.1.2.2"
317
+ },
318
+ "postcode": {
319
+ "ta7ed5Ref": "4.1.2.2"
320
+ }
321
+ }
322
+ },
323
+ "emailAddress": {
324
+ "ta7ed5Ref": "4.1.2.3",
325
+ "title": "Email"
326
+ }
327
+ }
328
+ }
329
+ }
330
+ }
331
+ }
332
+ },
333
+ "serviceContactAssignments": {
334
+ "ta7ed5Ref": "4",
335
+ "required": [
336
+ "collectsGroundRent",
337
+ "collectsbuildingInsurancePremiums"
338
+ ],
339
+ "properties": {
340
+ "collectsGroundRent": {
341
+ "ta7ed5Ref": "4.3",
342
+ "discriminator": {
343
+ "propertyName": "collector"
344
+ },
345
+ "oneOf": [
346
+ {
347
+ "properties": {
348
+ "collector": {
349
+ "enum": [
350
+ "Landlord",
351
+ "Management Company",
352
+ "Managing Agent",
353
+ "Not applicable"
354
+ ]
355
+ }
356
+ }
357
+ },
358
+ {
359
+ "properties": {
360
+ "collector": {
361
+ "enum": [
362
+ "Other"
363
+ ]
364
+ },
365
+ "otherCollector": {
366
+ "ta7ed5Ref": "4.3.3"
367
+ }
368
+ },
369
+ "required": [
370
+ "otherCollector"
371
+ ]
372
+ }
373
+ ],
374
+ "required": [
375
+ "collector"
376
+ ],
377
+ "title": "If ground rent is payable, is it collected by the managing agent?",
378
+ "properties": {
379
+ "collector": {
380
+ "ta7ed5Ref": "4.3.2",
381
+ "title": "Who collects the ground rent?",
382
+ "enum": [
383
+ "Landlord",
384
+ "Management Company",
385
+ "Other"
386
+ ]
387
+ }
388
+ }
389
+ },
390
+ "collectsbuildingInsurancePremiums": {
391
+ "ta7ed5Ref": "4.2",
392
+ "discriminator": {
393
+ "propertyName": "collector"
394
+ },
395
+ "oneOf": [
396
+ {
397
+ "properties": {
398
+ "collector": {
399
+ "enum": [
400
+ "Freeholder",
401
+ "Landlord",
402
+ "Management Company",
403
+ "Managing Agent",
404
+ "Head Leaseholder",
405
+ "Seller",
406
+ "Not applicable"
407
+ ]
408
+ }
409
+ }
410
+ },
411
+ {
412
+ "properties": {
413
+ "collector": {
414
+ "enum": [
415
+ "Other"
416
+ ]
417
+ },
418
+ "otherCollector": {
419
+ "ta7ed5Ref": "4.2.3"
420
+ }
421
+ },
422
+ "required": [
423
+ "otherCollector"
424
+ ]
425
+ }
426
+ ],
427
+ "required": [
428
+ "collector"
429
+ ],
430
+ "title": "Does the managing agent arrange or collect charges for the insurance of the building?",
431
+ "properties": {
432
+ "collector": {
433
+ "ta7ed5Ref": "4.2.2",
434
+ "enum": [
435
+ "Freeholder",
436
+ "Landlord",
437
+ "Management Company",
438
+ "Head Leaseholder",
439
+ "Seller",
440
+ "Other"
441
+ ]
442
+ }
443
+ }
444
+ }
445
+ }
446
+ }
447
+ }
448
+ },
449
+ "consents": {
450
+ "ta7ed5Ref": "8",
451
+ "required": [
452
+ "changesInTermOfLease",
453
+ "landlordConsents"
454
+ ],
455
+ "properties": {
456
+ "changesInTermOfLease": {
457
+ "ta7ed5Ref": "8.1",
458
+ "discriminator": {
459
+ "propertyName": "isSellerAwareOfChanges"
460
+ },
461
+ "oneOf": [
462
+ {
463
+ "properties": {
464
+ "isSellerAwareOfChanges": {
465
+ "enum": [
466
+ "No"
467
+ ]
468
+ }
469
+ }
470
+ },
471
+ {
472
+ "properties": {
473
+ "isSellerAwareOfChanges": {
474
+ "enum": [
475
+ "Yes"
476
+ ]
477
+ },
478
+ "details": {
479
+ "ta7ed5Ref": "8.1.2",
480
+ "title": "Please supply further details and any documents relating to the variation"
481
+ },
482
+ "attachments": {
483
+ "ta7ed5Ref": "8.1.3"
484
+ }
485
+ },
486
+ "required": [
487
+ "details"
488
+ ]
489
+ }
490
+ ],
491
+ "required": [
492
+ "isSellerAwareOfChanges"
493
+ ],
494
+ "title": "Are you aware of any changes to the terms of the lease?",
495
+ "properties": {
496
+ "isSellerAwareOfChanges": {
497
+ "ta7ed5Ref": "8.1.1"
498
+ }
499
+ }
500
+ },
501
+ "landlordConsents": {
502
+ "ta7ed5Ref": "8.2",
503
+ "discriminator": {
504
+ "propertyName": "isSellerAwareOfLandlordConsents"
505
+ },
506
+ "oneOf": [
507
+ {
508
+ "properties": {
509
+ "isSellerAwareOfLandlordConsents": {
510
+ "enum": [
511
+ "No"
512
+ ]
513
+ }
514
+ }
515
+ },
516
+ {
517
+ "properties": {
518
+ "isSellerAwareOfLandlordConsents": {
519
+ "enum": [
520
+ "Yes"
521
+ ]
522
+ },
523
+ "details": {
524
+ "ta7ed5Ref": "8.2.2"
525
+ },
526
+ "attachments": {
527
+ "ta7ed5Ref": "8.2.3"
528
+ }
529
+ },
530
+ "required": [
531
+ "details",
532
+ "attachments"
533
+ ]
534
+ }
535
+ ],
536
+ "required": [
537
+ "isSellerAwareOfLandlordConsents"
538
+ ],
539
+ "properties": {
540
+ "isSellerAwareOfLandlordConsents": {
541
+ "ta7ed5Ref": "8.2.1"
542
+ }
543
+ }
544
+ }
545
+ }
546
+ },
547
+ "groundRent": {
548
+ "ta7ed5Ref": "2.2",
549
+ "discriminator": {
550
+ "propertyName": "isGroundRentPayable"
551
+ },
552
+ "oneOf": [
553
+ {
554
+ "properties": {
555
+ "isGroundRentPayable": {
556
+ "enum": [
557
+ "No"
558
+ ]
559
+ }
560
+ }
561
+ },
562
+ {
563
+ "properties": {
564
+ "isGroundRentPayable": {
565
+ "enum": [
566
+ "Yes"
567
+ ]
568
+ },
569
+ "mostRecentGroundRentDemandStatus": {
570
+ "ta7ed5Ref": "2.2a",
571
+ "title": "Ground rent"
572
+ }
573
+ },
574
+ "required": [
575
+ "mostRecentGroundRentDemandStatus"
576
+ ]
577
+ }
578
+ ],
579
+ "required": [
580
+ "isGroundRentPayable"
581
+ ],
582
+ "properties": {
583
+ "isGroundRentPayable": {
584
+ "ta7ed5Ref": "2.2"
585
+ }
586
+ }
587
+ },
588
+ "ownershipAndManagement": {
589
+ "ta7ed5Ref": "4",
590
+ "discriminator": {
591
+ "propertyName": "hasTenantCompanyDissolved"
592
+ },
593
+ "oneOf": [
594
+ {
595
+ "properties": {
596
+ "hasTenantCompanyDissolved": {
597
+ "enum": [
598
+ "No",
599
+ "Not applicable"
600
+ ]
601
+ }
602
+ }
603
+ },
604
+ {
605
+ "properties": {
606
+ "hasTenantCompanyDissolved": {
607
+ "enum": [
608
+ "Yes"
609
+ ]
610
+ },
611
+ "hasTenantCompanyDissolvedDetails": {
612
+ "ta7ed5Ref": "4.5.2"
613
+ }
614
+ },
615
+ "required": [
616
+ "hasTenantCompanyDissolvedDetails"
617
+ ]
618
+ }
619
+ ],
620
+ "required": [
621
+ "isManagingAgentEmployed",
622
+ "sellerOwnership",
623
+ "hasTenantCompanyDissolved"
624
+ ],
625
+ "properties": {
626
+ "isManagingAgentEmployed": {
627
+ "ta7ed5Ref": "4.1.1",
628
+ "title": "Is a managing agent appointed to manage the building and collect service charges?",
629
+ "enum": [
630
+ "Yes",
631
+ "No",
632
+ "Not applicable"
633
+ ]
634
+ },
635
+ "sellerOwnership": {
636
+ "ta7ed5Ref": "4.4",
637
+ "discriminator": {
638
+ "propertyName": "yesNo"
639
+ },
640
+ "oneOf": [
641
+ {
642
+ "properties": {
643
+ "yesNo": {
644
+ "enum": [
645
+ "No",
646
+ "Not known"
647
+ ]
648
+ }
649
+ }
650
+ },
651
+ {
652
+ "properties": {
653
+ "yesNo": {
654
+ "enum": [
655
+ "Yes"
656
+ ]
657
+ },
658
+ "attachments": {
659
+ "ta7ed5Ref": "4.4.2",
660
+ "title": "Supply evidence of your ownership or share certificate for membership of the organisation that is responsible for the management of the building."
661
+ }
662
+ },
663
+ "required": [
664
+ "attachments"
665
+ ]
666
+ }
667
+ ],
668
+ "required": [
669
+ "yesNo"
670
+ ],
671
+ "properties": {
672
+ "yesNo": {
673
+ "ta7ed5Ref": "4.4.1"
674
+ }
675
+ }
676
+ },
677
+ "hasTenantCompanyDissolved": {
678
+ "ta7ed5Ref": "4.5.1",
679
+ "title": "Are you aware of any company responsible for managing the building having been dissolved or struck off the register at Companies House?",
680
+ "enum": [
681
+ "Yes",
682
+ "No",
683
+ "Not applicable"
684
+ ]
685
+ }
686
+ }
687
+ },
688
+ "serviceCharge": {
689
+ "ta7ed5Ref": "2.2",
690
+ "discriminator": {
691
+ "propertyName": "sellerContributesToServiceCharge"
692
+ },
693
+ "oneOf": [
694
+ {
695
+ "properties": {
696
+ "sellerContributesToServiceCharge": {
697
+ "enum": [
698
+ "No"
699
+ ]
700
+ }
701
+ }
702
+ },
703
+ {
704
+ "properties": {
705
+ "sellerContributesToServiceCharge": {
706
+ "enum": [
707
+ "Yes"
708
+ ]
709
+ },
710
+ "mostRecentServiceChargeDemandStatus": {
711
+ "ta7ed5Ref": "2.2b",
712
+ "title": "Service charge"
713
+ },
714
+ "largeAdditionalExpense": {
715
+ "ta7ed5Ref": "5.4",
716
+ "discriminator": {
717
+ "propertyName": "yesNo"
718
+ },
719
+ "oneOf": [
720
+ {
721
+ "properties": {
722
+ "yesNo": {
723
+ "enum": [
724
+ "No"
725
+ ]
726
+ }
727
+ }
728
+ },
729
+ {
730
+ "properties": {
731
+ "yesNo": {
732
+ "enum": [
733
+ "Yes"
734
+ ]
735
+ },
736
+ "details": {
737
+ "ta7ed5Ref": "5.4.2",
738
+ "title": "Please give details"
739
+ }
740
+ },
741
+ "required": [
742
+ "details"
743
+ ]
744
+ }
745
+ ],
746
+ "required": [
747
+ "yesNo"
748
+ ],
749
+ "title": "Do you know of any expense (e.g. the cost of redecoration of outside or communal areas that is not usually incurred annually) that is likely to be shown in the service charge accounts within the next three years?",
750
+ "properties": {
751
+ "yesNo": {
752
+ "ta7ed5Ref": "5.4.1"
753
+ }
754
+ }
755
+ },
756
+ "problemInServiceChargeLevel": {
757
+ "ta7ed5Ref": "5.6",
758
+ "discriminator": {
759
+ "propertyName": "yesNo"
760
+ },
761
+ "oneOf": [
762
+ {
763
+ "properties": {
764
+ "yesNo": {
765
+ "enum": [
766
+ "No"
767
+ ]
768
+ }
769
+ }
770
+ },
771
+ {
772
+ "properties": {
773
+ "yesNo": {
774
+ "enum": [
775
+ "Yes"
776
+ ]
777
+ },
778
+ "details": {
779
+ "ta7ed5Ref": "5.6.2"
780
+ }
781
+ },
782
+ "required": [
783
+ "details"
784
+ ]
785
+ }
786
+ ],
787
+ "required": [
788
+ "yesNo"
789
+ ],
790
+ "title": "Do you know of any issues in the last three years regarding the level of service charges or with the management?",
791
+ "properties": {
792
+ "yesNo": {
793
+ "ta7ed5Ref": "5.6.1"
794
+ }
795
+ }
796
+ },
797
+ "serviceChargeChallenged": {
798
+ "ta7ed5Ref": "5.5",
799
+ "discriminator": {
800
+ "propertyName": "yesNo"
801
+ },
802
+ "oneOf": [
803
+ {
804
+ "properties": {
805
+ "yesNo": {
806
+ "enum": [
807
+ "No"
808
+ ]
809
+ }
810
+ }
811
+ },
812
+ {
813
+ "properties": {
814
+ "yesNo": {
815
+ "enum": [
816
+ "Yes"
817
+ ]
818
+ },
819
+ "details": {
820
+ "ta7ed5Ref": "5.5.2"
821
+ }
822
+ },
823
+ "required": [
824
+ "details"
825
+ ]
826
+ }
827
+ ],
828
+ "required": [
829
+ "yesNo"
830
+ ],
831
+ "title": "Have you challenged the service charge or any expense in the last three years?",
832
+ "properties": {
833
+ "yesNo": {
834
+ "ta7ed5Ref": "5.5.1"
835
+ }
836
+ }
837
+ },
838
+ "dangerousCladdingOrDefects": {
839
+ "ta7ed5Ref": "11.1",
840
+ "discriminator": {
841
+ "propertyName": "yesNo"
842
+ },
843
+ "oneOf": [
844
+ {
845
+ "properties": {
846
+ "yesNo": {
847
+ "enum": [
848
+ "No"
849
+ ]
850
+ }
851
+ }
852
+ },
853
+ {
854
+ "properties": {
855
+ "yesNo": {
856
+ "enum": [
857
+ "Yes"
858
+ ]
859
+ },
860
+ "details": {
861
+ "ta7ed5Ref": "11.1.2"
862
+ }
863
+ },
864
+ "required": [
865
+ "details"
866
+ ]
867
+ }
868
+ ],
869
+ "required": [
870
+ "yesNo"
871
+ ],
872
+ "title": "Are you aware of the existence or suspected existence in the building of cladding or any defects that may create a building safety risk?",
873
+ "properties": {
874
+ "yesNo": {
875
+ "ta7ed5Ref": "11.1.1"
876
+ }
877
+ }
878
+ },
879
+ "lastDecoratedPeriod": {
880
+ "ta7ed5Ref": "5",
881
+ "properties": {
882
+ "externally": {
883
+ "ta7ed5Ref": "5.1",
884
+ "title": "In what year was the outside of the building last decorated?",
885
+ "properties": {
886
+ "year": {
887
+ "ta7ed5Ref": "5.1.1"
888
+ }
889
+ }
890
+ },
891
+ "internally": {
892
+ "ta7ed5Ref": "5.2",
893
+ "title": "In what year were any internal communal parts last decorated?",
894
+ "properties": {
895
+ "year": {
896
+ "ta7ed5Ref": "5.2.1"
897
+ }
898
+ }
899
+ }
900
+ }
901
+ }
902
+ },
903
+ "required": [
904
+ "mostRecentServiceChargeDemandStatus",
905
+ "largeAdditionalExpense",
906
+ "problemInServiceChargeLevel",
907
+ "serviceChargeChallenged",
908
+ "dangerousCladdingOrDefects",
909
+ "lastDecoratedPeriod"
910
+ ]
911
+ }
912
+ ],
913
+ "required": [
914
+ "sellerContributesToServiceCharge"
915
+ ],
916
+ "properties": {
917
+ "sellerContributesToServiceCharge": {
918
+ "ta7ed5Ref": "5.3",
919
+ "title": "Do you contribute to the cost of maintaining the building?"
920
+ }
921
+ }
922
+ },
923
+ "buildingsInsurance": {
924
+ "ta7ed5Ref": "2.2",
925
+ "required": [
926
+ "mostRecentBuildingsInsuranceDemandStatus"
927
+ ],
928
+ "properties": {
929
+ "mostRecentBuildingsInsuranceDemandStatus": {
930
+ "ta7ed5Ref": "2.2c",
931
+ "title": "Buildings insurance"
932
+ }
933
+ }
934
+ },
935
+ "disputes": {
936
+ "ta7ed5Ref": "10",
937
+ "required": [
938
+ "sellerReceivedComplaint",
939
+ "sellerSentComplaint"
940
+ ],
941
+ "title": "Complaints",
942
+ "properties": {
943
+ "sellerReceivedComplaint": {
944
+ "ta7ed5Ref": "10.1",
945
+ "discriminator": {
946
+ "propertyName": "yesNo"
947
+ },
948
+ "oneOf": [
949
+ {
950
+ "properties": {
951
+ "yesNo": {
952
+ "enum": [
953
+ "No",
954
+ "Not known"
955
+ ]
956
+ }
957
+ }
958
+ },
959
+ {
960
+ "properties": {
961
+ "yesNo": {
962
+ "enum": [
963
+ "Yes"
964
+ ]
965
+ },
966
+ "details": {
967
+ "ta7ed5Ref": "10.1.2"
968
+ }
969
+ },
970
+ "required": [
971
+ "details"
972
+ ]
973
+ }
974
+ ],
975
+ "required": [
976
+ "yesNo"
977
+ ],
978
+ "title": "Are you aware of any complaint received from the landlord, the management company or any neighbour about anything you have or have not done?",
979
+ "properties": {
980
+ "yesNo": {
981
+ "ta7ed5Ref": "10.1.1"
982
+ }
983
+ }
984
+ },
985
+ "sellerSentComplaint": {
986
+ "ta7ed5Ref": "10.2",
987
+ "discriminator": {
988
+ "propertyName": "yesNo"
989
+ },
990
+ "oneOf": [
991
+ {
992
+ "properties": {
993
+ "yesNo": {
994
+ "enum": [
995
+ "No",
996
+ "Not known"
997
+ ]
998
+ }
999
+ }
1000
+ },
1001
+ {
1002
+ "properties": {
1003
+ "yesNo": {
1004
+ "enum": [
1005
+ "Yes"
1006
+ ]
1007
+ },
1008
+ "details": {
1009
+ "ta7ed5Ref": "10.2.2"
1010
+ }
1011
+ },
1012
+ "required": [
1013
+ "details"
1014
+ ]
1015
+ }
1016
+ ],
1017
+ "required": [
1018
+ "yesNo"
1019
+ ],
1020
+ "title": "Are you aware of any complaint made to or about the landlord, the management company, or any neighbour?",
1021
+ "properties": {
1022
+ "yesNo": {
1023
+ "ta7ed5Ref": "10.2.1"
1024
+ }
1025
+ }
1026
+ }
1027
+ }
1028
+ },
1029
+ "buildingSafetyAct": {
1030
+ "ta7ed5Ref": "11",
1031
+ "required": [
1032
+ "isLeaseQualifying",
1033
+ "landlordNotifiedOfSale",
1034
+ "deedOfCertificateServed",
1035
+ "landlordsCertificateServed"
1036
+ ],
1037
+ "title": "Building safety for blocks of flats",
1038
+ "properties": {
1039
+ "isLeaseQualifying": {
1040
+ "ta7ed5Ref": "11.3",
1041
+ "title": "Is the property within a relevant building (11 metres or more in height or at least 5 storeys and contains at least 2 dwellings) and is not leaseholder-owned?",
1042
+ "enum": [
1043
+ "Yes",
1044
+ "No",
1045
+ "Not known"
1046
+ ]
1047
+ },
1048
+ "deedOfCertificateServed": {
1049
+ "ta7ed5Ref": "11.4",
1050
+ "discriminator": {
1051
+ "propertyName": "yesNoNotApplicable"
1052
+ },
1053
+ "oneOf": [
1054
+ {
1055
+ "properties": {
1056
+ "yesNoNotApplicable": {
1057
+ "enum": [
1058
+ "Not applicable",
1059
+ "No"
1060
+ ]
1061
+ }
1062
+ }
1063
+ },
1064
+ {
1065
+ "properties": {
1066
+ "yesNoNotApplicable": {
1067
+ "enum": [
1068
+ "Yes"
1069
+ ]
1070
+ },
1071
+ "attachments": {
1072
+ "ta7ed5Ref": "11.4.2",
1073
+ "title": "Please supply a copy of the leaseholder deed of certificate and the accompanying evidence."
1074
+ }
1075
+ },
1076
+ "required": [
1077
+ "attachments"
1078
+ ]
1079
+ }
1080
+ ],
1081
+ "required": [
1082
+ "yesNoNotApplicable"
1083
+ ],
1084
+ "title": "Is there a leaseholder deed of certificate for the property?",
1085
+ "properties": {
1086
+ "yesNoNotApplicable": {
1087
+ "ta7ed5Ref": "11.4.1"
1088
+ }
1089
+ }
1090
+ },
1091
+ "landlordNotifiedOfSale": {
1092
+ "ta7ed5Ref": "11.5",
1093
+ "title": "Has the landlord been notified of your intention to sell the property?",
1094
+ "enum": [
1095
+ "Yes",
1096
+ "No",
1097
+ "Not known"
1098
+ ]
1099
+ },
1100
+ "landlordsCertificateServed": {
1101
+ "ta7ed5Ref": "11.6",
1102
+ "discriminator": {
1103
+ "propertyName": "yesNoNotApplicable"
1104
+ },
1105
+ "oneOf": [
1106
+ {
1107
+ "properties": {
1108
+ "yesNoNotApplicable": {
1109
+ "enum": [
1110
+ "Not applicable",
1111
+ "No"
1112
+ ]
1113
+ }
1114
+ }
1115
+ },
1116
+ {
1117
+ "properties": {
1118
+ "yesNoNotApplicable": {
1119
+ "enum": [
1120
+ "Yes"
1121
+ ]
1122
+ },
1123
+ "attachments": {
1124
+ "ta7ed5Ref": "11.6.2",
1125
+ "title": "Please supply a copy of the landlord’s certificate and the accompanying evidence."
1126
+ }
1127
+ },
1128
+ "required": [
1129
+ "attachments"
1130
+ ]
1131
+ }
1132
+ ],
1133
+ "required": [
1134
+ "yesNoNotApplicable"
1135
+ ],
1136
+ "title": "Have you received a landlord’s certificate and the accompanying evidence?",
1137
+ "properties": {
1138
+ "yesNoNotApplicable": {
1139
+ "ta7ed5Ref": "11.6.1",
1140
+ "enum": [
1141
+ "Yes",
1142
+ "No"
1143
+ ]
1144
+ }
1145
+ }
1146
+ }
1147
+ }
1148
+ },
1149
+ "alterations": {
1150
+ "ta7ed5Ref": "9",
1151
+ "required": [
1152
+ "sellerAwareOfAlterations"
1153
+ ],
1154
+ "properties": {
1155
+ "sellerAwareOfAlterations": {
1156
+ "ta7ed5Ref": "9.1",
1157
+ "discriminator": {
1158
+ "propertyName": "yesNo"
1159
+ },
1160
+ "oneOf": [
1161
+ {
1162
+ "properties": {
1163
+ "yesNo": {
1164
+ "enum": [
1165
+ "No"
1166
+ ]
1167
+ }
1168
+ }
1169
+ },
1170
+ {
1171
+ "properties": {
1172
+ "yesNo": {
1173
+ "enum": [
1174
+ "Yes"
1175
+ ]
1176
+ },
1177
+ "details": {
1178
+ "ta7ed5Ref": "9.2"
1179
+ },
1180
+ "landlordConsentObtained": {
1181
+ "ta7ed5Ref": "9.3",
1182
+ "discriminator": {
1183
+ "propertyName": "yesNo"
1184
+ },
1185
+ "oneOf": [
1186
+ {
1187
+ "properties": {
1188
+ "yesNo": {
1189
+ "enum": [
1190
+ "No",
1191
+ "Not known",
1192
+ "Not required"
1193
+ ]
1194
+ }
1195
+ }
1196
+ },
1197
+ {
1198
+ "properties": {
1199
+ "yesNo": {
1200
+ "enum": [
1201
+ "Yes"
1202
+ ]
1203
+ },
1204
+ "attachments": {
1205
+ "ta7ed5Ref": "9.3.2"
1206
+ }
1207
+ },
1208
+ "required": [
1209
+ "attachments"
1210
+ ]
1211
+ }
1212
+ ],
1213
+ "required": [
1214
+ "yesNo"
1215
+ ],
1216
+ "properties": {
1217
+ "yesNo": {
1218
+ "ta7ed5Ref": "9.3.1"
1219
+ }
1220
+ }
1221
+ }
1222
+ },
1223
+ "required": [
1224
+ "details",
1225
+ "landlordConsentObtained"
1226
+ ]
1227
+ }
1228
+ ],
1229
+ "required": [
1230
+ "yesNo"
1231
+ ],
1232
+ "title": "Are you aware of any alterations having been made to the property since the lease was originally granted?",
1233
+ "properties": {
1234
+ "yesNo": {
1235
+ "ta7ed5Ref": "9.1.1"
1236
+ }
1237
+ }
1238
+ }
1239
+ }
1240
+ },
1241
+ "enfranchisement": {
1242
+ "ta7ed5Ref": "7",
1243
+ "required": [
1244
+ "sellerServedNoticeOnLandlord",
1245
+ "sellerAwareOfNoticeOfCollectivePurchase",
1246
+ "sellerAwareOfResponse"
1247
+ ],
1248
+ "properties": {
1249
+ "sellerServedNoticeOnLandlord": {
1250
+ "ta7ed5Ref": "7.1",
1251
+ "discriminator": {
1252
+ "propertyName": "yesNo"
1253
+ },
1254
+ "oneOf": [
1255
+ {
1256
+ "properties": {
1257
+ "yesNo": {
1258
+ "enum": [
1259
+ "No",
1260
+ "Not known",
1261
+ "Not required"
1262
+ ]
1263
+ }
1264
+ }
1265
+ },
1266
+ {
1267
+ "properties": {
1268
+ "yesNo": {
1269
+ "enum": [
1270
+ "Yes"
1271
+ ]
1272
+ },
1273
+ "attachments": {
1274
+ "ta7ed5Ref": "7.1.2"
1275
+ }
1276
+ },
1277
+ "required": [
1278
+ "attachments"
1279
+ ]
1280
+ }
1281
+ ],
1282
+ "required": [
1283
+ "yesNo"
1284
+ ],
1285
+ "title": "Have you served on the landlord a notice stating your wish to buy the freehold or be granted an extended lease?",
1286
+ "properties": {
1287
+ "yesNo": {
1288
+ "ta7ed5Ref": "7.1.1"
1289
+ }
1290
+ }
1291
+ },
1292
+ "sellerAwareOfNoticeOfCollectivePurchase": {
1293
+ "ta7ed5Ref": "7.2",
1294
+ "discriminator": {
1295
+ "propertyName": "yesNo"
1296
+ },
1297
+ "oneOf": [
1298
+ {
1299
+ "properties": {
1300
+ "yesNo": {
1301
+ "enum": [
1302
+ "No",
1303
+ "Not known",
1304
+ "Not required"
1305
+ ]
1306
+ }
1307
+ }
1308
+ },
1309
+ {
1310
+ "properties": {
1311
+ "yesNo": {
1312
+ "enum": [
1313
+ "Yes"
1314
+ ]
1315
+ },
1316
+ "attachments": {
1317
+ "ta7ed5Ref": "7.2.2"
1318
+ }
1319
+ },
1320
+ "required": [
1321
+ "attachments"
1322
+ ]
1323
+ }
1324
+ ],
1325
+ "required": [
1326
+ "yesNo"
1327
+ ],
1328
+ "title": "Are you aware of the service of any notice relating to the possible collective purchase of the freehold of the building or part of it by a group of tenants?",
1329
+ "properties": {
1330
+ "yesNo": {
1331
+ "ta7ed5Ref": "7.2.1"
1332
+ }
1333
+ }
1334
+ },
1335
+ "sellerAwareOfResponse": {
1336
+ "ta7ed5Ref": "7.3",
1337
+ "discriminator": {
1338
+ "propertyName": "yesNo"
1339
+ },
1340
+ "oneOf": [
1341
+ {
1342
+ "properties": {
1343
+ "yesNo": {
1344
+ "enum": [
1345
+ "No",
1346
+ "Not known",
1347
+ "Not required"
1348
+ ]
1349
+ }
1350
+ }
1351
+ },
1352
+ {
1353
+ "properties": {
1354
+ "yesNo": {
1355
+ "enum": [
1356
+ "Yes"
1357
+ ]
1358
+ },
1359
+ "attachments": {
1360
+ "ta7ed5Ref": "7.3.2"
1361
+ }
1362
+ },
1363
+ "required": [
1364
+ "attachments"
1365
+ ]
1366
+ }
1367
+ ],
1368
+ "required": [
1369
+ "yesNo"
1370
+ ],
1371
+ "title": "Are you aware of any response to a notice disclosed in replies to 7.1 and 7.2 above?",
1372
+ "properties": {
1373
+ "yesNo": {
1374
+ "ta7ed5Ref": "7.3.1"
1375
+ }
1376
+ }
1377
+ }
1378
+ }
1379
+ },
1380
+ "requiredDocuments": {
1381
+ "ta7ed5Ref": "6",
1382
+ "required": [
1383
+ "noticeOfSale",
1384
+ "noticeOfBuildingCondition"
1385
+ ],
1386
+ "properties": {
1387
+ "noticeOfSale": {
1388
+ "ta7ed5Ref": "6.1",
1389
+ "discriminator": {
1390
+ "propertyName": "yesNo"
1391
+ },
1392
+ "oneOf": [
1393
+ {
1394
+ "properties": {
1395
+ "yesNo": {
1396
+ "enum": [
1397
+ "No"
1398
+ ]
1399
+ }
1400
+ }
1401
+ },
1402
+ {
1403
+ "properties": {
1404
+ "yesNo": {
1405
+ "enum": [
1406
+ "Yes"
1407
+ ]
1408
+ },
1409
+ "attachments": {
1410
+ "ta7ed5Ref": "6.1.2"
1411
+ }
1412
+ },
1413
+ "required": [
1414
+ "attachments"
1415
+ ]
1416
+ }
1417
+ ],
1418
+ "required": [
1419
+ "yesNo"
1420
+ ],
1421
+ "title": "Have you received a notice that the landlord wants to sell the building?",
1422
+ "properties": {
1423
+ "yesNo": {
1424
+ "ta7ed5Ref": "6.1.1"
1425
+ }
1426
+ }
1427
+ },
1428
+ "noticeOfBuildingCondition": {
1429
+ "ta7ed5Ref": "6.2",
1430
+ "discriminator": {
1431
+ "propertyName": "yesNo"
1432
+ },
1433
+ "oneOf": [
1434
+ {
1435
+ "properties": {
1436
+ "yesNo": {
1437
+ "enum": [
1438
+ "No"
1439
+ ]
1440
+ }
1441
+ }
1442
+ },
1443
+ {
1444
+ "properties": {
1445
+ "yesNo": {
1446
+ "enum": [
1447
+ "Yes"
1448
+ ]
1449
+ },
1450
+ "attachments": {
1451
+ "ta7ed5Ref": "6.2.2"
1452
+ }
1453
+ },
1454
+ "required": [
1455
+ "attachments"
1456
+ ]
1457
+ }
1458
+ ],
1459
+ "required": [
1460
+ "yesNo"
1461
+ ],
1462
+ "title": "Have you received any other notice about the building, its use, its condition or its repair and maintenance?",
1463
+ "properties": {
1464
+ "yesNo": {
1465
+ "ta7ed5Ref": "6.2.1"
1466
+ }
1467
+ }
1468
+ }
1469
+ }
1470
+ },
1471
+ "additionalInformation": {
1472
+ "ta7ed5Ref": "12",
1473
+ "required": [
1474
+ "attachments"
1475
+ ],
1476
+ "properties": {
1477
+ "details": {
1478
+ "ta7ed5Ref": "12.1"
1479
+ },
1480
+ "attachments": {
1481
+ "ta7ed5Ref": "12.2"
1482
+ }
1483
+ }
1484
+ },
1485
+ "confirmationOfAccuracy": {
1486
+ "ta7ed5Ref": "13",
1487
+ "required": [
1488
+ "confirmation"
1489
+ ],
1490
+ "properties": {
1491
+ "confirmation": {
1492
+ "ta7ed5Ref": "13.1"
1493
+ }
1494
+ }
1495
+ }
1496
+ }
1497
+ }
1498
+ },
1499
+ "required": [
1500
+ "leaseholdInformation"
1501
+ ]
1502
+ },
1503
+ {
1504
+ "properties": {
1505
+ "ownershipType": {
1506
+ "enum": [
1507
+ "Other"
1508
+ ]
1509
+ }
1510
+ }
1511
+ }
1512
+ ],
1513
+ "ta7ed5Ref": "2",
1514
+ "required": [
1515
+ "ownershipType"
1516
+ ],
1517
+ "properties": {
1518
+ "ownershipType": {
1519
+ "ta7ed5Ref": "2"
1520
+ }
1521
+ }
1522
+ }
1523
+ }
1524
+ }
1525
+ },
1526
+ "typeOfConstruction": {
1527
+ "ta7ed5Ref": "11",
1528
+ "required": [
1529
+ "buildingSafety"
1530
+ ],
1531
+ "properties": {
1532
+ "buildingSafety": {
1533
+ "ta7ed5Ref": "11.2",
1534
+ "discriminator": {
1535
+ "propertyName": "yesNo"
1536
+ },
1537
+ "oneOf": [
1538
+ {
1539
+ "properties": {
1540
+ "yesNo": {
1541
+ "enum": [
1542
+ "No",
1543
+ "Not known"
1544
+ ]
1545
+ }
1546
+ }
1547
+ },
1548
+ {
1549
+ "properties": {
1550
+ "yesNo": {
1551
+ "enum": [
1552
+ "Yes"
1553
+ ]
1554
+ },
1555
+ "attachments": {
1556
+ "ta7ed5Ref": "11.2.2",
1557
+ "title": "Please provide details of the remediation works proposed and evidence of any carried out."
1558
+ }
1559
+ },
1560
+ "required": [
1561
+ "attachments"
1562
+ ]
1563
+ }
1564
+ ],
1565
+ "required": [
1566
+ "yesNo"
1567
+ ],
1568
+ "title": "Have any remediation works on the building been proposed or carried out?",
1569
+ "properties": {
1570
+ "yesNo": {
1571
+ "ta7ed5Ref": "11.2.1",
1572
+ "enum": [
1573
+ "Yes",
1574
+ "No",
1575
+ "Not known"
1576
+ ]
1577
+ }
1578
+ }
1579
+ }
1580
+ }
1581
+ }
1582
+ }
1583
+ }
1584
+ }
1585
+ }