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