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