@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,4572 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://trust.propdata.org.uk/schemas/v3/overlays/ta6.json",
4
+ "required": [
5
+ "participants",
6
+ "propertyPack"
7
+ ],
8
+ "properties": {
9
+ "propertyPack": {
10
+ "ta6Ref": "0",
11
+ "required": [
12
+ "address",
13
+ "parking",
14
+ "listingAndConservation",
15
+ "energyEfficiency",
16
+ "disputesAndComplaints",
17
+ "alterationsAndChanges",
18
+ "notices",
19
+ "specialistIssues",
20
+ "waterAndDrainage",
21
+ "electricity",
22
+ "heating",
23
+ "insurance",
24
+ "rightsAndInformalArrangements",
25
+ "environmentalIssues",
26
+ "additionalInformation",
27
+ "legalBoundaries",
28
+ "servicesCrossing",
29
+ "electricalWorks",
30
+ "guaranteesWarrantiesAndIndemnityInsurances",
31
+ "occupiers",
32
+ "completionAndMoving",
33
+ "confirmationOfAccuracyByOwners"
34
+ ],
35
+ "properties": {
36
+ "address": {
37
+ "ta6Ref": "0.1",
38
+ "required": [
39
+ "line1",
40
+ "postcode"
41
+ ],
42
+ "properties": {
43
+ "line1": {
44
+ "ta6Ref": "0.1.1"
45
+ },
46
+ "line2": {
47
+ "ta6Ref": "0.1.2"
48
+ },
49
+ "line3": {
50
+ "ta6Ref": "0.1.3"
51
+ },
52
+ "town": {
53
+ "ta6Ref": "0.1.4"
54
+ },
55
+ "postcode": {
56
+ "ta6Ref": "0.1.5"
57
+ }
58
+ }
59
+ },
60
+ "parking": {
61
+ "ta6Ref": "9",
62
+ "required": [
63
+ "parkingArrangements",
64
+ "controlledParking"
65
+ ],
66
+ "properties": {
67
+ "parkingArrangements": {
68
+ "ta6Ref": "9.1"
69
+ },
70
+ "controlledParking": {
71
+ "ta6Ref": "9.2",
72
+ "discriminator": {
73
+ "propertyName": "yesNo"
74
+ },
75
+ "oneOf": [
76
+ {
77
+ "properties": {
78
+ "yesNo": {
79
+ "enum": [
80
+ "No",
81
+ "Not known"
82
+ ]
83
+ }
84
+ }
85
+ },
86
+ {
87
+ "properties": {
88
+ "yesNo": {
89
+ "enum": [
90
+ "Yes"
91
+ ]
92
+ }
93
+ }
94
+ }
95
+ ],
96
+ "required": [
97
+ "yesNo"
98
+ ],
99
+ "properties": {
100
+ "yesNo": {
101
+ "ta6Ref": "9.2.1"
102
+ }
103
+ }
104
+ }
105
+ }
106
+ },
107
+ "listingAndConservation": {
108
+ "ta6Ref": "4.7",
109
+ "required": [
110
+ "isListed",
111
+ "isConservationArea",
112
+ "hasTreePreservationOrder"
113
+ ],
114
+ "properties": {
115
+ "isListed": {
116
+ "ta6Ref": "4.7a",
117
+ "discriminator": {
118
+ "propertyName": "yesNo"
119
+ },
120
+ "oneOf": [
121
+ {
122
+ "properties": {
123
+ "yesNo": {
124
+ "enum": [
125
+ "No",
126
+ "Not known"
127
+ ]
128
+ }
129
+ }
130
+ },
131
+ {
132
+ "properties": {
133
+ "yesNo": {
134
+ "enum": [
135
+ "Yes"
136
+ ]
137
+ },
138
+ "attachments": {
139
+ "ta6Ref": "4.7a2"
140
+ }
141
+ },
142
+ "required": [
143
+ "attachments"
144
+ ]
145
+ }
146
+ ],
147
+ "required": [
148
+ "yesNo"
149
+ ],
150
+ "properties": {
151
+ "yesNo": {
152
+ "ta6Ref": "4.7a1"
153
+ }
154
+ }
155
+ },
156
+ "isConservationArea": {
157
+ "ta6Ref": "4.7b",
158
+ "discriminator": {
159
+ "propertyName": "yesNo"
160
+ },
161
+ "oneOf": [
162
+ {
163
+ "properties": {
164
+ "yesNo": {
165
+ "enum": [
166
+ "No",
167
+ "Not known"
168
+ ]
169
+ }
170
+ }
171
+ },
172
+ {
173
+ "properties": {
174
+ "yesNo": {
175
+ "enum": [
176
+ "Yes"
177
+ ]
178
+ },
179
+ "attachments": {
180
+ "ta6Ref": "4.7b2"
181
+ }
182
+ },
183
+ "required": [
184
+ "attachments"
185
+ ]
186
+ }
187
+ ],
188
+ "required": [
189
+ "yesNo"
190
+ ],
191
+ "properties": {
192
+ "yesNo": {
193
+ "ta6Ref": "4.7b1"
194
+ }
195
+ }
196
+ },
197
+ "hasTreePreservationOrder": {
198
+ "ta6Ref": "4.8",
199
+ "discriminator": {
200
+ "propertyName": "yesNo"
201
+ },
202
+ "oneOf": [
203
+ {
204
+ "properties": {
205
+ "yesNo": {
206
+ "enum": [
207
+ "No",
208
+ "Not known"
209
+ ]
210
+ }
211
+ }
212
+ },
213
+ {
214
+ "properties": {
215
+ "yesNo": {
216
+ "enum": [
217
+ "Yes"
218
+ ]
219
+ },
220
+ "workCarriedOut": {
221
+ "ta6Ref": "4.8a",
222
+ "discriminator": {
223
+ "propertyName": "yesNo"
224
+ },
225
+ "oneOf": [
226
+ {
227
+ "properties": {
228
+ "yesNo": {
229
+ "enum": [
230
+ "No"
231
+ ]
232
+ }
233
+ }
234
+ },
235
+ {
236
+ "properties": {
237
+ "yesNo": {
238
+ "enum": [
239
+ "Yes"
240
+ ]
241
+ },
242
+ "consentsObtained": {
243
+ "ta6Ref": "4.8a2"
244
+ },
245
+ "attachments": {
246
+ "ta6Ref": "4.8a3"
247
+ }
248
+ },
249
+ "required": [
250
+ "consentsObtained"
251
+ ]
252
+ }
253
+ ],
254
+ "required": [
255
+ "yesNo"
256
+ ],
257
+ "properties": {
258
+ "yesNo": {
259
+ "ta6Ref": "4.8a1"
260
+ }
261
+ }
262
+ }
263
+ },
264
+ "required": [
265
+ "workCarriedOut"
266
+ ]
267
+ }
268
+ ],
269
+ "required": [
270
+ "yesNo"
271
+ ],
272
+ "properties": {
273
+ "yesNo": {
274
+ "ta6Ref": "4.8.1"
275
+ }
276
+ }
277
+ }
278
+ }
279
+ },
280
+ "energyEfficiency": {
281
+ "ta6Ref": "7.6",
282
+ "required": [
283
+ "certificateIsSupplied",
284
+ "greenDealLoan"
285
+ ],
286
+ "properties": {
287
+ "certificateIsSupplied": {
288
+ "ta6Ref": "7.6.1"
289
+ },
290
+ "greenDealLoan": {
291
+ "ta6Ref": "7.7",
292
+ "required": [
293
+ "hasGreenDealLoan"
294
+ ],
295
+ "properties": {
296
+ "hasGreenDealLoan": {
297
+ "ta6Ref": "7.7.0",
298
+ "discriminator": {
299
+ "propertyName": "yesNo"
300
+ },
301
+ "oneOf": [
302
+ {
303
+ "properties": {
304
+ "yesNo": {
305
+ "enum": [
306
+ "No"
307
+ ]
308
+ }
309
+ }
310
+ },
311
+ {
312
+ "properties": {
313
+ "yesNo": {
314
+ "enum": [
315
+ "Yes"
316
+ ]
317
+ },
318
+ "details": {
319
+ "ta6Ref": "7.7.2"
320
+ },
321
+ "attachments": {
322
+ "ta6Ref": "7.7.3"
323
+ }
324
+ },
325
+ "required": [
326
+ "details",
327
+ "attachments"
328
+ ]
329
+ }
330
+ ],
331
+ "required": [
332
+ "yesNo"
333
+ ],
334
+ "properties": {
335
+ "yesNo": {
336
+ "ta6Ref": "7.7.1"
337
+ }
338
+ }
339
+ }
340
+ }
341
+ }
342
+ }
343
+ },
344
+ "disputesAndComplaints": {
345
+ "ta6Ref": "2",
346
+ "required": [
347
+ "hasDisputesAndComplaints",
348
+ "leadingToDisputesAndComplaints"
349
+ ],
350
+ "properties": {
351
+ "hasDisputesAndComplaints": {
352
+ "ta6Ref": "2.1",
353
+ "discriminator": {
354
+ "propertyName": "yesNo"
355
+ },
356
+ "oneOf": [
357
+ {
358
+ "properties": {
359
+ "yesNo": {
360
+ "enum": [
361
+ "No"
362
+ ]
363
+ }
364
+ }
365
+ },
366
+ {
367
+ "properties": {
368
+ "yesNo": {
369
+ "enum": [
370
+ "Yes"
371
+ ]
372
+ },
373
+ "details": {
374
+ "ta6Ref": "2.1.2"
375
+ }
376
+ },
377
+ "required": [
378
+ "details"
379
+ ]
380
+ }
381
+ ],
382
+ "required": [
383
+ "yesNo"
384
+ ],
385
+ "title": "Have there been any disputes or complaints regarding this property or a property nearby?",
386
+ "properties": {
387
+ "yesNo": {
388
+ "ta6Ref": "2.1.1"
389
+ }
390
+ }
391
+ },
392
+ "leadingToDisputesAndComplaints": {
393
+ "ta6Ref": "2.2",
394
+ "discriminator": {
395
+ "propertyName": "yesNo"
396
+ },
397
+ "oneOf": [
398
+ {
399
+ "properties": {
400
+ "yesNo": {
401
+ "enum": [
402
+ "No"
403
+ ]
404
+ }
405
+ }
406
+ },
407
+ {
408
+ "properties": {
409
+ "yesNo": {
410
+ "enum": [
411
+ "Yes"
412
+ ]
413
+ },
414
+ "details": {
415
+ "ta6Ref": "2.2.2"
416
+ }
417
+ },
418
+ "required": [
419
+ "details"
420
+ ]
421
+ }
422
+ ],
423
+ "required": [
424
+ "yesNo"
425
+ ],
426
+ "properties": {
427
+ "yesNo": {
428
+ "ta6Ref": "2.2.1"
429
+ }
430
+ }
431
+ }
432
+ }
433
+ },
434
+ "alterationsAndChanges": {
435
+ "ta6Ref": "4.1",
436
+ "required": [
437
+ "hasStructuralAlterations",
438
+ "changeOfUse",
439
+ "windowReplacementsSince2002",
440
+ "hasAddedConservatory",
441
+ "worksUnfinished",
442
+ "planningPermissionBreaches",
443
+ "unresolvedPlanningIssues"
444
+ ],
445
+ "properties": {
446
+ "hasStructuralAlterations": {
447
+ "ta6Ref": "4.1a",
448
+ "discriminator": {
449
+ "propertyName": "yesNo"
450
+ },
451
+ "oneOf": [
452
+ {
453
+ "properties": {
454
+ "yesNo": {
455
+ "enum": [
456
+ "No"
457
+ ]
458
+ }
459
+ }
460
+ },
461
+ {
462
+ "properties": {
463
+ "yesNo": {
464
+ "enum": [
465
+ "Yes"
466
+ ]
467
+ },
468
+ "details": {
469
+ "ta6Ref": "4.1a2"
470
+ },
471
+ "buildingRegApproval": {
472
+ "ta6Ref": "4.2",
473
+ "discriminator": {
474
+ "propertyName": "yesNo"
475
+ },
476
+ "oneOf": [
477
+ {
478
+ "properties": {
479
+ "yesNo": {
480
+ "enum": [
481
+ "Yes"
482
+ ]
483
+ },
484
+ "attachments": {
485
+ "ta6Ref": "4.2a"
486
+ }
487
+ },
488
+ "required": [
489
+ "attachments"
490
+ ]
491
+ },
492
+ {
493
+ "properties": {
494
+ "yesNo": {
495
+ "enum": [
496
+ "No",
497
+ "Not required"
498
+ ]
499
+ },
500
+ "details": {
501
+ "ta6Ref": "4.2b"
502
+ }
503
+ },
504
+ "required": [
505
+ "details"
506
+ ]
507
+ }
508
+ ],
509
+ "required": [
510
+ "yesNo"
511
+ ],
512
+ "properties": {
513
+ "yesNo": {
514
+ "ta6Ref": "4.2.1"
515
+ }
516
+ }
517
+ },
518
+ "planningPermission": {
519
+ "ta6Ref": "4.2.1",
520
+ "discriminator": {
521
+ "propertyName": "yesNo"
522
+ },
523
+ "oneOf": [
524
+ {
525
+ "properties": {
526
+ "yesNo": {
527
+ "enum": [
528
+ "Yes"
529
+ ]
530
+ },
531
+ "attachments": {
532
+ "ta6Ref": "4.2a"
533
+ }
534
+ },
535
+ "required": [
536
+ "attachments"
537
+ ]
538
+ },
539
+ {
540
+ "properties": {
541
+ "yesNo": {
542
+ "enum": [
543
+ "No",
544
+ "Not required"
545
+ ]
546
+ },
547
+ "details": {
548
+ "ta6Ref": "4.2b"
549
+ }
550
+ },
551
+ "required": [
552
+ "details"
553
+ ]
554
+ }
555
+ ],
556
+ "required": [
557
+ "yesNo"
558
+ ],
559
+ "properties": {
560
+ "yesNo": {
561
+ "ta6Ref": "4.2.1"
562
+ }
563
+ }
564
+ },
565
+ "listedBuildingConsent": {
566
+ "oneOf": [
567
+ {
568
+ "required": [
569
+ "attachments"
570
+ ]
571
+ }
572
+ ]
573
+ }
574
+ },
575
+ "required": [
576
+ "details"
577
+ ]
578
+ }
579
+ ],
580
+ "required": [
581
+ "yesNo"
582
+ ],
583
+ "properties": {
584
+ "yesNo": {
585
+ "ta6Ref": "4.1a1"
586
+ }
587
+ }
588
+ },
589
+ "changeOfUse": {
590
+ "ta6Ref": "4.1b",
591
+ "discriminator": {
592
+ "propertyName": "yesNo"
593
+ },
594
+ "oneOf": [
595
+ {
596
+ "properties": {
597
+ "yesNo": {
598
+ "enum": [
599
+ "No"
600
+ ]
601
+ }
602
+ }
603
+ },
604
+ {
605
+ "properties": {
606
+ "yesNo": {
607
+ "enum": [
608
+ "Yes"
609
+ ]
610
+ },
611
+ "yearCompleted": {
612
+ "ta6Ref": "4.1b2"
613
+ },
614
+ "buildingRegApproval": {
615
+ "ta6Ref": "4.2",
616
+ "discriminator": {
617
+ "propertyName": "yesNo"
618
+ },
619
+ "oneOf": [
620
+ {
621
+ "properties": {
622
+ "yesNo": {
623
+ "enum": [
624
+ "Yes"
625
+ ]
626
+ },
627
+ "attachments": {
628
+ "ta6Ref": "4.2a"
629
+ }
630
+ },
631
+ "required": [
632
+ "attachments"
633
+ ]
634
+ },
635
+ {
636
+ "properties": {
637
+ "yesNo": {
638
+ "enum": [
639
+ "No",
640
+ "Not required"
641
+ ]
642
+ },
643
+ "details": {
644
+ "ta6Ref": "4.2b"
645
+ }
646
+ },
647
+ "required": [
648
+ "details"
649
+ ]
650
+ }
651
+ ],
652
+ "required": [
653
+ "yesNo"
654
+ ],
655
+ "properties": {
656
+ "yesNo": {
657
+ "ta6Ref": "4.2.1"
658
+ }
659
+ }
660
+ },
661
+ "planningPermission": {
662
+ "ta6Ref": "4.2",
663
+ "discriminator": {
664
+ "propertyName": "yesNo"
665
+ },
666
+ "oneOf": [
667
+ {
668
+ "properties": {
669
+ "yesNo": {
670
+ "enum": [
671
+ "Yes"
672
+ ]
673
+ },
674
+ "attachments": {
675
+ "ta6Ref": "4.2a"
676
+ }
677
+ },
678
+ "required": [
679
+ "attachments"
680
+ ]
681
+ },
682
+ {
683
+ "properties": {
684
+ "yesNo": {
685
+ "enum": [
686
+ "No",
687
+ "Not required"
688
+ ]
689
+ },
690
+ "details": {
691
+ "ta6Ref": "4.2b"
692
+ }
693
+ },
694
+ "required": [
695
+ "details"
696
+ ]
697
+ }
698
+ ],
699
+ "required": [
700
+ "yesNo"
701
+ ],
702
+ "properties": {
703
+ "yesNo": {
704
+ "ta6Ref": "4.2.1"
705
+ }
706
+ }
707
+ }
708
+ },
709
+ "required": [
710
+ "yearCompleted"
711
+ ]
712
+ }
713
+ ],
714
+ "required": [
715
+ "yesNo"
716
+ ],
717
+ "properties": {
718
+ "yesNo": {
719
+ "ta6Ref": "4.1b1"
720
+ }
721
+ }
722
+ },
723
+ "windowReplacementsSince2002": {
724
+ "ta6Ref": "4.1c",
725
+ "discriminator": {
726
+ "propertyName": "yesNo"
727
+ },
728
+ "oneOf": [
729
+ {
730
+ "properties": {
731
+ "yesNo": {
732
+ "enum": [
733
+ "No"
734
+ ]
735
+ }
736
+ }
737
+ },
738
+ {
739
+ "properties": {
740
+ "yesNo": {
741
+ "enum": [
742
+ "Yes"
743
+ ]
744
+ },
745
+ "yearCompleted": {
746
+ "ta6Ref": "4.1c2"
747
+ },
748
+ "buildingRegApproval": {
749
+ "ta6Ref": "4.2",
750
+ "discriminator": {
751
+ "propertyName": "yesNo"
752
+ },
753
+ "oneOf": [
754
+ {
755
+ "properties": {
756
+ "yesNo": {
757
+ "enum": [
758
+ "Yes"
759
+ ]
760
+ },
761
+ "attachments": {
762
+ "ta6Ref": "4.2a"
763
+ }
764
+ },
765
+ "required": [
766
+ "attachments"
767
+ ]
768
+ },
769
+ {
770
+ "properties": {
771
+ "yesNo": {
772
+ "enum": [
773
+ "No",
774
+ "Not required"
775
+ ]
776
+ },
777
+ "details": {
778
+ "ta6Ref": "4.2b"
779
+ }
780
+ },
781
+ "required": [
782
+ "details"
783
+ ]
784
+ }
785
+ ],
786
+ "required": [
787
+ "yesNo"
788
+ ],
789
+ "properties": {
790
+ "yesNo": {
791
+ "ta6Ref": "4.2.1"
792
+ }
793
+ }
794
+ },
795
+ "planningPermission": {
796
+ "ta6Ref": "4.2",
797
+ "discriminator": {
798
+ "propertyName": "yesNo"
799
+ },
800
+ "oneOf": [
801
+ {
802
+ "properties": {
803
+ "yesNo": {
804
+ "enum": [
805
+ "Yes"
806
+ ]
807
+ },
808
+ "attachments": {
809
+ "ta6Ref": "4.2a"
810
+ }
811
+ },
812
+ "required": [
813
+ "attachments"
814
+ ]
815
+ },
816
+ {
817
+ "properties": {
818
+ "yesNo": {
819
+ "enum": [
820
+ "No",
821
+ "Not required"
822
+ ]
823
+ },
824
+ "details": {
825
+ "ta6Ref": "4.2b"
826
+ }
827
+ },
828
+ "required": [
829
+ "details"
830
+ ]
831
+ }
832
+ ],
833
+ "required": [
834
+ "yesNo"
835
+ ],
836
+ "properties": {
837
+ "yesNo": {
838
+ "ta6Ref": "4.2.1"
839
+ }
840
+ }
841
+ }
842
+ },
843
+ "required": [
844
+ "yearCompleted"
845
+ ]
846
+ }
847
+ ],
848
+ "required": [
849
+ "yesNo"
850
+ ],
851
+ "properties": {
852
+ "yesNo": {
853
+ "ta6Ref": "4.1c1"
854
+ }
855
+ }
856
+ },
857
+ "hasAddedConservatory": {
858
+ "ta6Ref": "4.1d",
859
+ "discriminator": {
860
+ "propertyName": "yesNo"
861
+ },
862
+ "oneOf": [
863
+ {
864
+ "properties": {
865
+ "yesNo": {
866
+ "enum": [
867
+ "No"
868
+ ]
869
+ }
870
+ }
871
+ },
872
+ {
873
+ "properties": {
874
+ "yesNo": {
875
+ "enum": [
876
+ "Yes"
877
+ ]
878
+ },
879
+ "yearCompleted": {
880
+ "ta6Ref": "4.1d2"
881
+ },
882
+ "buildingRegApproval": {
883
+ "ta6Ref": "4.2",
884
+ "discriminator": {
885
+ "propertyName": "yesNo"
886
+ },
887
+ "oneOf": [
888
+ {
889
+ "properties": {
890
+ "yesNo": {
891
+ "enum": [
892
+ "Yes"
893
+ ]
894
+ },
895
+ "attachments": {
896
+ "ta6Ref": "4.2a"
897
+ }
898
+ },
899
+ "required": [
900
+ "attachments"
901
+ ]
902
+ },
903
+ {
904
+ "properties": {
905
+ "yesNo": {
906
+ "enum": [
907
+ "No",
908
+ "Not required"
909
+ ]
910
+ },
911
+ "details": {
912
+ "ta6Ref": "4.2b"
913
+ }
914
+ },
915
+ "required": [
916
+ "details"
917
+ ]
918
+ }
919
+ ],
920
+ "required": [
921
+ "yesNo"
922
+ ],
923
+ "properties": {
924
+ "yesNo": {
925
+ "ta6Ref": "4.2.1"
926
+ }
927
+ }
928
+ },
929
+ "planningPermission": {
930
+ "ta6Ref": "4.2",
931
+ "discriminator": {
932
+ "propertyName": "yesNo"
933
+ },
934
+ "oneOf": [
935
+ {
936
+ "properties": {
937
+ "yesNo": {
938
+ "enum": [
939
+ "Yes"
940
+ ]
941
+ },
942
+ "attachments": {
943
+ "ta6Ref": "4.2a"
944
+ }
945
+ },
946
+ "required": [
947
+ "attachments"
948
+ ]
949
+ },
950
+ {
951
+ "properties": {
952
+ "yesNo": {
953
+ "enum": [
954
+ "No",
955
+ "Not required"
956
+ ]
957
+ },
958
+ "details": {
959
+ "ta6Ref": "4.2b"
960
+ }
961
+ },
962
+ "required": [
963
+ "details"
964
+ ]
965
+ }
966
+ ],
967
+ "required": [
968
+ "yesNo"
969
+ ],
970
+ "properties": {
971
+ "yesNo": {
972
+ "ta6Ref": "4.2.1"
973
+ }
974
+ }
975
+ }
976
+ },
977
+ "required": [
978
+ "yearCompleted"
979
+ ]
980
+ }
981
+ ],
982
+ "required": [
983
+ "yesNo"
984
+ ],
985
+ "properties": {
986
+ "yesNo": {
987
+ "ta6Ref": "4.1d1"
988
+ }
989
+ }
990
+ },
991
+ "worksUnfinished": {
992
+ "ta6Ref": "4.3",
993
+ "discriminator": {
994
+ "propertyName": "yesNo"
995
+ },
996
+ "oneOf": [
997
+ {
998
+ "properties": {
999
+ "yesNo": {
1000
+ "enum": [
1001
+ "No"
1002
+ ]
1003
+ }
1004
+ }
1005
+ },
1006
+ {
1007
+ "properties": {
1008
+ "yesNo": {
1009
+ "enum": [
1010
+ "Yes"
1011
+ ]
1012
+ },
1013
+ "details": {
1014
+ "ta6Ref": "4.3.2"
1015
+ }
1016
+ },
1017
+ "required": [
1018
+ "details"
1019
+ ]
1020
+ }
1021
+ ],
1022
+ "required": [
1023
+ "yesNo"
1024
+ ],
1025
+ "properties": {
1026
+ "yesNo": {
1027
+ "ta6Ref": "4.3.1"
1028
+ }
1029
+ }
1030
+ },
1031
+ "planningPermissionBreaches": {
1032
+ "ta6Ref": "4.4",
1033
+ "discriminator": {
1034
+ "propertyName": "yesNo"
1035
+ },
1036
+ "oneOf": [
1037
+ {
1038
+ "properties": {
1039
+ "yesNo": {
1040
+ "enum": [
1041
+ "No"
1042
+ ]
1043
+ }
1044
+ }
1045
+ },
1046
+ {
1047
+ "properties": {
1048
+ "yesNo": {
1049
+ "enum": [
1050
+ "Yes"
1051
+ ]
1052
+ },
1053
+ "details": {
1054
+ "ta6Ref": "4.4.2"
1055
+ }
1056
+ },
1057
+ "required": [
1058
+ "details"
1059
+ ]
1060
+ }
1061
+ ],
1062
+ "required": [
1063
+ "yesNo"
1064
+ ],
1065
+ "properties": {
1066
+ "yesNo": {
1067
+ "ta6Ref": "4.4.1"
1068
+ }
1069
+ }
1070
+ },
1071
+ "unresolvedPlanningIssues": {
1072
+ "ta6Ref": "4.5",
1073
+ "discriminator": {
1074
+ "propertyName": "yesNo"
1075
+ },
1076
+ "oneOf": [
1077
+ {
1078
+ "properties": {
1079
+ "yesNo": {
1080
+ "enum": [
1081
+ "No"
1082
+ ]
1083
+ }
1084
+ }
1085
+ },
1086
+ {
1087
+ "properties": {
1088
+ "yesNo": {
1089
+ "enum": [
1090
+ "Yes"
1091
+ ]
1092
+ },
1093
+ "details": {
1094
+ "ta6Ref": "4.5.2"
1095
+ }
1096
+ },
1097
+ "required": [
1098
+ "details"
1099
+ ]
1100
+ }
1101
+ ],
1102
+ "required": [
1103
+ "yesNo"
1104
+ ],
1105
+ "properties": {
1106
+ "yesNo": {
1107
+ "ta6Ref": "4.5.1"
1108
+ }
1109
+ }
1110
+ }
1111
+ }
1112
+ },
1113
+ "notices": {
1114
+ "ta6Ref": "3",
1115
+ "required": [
1116
+ "neighbourDevelopment",
1117
+ "partyWallAct",
1118
+ "otherNotices"
1119
+ ],
1120
+ "properties": {
1121
+ "neighbourDevelopment": {
1122
+ "ta6Ref": "3.2",
1123
+ "discriminator": {
1124
+ "propertyName": "yesNo"
1125
+ },
1126
+ "oneOf": [
1127
+ {
1128
+ "properties": {
1129
+ "yesNo": {
1130
+ "enum": [
1131
+ "No"
1132
+ ]
1133
+ }
1134
+ }
1135
+ },
1136
+ {
1137
+ "properties": {
1138
+ "yesNo": {
1139
+ "enum": [
1140
+ "Yes"
1141
+ ]
1142
+ },
1143
+ "details": {
1144
+ "ta6Ref": "3.2.2"
1145
+ }
1146
+ },
1147
+ "required": [
1148
+ "details"
1149
+ ]
1150
+ }
1151
+ ],
1152
+ "required": [
1153
+ "yesNo"
1154
+ ],
1155
+ "title": "Is the seller aware of any proposals to develop property or land nearby, or of any proposals to make alterations to buildings nearby?",
1156
+ "properties": {
1157
+ "yesNo": {
1158
+ "ta6Ref": "3.2.1"
1159
+ }
1160
+ }
1161
+ },
1162
+ "planningApplication": {
1163
+ "ta6Ref": "3.1",
1164
+ "discriminator": {
1165
+ "propertyName": "yesNo"
1166
+ },
1167
+ "oneOf": [
1168
+ {
1169
+ "properties": {
1170
+ "yesNo": {
1171
+ "enum": [
1172
+ "No"
1173
+ ]
1174
+ }
1175
+ }
1176
+ },
1177
+ {
1178
+ "properties": {
1179
+ "yesNo": {
1180
+ "enum": [
1181
+ "Yes"
1182
+ ]
1183
+ },
1184
+ "details": {
1185
+ "ta6Ref": "3.1.2"
1186
+ }
1187
+ },
1188
+ "required": [
1189
+ "details"
1190
+ ]
1191
+ }
1192
+ ],
1193
+ "required": [
1194
+ "yesNo"
1195
+ ],
1196
+ "properties": {
1197
+ "yesNo": {
1198
+ "ta6Ref": "3.1.1"
1199
+ }
1200
+ }
1201
+ },
1202
+ "requiredMaintenance": {
1203
+ "ta6Ref": "3.1",
1204
+ "discriminator": {
1205
+ "propertyName": "yesNo"
1206
+ },
1207
+ "oneOf": [
1208
+ {
1209
+ "properties": {
1210
+ "yesNo": {
1211
+ "enum": [
1212
+ "No"
1213
+ ]
1214
+ }
1215
+ }
1216
+ },
1217
+ {
1218
+ "properties": {
1219
+ "yesNo": {
1220
+ "enum": [
1221
+ "Yes"
1222
+ ]
1223
+ },
1224
+ "details": {
1225
+ "ta6Ref": "3.1.2"
1226
+ }
1227
+ },
1228
+ "required": [
1229
+ "details"
1230
+ ]
1231
+ }
1232
+ ],
1233
+ "required": [
1234
+ "yesNo"
1235
+ ],
1236
+ "properties": {
1237
+ "yesNo": {
1238
+ "ta6Ref": "3.1.1"
1239
+ }
1240
+ }
1241
+ },
1242
+ "listedBuildingApplication": {
1243
+ "ta6Ref": "3.1",
1244
+ "discriminator": {
1245
+ "propertyName": "yesNo"
1246
+ },
1247
+ "oneOf": [
1248
+ {
1249
+ "properties": {
1250
+ "yesNo": {
1251
+ "enum": [
1252
+ "No"
1253
+ ]
1254
+ }
1255
+ }
1256
+ },
1257
+ {
1258
+ "properties": {
1259
+ "yesNo": {
1260
+ "enum": [
1261
+ "Yes"
1262
+ ]
1263
+ },
1264
+ "details": {
1265
+ "ta6Ref": "3.1.2"
1266
+ }
1267
+ },
1268
+ "required": [
1269
+ "details"
1270
+ ]
1271
+ }
1272
+ ],
1273
+ "required": [
1274
+ "yesNo"
1275
+ ],
1276
+ "properties": {
1277
+ "yesNo": {
1278
+ "ta6Ref": "3.1.1"
1279
+ }
1280
+ }
1281
+ },
1282
+ "infrastructureProject": {
1283
+ "ta6Ref": "3.1",
1284
+ "discriminator": {
1285
+ "propertyName": "yesNo"
1286
+ },
1287
+ "oneOf": [
1288
+ {
1289
+ "properties": {
1290
+ "yesNo": {
1291
+ "enum": [
1292
+ "No"
1293
+ ]
1294
+ }
1295
+ }
1296
+ },
1297
+ {
1298
+ "properties": {
1299
+ "yesNo": {
1300
+ "enum": [
1301
+ "Yes"
1302
+ ]
1303
+ },
1304
+ "details": {
1305
+ "ta6Ref": "3.1.2"
1306
+ }
1307
+ },
1308
+ "required": [
1309
+ "details"
1310
+ ]
1311
+ }
1312
+ ],
1313
+ "required": [
1314
+ "yesNo"
1315
+ ],
1316
+ "properties": {
1317
+ "yesNo": {
1318
+ "ta6Ref": "3.1.1"
1319
+ }
1320
+ }
1321
+ },
1322
+ "partyWallAct": {
1323
+ "ta6Ref": "1.6",
1324
+ "discriminator": {
1325
+ "propertyName": "yesNo"
1326
+ },
1327
+ "oneOf": [
1328
+ {
1329
+ "properties": {
1330
+ "yesNo": {
1331
+ "enum": [
1332
+ "No"
1333
+ ]
1334
+ }
1335
+ }
1336
+ },
1337
+ {
1338
+ "properties": {
1339
+ "yesNo": {
1340
+ "enum": [
1341
+ "Yes"
1342
+ ]
1343
+ },
1344
+ "details": {
1345
+ "ta6Ref": "1.6.2"
1346
+ },
1347
+ "attachments": {
1348
+ "ta6Ref": "1.6.3"
1349
+ }
1350
+ },
1351
+ "required": [
1352
+ "details"
1353
+ ]
1354
+ }
1355
+ ],
1356
+ "required": [
1357
+ "yesNo"
1358
+ ],
1359
+ "properties": {
1360
+ "yesNo": {
1361
+ "ta6Ref": "1.6.1"
1362
+ }
1363
+ }
1364
+ },
1365
+ "otherNotices": {
1366
+ "ta6Ref": "3.1",
1367
+ "discriminator": {
1368
+ "propertyName": "yesNo"
1369
+ },
1370
+ "oneOf": [
1371
+ {
1372
+ "properties": {
1373
+ "yesNo": {
1374
+ "enum": [
1375
+ "No"
1376
+ ]
1377
+ }
1378
+ }
1379
+ },
1380
+ {
1381
+ "properties": {
1382
+ "yesNo": {
1383
+ "enum": [
1384
+ "Yes"
1385
+ ]
1386
+ },
1387
+ "details": {
1388
+ "ta6Ref": "3.1.2"
1389
+ }
1390
+ },
1391
+ "required": [
1392
+ "details"
1393
+ ]
1394
+ }
1395
+ ],
1396
+ "required": [
1397
+ "yesNo"
1398
+ ],
1399
+ "properties": {
1400
+ "yesNo": {
1401
+ "ta6Ref": "3.1.1"
1402
+ }
1403
+ }
1404
+ }
1405
+ }
1406
+ },
1407
+ "specialistIssues": {
1408
+ "ta6Ref": "7.8",
1409
+ "required": [
1410
+ "japaneseKnotweed"
1411
+ ],
1412
+ "properties": {
1413
+ "japaneseKnotweed": {
1414
+ "ta6Ref": "7.8",
1415
+ "discriminator": {
1416
+ "propertyName": "yesNo"
1417
+ },
1418
+ "oneOf": [
1419
+ {
1420
+ "properties": {
1421
+ "yesNo": {
1422
+ "enum": [
1423
+ "No",
1424
+ "Not known"
1425
+ ]
1426
+ }
1427
+ }
1428
+ },
1429
+ {
1430
+ "properties": {
1431
+ "yesNo": {
1432
+ "enum": [
1433
+ "Yes"
1434
+ ]
1435
+ },
1436
+ "managementPlanInPlace": {
1437
+ "ta6Ref": "7.8.2"
1438
+ }
1439
+ },
1440
+ "required": [
1441
+ "managementPlanInPlace"
1442
+ ],
1443
+ "oneOf": [
1444
+ null,
1445
+ {
1446
+ "required": [
1447
+ "attachments"
1448
+ ],
1449
+ "properties": {
1450
+ "attachments": {
1451
+ "ta6Ref": "7.8.3"
1452
+ }
1453
+ }
1454
+ }
1455
+ ]
1456
+ }
1457
+ ],
1458
+ "required": [
1459
+ "yesNo"
1460
+ ],
1461
+ "properties": {
1462
+ "yesNo": {
1463
+ "ta6Ref": "7.8.1",
1464
+ "title": "Is the property affected by Japanese knotweed?"
1465
+ }
1466
+ }
1467
+ }
1468
+ }
1469
+ },
1470
+ "electricity": {
1471
+ "ta6Ref": "13.1",
1472
+ "required": [
1473
+ "mainsElectricity",
1474
+ "solarPanels"
1475
+ ],
1476
+ "properties": {
1477
+ "mainsElectricity": {
1478
+ "ta6Ref": "13.1",
1479
+ "discriminator": {
1480
+ "propertyName": "yesNo"
1481
+ },
1482
+ "oneOf": [
1483
+ {
1484
+ "properties": {
1485
+ "yesNo": {
1486
+ "enum": [
1487
+ "No"
1488
+ ]
1489
+ }
1490
+ }
1491
+ },
1492
+ {
1493
+ "properties": {
1494
+ "yesNo": {
1495
+ "enum": [
1496
+ "Yes"
1497
+ ]
1498
+ },
1499
+ "supplier": {
1500
+ "ta6Ref": "13.1.2"
1501
+ },
1502
+ "electricityMeter": {
1503
+ "ta6Ref": "13.1b",
1504
+ "required": [
1505
+ "location"
1506
+ ],
1507
+ "properties": {
1508
+ "location": {
1509
+ "ta6Ref": "13.1b1"
1510
+ }
1511
+ }
1512
+ }
1513
+ },
1514
+ "required": [
1515
+ "supplier",
1516
+ "electricityMeter"
1517
+ ]
1518
+ },
1519
+ {
1520
+ "properties": {
1521
+ "yesNo": {
1522
+ "enum": [
1523
+ "To be connected"
1524
+ ]
1525
+ },
1526
+ "supplier": {
1527
+ "ta6Ref": "13.1.2"
1528
+ }
1529
+ }
1530
+ }
1531
+ ],
1532
+ "required": [
1533
+ "yesNo"
1534
+ ],
1535
+ "properties": {
1536
+ "yesNo": {
1537
+ "ta6Ref": "13.1.1",
1538
+ "enum": [
1539
+ "Yes",
1540
+ "No"
1541
+ ]
1542
+ }
1543
+ }
1544
+ },
1545
+ "solarPanels": {
1546
+ "ta6Ref": "4.6",
1547
+ "discriminator": {
1548
+ "propertyName": "yesNo"
1549
+ },
1550
+ "oneOf": [
1551
+ {
1552
+ "properties": {
1553
+ "yesNo": {
1554
+ "enum": [
1555
+ "No"
1556
+ ]
1557
+ }
1558
+ }
1559
+ },
1560
+ {
1561
+ "properties": {
1562
+ "yesNo": {
1563
+ "enum": [
1564
+ "Yes"
1565
+ ]
1566
+ },
1567
+ "yearInstalled": {
1568
+ "ta6Ref": "4.6a"
1569
+ },
1570
+ "panelsOwnedOutright": {
1571
+ "ta6Ref": "4.6b",
1572
+ "discriminator": {
1573
+ "propertyName": "yesNo"
1574
+ },
1575
+ "oneOf": [
1576
+ {
1577
+ "properties": {
1578
+ "yesNo": {
1579
+ "enum": [
1580
+ "Yes"
1581
+ ]
1582
+ }
1583
+ }
1584
+ },
1585
+ {
1586
+ "properties": {
1587
+ "yesNo": {
1588
+ "enum": [
1589
+ "No"
1590
+ ]
1591
+ }
1592
+ }
1593
+ }
1594
+ ],
1595
+ "required": [
1596
+ "yesNo"
1597
+ ],
1598
+ "properties": {
1599
+ "yesNo": {
1600
+ "ta6Ref": "4.6b1"
1601
+ }
1602
+ }
1603
+ },
1604
+ "panelProviderLease": {
1605
+ "ta6Ref": "4.6c",
1606
+ "discriminator": {
1607
+ "propertyName": "yesNo"
1608
+ },
1609
+ "oneOf": [
1610
+ {
1611
+ "properties": {
1612
+ "yesNo": {
1613
+ "enum": [
1614
+ "No"
1615
+ ]
1616
+ }
1617
+ }
1618
+ },
1619
+ {
1620
+ "properties": {
1621
+ "yesNo": {
1622
+ "enum": [
1623
+ "Yes"
1624
+ ]
1625
+ },
1626
+ "attachments": {
1627
+ "ta6Ref": "4.6c2"
1628
+ }
1629
+ },
1630
+ "required": [
1631
+ "attachments"
1632
+ ]
1633
+ }
1634
+ ],
1635
+ "required": [
1636
+ "yesNo"
1637
+ ],
1638
+ "properties": {
1639
+ "yesNo": {
1640
+ "ta6Ref": "4.6c1"
1641
+ }
1642
+ }
1643
+ }
1644
+ },
1645
+ "required": [
1646
+ "yearInstalled",
1647
+ "panelsOwnedOutright",
1648
+ "panelProviderLease"
1649
+ ]
1650
+ },
1651
+ {
1652
+ "properties": {
1653
+ "yesNo": {
1654
+ "enum": [
1655
+ "To be connected"
1656
+ ]
1657
+ }
1658
+ }
1659
+ }
1660
+ ],
1661
+ "required": [
1662
+ "yesNo"
1663
+ ],
1664
+ "properties": {
1665
+ "yesNo": {
1666
+ "ta6Ref": "4.6",
1667
+ "enum": [
1668
+ "Yes",
1669
+ "No"
1670
+ ]
1671
+ }
1672
+ }
1673
+ }
1674
+ }
1675
+ },
1676
+ "waterAndDrainage": {
1677
+ "ta6Ref": "13",
1678
+ "required": [
1679
+ "water",
1680
+ "drainage"
1681
+ ],
1682
+ "properties": {
1683
+ "water": {
1684
+ "ta6Ref": "13",
1685
+ "required": [
1686
+ "mainsWater"
1687
+ ],
1688
+ "properties": {
1689
+ "mainsWater": {
1690
+ "ta6Ref": "13.3",
1691
+ "discriminator": {
1692
+ "propertyName": "yesNo"
1693
+ },
1694
+ "oneOf": [
1695
+ {
1696
+ "properties": {
1697
+ "yesNo": {
1698
+ "enum": [
1699
+ "No"
1700
+ ]
1701
+ }
1702
+ }
1703
+ },
1704
+ {
1705
+ "properties": {
1706
+ "yesNo": {
1707
+ "enum": [
1708
+ "Yes"
1709
+ ]
1710
+ },
1711
+ "supplier": {
1712
+ "ta6Ref": "13.3.2"
1713
+ },
1714
+ "stopcock": {
1715
+ "ta6Ref": "13.3b",
1716
+ "properties": {
1717
+ "location": {
1718
+ "ta6Ref": "13.3b1"
1719
+ }
1720
+ }
1721
+ },
1722
+ "waterMeter": {
1723
+ "ta6Ref": "13.3b",
1724
+ "discriminator": {
1725
+ "propertyName": "isSupplyMetered"
1726
+ },
1727
+ "oneOf": [
1728
+ {
1729
+ "properties": {
1730
+ "isSupplyMetered": {
1731
+ "enum": [
1732
+ "No"
1733
+ ]
1734
+ }
1735
+ }
1736
+ },
1737
+ {
1738
+ "properties": {
1739
+ "isSupplyMetered": {
1740
+ "enum": [
1741
+ "Yes"
1742
+ ]
1743
+ },
1744
+ "location": {
1745
+ "ta6Ref": "13.3b2"
1746
+ }
1747
+ },
1748
+ "required": [
1749
+ "location"
1750
+ ]
1751
+ }
1752
+ ],
1753
+ "required": [
1754
+ "isSupplyMetered"
1755
+ ],
1756
+ "properties": {
1757
+ "isSupplyMetered": {
1758
+ "ta6Ref": "13.3b"
1759
+ }
1760
+ }
1761
+ }
1762
+ },
1763
+ "required": [
1764
+ "supplier",
1765
+ "stopcock",
1766
+ "waterMeter"
1767
+ ]
1768
+ },
1769
+ {
1770
+ "properties": {
1771
+ "yesNo": {
1772
+ "enum": [
1773
+ "To be connected"
1774
+ ]
1775
+ },
1776
+ "supplier": {
1777
+ "ta6Ref": "13.3.2"
1778
+ }
1779
+ }
1780
+ }
1781
+ ],
1782
+ "required": [
1783
+ "yesNo"
1784
+ ],
1785
+ "properties": {
1786
+ "yesNo": {
1787
+ "ta6Ref": "13.3.1",
1788
+ "enum": [
1789
+ "Yes",
1790
+ "No"
1791
+ ]
1792
+ }
1793
+ }
1794
+ }
1795
+ }
1796
+ },
1797
+ "drainage": {
1798
+ "ta6Ref": "12.4",
1799
+ "required": [
1800
+ "mainsSurfaceWaterDrainage",
1801
+ "mainsFoulDrainage"
1802
+ ],
1803
+ "properties": {
1804
+ "mainsSurfaceWaterDrainage": {
1805
+ "ta6Ref": "12.4b",
1806
+ "discriminator": {
1807
+ "propertyName": "yesNo"
1808
+ },
1809
+ "oneOf": [
1810
+ {
1811
+ "properties": {
1812
+ "yesNo": {
1813
+ "enum": [
1814
+ "No",
1815
+ "Not known"
1816
+ ]
1817
+ }
1818
+ }
1819
+ },
1820
+ {
1821
+ "properties": {
1822
+ "yesNo": {
1823
+ "enum": [
1824
+ "Yes"
1825
+ ]
1826
+ }
1827
+ }
1828
+ },
1829
+ {
1830
+ "properties": {
1831
+ "yesNo": {
1832
+ "enum": [
1833
+ "To be connected"
1834
+ ]
1835
+ }
1836
+ }
1837
+ }
1838
+ ],
1839
+ "required": [
1840
+ "yesNo"
1841
+ ],
1842
+ "properties": {
1843
+ "yesNo": {
1844
+ "ta6Ref": "12.4b1",
1845
+ "enum": [
1846
+ "Yes",
1847
+ "No",
1848
+ "Not known"
1849
+ ]
1850
+ }
1851
+ }
1852
+ },
1853
+ "mainsFoulDrainage": {
1854
+ "ta6Ref": "12.4a",
1855
+ "discriminator": {
1856
+ "propertyName": "yesNo"
1857
+ },
1858
+ "oneOf": [
1859
+ {
1860
+ "properties": {
1861
+ "yesNo": {
1862
+ "enum": [
1863
+ "Yes"
1864
+ ]
1865
+ },
1866
+ "supplier": {
1867
+ "ta6Ref": "13.4.2"
1868
+ }
1869
+ },
1870
+ "required": [
1871
+ "supplier"
1872
+ ]
1873
+ },
1874
+ {
1875
+ "properties": {
1876
+ "yesNo": {
1877
+ "enum": [
1878
+ "To be connected"
1879
+ ]
1880
+ },
1881
+ "supplier": {
1882
+ "ta6Ref": "13.4.2"
1883
+ }
1884
+ }
1885
+ },
1886
+ {
1887
+ "properties": {
1888
+ "yesNo": {
1889
+ "enum": [
1890
+ "No",
1891
+ "Not known"
1892
+ ]
1893
+ },
1894
+ "offMainsDrainageSystem": {
1895
+ "ta6Ref": "12.4a",
1896
+ "discriminator": {
1897
+ "propertyName": "offMainsDrainageSystemType"
1898
+ },
1899
+ "oneOf": [
1900
+ {
1901
+ "properties": {
1902
+ "offMainsDrainageSystemType": {
1903
+ "enum": [
1904
+ "Sustainable Drainage System"
1905
+ ]
1906
+ }
1907
+ }
1908
+ },
1909
+ {
1910
+ "properties": {
1911
+ "offMainsDrainageSystemType": {
1912
+ "enum": [
1913
+ "Septic tank"
1914
+ ]
1915
+ },
1916
+ "dateReplaced": {
1917
+ "ta6Ref": "12.5.1"
1918
+ },
1919
+ "dateLastEmptied": {
1920
+ "ta6Ref": "12.7"
1921
+ }
1922
+ },
1923
+ "required": [
1924
+ "dateReplaced",
1925
+ "dateLastEmptied"
1926
+ ]
1927
+ },
1928
+ {
1929
+ "properties": {
1930
+ "offMainsDrainageSystemType": {
1931
+ "enum": [
1932
+ "Cesspit"
1933
+ ]
1934
+ },
1935
+ "dateLastEmptied": {
1936
+ "ta6Ref": "12.7"
1937
+ }
1938
+ },
1939
+ "required": [
1940
+ "dateLastEmptied"
1941
+ ]
1942
+ },
1943
+ {
1944
+ "properties": {
1945
+ "offMainsDrainageSystemType": {
1946
+ "enum": [
1947
+ "Sewerage treatment plant"
1948
+ ]
1949
+ },
1950
+ "dateInstalled": {
1951
+ "ta6Ref": "12.9"
1952
+ },
1953
+ "dateLastServiced": {
1954
+ "ta6Ref": "12.8"
1955
+ }
1956
+ },
1957
+ "required": [
1958
+ "dateInstalled",
1959
+ "dateLastServiced"
1960
+ ]
1961
+ },
1962
+ {
1963
+ "properties": {
1964
+ "offMainsDrainageSystemType": {
1965
+ "enum": [
1966
+ "Other",
1967
+ "Not known"
1968
+ ]
1969
+ }
1970
+ }
1971
+ }
1972
+ ],
1973
+ "required": [
1974
+ "offMainsDrainageSystemType",
1975
+ "otherConnectedProperties",
1976
+ "plantOnOtherLand"
1977
+ ],
1978
+ "properties": {
1979
+ "offMainsDrainageSystemType": {
1980
+ "ta6Ref": "12.5"
1981
+ },
1982
+ "otherConnectedProperties": {
1983
+ "ta6Ref": "12.6",
1984
+ "discriminator": {
1985
+ "propertyName": "yesNo"
1986
+ },
1987
+ "oneOf": [
1988
+ {
1989
+ "properties": {
1990
+ "yesNo": {
1991
+ "enum": [
1992
+ "No"
1993
+ ]
1994
+ }
1995
+ }
1996
+ },
1997
+ {
1998
+ "properties": {
1999
+ "yesNo": {
2000
+ "enum": [
2001
+ "Yes"
2002
+ ]
2003
+ },
2004
+ "numberOfPropertiesSharing": {
2005
+ "ta6Ref": "12.6.2"
2006
+ }
2007
+ },
2008
+ "required": [
2009
+ "numberOfPropertiesSharing"
2010
+ ]
2011
+ }
2012
+ ],
2013
+ "required": [
2014
+ "yesNo"
2015
+ ],
2016
+ "properties": {
2017
+ "yesNo": {
2018
+ "ta6Ref": "12.6.1"
2019
+ }
2020
+ }
2021
+ },
2022
+ "plantOnOtherLand": {
2023
+ "ta6Ref": "12.10",
2024
+ "discriminator": {
2025
+ "propertyName": "yesNo"
2026
+ },
2027
+ "oneOf": [
2028
+ {
2029
+ "properties": {
2030
+ "yesNo": {
2031
+ "enum": [
2032
+ "No"
2033
+ ]
2034
+ }
2035
+ }
2036
+ },
2037
+ {
2038
+ "properties": {
2039
+ "yesNo": {
2040
+ "enum": [
2041
+ "Yes"
2042
+ ]
2043
+ },
2044
+ "attachments": {
2045
+ "ta6Ref": "12.10.2"
2046
+ }
2047
+ },
2048
+ "required": [
2049
+ "attachments"
2050
+ ]
2051
+ }
2052
+ ],
2053
+ "required": [
2054
+ "yesNo"
2055
+ ],
2056
+ "title": "Is any part of the septic tank, sewage treatment plant (including any soakaway or outfall) or cesspool, or the access to it, outside the boundary of the property?",
2057
+ "properties": {
2058
+ "yesNo": {
2059
+ "ta6Ref": "12.10.1"
2060
+ }
2061
+ }
2062
+ }
2063
+ }
2064
+ }
2065
+ },
2066
+ "required": [
2067
+ "offMainsDrainageSystem"
2068
+ ]
2069
+ }
2070
+ ],
2071
+ "required": [
2072
+ "yesNo"
2073
+ ],
2074
+ "properties": {
2075
+ "yesNo": {
2076
+ "ta6Ref": "12.4a1",
2077
+ "enum": [
2078
+ "Yes",
2079
+ "No",
2080
+ "Not known"
2081
+ ]
2082
+ }
2083
+ }
2084
+ }
2085
+ }
2086
+ }
2087
+ }
2088
+ },
2089
+ "heating": {
2090
+ "ta6Ref": "12.3",
2091
+ "required": [
2092
+ "heatingSystem"
2093
+ ],
2094
+ "properties": {
2095
+ "heatingSystem": {
2096
+ "ta6Ref": "12.3.1",
2097
+ "discriminator": {
2098
+ "propertyName": "heatingType"
2099
+ },
2100
+ "oneOf": [
2101
+ {
2102
+ "properties": {
2103
+ "heatingType": {
2104
+ "enum": [
2105
+ "None",
2106
+ "Room heaters only"
2107
+ ]
2108
+ }
2109
+ }
2110
+ },
2111
+ {
2112
+ "properties": {
2113
+ "heatingType": {
2114
+ "enum": [
2115
+ "Central heating"
2116
+ ]
2117
+ },
2118
+ "centralHeatingDetails": {
2119
+ "ta6Ref": "12.3.2",
2120
+ "required": [
2121
+ "centralHeatingFuel",
2122
+ "centralHeatingInstalled",
2123
+ "boilerInstallationCertificate",
2124
+ "heatingLastServicedDate",
2125
+ "heatingLastServicedReport",
2126
+ "heatingInGoodWorkingOrder"
2127
+ ],
2128
+ "properties": {
2129
+ "centralHeatingFuel": {
2130
+ "ta6Ref": "12.3.3",
2131
+ "discriminator": {
2132
+ "propertyName": "centralHeatingFuelType"
2133
+ },
2134
+ "oneOf": [
2135
+ {
2136
+ "properties": {
2137
+ "centralHeatingFuelType": {
2138
+ "enum": [
2139
+ "Mains gas"
2140
+ ]
2141
+ },
2142
+ "supplier": {
2143
+ "ta6Ref": "13.2b"
2144
+ },
2145
+ "gasMeter": {
2146
+ "ta6Ref": "13.2c",
2147
+ "required": [
2148
+ "location"
2149
+ ],
2150
+ "properties": {
2151
+ "location": {
2152
+ "ta6Ref": "13.2c1"
2153
+ }
2154
+ }
2155
+ }
2156
+ },
2157
+ "required": [
2158
+ "supplier",
2159
+ "gasMeter"
2160
+ ]
2161
+ },
2162
+ {
2163
+ "properties": {
2164
+ "centralHeatingFuelType": {
2165
+ "enum": [
2166
+ "Electricity"
2167
+ ]
2168
+ }
2169
+ }
2170
+ },
2171
+ {
2172
+ "properties": {
2173
+ "centralHeatingFuelType": {
2174
+ "enum": [
2175
+ "Oil",
2176
+ "LPG",
2177
+ "Biomass"
2178
+ ]
2179
+ }
2180
+ }
2181
+ },
2182
+ {
2183
+ "properties": {
2184
+ "centralHeatingFuelType": {
2185
+ "enum": [
2186
+ "Other"
2187
+ ]
2188
+ },
2189
+ "otherCentralHeatingFuelType": {
2190
+ "ta6Ref": "12.3a2"
2191
+ }
2192
+ },
2193
+ "required": [
2194
+ "otherCentralHeatingFuelType"
2195
+ ]
2196
+ }
2197
+ ],
2198
+ "required": [
2199
+ "centralHeatingFuelType"
2200
+ ],
2201
+ "properties": {
2202
+ "centralHeatingFuelType": {
2203
+ "ta6Ref": "12.3a1"
2204
+ }
2205
+ }
2206
+ },
2207
+ "centralHeatingInstalled": {
2208
+ "ta6Ref": "12.3b1"
2209
+ },
2210
+ "boilerInstallationCertificate": {
2211
+ "ta6Ref": "12.3b2",
2212
+ "discriminator": {
2213
+ "propertyName": "yesNo"
2214
+ },
2215
+ "oneOf": [
2216
+ {
2217
+ "properties": {
2218
+ "yesNo": {
2219
+ "enum": [
2220
+ "No"
2221
+ ]
2222
+ }
2223
+ }
2224
+ },
2225
+ {
2226
+ "properties": {
2227
+ "yesNo": {
2228
+ "enum": [
2229
+ "Yes"
2230
+ ]
2231
+ },
2232
+ "attachments": {
2233
+ "ta6Ref": "12.3b4"
2234
+ }
2235
+ },
2236
+ "required": [
2237
+ "attachments"
2238
+ ]
2239
+ }
2240
+ ],
2241
+ "required": [
2242
+ "yesNo"
2243
+ ],
2244
+ "properties": {
2245
+ "yesNo": {
2246
+ "ta6Ref": "12.3b3"
2247
+ }
2248
+ }
2249
+ },
2250
+ "heatingLastServicedDate": {
2251
+ "ta6Ref": "12.3d1"
2252
+ },
2253
+ "heatingLastServicedReport": {
2254
+ "ta6Ref": "12.3d2"
2255
+ },
2256
+ "heatingInGoodWorkingOrder": {
2257
+ "ta6Ref": "12.3c",
2258
+ "discriminator": {
2259
+ "propertyName": "yesNo"
2260
+ },
2261
+ "oneOf": [
2262
+ {
2263
+ "properties": {
2264
+ "yesNo": {
2265
+ "enum": [
2266
+ "Yes",
2267
+ "Not known"
2268
+ ]
2269
+ }
2270
+ }
2271
+ },
2272
+ {
2273
+ "properties": {
2274
+ "yesNo": {
2275
+ "enum": [
2276
+ "No"
2277
+ ]
2278
+ }
2279
+ }
2280
+ }
2281
+ ],
2282
+ "required": [
2283
+ "yesNo"
2284
+ ],
2285
+ "properties": {
2286
+ "yesNo": {
2287
+ "ta6Ref": "12.3c1",
2288
+ "enum": [
2289
+ "Yes",
2290
+ "No"
2291
+ ]
2292
+ }
2293
+ }
2294
+ }
2295
+ }
2296
+ }
2297
+ },
2298
+ "required": [
2299
+ "centralHeatingDetails"
2300
+ ]
2301
+ },
2302
+ {
2303
+ "properties": {
2304
+ "heatingType": {
2305
+ "enum": [
2306
+ "Communal heating system"
2307
+ ]
2308
+ }
2309
+ }
2310
+ }
2311
+ ],
2312
+ "required": [
2313
+ "heatingType"
2314
+ ],
2315
+ "properties": {
2316
+ "heatingType": {
2317
+ "ta6Ref": "12.3.1"
2318
+ }
2319
+ }
2320
+ }
2321
+ }
2322
+ },
2323
+ "connectivity": {
2324
+ "ta6Ref": "13",
2325
+ "required": [
2326
+ "telephone",
2327
+ "cableSatelliteTV"
2328
+ ],
2329
+ "properties": {
2330
+ "telephone": {
2331
+ "ta6Ref": "13.5",
2332
+ "discriminator": {
2333
+ "propertyName": "yesNo"
2334
+ },
2335
+ "oneOf": [
2336
+ {
2337
+ "properties": {
2338
+ "yesNo": {
2339
+ "enum": [
2340
+ "No"
2341
+ ]
2342
+ }
2343
+ }
2344
+ },
2345
+ {
2346
+ "properties": {
2347
+ "yesNo": {
2348
+ "enum": [
2349
+ "Yes"
2350
+ ]
2351
+ },
2352
+ "supplier": {
2353
+ "ta6Ref": "13.5.2"
2354
+ }
2355
+ },
2356
+ "required": [
2357
+ "supplier"
2358
+ ]
2359
+ },
2360
+ {
2361
+ "properties": {
2362
+ "yesNo": {
2363
+ "enum": [
2364
+ "To be connected"
2365
+ ]
2366
+ },
2367
+ "supplier": {
2368
+ "ta6Ref": "13.5.2"
2369
+ }
2370
+ }
2371
+ }
2372
+ ],
2373
+ "required": [
2374
+ "yesNo"
2375
+ ],
2376
+ "properties": {
2377
+ "yesNo": {
2378
+ "ta6Ref": "13.5.1",
2379
+ "enum": [
2380
+ "Yes",
2381
+ "No"
2382
+ ]
2383
+ }
2384
+ }
2385
+ },
2386
+ "cableSatelliteTV": {
2387
+ "ta6Ref": "13.6",
2388
+ "discriminator": {
2389
+ "propertyName": "yesNo"
2390
+ },
2391
+ "oneOf": [
2392
+ {
2393
+ "properties": {
2394
+ "yesNo": {
2395
+ "enum": [
2396
+ "No"
2397
+ ]
2398
+ }
2399
+ }
2400
+ },
2401
+ {
2402
+ "properties": {
2403
+ "yesNo": {
2404
+ "enum": [
2405
+ "Yes"
2406
+ ]
2407
+ },
2408
+ "supplier": {
2409
+ "ta6Ref": "13.6.2"
2410
+ }
2411
+ },
2412
+ "required": [
2413
+ "supplier"
2414
+ ]
2415
+ },
2416
+ {
2417
+ "properties": {
2418
+ "yesNo": {
2419
+ "enum": [
2420
+ "To be connected"
2421
+ ]
2422
+ }
2423
+ }
2424
+ }
2425
+ ],
2426
+ "required": [
2427
+ "yesNo"
2428
+ ],
2429
+ "properties": {
2430
+ "yesNo": {
2431
+ "ta6Ref": "13.6.1",
2432
+ "enum": [
2433
+ "Yes",
2434
+ "No"
2435
+ ]
2436
+ }
2437
+ }
2438
+ }
2439
+ }
2440
+ },
2441
+ "insurance": {
2442
+ "ta6Ref": "6",
2443
+ "discriminator": {
2444
+ "propertyName": "isInsured"
2445
+ },
2446
+ "oneOf": [
2447
+ {
2448
+ "properties": {
2449
+ "isInsured": {
2450
+ "enum": [
2451
+ "No"
2452
+ ]
2453
+ },
2454
+ "details": {
2455
+ "ta6Ref": "6.2"
2456
+ },
2457
+ "landlordInsuresIfFlat": {
2458
+ "ta6Ref": "6.3"
2459
+ }
2460
+ },
2461
+ "required": [
2462
+ "details",
2463
+ "landlordInsuresIfFlat"
2464
+ ]
2465
+ },
2466
+ {
2467
+ "properties": {
2468
+ "isInsured": {
2469
+ "enum": [
2470
+ "Yes"
2471
+ ]
2472
+ },
2473
+ "insuranceClaims": {
2474
+ "ta6Ref": "6.5",
2475
+ "discriminator": {
2476
+ "propertyName": "yesNo"
2477
+ },
2478
+ "oneOf": [
2479
+ {
2480
+ "properties": {
2481
+ "yesNo": {
2482
+ "enum": [
2483
+ "No"
2484
+ ]
2485
+ }
2486
+ }
2487
+ },
2488
+ {
2489
+ "properties": {
2490
+ "yesNo": {
2491
+ "enum": [
2492
+ "Yes"
2493
+ ]
2494
+ },
2495
+ "details": {
2496
+ "ta6Ref": "6.5.2"
2497
+ }
2498
+ },
2499
+ "required": [
2500
+ "details"
2501
+ ]
2502
+ }
2503
+ ],
2504
+ "required": [
2505
+ "yesNo"
2506
+ ],
2507
+ "properties": {
2508
+ "yesNo": {
2509
+ "ta6Ref": "6.5.1"
2510
+ }
2511
+ }
2512
+ }
2513
+ },
2514
+ "required": [
2515
+ "insuranceClaims"
2516
+ ]
2517
+ }
2518
+ ],
2519
+ "required": [
2520
+ "difficultiesObtainingInsurance",
2521
+ "isInsured"
2522
+ ],
2523
+ "properties": {
2524
+ "difficultiesObtainingInsurance": {
2525
+ "ta6Ref": "6.4",
2526
+ "required": [
2527
+ "abnormalRiseInPremiums",
2528
+ "subjectToHighExcesses",
2529
+ "subjectToUnusualConditions",
2530
+ "refused"
2531
+ ],
2532
+ "title": "Has any buildings insurance taken out by the seller ever been:",
2533
+ "properties": {
2534
+ "abnormalRiseInPremiums": {
2535
+ "ta6Ref": "6.4a",
2536
+ "discriminator": {
2537
+ "propertyName": "yesNo"
2538
+ },
2539
+ "oneOf": [
2540
+ {
2541
+ "properties": {
2542
+ "yesNo": {
2543
+ "enum": [
2544
+ "No"
2545
+ ]
2546
+ }
2547
+ }
2548
+ },
2549
+ {
2550
+ "properties": {
2551
+ "yesNo": {
2552
+ "enum": [
2553
+ "Yes"
2554
+ ]
2555
+ },
2556
+ "details": {
2557
+ "ta6Ref": "6.4.2"
2558
+ }
2559
+ },
2560
+ "required": [
2561
+ "details"
2562
+ ]
2563
+ }
2564
+ ],
2565
+ "required": [
2566
+ "yesNo"
2567
+ ],
2568
+ "properties": {
2569
+ "yesNo": {
2570
+ "ta6Ref": "6.4a1"
2571
+ }
2572
+ }
2573
+ },
2574
+ "subjectToHighExcesses": {
2575
+ "ta6Ref": "6.4b",
2576
+ "discriminator": {
2577
+ "propertyName": "yesNo"
2578
+ },
2579
+ "oneOf": [
2580
+ {
2581
+ "properties": {
2582
+ "yesNo": {
2583
+ "enum": [
2584
+ "No"
2585
+ ]
2586
+ }
2587
+ }
2588
+ },
2589
+ {
2590
+ "properties": {
2591
+ "yesNo": {
2592
+ "enum": [
2593
+ "Yes"
2594
+ ]
2595
+ },
2596
+ "details": {
2597
+ "ta6Ref": "6.4.2"
2598
+ }
2599
+ },
2600
+ "required": [
2601
+ "details"
2602
+ ]
2603
+ }
2604
+ ],
2605
+ "required": [
2606
+ "yesNo"
2607
+ ],
2608
+ "properties": {
2609
+ "yesNo": {
2610
+ "ta6Ref": "6.4b1"
2611
+ }
2612
+ }
2613
+ },
2614
+ "subjectToUnusualConditions": {
2615
+ "ta6Ref": "6.4c",
2616
+ "discriminator": {
2617
+ "propertyName": "yesNo"
2618
+ },
2619
+ "oneOf": [
2620
+ {
2621
+ "properties": {
2622
+ "yesNo": {
2623
+ "enum": [
2624
+ "No"
2625
+ ]
2626
+ }
2627
+ }
2628
+ },
2629
+ {
2630
+ "properties": {
2631
+ "yesNo": {
2632
+ "enum": [
2633
+ "Yes"
2634
+ ]
2635
+ },
2636
+ "details": {
2637
+ "ta6Ref": "6.4.2"
2638
+ }
2639
+ },
2640
+ "required": [
2641
+ "details"
2642
+ ]
2643
+ }
2644
+ ],
2645
+ "required": [
2646
+ "yesNo"
2647
+ ],
2648
+ "properties": {
2649
+ "yesNo": {
2650
+ "ta6Ref": "6.4c1"
2651
+ }
2652
+ }
2653
+ },
2654
+ "refused": {
2655
+ "ta6Ref": "6.4d",
2656
+ "discriminator": {
2657
+ "propertyName": "yesNo"
2658
+ },
2659
+ "oneOf": [
2660
+ {
2661
+ "properties": {
2662
+ "yesNo": {
2663
+ "enum": [
2664
+ "No"
2665
+ ]
2666
+ }
2667
+ }
2668
+ },
2669
+ {
2670
+ "properties": {
2671
+ "yesNo": {
2672
+ "enum": [
2673
+ "Yes"
2674
+ ]
2675
+ },
2676
+ "details": {
2677
+ "ta6Ref": "6.4.2"
2678
+ }
2679
+ },
2680
+ "required": [
2681
+ "details"
2682
+ ]
2683
+ }
2684
+ ],
2685
+ "required": [
2686
+ "yesNo"
2687
+ ],
2688
+ "properties": {
2689
+ "yesNo": {
2690
+ "ta6Ref": "6.4d1"
2691
+ }
2692
+ }
2693
+ }
2694
+ }
2695
+ },
2696
+ "isInsured": {
2697
+ "ta6Ref": "6.1",
2698
+ "title": "Does the seller insure the property?"
2699
+ }
2700
+ }
2701
+ },
2702
+ "rightsAndInformalArrangements": {
2703
+ "ta6Ref": "8",
2704
+ "required": [
2705
+ "sharedContributions",
2706
+ "neighbouringLandRights",
2707
+ "accessRestrictionAttempts",
2708
+ "rightsOrArrangements"
2709
+ ],
2710
+ "properties": {
2711
+ "sharedContributions": {
2712
+ "ta6Ref": "8.1",
2713
+ "discriminator": {
2714
+ "propertyName": "yesNo"
2715
+ },
2716
+ "oneOf": [
2717
+ {
2718
+ "properties": {
2719
+ "yesNo": {
2720
+ "enum": [
2721
+ "No",
2722
+ "Not applicable"
2723
+ ]
2724
+ }
2725
+ }
2726
+ },
2727
+ {
2728
+ "properties": {
2729
+ "yesNo": {
2730
+ "enum": [
2731
+ "Yes"
2732
+ ]
2733
+ },
2734
+ "details": {
2735
+ "ta6Ref": "8.1.2"
2736
+ }
2737
+ },
2738
+ "required": [
2739
+ "details"
2740
+ ]
2741
+ }
2742
+ ],
2743
+ "required": [
2744
+ "yesNo"
2745
+ ],
2746
+ "properties": {
2747
+ "yesNo": {
2748
+ "ta6Ref": "8.1.1"
2749
+ }
2750
+ }
2751
+ },
2752
+ "neighbouringLandRights": {
2753
+ "ta6Ref": "8.2",
2754
+ "discriminator": {
2755
+ "propertyName": "yesNo"
2756
+ },
2757
+ "oneOf": [
2758
+ {
2759
+ "properties": {
2760
+ "yesNo": {
2761
+ "enum": [
2762
+ "No"
2763
+ ]
2764
+ }
2765
+ }
2766
+ },
2767
+ {
2768
+ "properties": {
2769
+ "yesNo": {
2770
+ "enum": [
2771
+ "Yes"
2772
+ ]
2773
+ },
2774
+ "details": {
2775
+ "ta6Ref": "8.2.2"
2776
+ }
2777
+ },
2778
+ "required": [
2779
+ "details"
2780
+ ]
2781
+ }
2782
+ ],
2783
+ "required": [
2784
+ "yesNo"
2785
+ ],
2786
+ "properties": {
2787
+ "yesNo": {
2788
+ "ta6Ref": "8.2.1"
2789
+ }
2790
+ }
2791
+ },
2792
+ "accessRestrictionAttempts": {
2793
+ "ta6Ref": "8.3",
2794
+ "discriminator": {
2795
+ "propertyName": "yesNo"
2796
+ },
2797
+ "oneOf": [
2798
+ {
2799
+ "properties": {
2800
+ "yesNo": {
2801
+ "enum": [
2802
+ "No",
2803
+ "Not known"
2804
+ ]
2805
+ }
2806
+ }
2807
+ },
2808
+ {
2809
+ "properties": {
2810
+ "yesNo": {
2811
+ "enum": [
2812
+ "Yes"
2813
+ ]
2814
+ },
2815
+ "details": {
2816
+ "ta6Ref": "8.3.2"
2817
+ }
2818
+ },
2819
+ "required": [
2820
+ "details"
2821
+ ]
2822
+ }
2823
+ ],
2824
+ "required": [
2825
+ "yesNo"
2826
+ ],
2827
+ "properties": {
2828
+ "yesNo": {
2829
+ "ta6Ref": "8.3.1"
2830
+ }
2831
+ }
2832
+ },
2833
+ "rightsOrArrangements": {
2834
+ "ta6Ref": "8.4",
2835
+ "required": [
2836
+ "rightsOfLight",
2837
+ "rightsOfSupport",
2838
+ "rightsCreatedThroughCustom",
2839
+ "minesAndMinerals",
2840
+ "churchChancel",
2841
+ "rightsToTakeFromLand",
2842
+ "otherRights"
2843
+ ],
2844
+ "properties": {
2845
+ "publicRightOfWay": {
2846
+ "ta6Ref": "8.6",
2847
+ "discriminator": {
2848
+ "propertyName": "yesNo"
2849
+ },
2850
+ "oneOf": [
2851
+ {
2852
+ "properties": {
2853
+ "yesNo": {
2854
+ "enum": [
2855
+ "No"
2856
+ ]
2857
+ }
2858
+ }
2859
+ },
2860
+ {
2861
+ "properties": {
2862
+ "yesNo": {
2863
+ "enum": [
2864
+ "Yes"
2865
+ ]
2866
+ },
2867
+ "details": {
2868
+ "ta6Ref": "8.6.2"
2869
+ }
2870
+ },
2871
+ "required": [
2872
+ "details"
2873
+ ]
2874
+ }
2875
+ ],
2876
+ "required": [
2877
+ "yesNo"
2878
+ ],
2879
+ "properties": {
2880
+ "yesNo": {
2881
+ "ta6Ref": "8.6.1"
2882
+ }
2883
+ }
2884
+ },
2885
+ "rightsOfLight": {
2886
+ "ta6Ref": "8.4a",
2887
+ "discriminator": {
2888
+ "propertyName": "yesNo"
2889
+ },
2890
+ "oneOf": [
2891
+ {
2892
+ "properties": {
2893
+ "yesNo": {
2894
+ "enum": [
2895
+ "No"
2896
+ ]
2897
+ }
2898
+ }
2899
+ },
2900
+ {
2901
+ "properties": {
2902
+ "yesNo": {
2903
+ "enum": [
2904
+ "Yes"
2905
+ ]
2906
+ }
2907
+ }
2908
+ }
2909
+ ],
2910
+ "required": [
2911
+ "yesNo"
2912
+ ],
2913
+ "properties": {
2914
+ "yesNo": {
2915
+ "ta6Ref": "8.4a1"
2916
+ }
2917
+ }
2918
+ },
2919
+ "rightsOfSupport": {
2920
+ "ta6Ref": "8.4a",
2921
+ "discriminator": {
2922
+ "propertyName": "yesNo"
2923
+ },
2924
+ "oneOf": [
2925
+ {
2926
+ "properties": {
2927
+ "yesNo": {
2928
+ "enum": [
2929
+ "No"
2930
+ ]
2931
+ }
2932
+ }
2933
+ },
2934
+ {
2935
+ "properties": {
2936
+ "yesNo": {
2937
+ "enum": [
2938
+ "Yes"
2939
+ ]
2940
+ }
2941
+ }
2942
+ }
2943
+ ],
2944
+ "required": [
2945
+ "yesNo"
2946
+ ],
2947
+ "properties": {
2948
+ "yesNo": {
2949
+ "ta6Ref": "8.4b1"
2950
+ }
2951
+ }
2952
+ },
2953
+ "rightsCreatedThroughCustom": {
2954
+ "ta6Ref": "8.4c",
2955
+ "discriminator": {
2956
+ "propertyName": "yesNo"
2957
+ },
2958
+ "oneOf": [
2959
+ {
2960
+ "properties": {
2961
+ "yesNo": {
2962
+ "enum": [
2963
+ "No"
2964
+ ]
2965
+ }
2966
+ }
2967
+ },
2968
+ {
2969
+ "properties": {
2970
+ "yesNo": {
2971
+ "enum": [
2972
+ "Yes"
2973
+ ]
2974
+ }
2975
+ }
2976
+ }
2977
+ ],
2978
+ "required": [
2979
+ "yesNo"
2980
+ ],
2981
+ "properties": {
2982
+ "yesNo": {
2983
+ "ta6Ref": "8.4c1"
2984
+ }
2985
+ }
2986
+ },
2987
+ "rightsToTakeFromLand": {
2988
+ "ta6Ref": "8.5b",
2989
+ "discriminator": {
2990
+ "propertyName": "yesNo"
2991
+ },
2992
+ "oneOf": [
2993
+ {
2994
+ "properties": {
2995
+ "yesNo": {
2996
+ "enum": [
2997
+ "No"
2998
+ ]
2999
+ }
3000
+ }
3001
+ },
3002
+ {
3003
+ "properties": {
3004
+ "yesNo": {
3005
+ "enum": [
3006
+ "Yes"
3007
+ ]
3008
+ },
3009
+ "details": {
3010
+ "ta6Ref": "8.5c2"
3011
+ }
3012
+ },
3013
+ "required": [
3014
+ "details"
3015
+ ]
3016
+ }
3017
+ ],
3018
+ "required": [
3019
+ "yesNo"
3020
+ ],
3021
+ "properties": {
3022
+ "yesNo": {
3023
+ "ta6Ref": "8.5c1"
3024
+ }
3025
+ }
3026
+ },
3027
+ "minesAndMinerals": {
3028
+ "ta6Ref": "8.5a",
3029
+ "discriminator": {
3030
+ "propertyName": "yesNo"
3031
+ },
3032
+ "oneOf": [
3033
+ {
3034
+ "properties": {
3035
+ "yesNo": {
3036
+ "enum": [
3037
+ "No"
3038
+ ]
3039
+ }
3040
+ }
3041
+ },
3042
+ {
3043
+ "properties": {
3044
+ "yesNo": {
3045
+ "enum": [
3046
+ "Yes"
3047
+ ]
3048
+ }
3049
+ }
3050
+ }
3051
+ ],
3052
+ "required": [
3053
+ "yesNo"
3054
+ ],
3055
+ "properties": {
3056
+ "yesNo": {
3057
+ "ta6Ref": "8.5a1"
3058
+ }
3059
+ }
3060
+ },
3061
+ "churchChancel": {
3062
+ "ta6Ref": "8.5b",
3063
+ "discriminator": {
3064
+ "propertyName": "yesNo"
3065
+ },
3066
+ "oneOf": [
3067
+ {
3068
+ "properties": {
3069
+ "yesNo": {
3070
+ "enum": [
3071
+ "No"
3072
+ ]
3073
+ }
3074
+ }
3075
+ },
3076
+ {
3077
+ "properties": {
3078
+ "yesNo": {
3079
+ "enum": [
3080
+ "Yes"
3081
+ ]
3082
+ }
3083
+ }
3084
+ }
3085
+ ],
3086
+ "required": [
3087
+ "yesNo"
3088
+ ],
3089
+ "properties": {
3090
+ "yesNo": {
3091
+ "ta6Ref": "8.5b1"
3092
+ }
3093
+ }
3094
+ },
3095
+ "otherRights": {
3096
+ "ta6Ref": "8.6",
3097
+ "discriminator": {
3098
+ "propertyName": "yesNo"
3099
+ },
3100
+ "oneOf": [
3101
+ {
3102
+ "properties": {
3103
+ "yesNo": {
3104
+ "enum": [
3105
+ "No"
3106
+ ]
3107
+ }
3108
+ }
3109
+ },
3110
+ {
3111
+ "properties": {
3112
+ "yesNo": {
3113
+ "enum": [
3114
+ "Yes"
3115
+ ]
3116
+ },
3117
+ "details": {
3118
+ "ta6Ref": "8.6.2"
3119
+ }
3120
+ },
3121
+ "required": [
3122
+ "details"
3123
+ ]
3124
+ }
3125
+ ],
3126
+ "required": [
3127
+ "yesNo"
3128
+ ],
3129
+ "properties": {
3130
+ "yesNo": {
3131
+ "ta6Ref": "8.6.1"
3132
+ }
3133
+ }
3134
+ }
3135
+ }
3136
+ }
3137
+ }
3138
+ },
3139
+ "environmentalIssues": {
3140
+ "ta6Ref": "7",
3141
+ "required": [
3142
+ "flooding",
3143
+ "radon"
3144
+ ],
3145
+ "properties": {
3146
+ "flooding": {
3147
+ "ta6Ref": "7",
3148
+ "required": [
3149
+ "floodRiskReport",
3150
+ "historicalFlooding"
3151
+ ],
3152
+ "properties": {
3153
+ "floodRiskReport": {
3154
+ "ta6Ref": "7.3",
3155
+ "discriminator": {
3156
+ "propertyName": "hasReportBeenPrepared"
3157
+ },
3158
+ "oneOf": [
3159
+ {
3160
+ "properties": {
3161
+ "hasReportBeenPrepared": {
3162
+ "enum": [
3163
+ "No"
3164
+ ]
3165
+ }
3166
+ }
3167
+ },
3168
+ {
3169
+ "properties": {
3170
+ "hasReportBeenPrepared": {
3171
+ "enum": [
3172
+ "Yes"
3173
+ ]
3174
+ },
3175
+ "attachments": {
3176
+ "ta6Ref": "7.3.2"
3177
+ }
3178
+ },
3179
+ "required": [
3180
+ "attachments"
3181
+ ]
3182
+ }
3183
+ ],
3184
+ "required": [
3185
+ "hasReportBeenPrepared"
3186
+ ],
3187
+ "properties": {
3188
+ "hasReportBeenPrepared": {
3189
+ "ta6Ref": "7.3.1"
3190
+ }
3191
+ }
3192
+ },
3193
+ "historicalFlooding": {
3194
+ "ta6Ref": "7.1",
3195
+ "discriminator": {
3196
+ "propertyName": "hasBeenFlooded"
3197
+ },
3198
+ "oneOf": [
3199
+ {
3200
+ "properties": {
3201
+ "hasBeenFlooded": {
3202
+ "enum": [
3203
+ "No"
3204
+ ]
3205
+ }
3206
+ }
3207
+ },
3208
+ {
3209
+ "properties": {
3210
+ "hasBeenFlooded": {
3211
+ "enum": [
3212
+ "Yes"
3213
+ ]
3214
+ },
3215
+ "typeOfFlooding": {
3216
+ "ta6Ref": "7.2"
3217
+ },
3218
+ "details": {
3219
+ "ta6Ref": "7.1.2"
3220
+ }
3221
+ },
3222
+ "required": [
3223
+ "typeOfFlooding",
3224
+ "details"
3225
+ ]
3226
+ }
3227
+ ],
3228
+ "required": [
3229
+ "hasBeenFlooded"
3230
+ ],
3231
+ "properties": {
3232
+ "hasBeenFlooded": {
3233
+ "ta6Ref": "7.1.1",
3234
+ "title": "Has any part of the property (whether buildings or surrounding garden or land) ever been flooded?"
3235
+ }
3236
+ }
3237
+ }
3238
+ }
3239
+ },
3240
+ "radon": {
3241
+ "ta6Ref": "7.4",
3242
+ "required": [
3243
+ "remedialMeasuresOnConstruction",
3244
+ "radonTest"
3245
+ ],
3246
+ "properties": {
3247
+ "radonTest": {
3248
+ "ta6Ref": "7.4",
3249
+ "discriminator": {
3250
+ "propertyName": "yesNo"
3251
+ },
3252
+ "oneOf": [
3253
+ {
3254
+ "properties": {
3255
+ "yesNo": {
3256
+ "enum": [
3257
+ "No",
3258
+ "Not known"
3259
+ ]
3260
+ }
3261
+ }
3262
+ },
3263
+ {
3264
+ "properties": {
3265
+ "yesNo": {
3266
+ "enum": [
3267
+ "Yes"
3268
+ ]
3269
+ },
3270
+ "details": {
3271
+ "ta6Ref": "7.4b"
3272
+ },
3273
+ "attachments": {
3274
+ "ta6Ref": "7.4a"
3275
+ }
3276
+ },
3277
+ "required": [
3278
+ "details",
3279
+ "attachments"
3280
+ ]
3281
+ }
3282
+ ],
3283
+ "required": [
3284
+ "yesNo"
3285
+ ],
3286
+ "properties": {
3287
+ "yesNo": {
3288
+ "ta6Ref": "7.4.1",
3289
+ "enum": [
3290
+ "Yes",
3291
+ "No"
3292
+ ]
3293
+ }
3294
+ }
3295
+ },
3296
+ "remedialMeasuresOnConstruction": {
3297
+ "ta6Ref": "7.5",
3298
+ "required": [
3299
+ "yesNo"
3300
+ ],
3301
+ "properties": {
3302
+ "yesNo": {
3303
+ "ta6Ref": "7.5.1"
3304
+ }
3305
+ }
3306
+ }
3307
+ }
3308
+ }
3309
+ }
3310
+ },
3311
+ "additionalInformation": {
3312
+ "ta6Ref": "10",
3313
+ "required": [
3314
+ "otherCharges"
3315
+ ],
3316
+ "properties": {
3317
+ "otherCharges": {
3318
+ "ta6Ref": "10.1",
3319
+ "discriminator": {
3320
+ "propertyName": "yesNo"
3321
+ },
3322
+ "oneOf": [
3323
+ {
3324
+ "properties": {
3325
+ "yesNo": {
3326
+ "enum": [
3327
+ "No"
3328
+ ]
3329
+ }
3330
+ }
3331
+ },
3332
+ {
3333
+ "properties": {
3334
+ "yesNo": {
3335
+ "enum": [
3336
+ "Yes"
3337
+ ]
3338
+ },
3339
+ "details": {
3340
+ "ta6Ref": "10.1.2"
3341
+ }
3342
+ },
3343
+ "required": [
3344
+ "details"
3345
+ ]
3346
+ }
3347
+ ],
3348
+ "required": [
3349
+ "yesNo"
3350
+ ],
3351
+ "properties": {
3352
+ "yesNo": {
3353
+ "ta6Ref": "10.1.1"
3354
+ }
3355
+ }
3356
+ }
3357
+ }
3358
+ },
3359
+ "legalBoundaries": {
3360
+ "ta6Ref": "1",
3361
+ "required": [
3362
+ "ownership",
3363
+ "haveBoundaryFeaturesMoved",
3364
+ "adjacentLandIncluded",
3365
+ "flyingFreehold"
3366
+ ],
3367
+ "properties": {
3368
+ "ownership": {
3369
+ "ta6Ref": "1",
3370
+ "discriminator": {
3371
+ "propertyName": "areBoundariesUniform"
3372
+ },
3373
+ "oneOf": [
3374
+ {
3375
+ "properties": {
3376
+ "areBoundariesUniform": {
3377
+ "enum": [
3378
+ "Yes"
3379
+ ]
3380
+ },
3381
+ "uniformBoundaries": {
3382
+ "ta6Ref": "1.1",
3383
+ "required": [
3384
+ "left",
3385
+ "right",
3386
+ "rear",
3387
+ "front"
3388
+ ],
3389
+ "properties": {
3390
+ "left": {
3391
+ "ta6Ref": "1.1a"
3392
+ },
3393
+ "right": {
3394
+ "ta6Ref": "1.1b"
3395
+ },
3396
+ "rear": {
3397
+ "ta6Ref": "1.1c"
3398
+ },
3399
+ "front": {
3400
+ "ta6Ref": "1.1d"
3401
+ }
3402
+ }
3403
+ }
3404
+ }
3405
+ },
3406
+ {
3407
+ "properties": {
3408
+ "areBoundariesUniform": {
3409
+ "enum": [
3410
+ "No"
3411
+ ]
3412
+ },
3413
+ "details": {
3414
+ "ta6Ref": "1.2.1"
3415
+ },
3416
+ "attachments": {
3417
+ "ta6Ref": "1.2.2"
3418
+ }
3419
+ },
3420
+ "required": [
3421
+ "details",
3422
+ "attachments"
3423
+ ]
3424
+ },
3425
+ {
3426
+ "properties": {
3427
+ "areBoundariesUniform": {
3428
+ "enum": [
3429
+ "Not applicable"
3430
+ ]
3431
+ }
3432
+ }
3433
+ }
3434
+ ],
3435
+ "required": [
3436
+ "areBoundariesUniform"
3437
+ ],
3438
+ "properties": {
3439
+ "areBoundariesUniform": {
3440
+ "ta6Ref": "1.2"
3441
+ }
3442
+ }
3443
+ },
3444
+ "haveBoundaryFeaturesMoved": {
3445
+ "ta6Ref": "1.3",
3446
+ "discriminator": {
3447
+ "propertyName": "yesNo"
3448
+ },
3449
+ "oneOf": [
3450
+ {
3451
+ "properties": {
3452
+ "yesNo": {
3453
+ "enum": [
3454
+ "No",
3455
+ "Not applicable"
3456
+ ]
3457
+ }
3458
+ }
3459
+ },
3460
+ {
3461
+ "properties": {
3462
+ "yesNo": {
3463
+ "enum": [
3464
+ "Yes"
3465
+ ]
3466
+ },
3467
+ "details": {
3468
+ "ta6Ref": "1.3.2"
3469
+ }
3470
+ },
3471
+ "required": [
3472
+ "details"
3473
+ ]
3474
+ }
3475
+ ],
3476
+ "required": [
3477
+ "yesNo"
3478
+ ],
3479
+ "title": "Is the seller aware of any boundary feature having been moved in the last 10 years or during the seller's period of ownership if longer?",
3480
+ "properties": {
3481
+ "yesNo": {
3482
+ "ta6Ref": "1.3.1"
3483
+ }
3484
+ }
3485
+ },
3486
+ "adjacentLandIncluded": {
3487
+ "ta6Ref": "1.4",
3488
+ "discriminator": {
3489
+ "propertyName": "yesNo"
3490
+ },
3491
+ "oneOf": [
3492
+ {
3493
+ "properties": {
3494
+ "yesNo": {
3495
+ "enum": [
3496
+ "No",
3497
+ "Not applicable"
3498
+ ]
3499
+ }
3500
+ }
3501
+ },
3502
+ {
3503
+ "properties": {
3504
+ "yesNo": {
3505
+ "enum": [
3506
+ "Yes"
3507
+ ]
3508
+ },
3509
+ "details": {
3510
+ "ta6Ref": "1.4.2"
3511
+ }
3512
+ },
3513
+ "required": [
3514
+ "details"
3515
+ ]
3516
+ }
3517
+ ],
3518
+ "required": [
3519
+ "yesNo"
3520
+ ],
3521
+ "title": "During the seller's ownership, has any adjacent land or property been purchased by the seller?",
3522
+ "properties": {
3523
+ "yesNo": {
3524
+ "ta6Ref": "1.4.1"
3525
+ }
3526
+ }
3527
+ },
3528
+ "flyingFreehold": {
3529
+ "ta6Ref": "1.5",
3530
+ "discriminator": {
3531
+ "propertyName": "yesNo"
3532
+ },
3533
+ "oneOf": [
3534
+ {
3535
+ "properties": {
3536
+ "yesNo": {
3537
+ "enum": [
3538
+ "No",
3539
+ "Not applicable",
3540
+ "Not known"
3541
+ ]
3542
+ }
3543
+ }
3544
+ },
3545
+ {
3546
+ "properties": {
3547
+ "yesNo": {
3548
+ "enum": [
3549
+ "Yes"
3550
+ ]
3551
+ },
3552
+ "details": {
3553
+ "ta6Ref": "1.5.2"
3554
+ }
3555
+ },
3556
+ "required": [
3557
+ "details"
3558
+ ]
3559
+ }
3560
+ ],
3561
+ "required": [
3562
+ "yesNo"
3563
+ ],
3564
+ "title": "Does any part of the property or any building on the property overhang, or project under, the boundary of the neighbouring property or road, for example cellars under the pavement, overhanging eaves or covered walkways?",
3565
+ "properties": {
3566
+ "yesNo": {
3567
+ "ta6Ref": "1.5.1"
3568
+ }
3569
+ }
3570
+ }
3571
+ }
3572
+ },
3573
+ "servicesCrossing": {
3574
+ "ta6Ref": "8",
3575
+ "required": [
3576
+ "pipesWiresCablesDrainsToProperty",
3577
+ "pipesWiresCablesDrainsFromProperty",
3578
+ "formalOrInformalAgreements"
3579
+ ],
3580
+ "properties": {
3581
+ "pipesWiresCablesDrainsToProperty": {
3582
+ "ta6Ref": "8.7",
3583
+ "discriminator": {
3584
+ "propertyName": "yesNo"
3585
+ },
3586
+ "oneOf": [
3587
+ {
3588
+ "properties": {
3589
+ "yesNo": {
3590
+ "enum": [
3591
+ "No",
3592
+ "Not known"
3593
+ ]
3594
+ }
3595
+ }
3596
+ },
3597
+ {
3598
+ "properties": {
3599
+ "yesNo": {
3600
+ "enum": [
3601
+ "Yes"
3602
+ ]
3603
+ },
3604
+ "details": {
3605
+ "ta6Ref": "8.7.2"
3606
+ }
3607
+ },
3608
+ "required": [
3609
+ "details"
3610
+ ]
3611
+ }
3612
+ ],
3613
+ "required": [
3614
+ "yesNo"
3615
+ ],
3616
+ "title": "Do any drains, pipes or wires serving the property cross any neighbour's property?",
3617
+ "properties": {
3618
+ "yesNo": {
3619
+ "ta6Ref": "8.7.1"
3620
+ }
3621
+ }
3622
+ },
3623
+ "pipesWiresCablesDrainsFromProperty": {
3624
+ "ta6Ref": "8.8",
3625
+ "discriminator": {
3626
+ "propertyName": "yesNo"
3627
+ },
3628
+ "oneOf": [
3629
+ {
3630
+ "properties": {
3631
+ "yesNo": {
3632
+ "enum": [
3633
+ "No",
3634
+ "Not known"
3635
+ ]
3636
+ }
3637
+ }
3638
+ },
3639
+ {
3640
+ "properties": {
3641
+ "yesNo": {
3642
+ "enum": [
3643
+ "Yes"
3644
+ ]
3645
+ },
3646
+ "details": {
3647
+ "ta6Ref": "8.8.2"
3648
+ }
3649
+ },
3650
+ "required": [
3651
+ "details"
3652
+ ]
3653
+ }
3654
+ ],
3655
+ "required": [
3656
+ "yesNo"
3657
+ ],
3658
+ "properties": {
3659
+ "yesNo": {
3660
+ "ta6Ref": "8.8.1"
3661
+ }
3662
+ }
3663
+ },
3664
+ "formalOrInformalAgreements": {
3665
+ "ta6Ref": "8.9",
3666
+ "discriminator": {
3667
+ "propertyName": "yesNo"
3668
+ },
3669
+ "oneOf": [
3670
+ {
3671
+ "properties": {
3672
+ "yesNo": {
3673
+ "enum": [
3674
+ "No",
3675
+ "Not known"
3676
+ ]
3677
+ }
3678
+ }
3679
+ },
3680
+ {
3681
+ "properties": {
3682
+ "yesNo": {
3683
+ "enum": [
3684
+ "Yes"
3685
+ ]
3686
+ },
3687
+ "details": {
3688
+ "ta6Ref": "8.9.2"
3689
+ },
3690
+ "attachments": {
3691
+ "ta6Ref": "8.9.3"
3692
+ }
3693
+ },
3694
+ "required": [
3695
+ "details"
3696
+ ]
3697
+ }
3698
+ ],
3699
+ "required": [
3700
+ "yesNo"
3701
+ ],
3702
+ "title": "Is there any agreement or arrangement about drains, pipes or wires?",
3703
+ "properties": {
3704
+ "yesNo": {
3705
+ "ta6Ref": "8.9.1"
3706
+ }
3707
+ }
3708
+ }
3709
+ }
3710
+ },
3711
+ "electricalWorks": {
3712
+ "ta6Ref": "12",
3713
+ "required": [
3714
+ "testedByQualifiedElectrician",
3715
+ "electricalWorkSince2005"
3716
+ ],
3717
+ "properties": {
3718
+ "testedByQualifiedElectrician": {
3719
+ "ta6Ref": "12.1",
3720
+ "discriminator": {
3721
+ "propertyName": "yesNo"
3722
+ },
3723
+ "oneOf": [
3724
+ {
3725
+ "properties": {
3726
+ "yesNo": {
3727
+ "enum": [
3728
+ "No"
3729
+ ]
3730
+ }
3731
+ }
3732
+ },
3733
+ {
3734
+ "properties": {
3735
+ "yesNo": {
3736
+ "enum": [
3737
+ "Yes"
3738
+ ]
3739
+ },
3740
+ "yearTested": {
3741
+ "ta6Ref": "12.1.2"
3742
+ },
3743
+ "attachments": {
3744
+ "ta6Ref": "12.1.3",
3745
+ "enum": [
3746
+ "Attached",
3747
+ "To follow"
3748
+ ]
3749
+ }
3750
+ },
3751
+ "required": [
3752
+ "yearTested",
3753
+ "attachments"
3754
+ ]
3755
+ }
3756
+ ],
3757
+ "required": [
3758
+ "yesNo"
3759
+ ],
3760
+ "properties": {
3761
+ "yesNo": {
3762
+ "ta6Ref": "12.1.1"
3763
+ }
3764
+ }
3765
+ },
3766
+ "electricalWorkSince2005": {
3767
+ "ta6Ref": "12.2",
3768
+ "discriminator": {
3769
+ "propertyName": "yesNo"
3770
+ },
3771
+ "oneOf": [
3772
+ {
3773
+ "properties": {
3774
+ "yesNo": {
3775
+ "enum": [
3776
+ "No",
3777
+ "Not known"
3778
+ ]
3779
+ }
3780
+ }
3781
+ },
3782
+ {
3783
+ "properties": {
3784
+ "yesNo": {
3785
+ "enum": [
3786
+ "Yes"
3787
+ ]
3788
+ },
3789
+ "suppliedCertificate": {
3790
+ "ta6Ref": "12.2.2a",
3791
+ "required": [
3792
+ "certificateType",
3793
+ "attachments"
3794
+ ],
3795
+ "properties": {
3796
+ "certificateType": {
3797
+ "ta6Ref": "12.2.2a.1"
3798
+ },
3799
+ "attachments": {
3800
+ "ta6Ref": "12.2.2a.2",
3801
+ "enum": [
3802
+ "Attached",
3803
+ "To follow"
3804
+ ]
3805
+ }
3806
+ }
3807
+ }
3808
+ },
3809
+ "required": [
3810
+ "suppliedCertificate"
3811
+ ]
3812
+ }
3813
+ ],
3814
+ "required": [
3815
+ "yesNo"
3816
+ ],
3817
+ "properties": {
3818
+ "yesNo": {
3819
+ "ta6Ref": "12.2.1"
3820
+ }
3821
+ }
3822
+ }
3823
+ }
3824
+ },
3825
+ "guaranteesWarrantiesAndIndemnityInsurances": {
3826
+ "ta6Ref": "5",
3827
+ "discriminator": {
3828
+ "propertyName": "hasValidGuaranteesOrWarranties"
3829
+ },
3830
+ "oneOf": [
3831
+ {
3832
+ "properties": {
3833
+ "hasValidGuaranteesOrWarranties": {
3834
+ "enum": [
3835
+ "No"
3836
+ ]
3837
+ }
3838
+ }
3839
+ },
3840
+ {
3841
+ "properties": {
3842
+ "hasValidGuaranteesOrWarranties": {
3843
+ "enum": [
3844
+ "Yes"
3845
+ ]
3846
+ },
3847
+ "newHomeWarranty": {
3848
+ "ta6Ref": "5.1a",
3849
+ "discriminator": {
3850
+ "propertyName": "yesNo"
3851
+ },
3852
+ "oneOf": [
3853
+ {
3854
+ "properties": {
3855
+ "yesNo": {
3856
+ "enum": [
3857
+ "No"
3858
+ ]
3859
+ }
3860
+ }
3861
+ },
3862
+ {
3863
+ "properties": {
3864
+ "yesNo": {
3865
+ "enum": [
3866
+ "Yes"
3867
+ ]
3868
+ },
3869
+ "details": {
3870
+ "ta6Ref": "5.1a2"
3871
+ },
3872
+ "attachments": {
3873
+ "ta6Ref": "5.1a3"
3874
+ }
3875
+ },
3876
+ "required": [
3877
+ "attachments"
3878
+ ]
3879
+ }
3880
+ ],
3881
+ "required": [
3882
+ "yesNo"
3883
+ ],
3884
+ "properties": {
3885
+ "yesNo": {
3886
+ "ta6Ref": "5.1a1"
3887
+ }
3888
+ }
3889
+ },
3890
+ "roofingWork": {
3891
+ "ta6Ref": "5.1f",
3892
+ "discriminator": {
3893
+ "propertyName": "yesNo"
3894
+ },
3895
+ "oneOf": [
3896
+ {
3897
+ "properties": {
3898
+ "yesNo": {
3899
+ "enum": [
3900
+ "No"
3901
+ ]
3902
+ }
3903
+ }
3904
+ },
3905
+ {
3906
+ "properties": {
3907
+ "yesNo": {
3908
+ "enum": [
3909
+ "Yes"
3910
+ ]
3911
+ },
3912
+ "attachments": {
3913
+ "ta6Ref": "5.1f2"
3914
+ }
3915
+ },
3916
+ "required": [
3917
+ "attachments"
3918
+ ]
3919
+ }
3920
+ ],
3921
+ "required": [
3922
+ "yesNo"
3923
+ ],
3924
+ "properties": {
3925
+ "yesNo": {
3926
+ "ta6Ref": "5.1f1"
3927
+ }
3928
+ }
3929
+ },
3930
+ "dampProofingTreatment": {
3931
+ "ta6Ref": "5.1b",
3932
+ "discriminator": {
3933
+ "propertyName": "yesNo"
3934
+ },
3935
+ "oneOf": [
3936
+ {
3937
+ "properties": {
3938
+ "yesNo": {
3939
+ "enum": [
3940
+ "No"
3941
+ ]
3942
+ }
3943
+ }
3944
+ },
3945
+ {
3946
+ "properties": {
3947
+ "yesNo": {
3948
+ "enum": [
3949
+ "Yes"
3950
+ ]
3951
+ },
3952
+ "attachments": {
3953
+ "ta6Ref": "5.1b2"
3954
+ }
3955
+ },
3956
+ "required": [
3957
+ "attachments"
3958
+ ]
3959
+ }
3960
+ ],
3961
+ "required": [
3962
+ "yesNo"
3963
+ ],
3964
+ "properties": {
3965
+ "yesNo": {
3966
+ "ta6Ref": "5.1b1"
3967
+ }
3968
+ }
3969
+ },
3970
+ "timberRotOrInfestationTreatment": {
3971
+ "ta6Ref": "5.1c",
3972
+ "discriminator": {
3973
+ "propertyName": "yesNo"
3974
+ },
3975
+ "oneOf": [
3976
+ {
3977
+ "properties": {
3978
+ "yesNo": {
3979
+ "enum": [
3980
+ "No"
3981
+ ]
3982
+ }
3983
+ }
3984
+ },
3985
+ {
3986
+ "properties": {
3987
+ "yesNo": {
3988
+ "enum": [
3989
+ "Yes"
3990
+ ]
3991
+ },
3992
+ "attachments": {
3993
+ "ta6Ref": "5.1c2"
3994
+ }
3995
+ },
3996
+ "required": [
3997
+ "attachments"
3998
+ ]
3999
+ }
4000
+ ],
4001
+ "required": [
4002
+ "yesNo"
4003
+ ],
4004
+ "properties": {
4005
+ "yesNo": {
4006
+ "ta6Ref": "5.1c1"
4007
+ }
4008
+ }
4009
+ },
4010
+ "centralHeatingAndorPlumbing": {
4011
+ "ta6Ref": "5.1g",
4012
+ "discriminator": {
4013
+ "propertyName": "yesNo"
4014
+ },
4015
+ "oneOf": [
4016
+ {
4017
+ "properties": {
4018
+ "yesNo": {
4019
+ "enum": [
4020
+ "No"
4021
+ ]
4022
+ }
4023
+ }
4024
+ },
4025
+ {
4026
+ "properties": {
4027
+ "yesNo": {
4028
+ "enum": [
4029
+ "Yes"
4030
+ ]
4031
+ },
4032
+ "attachments": {
4033
+ "ta6Ref": "5.1g2"
4034
+ }
4035
+ },
4036
+ "required": [
4037
+ "attachments"
4038
+ ]
4039
+ }
4040
+ ],
4041
+ "required": [
4042
+ "yesNo"
4043
+ ],
4044
+ "properties": {
4045
+ "yesNo": {
4046
+ "ta6Ref": "5.1g1"
4047
+ }
4048
+ }
4049
+ },
4050
+ "doubleGlazing": {
4051
+ "ta6Ref": "5.1d",
4052
+ "discriminator": {
4053
+ "propertyName": "yesNo"
4054
+ },
4055
+ "oneOf": [
4056
+ {
4057
+ "properties": {
4058
+ "yesNo": {
4059
+ "enum": [
4060
+ "No"
4061
+ ]
4062
+ }
4063
+ }
4064
+ },
4065
+ {
4066
+ "properties": {
4067
+ "yesNo": {
4068
+ "enum": [
4069
+ "Yes"
4070
+ ]
4071
+ },
4072
+ "attachments": {
4073
+ "ta6Ref": "5.1d2"
4074
+ }
4075
+ },
4076
+ "required": [
4077
+ "attachments"
4078
+ ]
4079
+ }
4080
+ ],
4081
+ "required": [
4082
+ "yesNo"
4083
+ ],
4084
+ "properties": {
4085
+ "yesNo": {
4086
+ "ta6Ref": "5.1d1"
4087
+ }
4088
+ }
4089
+ },
4090
+ "electricalRepairOrInstallation": {
4091
+ "ta6Ref": "5.1e",
4092
+ "discriminator": {
4093
+ "propertyName": "yesNo"
4094
+ },
4095
+ "oneOf": [
4096
+ {
4097
+ "properties": {
4098
+ "yesNo": {
4099
+ "enum": [
4100
+ "No"
4101
+ ]
4102
+ }
4103
+ }
4104
+ },
4105
+ {
4106
+ "properties": {
4107
+ "yesNo": {
4108
+ "enum": [
4109
+ "Yes"
4110
+ ]
4111
+ },
4112
+ "attachments": {
4113
+ "ta6Ref": "5.1e2"
4114
+ }
4115
+ },
4116
+ "required": [
4117
+ "attachments"
4118
+ ]
4119
+ }
4120
+ ],
4121
+ "required": [
4122
+ "yesNo"
4123
+ ],
4124
+ "properties": {
4125
+ "yesNo": {
4126
+ "ta6Ref": "5.1e1"
4127
+ }
4128
+ }
4129
+ },
4130
+ "subsidenceWork": {
4131
+ "ta6Ref": "5.1h",
4132
+ "discriminator": {
4133
+ "propertyName": "yesNo"
4134
+ },
4135
+ "oneOf": [
4136
+ {
4137
+ "properties": {
4138
+ "yesNo": {
4139
+ "enum": [
4140
+ "No"
4141
+ ]
4142
+ }
4143
+ }
4144
+ },
4145
+ {
4146
+ "properties": {
4147
+ "yesNo": {
4148
+ "enum": [
4149
+ "Yes"
4150
+ ]
4151
+ },
4152
+ "attachments": {
4153
+ "ta6Ref": "5.1h2"
4154
+ }
4155
+ },
4156
+ "required": [
4157
+ "attachments"
4158
+ ]
4159
+ }
4160
+ ],
4161
+ "required": [
4162
+ "yesNo"
4163
+ ],
4164
+ "properties": {
4165
+ "yesNo": {
4166
+ "ta6Ref": "5.1h1"
4167
+ }
4168
+ }
4169
+ },
4170
+ "otherGuarantees": {
4171
+ "ta6Ref": "5.1i",
4172
+ "discriminator": {
4173
+ "propertyName": "yesNo"
4174
+ },
4175
+ "oneOf": [
4176
+ {
4177
+ "properties": {
4178
+ "yesNo": {
4179
+ "enum": [
4180
+ "No"
4181
+ ]
4182
+ }
4183
+ }
4184
+ },
4185
+ {
4186
+ "properties": {
4187
+ "yesNo": {
4188
+ "enum": [
4189
+ "Yes"
4190
+ ]
4191
+ },
4192
+ "details": {
4193
+ "ta6Ref": "5.1i2"
4194
+ },
4195
+ "attachments": {
4196
+ "ta6Ref": "5.1i3"
4197
+ }
4198
+ },
4199
+ "required": [
4200
+ "details",
4201
+ "attachments"
4202
+ ]
4203
+ }
4204
+ ],
4205
+ "required": [
4206
+ "yesNo"
4207
+ ],
4208
+ "properties": {
4209
+ "yesNo": {
4210
+ "ta6Ref": "5.1i1"
4211
+ }
4212
+ }
4213
+ },
4214
+ "outstandingClaimsOrApplications": {
4215
+ "ta6Ref": "5.2",
4216
+ "discriminator": {
4217
+ "propertyName": "yesNo"
4218
+ },
4219
+ "oneOf": [
4220
+ {
4221
+ "properties": {
4222
+ "yesNo": {
4223
+ "enum": [
4224
+ "No"
4225
+ ]
4226
+ }
4227
+ }
4228
+ },
4229
+ {
4230
+ "properties": {
4231
+ "yesNo": {
4232
+ "enum": [
4233
+ "Yes"
4234
+ ]
4235
+ },
4236
+ "details": {
4237
+ "ta6Ref": "5.2.2"
4238
+ },
4239
+ "attachments": {
4240
+ "ta6Ref": "5.2.3"
4241
+ }
4242
+ },
4243
+ "required": [
4244
+ "details"
4245
+ ]
4246
+ }
4247
+ ],
4248
+ "required": [
4249
+ "yesNo"
4250
+ ],
4251
+ "title": "Have any claims been made under any of these guarantees or warranties?",
4252
+ "properties": {
4253
+ "yesNo": {
4254
+ "ta6Ref": "5.2.1"
4255
+ }
4256
+ }
4257
+ }
4258
+ },
4259
+ "required": [
4260
+ "newHomeWarranty",
4261
+ "roofingWork",
4262
+ "dampProofingTreatment",
4263
+ "timberRotOrInfestationTreatment",
4264
+ "centralHeatingAndorPlumbing",
4265
+ "doubleGlazing",
4266
+ "electricalRepairOrInstallation",
4267
+ "subsidenceWork",
4268
+ "otherGuarantees",
4269
+ "outstandingClaimsOrApplications"
4270
+ ]
4271
+ }
4272
+ ],
4273
+ "required": [
4274
+ "hasValidGuaranteesOrWarranties"
4275
+ ],
4276
+ "properties": {
4277
+ "hasValidGuaranteesOrWarranties": {
4278
+ "ta6Ref": "5.1"
4279
+ }
4280
+ }
4281
+ },
4282
+ "occupiers": {
4283
+ "ta6Ref": "11",
4284
+ "required": [
4285
+ "sellerLivesAtProperty",
4286
+ "othersAged17OrOver"
4287
+ ],
4288
+ "properties": {
4289
+ "sellerLivesAtProperty": {
4290
+ "ta6Ref": "11.1",
4291
+ "required": [
4292
+ "yesNo"
4293
+ ],
4294
+ "properties": {
4295
+ "yesNo": {
4296
+ "ta6Ref": "11.1.1"
4297
+ }
4298
+ }
4299
+ },
4300
+ "othersAged17OrOver": {
4301
+ "ta6Ref": "11.2",
4302
+ "discriminator": {
4303
+ "propertyName": "hasOthersAged17OrOver"
4304
+ },
4305
+ "oneOf": [
4306
+ {
4307
+ "properties": {
4308
+ "hasOthersAged17OrOver": {
4309
+ "enum": [
4310
+ "No"
4311
+ ]
4312
+ }
4313
+ }
4314
+ },
4315
+ {
4316
+ "properties": {
4317
+ "hasOthersAged17OrOver": {
4318
+ "enum": [
4319
+ "Yes"
4320
+ ]
4321
+ },
4322
+ "aged17OrOverNames": {
4323
+ "ta6Ref": "11.3"
4324
+ },
4325
+ "aged17OrOverTenantsOrLodgers": {
4326
+ "ta6Ref": "11.4",
4327
+ "required": [
4328
+ "yesNo"
4329
+ ],
4330
+ "properties": {
4331
+ "yesNo": {
4332
+ "ta6Ref": "11.4.1"
4333
+ }
4334
+ }
4335
+ },
4336
+ "vacantPossession": {
4337
+ "ta6Ref": "11.5",
4338
+ "discriminator": {
4339
+ "propertyName": "soldWithVacantPossession"
4340
+ },
4341
+ "oneOf": [
4342
+ {
4343
+ "properties": {
4344
+ "soldWithVacantPossession": {
4345
+ "enum": [
4346
+ "No"
4347
+ ]
4348
+ }
4349
+ }
4350
+ },
4351
+ {
4352
+ "properties": {
4353
+ "soldWithVacantPossession": {
4354
+ "enum": [
4355
+ "Yes"
4356
+ ]
4357
+ },
4358
+ "aged17OrOverAgreedToLeave": {
4359
+ "ta6Ref": "11.5a",
4360
+ "required": [
4361
+ "yesNo"
4362
+ ],
4363
+ "properties": {
4364
+ "yesNo": {
4365
+ "ta6Ref": "11.5a1"
4366
+ }
4367
+ }
4368
+ },
4369
+ "aged17OrOverWillSignToConfirmWillVacate": {
4370
+ "ta6Ref": "11.5b",
4371
+ "discriminator": {
4372
+ "propertyName": "yesNo"
4373
+ },
4374
+ "oneOf": [
4375
+ {
4376
+ "properties": {
4377
+ "yesNo": {
4378
+ "enum": [
4379
+ "Yes"
4380
+ ]
4381
+ }
4382
+ }
4383
+ },
4384
+ {
4385
+ "properties": {
4386
+ "yesNo": {
4387
+ "enum": [
4388
+ "No"
4389
+ ]
4390
+ },
4391
+ "attachments": {
4392
+ "ta6Ref": "11.5b2"
4393
+ }
4394
+ },
4395
+ "required": [
4396
+ "attachments"
4397
+ ]
4398
+ }
4399
+ ],
4400
+ "required": [
4401
+ "yesNo"
4402
+ ],
4403
+ "properties": {
4404
+ "yesNo": {
4405
+ "ta6Ref": "11.5b1"
4406
+ }
4407
+ }
4408
+ }
4409
+ },
4410
+ "required": [
4411
+ "aged17OrOverAgreedToLeave",
4412
+ "aged17OrOverWillSignToConfirmWillVacate"
4413
+ ]
4414
+ }
4415
+ ],
4416
+ "required": [
4417
+ "soldWithVacantPossession"
4418
+ ],
4419
+ "properties": {
4420
+ "soldWithVacantPossession": {
4421
+ "ta6Ref": "11.5.1"
4422
+ }
4423
+ }
4424
+ }
4425
+ },
4426
+ "required": [
4427
+ "aged17OrOverNames",
4428
+ "aged17OrOverTenantsOrLodgers",
4429
+ "vacantPossession"
4430
+ ]
4431
+ }
4432
+ ],
4433
+ "required": [
4434
+ "hasOthersAged17OrOver"
4435
+ ],
4436
+ "properties": {
4437
+ "hasOthersAged17OrOver": {
4438
+ "ta6Ref": "11.2.1"
4439
+ }
4440
+ }
4441
+ }
4442
+ }
4443
+ },
4444
+ "completionAndMoving": {
4445
+ "ta6Ref": "14",
4446
+ "required": [
4447
+ "sellerWillEnsure",
4448
+ "otherPropertyInChain",
4449
+ "moveRestrictionDates",
4450
+ "sufficientToRepayAllMortgages"
4451
+ ],
4452
+ "properties": {
4453
+ "sellerWillEnsure": {
4454
+ "ta6Ref": "14.4",
4455
+ "properties": {
4456
+ "removeRubbish": {
4457
+ "ta6Ref": "14.4a"
4458
+ },
4459
+ "replaceLightFittings": {
4460
+ "ta6Ref": "14.4b"
4461
+ },
4462
+ "takeReasonableCare": {
4463
+ "ta6Ref": "14.4c"
4464
+ },
4465
+ "leaveKeys": {
4466
+ "ta6Ref": "14.4d"
4467
+ }
4468
+ }
4469
+ },
4470
+ "otherPropertyInChain": {
4471
+ "ta6Ref": "14.1",
4472
+ "discriminator": {
4473
+ "propertyName": "yesNo"
4474
+ },
4475
+ "oneOf": [
4476
+ {
4477
+ "properties": {
4478
+ "yesNo": {
4479
+ "enum": [
4480
+ "No"
4481
+ ]
4482
+ }
4483
+ }
4484
+ },
4485
+ {
4486
+ "properties": {
4487
+ "yesNo": {
4488
+ "enum": [
4489
+ "Yes"
4490
+ ]
4491
+ }
4492
+ }
4493
+ }
4494
+ ],
4495
+ "required": [
4496
+ "yesNo"
4497
+ ],
4498
+ "title": "Is this sale dependent on the seller completing the purchase of another property on the same day?",
4499
+ "properties": {
4500
+ "yesNo": {
4501
+ "ta6Ref": "14.1.1"
4502
+ }
4503
+ }
4504
+ },
4505
+ "moveRestrictionDates": {
4506
+ "ta6Ref": "14.2",
4507
+ "discriminator": {
4508
+ "propertyName": "yesNo"
4509
+ },
4510
+ "oneOf": [
4511
+ {
4512
+ "properties": {
4513
+ "yesNo": {
4514
+ "enum": [
4515
+ "No"
4516
+ ]
4517
+ }
4518
+ }
4519
+ },
4520
+ {
4521
+ "properties": {
4522
+ "yesNo": {
4523
+ "enum": [
4524
+ "Yes"
4525
+ ]
4526
+ },
4527
+ "details": {
4528
+ "ta6Ref": "14.2.2"
4529
+ }
4530
+ },
4531
+ "required": [
4532
+ "details"
4533
+ ]
4534
+ }
4535
+ ],
4536
+ "required": [
4537
+ "yesNo"
4538
+ ],
4539
+ "properties": {
4540
+ "yesNo": {
4541
+ "ta6Ref": "14.2.1"
4542
+ }
4543
+ }
4544
+ },
4545
+ "sufficientToRepayAllMortgages": {
4546
+ "ta6Ref": "14.3",
4547
+ "required": [
4548
+ "yesNo"
4549
+ ],
4550
+ "properties": {
4551
+ "yesNo": {
4552
+ "ta6Ref": "14.3.1"
4553
+ }
4554
+ }
4555
+ }
4556
+ }
4557
+ },
4558
+ "confirmationOfAccuracyByOwners": {
4559
+ "ta6Ref": "14.5",
4560
+ "required": [
4561
+ "confirmInformationIsAccurate"
4562
+ ],
4563
+ "properties": {
4564
+ "confirmInformationIsAccurate": {
4565
+ "ta6Ref": "14.5.1"
4566
+ }
4567
+ }
4568
+ }
4569
+ }
4570
+ }
4571
+ }
4572
+ }