@pdtf/schemas 3.6.0-dev.6 → 3.6.0-dev.8

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