@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,3419 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://trust.propdata.org.uk/schemas/v2/overlays/piq.json",
4
+ "properties": {
5
+ "propertyPack": {
6
+ "properties": {
7
+ "materialFacts": {
8
+ "properties": {
9
+ "address": {
10
+ "piqRef": "A1.1",
11
+ "properties": {
12
+ "line1": {
13
+ "piqRef": "A1.1.1"
14
+ },
15
+ "line2": {
16
+ "piqRef": "A1.1.2"
17
+ },
18
+ "town": {
19
+ "piqRef": "A1.1.3"
20
+ },
21
+ "postcode": {
22
+ "piqRef": "A1.1.5"
23
+ }
24
+ }
25
+ },
26
+ "ownership": {
27
+ "properties": {
28
+ "ownershipsToBeTransferred": {
29
+ "items": {
30
+ "properties": {
31
+ "ownershipType": {
32
+ "piqRef": "A1.2"
33
+ }
34
+ },
35
+ "oneOf": [
36
+ null,
37
+ {
38
+ "properties": {
39
+ "managedFreeholdOrCommonholdInformation": {
40
+ "properties": {
41
+ "contactDetails": {
42
+ "properties": {
43
+ "managingAgent": {
44
+ "piqRef": "A1.4.1"
45
+ }
46
+ }
47
+ },
48
+ "serviceCharge": {
49
+ "piqRef": "A1.4.2"
50
+ }
51
+ }
52
+ }
53
+ }
54
+ },
55
+ {
56
+ "properties": {
57
+ "leaseholdInformation": {
58
+ "properties": {
59
+ "leaseTerm": {
60
+ "properties": {
61
+ "lengthOfLeaseInYears": {
62
+ "piqRef": "A1.3.1"
63
+ }
64
+ }
65
+ },
66
+ "contactDetails": {
67
+ "properties": {
68
+ "contacts": {
69
+ "properties": {
70
+ "landlord": {
71
+ "piqRef": "A1.4.4"
72
+ }
73
+ }
74
+ }
75
+ }
76
+ },
77
+ "groundRent": {
78
+ "piqRef": "A1.3.3",
79
+ "discriminator": {
80
+ "propertyName": "isGroundRentPayable"
81
+ },
82
+ "oneOf": [
83
+ {
84
+ "properties": {
85
+ "isGroundRentPayable": {
86
+ "enum": [
87
+ "No"
88
+ ]
89
+ }
90
+ }
91
+ },
92
+ {
93
+ "properties": {
94
+ "isGroundRentPayable": {
95
+ "enum": [
96
+ "Yes"
97
+ ]
98
+ },
99
+ "annualGroundRent": {
100
+ "piqRef": "A1.3.3"
101
+ },
102
+ "rentSubjectToIncrease": {
103
+ "piqRef": "A1.3.4",
104
+ "discriminator": {
105
+ "propertyName": "yesNo"
106
+ },
107
+ "oneOf": [
108
+ {
109
+ "properties": {
110
+ "yesNo": {
111
+ "enum": [
112
+ "No"
113
+ ]
114
+ }
115
+ }
116
+ },
117
+ {
118
+ "properties": {
119
+ "yesNo": {
120
+ "enum": [
121
+ "Yes"
122
+ ]
123
+ },
124
+ "rentIncreaseCalculated": {
125
+ "piqRef": "A1.3.4.2"
126
+ }
127
+ }
128
+ }
129
+ ],
130
+ "properties": {
131
+ "yesNo": {
132
+ "piqRef": "A1.3.4.1"
133
+ }
134
+ }
135
+ }
136
+ }
137
+ }
138
+ ]
139
+ }
140
+ }
141
+ }
142
+ }
143
+ }
144
+ ]
145
+ }
146
+ }
147
+ }
148
+ },
149
+ "parking": {
150
+ "properties": {
151
+ "parkingArrangements": {
152
+ "piqRef": "A1.5",
153
+ "discriminator": {
154
+ "propertyName": "parkingArrangementsType"
155
+ },
156
+ "oneOf": [
157
+ {
158
+ "properties": {
159
+ "parkingArrangementsType": {
160
+ "enum": [
161
+ "Garage",
162
+ "Allocated parking space",
163
+ "Driveway",
164
+ "On street",
165
+ "Resident permit",
166
+ "Metered parking",
167
+ "Communal parking",
168
+ "None"
169
+ ]
170
+ }
171
+ }
172
+ },
173
+ {
174
+ "properties": {
175
+ "parkingArrangementsType": {
176
+ "enum": [
177
+ "Other"
178
+ ]
179
+ }
180
+ }
181
+ }
182
+ ],
183
+ "properties": {
184
+ "parkingArrangementsType": {
185
+ "piqRef": "A1.5.1"
186
+ }
187
+ }
188
+ }
189
+ }
190
+ },
191
+ "listingAndConservation": {
192
+ "properties": {
193
+ "isListed": {
194
+ "piqRef": "A1.6.1",
195
+ "discriminator": {
196
+ "propertyName": "yesNo"
197
+ },
198
+ "oneOf": [
199
+ {
200
+ "properties": {
201
+ "yesNo": {
202
+ "enum": [
203
+ "No",
204
+ "Not known"
205
+ ]
206
+ }
207
+ }
208
+ },
209
+ {
210
+ "properties": {
211
+ "yesNo": {
212
+ "enum": [
213
+ "Yes"
214
+ ]
215
+ }
216
+ }
217
+ }
218
+ ],
219
+ "properties": {
220
+ "yesNo": {
221
+ "piqRef": "A1.6.1.1"
222
+ }
223
+ }
224
+ },
225
+ "isConservationArea": {
226
+ "piqRef": "A1.6.2",
227
+ "discriminator": {
228
+ "propertyName": "yesNo"
229
+ },
230
+ "oneOf": [
231
+ {
232
+ "properties": {
233
+ "yesNo": {
234
+ "enum": [
235
+ "No",
236
+ "Not known"
237
+ ]
238
+ }
239
+ }
240
+ },
241
+ {
242
+ "properties": {
243
+ "yesNo": {
244
+ "enum": [
245
+ "Yes"
246
+ ]
247
+ }
248
+ }
249
+ }
250
+ ],
251
+ "properties": {
252
+ "yesNo": {
253
+ "piqRef": "A1.6.2.1"
254
+ }
255
+ }
256
+ },
257
+ "hasTreePreservationOrder": {
258
+ "piqRef": "A1.6.3",
259
+ "discriminator": {
260
+ "propertyName": "yesNo"
261
+ },
262
+ "oneOf": [
263
+ {
264
+ "properties": {
265
+ "yesNo": {
266
+ "enum": [
267
+ "No",
268
+ "Not known"
269
+ ]
270
+ }
271
+ }
272
+ },
273
+ {
274
+ "properties": {
275
+ "yesNo": {
276
+ "enum": [
277
+ "Yes"
278
+ ]
279
+ },
280
+ "workCarriedOut": {
281
+ "piqRef": "A1.6.4",
282
+ "discriminator": {
283
+ "propertyName": "yesNo"
284
+ },
285
+ "oneOf": [
286
+ {
287
+ "properties": {
288
+ "yesNo": {
289
+ "enum": [
290
+ "No"
291
+ ]
292
+ }
293
+ }
294
+ },
295
+ {
296
+ "properties": {
297
+ "yesNo": {
298
+ "enum": [
299
+ "Yes"
300
+ ]
301
+ }
302
+ }
303
+ }
304
+ ],
305
+ "properties": {
306
+ "yesNo": {
307
+ "piqRef": "A1.6.4.1"
308
+ }
309
+ }
310
+ }
311
+ }
312
+ }
313
+ ],
314
+ "properties": {
315
+ "yesNo": {
316
+ "piqRef": "A1.6.3.1"
317
+ }
318
+ }
319
+ }
320
+ }
321
+ },
322
+ "typeOfConstruction": {
323
+ "properties": {
324
+ "isStandardForm": {
325
+ "piqRef": "A5.5",
326
+ "discriminator": {
327
+ "propertyName": "yesNo"
328
+ },
329
+ "oneOf": [
330
+ {
331
+ "properties": {
332
+ "yesNo": {
333
+ "enum": [
334
+ "Yes"
335
+ ]
336
+ }
337
+ }
338
+ },
339
+ {
340
+ "properties": {
341
+ "yesNo": {
342
+ "enum": [
343
+ "No"
344
+ ]
345
+ }
346
+ }
347
+ }
348
+ ],
349
+ "properties": {
350
+ "yesNo": {
351
+ "piqRef": "A5.5.1"
352
+ }
353
+ }
354
+ }
355
+ }
356
+ },
357
+ "energyEfficiency": {
358
+ "properties": {
359
+ "greenDealLoan": {
360
+ "piqRef": "A11.4",
361
+ "properties": {
362
+ "hasGreenDealLoan": {
363
+ "properties": {
364
+ "yesNo": {
365
+ "piqRef": "A11.4.1"
366
+ }
367
+ }
368
+ }
369
+ }
370
+ }
371
+ }
372
+ },
373
+ "councilTax": {
374
+ "piqRef": "B2",
375
+ "properties": {
376
+ "councilTaxBand": {
377
+ "piqRef": "B2.1"
378
+ }
379
+ }
380
+ },
381
+ "disputesAndComplaints": {
382
+ "properties": {
383
+ "hasDisputesAndComplaints": {
384
+ "piqRef": "A2.1",
385
+ "discriminator": {
386
+ "propertyName": "yesNo"
387
+ },
388
+ "oneOf": [
389
+ {
390
+ "properties": {
391
+ "yesNo": {
392
+ "enum": [
393
+ "No"
394
+ ]
395
+ }
396
+ }
397
+ },
398
+ {
399
+ "properties": {
400
+ "yesNo": {
401
+ "enum": [
402
+ "Yes"
403
+ ]
404
+ },
405
+ "details": {
406
+ "piqRef": "A2.1.1.2"
407
+ }
408
+ }
409
+ }
410
+ ],
411
+ "properties": {
412
+ "yesNo": {
413
+ "piqRef": "A2.1.1"
414
+ }
415
+ }
416
+ }
417
+ }
418
+ },
419
+ "alterationsAndChanges": {
420
+ "properties": {
421
+ "hasStructuralAlterations": {
422
+ "piqRef": "A3.1",
423
+ "discriminator": {
424
+ "propertyName": "yesNo"
425
+ },
426
+ "oneOf": [
427
+ {
428
+ "properties": {
429
+ "yesNo": {
430
+ "enum": [
431
+ "No"
432
+ ]
433
+ }
434
+ }
435
+ },
436
+ {
437
+ "properties": {
438
+ "yesNo": {
439
+ "enum": [
440
+ "Yes"
441
+ ]
442
+ },
443
+ "details": {
444
+ "piqRef": "A3.1.2"
445
+ }
446
+ }
447
+ }
448
+ ],
449
+ "properties": {
450
+ "yesNo": {
451
+ "piqRef": "A3.1.1"
452
+ }
453
+ }
454
+ },
455
+ "windowReplacementsSince2002": {
456
+ "piqRef": "A3.2",
457
+ "discriminator": {
458
+ "propertyName": "yesNo"
459
+ },
460
+ "oneOf": [
461
+ {
462
+ "properties": {
463
+ "yesNo": {
464
+ "enum": [
465
+ "No"
466
+ ]
467
+ }
468
+ }
469
+ },
470
+ {
471
+ "properties": {
472
+ "yesNo": {
473
+ "enum": [
474
+ "Yes"
475
+ ]
476
+ },
477
+ "details": {
478
+ "piqRef": "A3.2.2"
479
+ },
480
+ "yearCompleted": {
481
+ "piqRef": "A3.2.3"
482
+ }
483
+ }
484
+ }
485
+ ],
486
+ "properties": {
487
+ "yesNo": {
488
+ "piqRef": "A3.2.1"
489
+ }
490
+ }
491
+ },
492
+ "hasAddedConservatory": {
493
+ "piqRef": "A3.4",
494
+ "discriminator": {
495
+ "propertyName": "yesNo"
496
+ },
497
+ "oneOf": [
498
+ {
499
+ "properties": {
500
+ "yesNo": {
501
+ "enum": [
502
+ "No"
503
+ ]
504
+ }
505
+ }
506
+ },
507
+ {
508
+ "properties": {
509
+ "yesNo": {
510
+ "enum": [
511
+ "Yes"
512
+ ]
513
+ },
514
+ "details": {
515
+ "piqRef": "A3.4.2"
516
+ },
517
+ "yearCompleted": {
518
+ "piqRef": "A3.4.3"
519
+ },
520
+ "buildingRegApproval": {
521
+ "piqRef": "A3.5.1",
522
+ "discriminator": {
523
+ "propertyName": "yesNo"
524
+ },
525
+ "oneOf": [
526
+ {
527
+ "properties": {
528
+ "yesNo": {
529
+ "enum": [
530
+ "Yes"
531
+ ]
532
+ }
533
+ }
534
+ },
535
+ {
536
+ "properties": {
537
+ "yesNo": {
538
+ "enum": [
539
+ "No",
540
+ "Not required"
541
+ ]
542
+ },
543
+ "details": {
544
+ "piqRef": "A3.5.1.2"
545
+ }
546
+ }
547
+ }
548
+ ],
549
+ "properties": {
550
+ "yesNo": {
551
+ "piqRef": "A3.5.1.1"
552
+ }
553
+ }
554
+ },
555
+ "planningPermission": {
556
+ "piqRef": "A3.5.2",
557
+ "discriminator": {
558
+ "propertyName": "yesNo"
559
+ },
560
+ "oneOf": [
561
+ {
562
+ "properties": {
563
+ "yesNo": {
564
+ "enum": [
565
+ "Yes"
566
+ ]
567
+ }
568
+ }
569
+ },
570
+ {
571
+ "properties": {
572
+ "yesNo": {
573
+ "enum": [
574
+ "No",
575
+ "Not required"
576
+ ]
577
+ }
578
+ }
579
+ }
580
+ ],
581
+ "properties": {
582
+ "yesNo": {
583
+ "piqRef": "A3.5.2.1"
584
+ }
585
+ }
586
+ },
587
+ "listedBuildingConsent": {
588
+ "piqRef": "A3.5.3",
589
+ "discriminator": {
590
+ "propertyName": "yesNo"
591
+ },
592
+ "oneOf": [
593
+ {
594
+ "properties": {
595
+ "yesNo": {
596
+ "enum": [
597
+ "Yes"
598
+ ]
599
+ }
600
+ }
601
+ },
602
+ {
603
+ "properties": {
604
+ "yesNo": {
605
+ "enum": [
606
+ "No",
607
+ "Not required"
608
+ ]
609
+ }
610
+ }
611
+ }
612
+ ],
613
+ "properties": {
614
+ "yesNo": {
615
+ "piqRef": "A3.5.3.1"
616
+ }
617
+ }
618
+ },
619
+ "deedRestrictionConsent": {
620
+ "piqRef": "A3.5.4",
621
+ "discriminator": {
622
+ "propertyName": "yesNo"
623
+ },
624
+ "oneOf": [
625
+ {
626
+ "properties": {
627
+ "yesNo": {
628
+ "enum": [
629
+ "Yes"
630
+ ]
631
+ }
632
+ }
633
+ },
634
+ {
635
+ "properties": {
636
+ "yesNo": {
637
+ "enum": [
638
+ "No",
639
+ "Not required"
640
+ ]
641
+ },
642
+ "details": {
643
+ "piqRef": "A3.5.5"
644
+ }
645
+ }
646
+ }
647
+ ],
648
+ "properties": {
649
+ "yesNo": {
650
+ "piqRef": "A3.5.4.1"
651
+ }
652
+ }
653
+ }
654
+ }
655
+ }
656
+ ],
657
+ "properties": {
658
+ "yesNo": {
659
+ "piqRef": "A3.4.1"
660
+ }
661
+ }
662
+ },
663
+ "worksUnfinished": {
664
+ "piqRef": "A3.6",
665
+ "discriminator": {
666
+ "propertyName": "yesNo"
667
+ },
668
+ "oneOf": [
669
+ {
670
+ "properties": {
671
+ "yesNo": {
672
+ "enum": [
673
+ "No"
674
+ ]
675
+ }
676
+ }
677
+ },
678
+ {
679
+ "properties": {
680
+ "yesNo": {
681
+ "enum": [
682
+ "Yes"
683
+ ]
684
+ },
685
+ "details": {
686
+ "piqRef": "A3.6.2"
687
+ }
688
+ }
689
+ }
690
+ ],
691
+ "properties": {
692
+ "yesNo": {
693
+ "piqRef": "A3.6.1"
694
+ }
695
+ }
696
+ },
697
+ "planningPermissionBreaches": {
698
+ "piqRef": "A3.7",
699
+ "discriminator": {
700
+ "propertyName": "yesNo"
701
+ },
702
+ "oneOf": [
703
+ {
704
+ "properties": {
705
+ "yesNo": {
706
+ "enum": [
707
+ "No"
708
+ ]
709
+ }
710
+ }
711
+ },
712
+ {
713
+ "properties": {
714
+ "yesNo": {
715
+ "enum": [
716
+ "Yes"
717
+ ]
718
+ },
719
+ "details": {
720
+ "piqRef": "A3.7.2"
721
+ }
722
+ }
723
+ }
724
+ ],
725
+ "properties": {
726
+ "yesNo": {
727
+ "piqRef": "A3.7.1"
728
+ }
729
+ }
730
+ },
731
+ "unresolvedPlanningIssues": {
732
+ "piqRef": "A3.8",
733
+ "discriminator": {
734
+ "propertyName": "yesNo"
735
+ },
736
+ "oneOf": [
737
+ {
738
+ "properties": {
739
+ "yesNo": {
740
+ "enum": [
741
+ "No"
742
+ ]
743
+ }
744
+ }
745
+ },
746
+ {
747
+ "properties": {
748
+ "yesNo": {
749
+ "enum": [
750
+ "Yes"
751
+ ]
752
+ },
753
+ "details": {
754
+ "piqRef": "A3.8.2"
755
+ }
756
+ }
757
+ }
758
+ ],
759
+ "properties": {
760
+ "yesNo": {
761
+ "piqRef": "A3.8.1"
762
+ }
763
+ }
764
+ }
765
+ }
766
+ },
767
+ "notices": {
768
+ "properties": {
769
+ "neighbourDevelopment": {
770
+ "piqRef": "A4.1",
771
+ "discriminator": {
772
+ "propertyName": "yesNo"
773
+ },
774
+ "oneOf": [
775
+ {
776
+ "properties": {
777
+ "yesNo": {
778
+ "enum": [
779
+ "No"
780
+ ]
781
+ }
782
+ }
783
+ },
784
+ {
785
+ "properties": {
786
+ "yesNo": {
787
+ "enum": [
788
+ "Yes"
789
+ ]
790
+ }
791
+ }
792
+ }
793
+ ],
794
+ "properties": {
795
+ "yesNo": {
796
+ "piqRef": "A4.1.1"
797
+ }
798
+ }
799
+ },
800
+ "planningApplication": {
801
+ "piqRef": "A4.2",
802
+ "discriminator": {
803
+ "propertyName": "yesNo"
804
+ },
805
+ "oneOf": [
806
+ {
807
+ "properties": {
808
+ "yesNo": {
809
+ "enum": [
810
+ "No"
811
+ ]
812
+ }
813
+ }
814
+ },
815
+ {
816
+ "properties": {
817
+ "yesNo": {
818
+ "enum": [
819
+ "Yes"
820
+ ]
821
+ }
822
+ }
823
+ }
824
+ ],
825
+ "properties": {
826
+ "yesNo": {
827
+ "piqRef": "A4.2.1"
828
+ }
829
+ }
830
+ },
831
+ "requiredMaintenance": {
832
+ "piqRef": "A4.3",
833
+ "discriminator": {
834
+ "propertyName": "yesNo"
835
+ },
836
+ "oneOf": [
837
+ {
838
+ "properties": {
839
+ "yesNo": {
840
+ "enum": [
841
+ "No"
842
+ ]
843
+ }
844
+ }
845
+ },
846
+ {
847
+ "properties": {
848
+ "yesNo": {
849
+ "enum": [
850
+ "Yes"
851
+ ]
852
+ }
853
+ }
854
+ }
855
+ ],
856
+ "properties": {
857
+ "yesNo": {
858
+ "piqRef": "A4.3.1"
859
+ }
860
+ }
861
+ },
862
+ "listedBuildingApplication": {
863
+ "piqRef": "A4.4",
864
+ "discriminator": {
865
+ "propertyName": "yesNo"
866
+ },
867
+ "oneOf": [
868
+ {
869
+ "properties": {
870
+ "yesNo": {
871
+ "enum": [
872
+ "No"
873
+ ]
874
+ }
875
+ }
876
+ },
877
+ {
878
+ "properties": {
879
+ "yesNo": {
880
+ "enum": [
881
+ "Yes"
882
+ ]
883
+ }
884
+ }
885
+ }
886
+ ],
887
+ "properties": {
888
+ "yesNo": {
889
+ "piqRef": "A4.4.1"
890
+ }
891
+ }
892
+ },
893
+ "infrastructureProject": {
894
+ "piqRef": "A4.5",
895
+ "discriminator": {
896
+ "propertyName": "yesNo"
897
+ },
898
+ "oneOf": [
899
+ {
900
+ "properties": {
901
+ "yesNo": {
902
+ "enum": [
903
+ "No"
904
+ ]
905
+ }
906
+ }
907
+ },
908
+ {
909
+ "properties": {
910
+ "yesNo": {
911
+ "enum": [
912
+ "Yes"
913
+ ]
914
+ }
915
+ }
916
+ }
917
+ ],
918
+ "properties": {
919
+ "yesNo": {
920
+ "piqRef": "A4.5.1"
921
+ }
922
+ }
923
+ },
924
+ "otherNotices": {
925
+ "piqRef": "A4.6",
926
+ "discriminator": {
927
+ "propertyName": "yesNo"
928
+ },
929
+ "oneOf": [
930
+ {
931
+ "properties": {
932
+ "yesNo": {
933
+ "enum": [
934
+ "No"
935
+ ]
936
+ }
937
+ }
938
+ },
939
+ {
940
+ "properties": {
941
+ "yesNo": {
942
+ "enum": [
943
+ "Yes"
944
+ ]
945
+ }
946
+ }
947
+ }
948
+ ],
949
+ "properties": {
950
+ "yesNo": {
951
+ "piqRef": "A4.6.1"
952
+ }
953
+ }
954
+ }
955
+ }
956
+ },
957
+ "specialistIssues": {
958
+ "properties": {
959
+ "dryRotEtcTreatment": {
960
+ "piqRef": "A5.1",
961
+ "discriminator": {
962
+ "propertyName": "yesNo"
963
+ },
964
+ "oneOf": [
965
+ {
966
+ "properties": {
967
+ "yesNo": {
968
+ "enum": [
969
+ "No"
970
+ ]
971
+ }
972
+ }
973
+ },
974
+ {
975
+ "properties": {
976
+ "yesNo": {
977
+ "enum": [
978
+ "Yes"
979
+ ]
980
+ }
981
+ }
982
+ }
983
+ ],
984
+ "properties": {
985
+ "yesNo": {
986
+ "piqRef": "A5.1.1"
987
+ }
988
+ }
989
+ },
990
+ "japaneseKnotweed": {
991
+ "piqRef": "A5.3",
992
+ "discriminator": {
993
+ "propertyName": "yesNo"
994
+ },
995
+ "oneOf": [
996
+ {
997
+ "properties": {
998
+ "yesNo": {
999
+ "enum": [
1000
+ "No",
1001
+ "Not known"
1002
+ ]
1003
+ }
1004
+ }
1005
+ },
1006
+ {
1007
+ "properties": {
1008
+ "yesNo": {
1009
+ "enum": [
1010
+ "Yes"
1011
+ ]
1012
+ }
1013
+ }
1014
+ }
1015
+ ],
1016
+ "properties": {
1017
+ "yesNo": {
1018
+ "piqRef": "A5.3.1"
1019
+ }
1020
+ }
1021
+ },
1022
+ "subsidenceOrStructuralFault": {
1023
+ "piqRef": "A5.4",
1024
+ "discriminator": {
1025
+ "propertyName": "yesNo"
1026
+ },
1027
+ "oneOf": [
1028
+ {
1029
+ "properties": {
1030
+ "yesNo": {
1031
+ "enum": [
1032
+ "No"
1033
+ ]
1034
+ }
1035
+ }
1036
+ },
1037
+ {
1038
+ "properties": {
1039
+ "yesNo": {
1040
+ "enum": [
1041
+ "Yes"
1042
+ ]
1043
+ }
1044
+ }
1045
+ }
1046
+ ],
1047
+ "properties": {
1048
+ "yesNo": {
1049
+ "piqRef": "A5.4.1"
1050
+ }
1051
+ }
1052
+ }
1053
+ }
1054
+ },
1055
+ "fixturesAndFittings": {
1056
+ "properties": {
1057
+ "itemsToRemove": {
1058
+ "piqRef": "A6.1",
1059
+ "discriminator": {
1060
+ "propertyName": "yesNo"
1061
+ },
1062
+ "oneOf": [
1063
+ {
1064
+ "properties": {
1065
+ "yesNo": {
1066
+ "enum": [
1067
+ "No"
1068
+ ]
1069
+ }
1070
+ }
1071
+ },
1072
+ {
1073
+ "properties": {
1074
+ "yesNo": {
1075
+ "enum": [
1076
+ "Yes"
1077
+ ]
1078
+ },
1079
+ "details": {
1080
+ "piqRef": "A6.1.2"
1081
+ }
1082
+ }
1083
+ }
1084
+ ],
1085
+ "properties": {
1086
+ "yesNo": {
1087
+ "piqRef": "A6.1.1"
1088
+ }
1089
+ }
1090
+ },
1091
+ "itemsToInclude": {
1092
+ "piqRef": "A6.2",
1093
+ "discriminator": {
1094
+ "propertyName": "yesNo"
1095
+ },
1096
+ "oneOf": [
1097
+ {
1098
+ "properties": {
1099
+ "yesNo": {
1100
+ "enum": [
1101
+ "No"
1102
+ ]
1103
+ }
1104
+ }
1105
+ },
1106
+ {
1107
+ "properties": {
1108
+ "yesNo": {
1109
+ "enum": [
1110
+ "Yes"
1111
+ ]
1112
+ },
1113
+ "details": {
1114
+ "piqRef": "A6.2.2"
1115
+ }
1116
+ }
1117
+ }
1118
+ ],
1119
+ "properties": {
1120
+ "yesNo": {
1121
+ "piqRef": "A6.2.1"
1122
+ }
1123
+ }
1124
+ }
1125
+ }
1126
+ },
1127
+ "connectedUtilities": {
1128
+ "properties": {
1129
+ "mainsElectricity": {
1130
+ "piqRef": "A7.1.1",
1131
+ "discriminator": {
1132
+ "propertyName": "yesNo"
1133
+ },
1134
+ "oneOf": [
1135
+ {
1136
+ "properties": {
1137
+ "yesNo": {
1138
+ "enum": [
1139
+ "No"
1140
+ ]
1141
+ }
1142
+ }
1143
+ },
1144
+ {
1145
+ "properties": {
1146
+ "yesNo": {
1147
+ "enum": [
1148
+ "Yes"
1149
+ ]
1150
+ },
1151
+ "supplier": {
1152
+ "piqRef": "A7.1.2"
1153
+ }
1154
+ }
1155
+ },
1156
+ {
1157
+ "properties": {
1158
+ "yesNo": {
1159
+ "enum": [
1160
+ "To be connected"
1161
+ ]
1162
+ },
1163
+ "supplier": {
1164
+ "piqRef": "A7.1.2"
1165
+ }
1166
+ }
1167
+ }
1168
+ ]
1169
+ },
1170
+ "mainsGas": {
1171
+ "piqRef": "A7.1.3",
1172
+ "discriminator": {
1173
+ "propertyName": "yesNo"
1174
+ },
1175
+ "oneOf": [
1176
+ {
1177
+ "properties": {
1178
+ "yesNo": {
1179
+ "enum": [
1180
+ "No"
1181
+ ]
1182
+ }
1183
+ }
1184
+ },
1185
+ {
1186
+ "properties": {
1187
+ "yesNo": {
1188
+ "enum": [
1189
+ "Yes"
1190
+ ]
1191
+ },
1192
+ "supplier": {
1193
+ "piqRef": "A7.1.4"
1194
+ }
1195
+ }
1196
+ },
1197
+ {
1198
+ "properties": {
1199
+ "yesNo": {
1200
+ "enum": [
1201
+ "To be connected"
1202
+ ]
1203
+ },
1204
+ "supplier": {
1205
+ "piqRef": "A7.1.4"
1206
+ }
1207
+ }
1208
+ }
1209
+ ]
1210
+ },
1211
+ "lpg": {
1212
+ "piqRef": "A7.1.5",
1213
+ "discriminator": {
1214
+ "propertyName": "yesNo"
1215
+ },
1216
+ "oneOf": [
1217
+ {
1218
+ "properties": {
1219
+ "yesNo": {
1220
+ "enum": [
1221
+ "No"
1222
+ ]
1223
+ }
1224
+ }
1225
+ },
1226
+ {
1227
+ "properties": {
1228
+ "yesNo": {
1229
+ "enum": [
1230
+ "Yes"
1231
+ ]
1232
+ },
1233
+ "supplier": {
1234
+ "piqRef": "A7.1.6"
1235
+ }
1236
+ }
1237
+ },
1238
+ {
1239
+ "properties": {
1240
+ "yesNo": {
1241
+ "enum": [
1242
+ "To be connected"
1243
+ ]
1244
+ },
1245
+ "supplier": {
1246
+ "piqRef": "A7.1.6"
1247
+ }
1248
+ }
1249
+ }
1250
+ ]
1251
+ },
1252
+ "telephone": {
1253
+ "piqRef": "A7.1.11",
1254
+ "discriminator": {
1255
+ "propertyName": "yesNo"
1256
+ },
1257
+ "oneOf": [
1258
+ {
1259
+ "properties": {
1260
+ "yesNo": {
1261
+ "enum": [
1262
+ "No"
1263
+ ]
1264
+ }
1265
+ }
1266
+ },
1267
+ {
1268
+ "properties": {
1269
+ "yesNo": {
1270
+ "enum": [
1271
+ "Yes"
1272
+ ]
1273
+ },
1274
+ "supplier": {
1275
+ "piqRef": "A7.1.12"
1276
+ }
1277
+ }
1278
+ },
1279
+ {
1280
+ "properties": {
1281
+ "yesNo": {
1282
+ "enum": [
1283
+ "To be connected"
1284
+ ]
1285
+ },
1286
+ "supplier": {
1287
+ "piqRef": "A7.1.12"
1288
+ }
1289
+ }
1290
+ }
1291
+ ]
1292
+ },
1293
+ "cableSatelliteTV": {
1294
+ "piqRef": "A7.1.13",
1295
+ "discriminator": {
1296
+ "propertyName": "yesNo"
1297
+ },
1298
+ "oneOf": [
1299
+ {
1300
+ "properties": {
1301
+ "yesNo": {
1302
+ "enum": [
1303
+ "No"
1304
+ ]
1305
+ }
1306
+ }
1307
+ },
1308
+ {
1309
+ "properties": {
1310
+ "yesNo": {
1311
+ "enum": [
1312
+ "Yes"
1313
+ ]
1314
+ },
1315
+ "supplier": {
1316
+ "piqRef": "A7.1.14"
1317
+ }
1318
+ }
1319
+ },
1320
+ {
1321
+ "properties": {
1322
+ "yesNo": {
1323
+ "enum": [
1324
+ "To be connected"
1325
+ ]
1326
+ }
1327
+ }
1328
+ }
1329
+ ]
1330
+ },
1331
+ "broadband": {
1332
+ "piqRef": "A7.1.15",
1333
+ "discriminator": {
1334
+ "propertyName": "yesNo"
1335
+ },
1336
+ "oneOf": [
1337
+ {
1338
+ "properties": {
1339
+ "yesNo": {
1340
+ "enum": [
1341
+ "No"
1342
+ ]
1343
+ }
1344
+ }
1345
+ },
1346
+ {
1347
+ "properties": {
1348
+ "yesNo": {
1349
+ "enum": [
1350
+ "Yes"
1351
+ ]
1352
+ },
1353
+ "supplier": {
1354
+ "piqRef": "A7.1.16"
1355
+ }
1356
+ }
1357
+ },
1358
+ {
1359
+ "properties": {
1360
+ "yesNo": {
1361
+ "enum": [
1362
+ "To be connected"
1363
+ ]
1364
+ }
1365
+ }
1366
+ }
1367
+ ]
1368
+ },
1369
+ "solarPanels": {
1370
+ "piqRef": "A7.1.17",
1371
+ "discriminator": {
1372
+ "propertyName": "yesNo"
1373
+ },
1374
+ "oneOf": [
1375
+ {
1376
+ "properties": {
1377
+ "yesNo": {
1378
+ "enum": [
1379
+ "No"
1380
+ ]
1381
+ }
1382
+ }
1383
+ },
1384
+ {
1385
+ "properties": {
1386
+ "yesNo": {
1387
+ "enum": [
1388
+ "Yes"
1389
+ ]
1390
+ }
1391
+ }
1392
+ },
1393
+ {
1394
+ "properties": {
1395
+ "yesNo": {
1396
+ "enum": [
1397
+ "To be connected"
1398
+ ]
1399
+ },
1400
+ "supplier": {
1401
+ "piqRef": "A7.1.18"
1402
+ }
1403
+ }
1404
+ }
1405
+ ]
1406
+ },
1407
+ "otherServices": {
1408
+ "piqRef": "A7.1.19",
1409
+ "discriminator": {
1410
+ "propertyName": "yesNo"
1411
+ },
1412
+ "oneOf": [
1413
+ {
1414
+ "properties": {
1415
+ "yesNo": {
1416
+ "enum": [
1417
+ "No"
1418
+ ]
1419
+ }
1420
+ }
1421
+ },
1422
+ {
1423
+ "properties": {
1424
+ "yesNo": {
1425
+ "enum": [
1426
+ "Yes"
1427
+ ]
1428
+ }
1429
+ }
1430
+ },
1431
+ {
1432
+ "properties": {
1433
+ "yesNo": {
1434
+ "enum": [
1435
+ "To be connected"
1436
+ ]
1437
+ },
1438
+ "supplier": {
1439
+ "piqRef": "A7.1.20"
1440
+ }
1441
+ }
1442
+ }
1443
+ ]
1444
+ }
1445
+ }
1446
+ },
1447
+ "waterAndDrainage": {
1448
+ "properties": {
1449
+ "water": {
1450
+ "properties": {
1451
+ "mainsWater": {
1452
+ "piqRef": "A7.1.7",
1453
+ "discriminator": {
1454
+ "propertyName": "yesNo"
1455
+ },
1456
+ "oneOf": [
1457
+ {
1458
+ "properties": {
1459
+ "yesNo": {
1460
+ "enum": [
1461
+ "No"
1462
+ ]
1463
+ }
1464
+ }
1465
+ },
1466
+ {
1467
+ "properties": {
1468
+ "yesNo": {
1469
+ "enum": [
1470
+ "Yes"
1471
+ ]
1472
+ },
1473
+ "supplier": {
1474
+ "piqRef": "A7.1.8"
1475
+ }
1476
+ }
1477
+ },
1478
+ {
1479
+ "properties": {
1480
+ "yesNo": {
1481
+ "enum": [
1482
+ "To be connected"
1483
+ ]
1484
+ },
1485
+ "supplier": {
1486
+ "piqRef": "A7.1.8"
1487
+ }
1488
+ }
1489
+ }
1490
+ ]
1491
+ }
1492
+ }
1493
+ },
1494
+ "drainage": {
1495
+ "properties": {
1496
+ "mainsFoulDrainage": {
1497
+ "oneOf": [
1498
+ null,
1499
+ null,
1500
+ {
1501
+ "properties": {
1502
+ "septicTank": {
1503
+ "piqRef": "A7.1.23",
1504
+ "discriminator": {
1505
+ "propertyName": "yesNo"
1506
+ },
1507
+ "oneOf": [
1508
+ {
1509
+ "properties": {
1510
+ "yesNo": {
1511
+ "enum": [
1512
+ "No"
1513
+ ]
1514
+ }
1515
+ }
1516
+ },
1517
+ {
1518
+ "properties": {
1519
+ "yesNo": {
1520
+ "enum": [
1521
+ "Yes"
1522
+ ]
1523
+ },
1524
+ "dateLastEmptied": {
1525
+ "piqRef": "A7.1.24"
1526
+ }
1527
+ }
1528
+ }
1529
+ ]
1530
+ },
1531
+ "cesspit": {
1532
+ "piqRef": "A7.1.25",
1533
+ "discriminator": {
1534
+ "propertyName": "yesNo"
1535
+ },
1536
+ "oneOf": [
1537
+ {
1538
+ "properties": {
1539
+ "yesNo": {
1540
+ "enum": [
1541
+ "No"
1542
+ ]
1543
+ }
1544
+ }
1545
+ },
1546
+ {
1547
+ "properties": {
1548
+ "yesNo": {
1549
+ "enum": [
1550
+ "Yes"
1551
+ ]
1552
+ },
1553
+ "dateLastEmptied": {
1554
+ "piqRef": "A7.1.26"
1555
+ }
1556
+ }
1557
+ }
1558
+ ]
1559
+ },
1560
+ "sewerageTreatmentPlant": {
1561
+ "piqRef": "A7.1.27",
1562
+ "discriminator": {
1563
+ "propertyName": "yesNo"
1564
+ },
1565
+ "oneOf": [
1566
+ {
1567
+ "properties": {
1568
+ "yesNo": {
1569
+ "enum": [
1570
+ "No"
1571
+ ]
1572
+ }
1573
+ }
1574
+ },
1575
+ {
1576
+ "properties": {
1577
+ "yesNo": {
1578
+ "enum": [
1579
+ "Yes"
1580
+ ]
1581
+ }
1582
+ }
1583
+ }
1584
+ ]
1585
+ },
1586
+ "otherConnectedProperties": {
1587
+ "piqRef": "A7.1.29",
1588
+ "discriminator": {
1589
+ "propertyName": "yesNo"
1590
+ },
1591
+ "oneOf": [
1592
+ {
1593
+ "properties": {
1594
+ "yesNo": {
1595
+ "enum": [
1596
+ "No"
1597
+ ]
1598
+ }
1599
+ }
1600
+ },
1601
+ {
1602
+ "properties": {
1603
+ "yesNo": {
1604
+ "enum": [
1605
+ "Yes"
1606
+ ]
1607
+ }
1608
+ }
1609
+ }
1610
+ ]
1611
+ },
1612
+ "plantOnOtherLand": {
1613
+ "piqRef": "A7.1.30",
1614
+ "discriminator": {
1615
+ "propertyName": "yesNo"
1616
+ },
1617
+ "oneOf": [
1618
+ {
1619
+ "properties": {
1620
+ "yesNo": {
1621
+ "enum": [
1622
+ "No"
1623
+ ]
1624
+ }
1625
+ }
1626
+ },
1627
+ {
1628
+ "properties": {
1629
+ "yesNo": {
1630
+ "enum": [
1631
+ "Yes"
1632
+ ]
1633
+ }
1634
+ }
1635
+ }
1636
+ ]
1637
+ },
1638
+ "plantRegistered": {
1639
+ "piqRef": "A7.1.31",
1640
+ "discriminator": {
1641
+ "propertyName": "yesNo"
1642
+ },
1643
+ "oneOf": [
1644
+ {
1645
+ "properties": {
1646
+ "yesNo": {
1647
+ "enum": [
1648
+ "No"
1649
+ ]
1650
+ }
1651
+ }
1652
+ },
1653
+ {
1654
+ "properties": {
1655
+ "yesNo": {
1656
+ "enum": [
1657
+ "Yes"
1658
+ ]
1659
+ }
1660
+ }
1661
+ }
1662
+ ]
1663
+ }
1664
+ }
1665
+ }
1666
+ ]
1667
+ }
1668
+ }
1669
+ },
1670
+ "maintenanceAgreements": {
1671
+ "piqRef": "A7.2",
1672
+ "discriminator": {
1673
+ "propertyName": "yesNo"
1674
+ },
1675
+ "oneOf": [
1676
+ {
1677
+ "properties": {
1678
+ "yesNo": {
1679
+ "enum": [
1680
+ "No"
1681
+ ]
1682
+ }
1683
+ }
1684
+ },
1685
+ {
1686
+ "properties": {
1687
+ "yesNo": {
1688
+ "enum": [
1689
+ "Yes"
1690
+ ]
1691
+ },
1692
+ "details": {
1693
+ "piqRef": "A7.2.2"
1694
+ }
1695
+ }
1696
+ }
1697
+ ],
1698
+ "properties": {
1699
+ "yesNo": {
1700
+ "piqRef": "A7.2.1"
1701
+ }
1702
+ }
1703
+ }
1704
+ }
1705
+ },
1706
+ "centralHeating": {
1707
+ "piqRef": "A7.3",
1708
+ "discriminator": {
1709
+ "propertyName": "hasCentralHeating"
1710
+ },
1711
+ "oneOf": [
1712
+ {
1713
+ "properties": {
1714
+ "hasCentralHeating": {
1715
+ "enum": [
1716
+ "No"
1717
+ ]
1718
+ }
1719
+ }
1720
+ },
1721
+ {
1722
+ "properties": {
1723
+ "hasCentralHeating": {
1724
+ "enum": [
1725
+ "Yes"
1726
+ ]
1727
+ },
1728
+ "centralHeatingDetails": {
1729
+ "piqRef": "A7.3.1.1",
1730
+ "properties": {
1731
+ "centralHeatingInstalled": {
1732
+ "piqRef": "A7.4.1"
1733
+ },
1734
+ "heatingLastServicedDate": {
1735
+ "piqRef": "A7.5.1"
1736
+ },
1737
+ "heatingInGoodWorkingOrder": {
1738
+ "piqRef": "A7.6",
1739
+ "discriminator": {
1740
+ "propertyName": "yesNo"
1741
+ },
1742
+ "oneOf": [
1743
+ {
1744
+ "properties": {
1745
+ "yesNo": {
1746
+ "enum": [
1747
+ "Yes"
1748
+ ]
1749
+ }
1750
+ }
1751
+ },
1752
+ {
1753
+ "properties": {
1754
+ "yesNo": {
1755
+ "enum": [
1756
+ "No"
1757
+ ]
1758
+ }
1759
+ }
1760
+ }
1761
+ ]
1762
+ }
1763
+ }
1764
+ }
1765
+ }
1766
+ }
1767
+ ],
1768
+ "properties": {
1769
+ "hasCentralHeating": {
1770
+ "piqRef": "A7.3.1"
1771
+ }
1772
+ }
1773
+ },
1774
+ "insurance": {
1775
+ "properties": {
1776
+ "isInsured": {
1777
+ "piqRef": "A8.2"
1778
+ }
1779
+ },
1780
+ "oneOf": [
1781
+ null,
1782
+ {
1783
+ "properties": {
1784
+ "difficultiesObtainingInsurance": {
1785
+ "piqRef": "A8.1",
1786
+ "properties": {
1787
+ "abnormalRiseInPremiums": {
1788
+ "piqRef": "A8.1a",
1789
+ "discriminator": {
1790
+ "propertyName": "yesNo"
1791
+ },
1792
+ "oneOf": [
1793
+ {
1794
+ "properties": {
1795
+ "yesNo": {
1796
+ "enum": [
1797
+ "No"
1798
+ ]
1799
+ }
1800
+ }
1801
+ },
1802
+ {
1803
+ "properties": {
1804
+ "yesNo": {
1805
+ "enum": [
1806
+ "Yes"
1807
+ ]
1808
+ },
1809
+ "details": {
1810
+ "piqRef": "A8.1a1.1"
1811
+ }
1812
+ }
1813
+ }
1814
+ ],
1815
+ "properties": {
1816
+ "yesNo": {
1817
+ "piqRef": "A8.1a1"
1818
+ }
1819
+ }
1820
+ },
1821
+ "subjectToHighExcesses": {
1822
+ "piqRef": "A8.1b",
1823
+ "discriminator": {
1824
+ "propertyName": "yesNo"
1825
+ },
1826
+ "oneOf": [
1827
+ {
1828
+ "properties": {
1829
+ "yesNo": {
1830
+ "enum": [
1831
+ "No"
1832
+ ]
1833
+ }
1834
+ }
1835
+ },
1836
+ {
1837
+ "properties": {
1838
+ "yesNo": {
1839
+ "enum": [
1840
+ "Yes"
1841
+ ]
1842
+ },
1843
+ "details": {
1844
+ "piqRef": "A8.1b2"
1845
+ }
1846
+ }
1847
+ }
1848
+ ],
1849
+ "properties": {
1850
+ "yesNo": {
1851
+ "piqRef": "A8.1b1"
1852
+ }
1853
+ }
1854
+ },
1855
+ "subjectToUnusualConditions": {
1856
+ "piqRef": "A8.1c",
1857
+ "discriminator": {
1858
+ "propertyName": "yesNo"
1859
+ },
1860
+ "oneOf": [
1861
+ {
1862
+ "properties": {
1863
+ "yesNo": {
1864
+ "enum": [
1865
+ "No"
1866
+ ]
1867
+ }
1868
+ }
1869
+ },
1870
+ {
1871
+ "properties": {
1872
+ "yesNo": {
1873
+ "enum": [
1874
+ "Yes"
1875
+ ]
1876
+ },
1877
+ "details": {
1878
+ "piqRef": "A8.1c2"
1879
+ }
1880
+ }
1881
+ }
1882
+ ],
1883
+ "properties": {
1884
+ "yesNo": {
1885
+ "piqRef": "A8.1c1"
1886
+ }
1887
+ }
1888
+ },
1889
+ "refused": {
1890
+ "piqRef": "A8.1d",
1891
+ "discriminator": {
1892
+ "propertyName": "yesNo"
1893
+ },
1894
+ "oneOf": [
1895
+ {
1896
+ "properties": {
1897
+ "yesNo": {
1898
+ "enum": [
1899
+ "No"
1900
+ ]
1901
+ }
1902
+ }
1903
+ },
1904
+ {
1905
+ "properties": {
1906
+ "yesNo": {
1907
+ "enum": [
1908
+ "Yes"
1909
+ ]
1910
+ },
1911
+ "details": {
1912
+ "piqRef": "A8.1d2"
1913
+ }
1914
+ }
1915
+ }
1916
+ ],
1917
+ "properties": {
1918
+ "yesNo": {
1919
+ "piqRef": "A8.1d1"
1920
+ }
1921
+ }
1922
+ }
1923
+ }
1924
+ }
1925
+ }
1926
+ }
1927
+ ]
1928
+ },
1929
+ "boundaries": {
1930
+ "properties": {
1931
+ "partOutsideLegalOwnership": {
1932
+ "piqRef": "A9.1",
1933
+ "discriminator": {
1934
+ "propertyName": "yesNo"
1935
+ },
1936
+ "oneOf": [
1937
+ {
1938
+ "properties": {
1939
+ "yesNo": {
1940
+ "enum": [
1941
+ "No"
1942
+ ]
1943
+ }
1944
+ }
1945
+ },
1946
+ {
1947
+ "properties": {
1948
+ "yesNo": {
1949
+ "enum": [
1950
+ "Yes"
1951
+ ]
1952
+ },
1953
+ "details": {
1954
+ "piqRef": "A9.1.2"
1955
+ }
1956
+ }
1957
+ }
1958
+ ],
1959
+ "properties": {
1960
+ "yesNo": {
1961
+ "piqRef": "A9.1.1"
1962
+ }
1963
+ }
1964
+ },
1965
+ "boundaryAlterationProposal": {
1966
+ "piqRef": "A9.2",
1967
+ "discriminator": {
1968
+ "propertyName": "yesNo"
1969
+ },
1970
+ "oneOf": [
1971
+ {
1972
+ "properties": {
1973
+ "yesNo": {
1974
+ "enum": [
1975
+ "No"
1976
+ ]
1977
+ }
1978
+ }
1979
+ },
1980
+ {
1981
+ "properties": {
1982
+ "yesNo": {
1983
+ "enum": [
1984
+ "Yes"
1985
+ ]
1986
+ },
1987
+ "details": {
1988
+ "piqRef": "A9.2.2"
1989
+ }
1990
+ }
1991
+ }
1992
+ ],
1993
+ "properties": {
1994
+ "yesNo": {
1995
+ "piqRef": "A9.2.1"
1996
+ }
1997
+ }
1998
+ }
1999
+ }
2000
+ },
2001
+ "rightsAndInformalArrangements": {
2002
+ "properties": {
2003
+ "sharedContributions": {
2004
+ "piqRef": "A10.1",
2005
+ "discriminator": {
2006
+ "propertyName": "yesNo"
2007
+ },
2008
+ "oneOf": [
2009
+ {
2010
+ "properties": {
2011
+ "yesNo": {
2012
+ "enum": [
2013
+ "No"
2014
+ ]
2015
+ }
2016
+ }
2017
+ },
2018
+ {
2019
+ "properties": {
2020
+ "yesNo": {
2021
+ "enum": [
2022
+ "Yes"
2023
+ ]
2024
+ },
2025
+ "details": {
2026
+ "piqRef": "A10.1.2"
2027
+ }
2028
+ }
2029
+ }
2030
+ ],
2031
+ "properties": {
2032
+ "yesNo": {
2033
+ "piqRef": "A10.1.1"
2034
+ }
2035
+ }
2036
+ },
2037
+ "neighbouringLandRights": {
2038
+ "piqRef": "A10.2",
2039
+ "discriminator": {
2040
+ "propertyName": "yesNo"
2041
+ },
2042
+ "oneOf": [
2043
+ {
2044
+ "properties": {
2045
+ "yesNo": {
2046
+ "enum": [
2047
+ "No"
2048
+ ]
2049
+ }
2050
+ }
2051
+ },
2052
+ {
2053
+ "properties": {
2054
+ "yesNo": {
2055
+ "enum": [
2056
+ "Yes"
2057
+ ]
2058
+ },
2059
+ "details": {
2060
+ "piqRef": "A10.2.2"
2061
+ }
2062
+ }
2063
+ }
2064
+ ],
2065
+ "properties": {
2066
+ "yesNo": {
2067
+ "piqRef": "A10.2.1"
2068
+ }
2069
+ }
2070
+ },
2071
+ "accessRestrictionAttempts": {
2072
+ "piqRef": "A10.3",
2073
+ "discriminator": {
2074
+ "propertyName": "yesNo"
2075
+ },
2076
+ "oneOf": [
2077
+ {
2078
+ "properties": {
2079
+ "yesNo": {
2080
+ "enum": [
2081
+ "No"
2082
+ ]
2083
+ }
2084
+ }
2085
+ },
2086
+ {
2087
+ "properties": {
2088
+ "yesNo": {
2089
+ "enum": [
2090
+ "Yes"
2091
+ ]
2092
+ },
2093
+ "details": {
2094
+ "piqRef": "A10.3.2"
2095
+ }
2096
+ }
2097
+ }
2098
+ ],
2099
+ "properties": {
2100
+ "yesNo": {
2101
+ "piqRef": "A10.3.1"
2102
+ }
2103
+ }
2104
+ },
2105
+ "rightsOrArrangements": {
2106
+ "properties": {
2107
+ "publicRightOfWay": {
2108
+ "piqRef": "A10.4",
2109
+ "discriminator": {
2110
+ "propertyName": "yesNo"
2111
+ },
2112
+ "oneOf": [
2113
+ {
2114
+ "properties": {
2115
+ "yesNo": {
2116
+ "enum": [
2117
+ "No"
2118
+ ]
2119
+ }
2120
+ }
2121
+ },
2122
+ {
2123
+ "properties": {
2124
+ "yesNo": {
2125
+ "enum": [
2126
+ "Yes"
2127
+ ]
2128
+ },
2129
+ "details": {
2130
+ "piqRef": "A10.4.2"
2131
+ }
2132
+ }
2133
+ }
2134
+ ],
2135
+ "properties": {
2136
+ "yesNo": {
2137
+ "piqRef": "A10.4.1"
2138
+ }
2139
+ }
2140
+ },
2141
+ "rightsOfLight": {
2142
+ "piqRef": "A10.5a",
2143
+ "discriminator": {
2144
+ "propertyName": "yesNo"
2145
+ },
2146
+ "oneOf": [
2147
+ {
2148
+ "properties": {
2149
+ "yesNo": {
2150
+ "enum": [
2151
+ "No"
2152
+ ]
2153
+ }
2154
+ }
2155
+ },
2156
+ {
2157
+ "properties": {
2158
+ "yesNo": {
2159
+ "enum": [
2160
+ "Yes"
2161
+ ]
2162
+ }
2163
+ }
2164
+ }
2165
+ ],
2166
+ "properties": {
2167
+ "yesNo": {
2168
+ "piqRef": "A10.5a1"
2169
+ }
2170
+ }
2171
+ },
2172
+ "rightsOfSupport": {
2173
+ "piqRef": "A10.5b",
2174
+ "discriminator": {
2175
+ "propertyName": "yesNo"
2176
+ },
2177
+ "oneOf": [
2178
+ {
2179
+ "properties": {
2180
+ "yesNo": {
2181
+ "enum": [
2182
+ "No"
2183
+ ]
2184
+ }
2185
+ }
2186
+ },
2187
+ {
2188
+ "properties": {
2189
+ "yesNo": {
2190
+ "enum": [
2191
+ "Yes"
2192
+ ]
2193
+ }
2194
+ }
2195
+ }
2196
+ ],
2197
+ "properties": {
2198
+ "yesNo": {
2199
+ "piqRef": "A10.5b1"
2200
+ }
2201
+ }
2202
+ },
2203
+ "rightsCreatedThroughCustom": {
2204
+ "piqRef": "A10.5c",
2205
+ "discriminator": {
2206
+ "propertyName": "yesNo"
2207
+ },
2208
+ "oneOf": [
2209
+ {
2210
+ "properties": {
2211
+ "yesNo": {
2212
+ "enum": [
2213
+ "No"
2214
+ ]
2215
+ }
2216
+ }
2217
+ },
2218
+ {
2219
+ "properties": {
2220
+ "yesNo": {
2221
+ "enum": [
2222
+ "Yes"
2223
+ ]
2224
+ }
2225
+ }
2226
+ }
2227
+ ],
2228
+ "properties": {
2229
+ "yesNo": {
2230
+ "piqRef": "A10.5c1"
2231
+ }
2232
+ }
2233
+ },
2234
+ "rightsToTakeFromLand": {
2235
+ "piqRef": "A10.5f",
2236
+ "discriminator": {
2237
+ "propertyName": "yesNo"
2238
+ },
2239
+ "oneOf": [
2240
+ {
2241
+ "properties": {
2242
+ "yesNo": {
2243
+ "enum": [
2244
+ "No"
2245
+ ]
2246
+ }
2247
+ }
2248
+ },
2249
+ {
2250
+ "properties": {
2251
+ "yesNo": {
2252
+ "enum": [
2253
+ "Yes"
2254
+ ]
2255
+ }
2256
+ }
2257
+ }
2258
+ ],
2259
+ "properties": {
2260
+ "yesNo": {
2261
+ "piqRef": "A10.5f1"
2262
+ }
2263
+ }
2264
+ },
2265
+ "minesAndMinerals": {
2266
+ "piqRef": "A10.5d",
2267
+ "discriminator": {
2268
+ "propertyName": "yesNo"
2269
+ },
2270
+ "oneOf": [
2271
+ {
2272
+ "properties": {
2273
+ "yesNo": {
2274
+ "enum": [
2275
+ "No"
2276
+ ]
2277
+ }
2278
+ }
2279
+ },
2280
+ {
2281
+ "properties": {
2282
+ "yesNo": {
2283
+ "enum": [
2284
+ "Yes"
2285
+ ]
2286
+ }
2287
+ }
2288
+ }
2289
+ ],
2290
+ "properties": {
2291
+ "yesNo": {
2292
+ "piqRef": "A10.5d1"
2293
+ }
2294
+ }
2295
+ },
2296
+ "churchChancel": {
2297
+ "piqRef": "A10.5e",
2298
+ "discriminator": {
2299
+ "propertyName": "yesNo"
2300
+ },
2301
+ "oneOf": [
2302
+ {
2303
+ "properties": {
2304
+ "yesNo": {
2305
+ "enum": [
2306
+ "No"
2307
+ ]
2308
+ }
2309
+ }
2310
+ },
2311
+ {
2312
+ "properties": {
2313
+ "yesNo": {
2314
+ "enum": [
2315
+ "Yes"
2316
+ ]
2317
+ }
2318
+ }
2319
+ }
2320
+ ],
2321
+ "properties": {
2322
+ "yesNo": {
2323
+ "piqRef": "A10.5e1"
2324
+ }
2325
+ }
2326
+ },
2327
+ "otherRights": {
2328
+ "piqRef": "A10.5g",
2329
+ "discriminator": {
2330
+ "propertyName": "yesNo"
2331
+ },
2332
+ "oneOf": [
2333
+ {
2334
+ "properties": {
2335
+ "yesNo": {
2336
+ "enum": [
2337
+ "No"
2338
+ ]
2339
+ }
2340
+ }
2341
+ },
2342
+ {
2343
+ "properties": {
2344
+ "yesNo": {
2345
+ "enum": [
2346
+ "Yes"
2347
+ ]
2348
+ }
2349
+ }
2350
+ }
2351
+ ],
2352
+ "properties": {
2353
+ "yesNo": {
2354
+ "piqRef": "A10.5g1"
2355
+ }
2356
+ }
2357
+ }
2358
+ }
2359
+ }
2360
+ }
2361
+ },
2362
+ "environmentalIssues": {
2363
+ "piqRef": "A11.1",
2364
+ "properties": {
2365
+ "flooding": {
2366
+ "properties": {
2367
+ "floodRiskReport": {
2368
+ "piqRef": "A11.1.1",
2369
+ "discriminator": {
2370
+ "propertyName": "yesNo"
2371
+ },
2372
+ "oneOf": [
2373
+ {
2374
+ "properties": {
2375
+ "yesNo": {
2376
+ "enum": [
2377
+ "No"
2378
+ ]
2379
+ }
2380
+ }
2381
+ },
2382
+ {
2383
+ "properties": {
2384
+ "yesNo": {
2385
+ "enum": [
2386
+ "Yes"
2387
+ ]
2388
+ }
2389
+ }
2390
+ }
2391
+ ],
2392
+ "properties": {
2393
+ "yesNo": {
2394
+ "piqRef": "A11.1.1.1"
2395
+ }
2396
+ }
2397
+ }
2398
+ }
2399
+ },
2400
+ "otherEnvironmental": {
2401
+ "piqRef": "A11.5",
2402
+ "discriminator": {
2403
+ "propertyName": "yesNo"
2404
+ },
2405
+ "oneOf": [
2406
+ {
2407
+ "properties": {
2408
+ "yesNo": {
2409
+ "enum": [
2410
+ "No",
2411
+ "Not known"
2412
+ ]
2413
+ }
2414
+ }
2415
+ },
2416
+ {
2417
+ "properties": {
2418
+ "yesNo": {
2419
+ "enum": [
2420
+ "Yes"
2421
+ ]
2422
+ }
2423
+ }
2424
+ }
2425
+ ],
2426
+ "properties": {
2427
+ "yesNo": {
2428
+ "piqRef": "A11.5.1"
2429
+ }
2430
+ }
2431
+ }
2432
+ }
2433
+ },
2434
+ "otherIssues": {
2435
+ "properties": {
2436
+ "excessiveNoise": {
2437
+ "piqRef": "A11.2",
2438
+ "discriminator": {
2439
+ "propertyName": "yesNo"
2440
+ },
2441
+ "oneOf": [
2442
+ {
2443
+ "properties": {
2444
+ "yesNo": {
2445
+ "enum": [
2446
+ "No"
2447
+ ]
2448
+ }
2449
+ }
2450
+ },
2451
+ {
2452
+ "properties": {
2453
+ "yesNo": {
2454
+ "enum": [
2455
+ "Yes"
2456
+ ]
2457
+ }
2458
+ }
2459
+ }
2460
+ ],
2461
+ "properties": {
2462
+ "yesNo": {
2463
+ "piqRef": "A11.2.1"
2464
+ }
2465
+ }
2466
+ },
2467
+ "crime": {
2468
+ "piqRef": "A11.3",
2469
+ "discriminator": {
2470
+ "propertyName": "yesNo"
2471
+ },
2472
+ "oneOf": [
2473
+ {
2474
+ "properties": {
2475
+ "yesNo": {
2476
+ "enum": [
2477
+ "No"
2478
+ ]
2479
+ }
2480
+ }
2481
+ },
2482
+ {
2483
+ "properties": {
2484
+ "yesNo": {
2485
+ "enum": [
2486
+ "Yes"
2487
+ ]
2488
+ }
2489
+ }
2490
+ }
2491
+ ],
2492
+ "properties": {
2493
+ "yesNo": {
2494
+ "piqRef": "A11.3.1"
2495
+ }
2496
+ }
2497
+ },
2498
+ "failedTransactionsInLast12Months": {
2499
+ "piqRef": "A11.6",
2500
+ "discriminator": {
2501
+ "propertyName": "yesNo"
2502
+ },
2503
+ "oneOf": [
2504
+ {
2505
+ "properties": {
2506
+ "yesNo": {
2507
+ "enum": [
2508
+ "No"
2509
+ ]
2510
+ }
2511
+ }
2512
+ },
2513
+ {
2514
+ "properties": {
2515
+ "yesNo": {
2516
+ "enum": [
2517
+ "Yes"
2518
+ ]
2519
+ }
2520
+ }
2521
+ }
2522
+ ],
2523
+ "properties": {
2524
+ "yesNo": {
2525
+ "piqRef": "A11.6.1"
2526
+ }
2527
+ }
2528
+ }
2529
+ }
2530
+ },
2531
+ "additionalInformation": {
2532
+ "properties": {
2533
+ "restrictionsOnUseNotCompliedWith": {
2534
+ "piqRef": "A12.1",
2535
+ "discriminator": {
2536
+ "propertyName": "yesNo"
2537
+ },
2538
+ "oneOf": [
2539
+ {
2540
+ "properties": {
2541
+ "yesNo": {
2542
+ "enum": [
2543
+ "No"
2544
+ ]
2545
+ }
2546
+ }
2547
+ },
2548
+ {
2549
+ "properties": {
2550
+ "yesNo": {
2551
+ "enum": [
2552
+ "Yes"
2553
+ ]
2554
+ },
2555
+ "details": {
2556
+ "piqRef": "A12.1.2"
2557
+ }
2558
+ }
2559
+ }
2560
+ ],
2561
+ "properties": {
2562
+ "yesNo": {
2563
+ "piqRef": "A12.1.1"
2564
+ }
2565
+ }
2566
+ },
2567
+ "otherMaterialIssue": {
2568
+ "piqRef": "A12.2",
2569
+ "discriminator": {
2570
+ "propertyName": "yesNo"
2571
+ },
2572
+ "oneOf": [
2573
+ {
2574
+ "properties": {
2575
+ "yesNo": {
2576
+ "enum": [
2577
+ "No"
2578
+ ]
2579
+ }
2580
+ }
2581
+ },
2582
+ {
2583
+ "properties": {
2584
+ "yesNo": {
2585
+ "enum": [
2586
+ "Yes"
2587
+ ]
2588
+ },
2589
+ "details": {
2590
+ "piqRef": "A12.2.2"
2591
+ }
2592
+ }
2593
+ }
2594
+ ],
2595
+ "properties": {
2596
+ "yesNo": {
2597
+ "piqRef": "A12.2.1"
2598
+ }
2599
+ }
2600
+ }
2601
+ }
2602
+ }
2603
+ }
2604
+ },
2605
+ "additionalLegalInfo": {
2606
+ "properties": {
2607
+ "legalOwners": {
2608
+ "properties": {
2609
+ "namesOfLegalOwners": {
2610
+ "piqRef": "B1.1"
2611
+ }
2612
+ }
2613
+ },
2614
+ "sellersCapacity": {
2615
+ "piqRef": "B1.3.1",
2616
+ "discriminator": {
2617
+ "propertyName": "capacity"
2618
+ },
2619
+ "oneOf": [
2620
+ {
2621
+ "properties": {
2622
+ "capacity": {
2623
+ "enum": [
2624
+ "Legal Owner",
2625
+ "Mortgagee in Possession"
2626
+ ]
2627
+ }
2628
+ }
2629
+ },
2630
+ {
2631
+ "properties": {
2632
+ "capacity": {
2633
+ "enum": [
2634
+ "Personal Representative for a Deceased Owner",
2635
+ "Under Power of Attorney",
2636
+ "Other"
2637
+ ]
2638
+ }
2639
+ }
2640
+ }
2641
+ ]
2642
+ },
2643
+ "legalBoundaries": {
2644
+ "piqRef": "B3.1",
2645
+ "properties": {
2646
+ "ownership": {
2647
+ "oneOf": [
2648
+ {
2649
+ "properties": {
2650
+ "uniformBoundaries": {
2651
+ "properties": {
2652
+ "left": {
2653
+ "piqRef": "B3.1.1"
2654
+ },
2655
+ "right": {
2656
+ "piqRef": "B3.1.2"
2657
+ },
2658
+ "rear": {
2659
+ "piqRef": "B3.1.3"
2660
+ },
2661
+ "front": {
2662
+ "piqRef": "B3.1.4"
2663
+ }
2664
+ }
2665
+ }
2666
+ }
2667
+ }
2668
+ ]
2669
+ },
2670
+ "haveBoundaryFeaturesMoved": {
2671
+ "piqRef": "B3.3",
2672
+ "discriminator": {
2673
+ "propertyName": "yesNo"
2674
+ },
2675
+ "oneOf": [
2676
+ {
2677
+ "properties": {
2678
+ "yesNo": {
2679
+ "enum": [
2680
+ "No",
2681
+ "Not applicable"
2682
+ ]
2683
+ }
2684
+ }
2685
+ },
2686
+ {
2687
+ "properties": {
2688
+ "yesNo": {
2689
+ "enum": [
2690
+ "Yes"
2691
+ ]
2692
+ },
2693
+ "details": {
2694
+ "piqRef": "B3.3.2"
2695
+ }
2696
+ }
2697
+ }
2698
+ ],
2699
+ "properties": {
2700
+ "yesNo": {
2701
+ "piqRef": "B3.3.1"
2702
+ }
2703
+ }
2704
+ },
2705
+ "adjacentLandIncluded": {
2706
+ "properties": {
2707
+ "yesNo": {
2708
+ "piqRef": "B3.4"
2709
+ }
2710
+ }
2711
+ }
2712
+ }
2713
+ },
2714
+ "servicesCrossing": {
2715
+ "properties": {
2716
+ "pipesWiresCablesDrainsToProperty": {
2717
+ "piqRef": "B4.1",
2718
+ "discriminator": {
2719
+ "propertyName": "yesNo"
2720
+ },
2721
+ "oneOf": [
2722
+ {
2723
+ "properties": {
2724
+ "yesNo": {
2725
+ "enum": [
2726
+ "No",
2727
+ "Not known"
2728
+ ]
2729
+ }
2730
+ }
2731
+ },
2732
+ {
2733
+ "properties": {
2734
+ "yesNo": {
2735
+ "enum": [
2736
+ "Yes"
2737
+ ]
2738
+ },
2739
+ "details": {
2740
+ "piqRef": "B4.1.2"
2741
+ }
2742
+ }
2743
+ }
2744
+ ],
2745
+ "properties": {
2746
+ "yesNo": {
2747
+ "piqRef": "B4.1.1"
2748
+ }
2749
+ }
2750
+ },
2751
+ "pipesWiresCablesDrainsFromProperty": {
2752
+ "piqRef": "B4.2",
2753
+ "discriminator": {
2754
+ "propertyName": "yesNo"
2755
+ },
2756
+ "oneOf": [
2757
+ {
2758
+ "properties": {
2759
+ "yesNo": {
2760
+ "enum": [
2761
+ "No",
2762
+ "Not known"
2763
+ ]
2764
+ }
2765
+ }
2766
+ },
2767
+ {
2768
+ "properties": {
2769
+ "yesNo": {
2770
+ "enum": [
2771
+ "Yes"
2772
+ ]
2773
+ },
2774
+ "details": {
2775
+ "piqRef": "B4.2.2"
2776
+ }
2777
+ }
2778
+ }
2779
+ ],
2780
+ "properties": {
2781
+ "yesNo": {
2782
+ "piqRef": "B4.2.1"
2783
+ }
2784
+ }
2785
+ },
2786
+ "formalOrInformalAgreements": {
2787
+ "piqRef": "B4.3",
2788
+ "discriminator": {
2789
+ "propertyName": "yesNo"
2790
+ },
2791
+ "oneOf": [
2792
+ {
2793
+ "properties": {
2794
+ "yesNo": {
2795
+ "enum": [
2796
+ "No",
2797
+ "Not known"
2798
+ ]
2799
+ }
2800
+ }
2801
+ },
2802
+ {
2803
+ "properties": {
2804
+ "yesNo": {
2805
+ "enum": [
2806
+ "Yes"
2807
+ ]
2808
+ },
2809
+ "details": {
2810
+ "piqRef": "B4.3.2"
2811
+ }
2812
+ }
2813
+ }
2814
+ ],
2815
+ "properties": {
2816
+ "yesNo": {
2817
+ "piqRef": "B4.3.1"
2818
+ }
2819
+ }
2820
+ }
2821
+ }
2822
+ },
2823
+ "energyAndMeters": {
2824
+ "properties": {
2825
+ "testedByQualifiedElectrician": {
2826
+ "piqRef": "B7.1",
2827
+ "discriminator": {
2828
+ "propertyName": "yesNo"
2829
+ },
2830
+ "oneOf": [
2831
+ {
2832
+ "properties": {
2833
+ "yesNo": {
2834
+ "enum": [
2835
+ "No"
2836
+ ]
2837
+ }
2838
+ }
2839
+ },
2840
+ {
2841
+ "properties": {
2842
+ "yesNo": {
2843
+ "enum": [
2844
+ "Yes"
2845
+ ]
2846
+ },
2847
+ "yearTested": {
2848
+ "piqRef": "B7.1.2"
2849
+ }
2850
+ }
2851
+ }
2852
+ ],
2853
+ "properties": {
2854
+ "yesNo": {
2855
+ "piqRef": "B7.1.1"
2856
+ }
2857
+ }
2858
+ },
2859
+ "electricalWorkSince2005": {
2860
+ "piqRef": "B7.2",
2861
+ "discriminator": {
2862
+ "propertyName": "yesNo"
2863
+ },
2864
+ "oneOf": [
2865
+ {
2866
+ "properties": {
2867
+ "yesNo": {
2868
+ "enum": [
2869
+ "No",
2870
+ "Not known"
2871
+ ]
2872
+ }
2873
+ }
2874
+ },
2875
+ {
2876
+ "properties": {
2877
+ "yesNo": {
2878
+ "enum": [
2879
+ "Yes"
2880
+ ]
2881
+ },
2882
+ "yearWorkCarriedOut": {
2883
+ "piqRef": "B7.2.2"
2884
+ }
2885
+ }
2886
+ }
2887
+ ],
2888
+ "properties": {
2889
+ "yesNo": {
2890
+ "piqRef": "B7.2.1"
2891
+ }
2892
+ }
2893
+ },
2894
+ "solarPanels": {
2895
+ "piqRef": "B4.4",
2896
+ "discriminator": {
2897
+ "propertyName": "hasSolarPanels"
2898
+ },
2899
+ "oneOf": [
2900
+ {
2901
+ "properties": {
2902
+ "hasSolarPanels": {
2903
+ "enum": [
2904
+ "No"
2905
+ ]
2906
+ }
2907
+ }
2908
+ },
2909
+ {
2910
+ "properties": {
2911
+ "hasSolarPanels": {
2912
+ "enum": [
2913
+ "Yes"
2914
+ ]
2915
+ },
2916
+ "yearInstalled": {
2917
+ "piqRef": "B4.4.2"
2918
+ },
2919
+ "panelsOwnedOutright": {
2920
+ "piqRef": "B4.4.3",
2921
+ "discriminator": {
2922
+ "propertyName": "yesNo"
2923
+ },
2924
+ "oneOf": [
2925
+ {
2926
+ "properties": {
2927
+ "yesNo": {
2928
+ "enum": [
2929
+ "Yes"
2930
+ ]
2931
+ }
2932
+ }
2933
+ },
2934
+ {
2935
+ "properties": {
2936
+ "yesNo": {
2937
+ "enum": [
2938
+ "No"
2939
+ ]
2940
+ }
2941
+ }
2942
+ }
2943
+ ]
2944
+ },
2945
+ "panelProviderLease": {
2946
+ "piqRef": "B4.4.4",
2947
+ "discriminator": {
2948
+ "propertyName": "yesNo"
2949
+ },
2950
+ "oneOf": [
2951
+ {
2952
+ "properties": {
2953
+ "yesNo": {
2954
+ "enum": [
2955
+ "No"
2956
+ ]
2957
+ }
2958
+ }
2959
+ },
2960
+ {
2961
+ "properties": {
2962
+ "yesNo": {
2963
+ "enum": [
2964
+ "Yes"
2965
+ ]
2966
+ },
2967
+ "attachments": {
2968
+ "piqRef": "B4.4.5"
2969
+ }
2970
+ }
2971
+ }
2972
+ ]
2973
+ }
2974
+ }
2975
+ }
2976
+ ],
2977
+ "properties": {
2978
+ "hasSolarPanels": {
2979
+ "piqRef": "B4.4.1"
2980
+ }
2981
+ }
2982
+ }
2983
+ }
2984
+ },
2985
+ "guaranteesWarrantiesAndIndemnityInsurances": {
2986
+ "properties": {
2987
+ "hasValidGuaranteesOrWarranties": {
2988
+ "piqRef": "B5.1"
2989
+ }
2990
+ },
2991
+ "oneOf": [
2992
+ null,
2993
+ {
2994
+ "properties": {
2995
+ "newHomeWarranty": {
2996
+ "piqRef": "B5.1.1",
2997
+ "discriminator": {
2998
+ "propertyName": "yesNo"
2999
+ },
3000
+ "oneOf": [
3001
+ {
3002
+ "properties": {
3003
+ "yesNo": {
3004
+ "enum": [
3005
+ "No"
3006
+ ]
3007
+ }
3008
+ }
3009
+ },
3010
+ {
3011
+ "properties": {
3012
+ "yesNo": {
3013
+ "enum": [
3014
+ "Yes"
3015
+ ]
3016
+ }
3017
+ }
3018
+ }
3019
+ ]
3020
+ },
3021
+ "roofingWork": {
3022
+ "properties": {
3023
+ "yesNo": {
3024
+ "piqRef": "B5.1.2"
3025
+ }
3026
+ }
3027
+ },
3028
+ "dampProofingTreatment": {
3029
+ "piqRef": "B5.1.3",
3030
+ "discriminator": {
3031
+ "propertyName": "yesNo"
3032
+ },
3033
+ "oneOf": [
3034
+ {
3035
+ "properties": {
3036
+ "yesNo": {
3037
+ "enum": [
3038
+ "No"
3039
+ ]
3040
+ }
3041
+ }
3042
+ },
3043
+ {
3044
+ "properties": {
3045
+ "yesNo": {
3046
+ "enum": [
3047
+ "Yes"
3048
+ ]
3049
+ }
3050
+ }
3051
+ }
3052
+ ]
3053
+ },
3054
+ "timberRotOrInfestationTreatment": {
3055
+ "piqRef": "B5.1.4",
3056
+ "discriminator": {
3057
+ "propertyName": "yesNo"
3058
+ },
3059
+ "oneOf": [
3060
+ {
3061
+ "properties": {
3062
+ "yesNo": {
3063
+ "enum": [
3064
+ "No"
3065
+ ]
3066
+ }
3067
+ }
3068
+ },
3069
+ {
3070
+ "properties": {
3071
+ "yesNo": {
3072
+ "enum": [
3073
+ "Yes"
3074
+ ]
3075
+ }
3076
+ }
3077
+ }
3078
+ ]
3079
+ },
3080
+ "centralHeatingAndorPlumbing": {
3081
+ "piqRef": "B5.1.5",
3082
+ "discriminator": {
3083
+ "propertyName": "yesNo"
3084
+ },
3085
+ "oneOf": [
3086
+ {
3087
+ "properties": {
3088
+ "yesNo": {
3089
+ "enum": [
3090
+ "No"
3091
+ ]
3092
+ }
3093
+ }
3094
+ },
3095
+ {
3096
+ "properties": {
3097
+ "yesNo": {
3098
+ "enum": [
3099
+ "Yes"
3100
+ ]
3101
+ }
3102
+ }
3103
+ }
3104
+ ]
3105
+ },
3106
+ "doubleGlazing": {
3107
+ "piqRef": "B5.1.6",
3108
+ "discriminator": {
3109
+ "propertyName": "yesNo"
3110
+ },
3111
+ "oneOf": [
3112
+ {
3113
+ "properties": {
3114
+ "yesNo": {
3115
+ "enum": [
3116
+ "No"
3117
+ ]
3118
+ }
3119
+ }
3120
+ },
3121
+ {
3122
+ "properties": {
3123
+ "yesNo": {
3124
+ "enum": [
3125
+ "Yes"
3126
+ ]
3127
+ }
3128
+ }
3129
+ }
3130
+ ]
3131
+ },
3132
+ "electricalRepairOrInstallation": {
3133
+ "piqRef": "B5.1.7",
3134
+ "discriminator": {
3135
+ "propertyName": "yesNo"
3136
+ },
3137
+ "oneOf": [
3138
+ {
3139
+ "properties": {
3140
+ "yesNo": {
3141
+ "enum": [
3142
+ "No"
3143
+ ]
3144
+ }
3145
+ }
3146
+ },
3147
+ {
3148
+ "properties": {
3149
+ "yesNo": {
3150
+ "enum": [
3151
+ "Yes"
3152
+ ]
3153
+ }
3154
+ }
3155
+ }
3156
+ ]
3157
+ },
3158
+ "subsidenceWork": {
3159
+ "piqRef": "B5.1.8",
3160
+ "discriminator": {
3161
+ "propertyName": "yesNo"
3162
+ },
3163
+ "oneOf": [
3164
+ {
3165
+ "properties": {
3166
+ "yesNo": {
3167
+ "enum": [
3168
+ "No"
3169
+ ]
3170
+ }
3171
+ }
3172
+ },
3173
+ {
3174
+ "properties": {
3175
+ "yesNo": {
3176
+ "enum": [
3177
+ "Yes"
3178
+ ]
3179
+ }
3180
+ }
3181
+ }
3182
+ ]
3183
+ },
3184
+ "solarPanels": {
3185
+ "piqRef": "B5.1.9",
3186
+ "discriminator": {
3187
+ "propertyName": "yesNo"
3188
+ },
3189
+ "oneOf": [
3190
+ {
3191
+ "properties": {
3192
+ "yesNo": {
3193
+ "enum": [
3194
+ "No"
3195
+ ]
3196
+ }
3197
+ }
3198
+ },
3199
+ {
3200
+ "properties": {
3201
+ "yesNo": {
3202
+ "enum": [
3203
+ "Yes"
3204
+ ]
3205
+ }
3206
+ }
3207
+ }
3208
+ ]
3209
+ },
3210
+ "otherGuarantees": {
3211
+ "piqRef": "B5.1.10",
3212
+ "discriminator": {
3213
+ "propertyName": "yesNo"
3214
+ },
3215
+ "oneOf": [
3216
+ {
3217
+ "properties": {
3218
+ "yesNo": {
3219
+ "enum": [
3220
+ "No"
3221
+ ]
3222
+ }
3223
+ }
3224
+ },
3225
+ {
3226
+ "properties": {
3227
+ "yesNo": {
3228
+ "enum": [
3229
+ "Yes"
3230
+ ]
3231
+ }
3232
+ }
3233
+ }
3234
+ ]
3235
+ },
3236
+ "outstandingClaimsOrApplications": {
3237
+ "piqRef": "B5.2",
3238
+ "discriminator": {
3239
+ "propertyName": "yesNo"
3240
+ },
3241
+ "oneOf": [
3242
+ {
3243
+ "properties": {
3244
+ "yesNo": {
3245
+ "enum": [
3246
+ "No"
3247
+ ]
3248
+ }
3249
+ }
3250
+ },
3251
+ {
3252
+ "properties": {
3253
+ "yesNo": {
3254
+ "enum": [
3255
+ "Yes"
3256
+ ]
3257
+ }
3258
+ }
3259
+ }
3260
+ ],
3261
+ "properties": {
3262
+ "yesNo": {
3263
+ "piqRef": "B5.2.1"
3264
+ }
3265
+ }
3266
+ }
3267
+ }
3268
+ }
3269
+ ]
3270
+ },
3271
+ "occupiers": {
3272
+ "properties": {
3273
+ "othersAged17OrOver": {
3274
+ "properties": {
3275
+ "hasOthersAged17OrOver": {
3276
+ "piqRef": "B8.1"
3277
+ }
3278
+ },
3279
+ "oneOf": [
3280
+ null,
3281
+ {
3282
+ "properties": {
3283
+ "aged17OrOverNames": {
3284
+ "piqRef": "B8.1.1"
3285
+ },
3286
+ "vacantPossession": {
3287
+ "oneOf": [
3288
+ null,
3289
+ {
3290
+ "properties": {
3291
+ "aged17OrOverWillSignToConfirmWillVacate": {
3292
+ "piqRef": "B8.2",
3293
+ "discriminator": {
3294
+ "propertyName": "yesNo"
3295
+ },
3296
+ "oneOf": [
3297
+ {
3298
+ "properties": {
3299
+ "yesNo": {
3300
+ "enum": [
3301
+ "Yes"
3302
+ ]
3303
+ }
3304
+ }
3305
+ },
3306
+ {
3307
+ "properties": {
3308
+ "yesNo": {
3309
+ "enum": [
3310
+ "No"
3311
+ ]
3312
+ }
3313
+ }
3314
+ }
3315
+ ],
3316
+ "properties": {
3317
+ "yesNo": {
3318
+ "piqRef": "B8.2.1"
3319
+ }
3320
+ }
3321
+ }
3322
+ }
3323
+ }
3324
+ ]
3325
+ }
3326
+ }
3327
+ }
3328
+ ]
3329
+ }
3330
+ }
3331
+ },
3332
+ "completionAndMoving": {
3333
+ "properties": {
3334
+ "sellerWillEnsure": {
3335
+ "properties": {
3336
+ "removeRubbish": {
3337
+ "piqRef": "B9.3"
3338
+ },
3339
+ "replaceLightFittings": {
3340
+ "piqRef": "B9.4"
3341
+ },
3342
+ "takeReasonableCare": {
3343
+ "piqRef": "B9.6"
3344
+ },
3345
+ "leaveKeys": {
3346
+ "piqRef": "B9.5"
3347
+ }
3348
+ }
3349
+ },
3350
+ "otherPropertyInChain": {
3351
+ "piqRef": "B9.1",
3352
+ "discriminator": {
3353
+ "propertyName": "yesNo"
3354
+ },
3355
+ "oneOf": [
3356
+ {
3357
+ "properties": {
3358
+ "yesNo": {
3359
+ "enum": [
3360
+ "No"
3361
+ ]
3362
+ }
3363
+ }
3364
+ },
3365
+ {
3366
+ "properties": {
3367
+ "yesNo": {
3368
+ "enum": [
3369
+ "Yes"
3370
+ ]
3371
+ }
3372
+ }
3373
+ }
3374
+ ],
3375
+ "properties": {
3376
+ "yesNo": {
3377
+ "piqRef": "B9.1.1"
3378
+ }
3379
+ }
3380
+ },
3381
+ "moveRestrictionDates": {
3382
+ "piqRef": "B9.2",
3383
+ "discriminator": {
3384
+ "propertyName": "yesNo"
3385
+ },
3386
+ "oneOf": [
3387
+ {
3388
+ "properties": {
3389
+ "yesNo": {
3390
+ "enum": [
3391
+ "No"
3392
+ ]
3393
+ }
3394
+ }
3395
+ },
3396
+ {
3397
+ "properties": {
3398
+ "yesNo": {
3399
+ "enum": [
3400
+ "Yes"
3401
+ ]
3402
+ }
3403
+ }
3404
+ }
3405
+ ],
3406
+ "properties": {
3407
+ "yesNo": {
3408
+ "piqRef": "B9.1.2"
3409
+ }
3410
+ }
3411
+ }
3412
+ }
3413
+ }
3414
+ }
3415
+ }
3416
+ }
3417
+ }
3418
+ }
3419
+ }