@pdtf/schemas 3.6.0-dev.3 → 3.6.0-dev.4

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 (263) hide show
  1. package/charming-napier-57a77c/LICENSE +21 -0
  2. package/charming-napier-57a77c/README.md +430 -0
  3. package/charming-napier-57a77c/docs/sef25-extensions-ui-spec.md +355 -0
  4. package/charming-napier-57a77c/index.js +654 -0
  5. package/charming-napier-57a77c/package-lock.json +7297 -0
  6. package/charming-napier-57a77c/package.json +41 -0
  7. package/charming-napier-57a77c/src/examples/v1/exampleAddParticipantVouch.json +32 -0
  8. package/charming-napier-57a77c/src/examples/v1/exampleDocumentedVouch.json +40 -0
  9. package/charming-napier-57a77c/src/examples/v1/exampleElectronicRecord.json +30 -0
  10. package/charming-napier-57a77c/src/examples/v1/exampleTransaction.json +878 -0
  11. package/charming-napier-57a77c/src/examples/v1/exampleVouch.json +25 -0
  12. package/charming-napier-57a77c/src/examples/v2/exampleTransaction.json +901 -0
  13. package/charming-napier-57a77c/src/examples/v3/exampleAddParticipantVouch.json +38 -0
  14. package/charming-napier-57a77c/src/examples/v3/exampleCustomOverlay.json +55 -0
  15. package/charming-napier-57a77c/src/examples/v3/exampleCustomOverlay2.json +93 -0
  16. package/charming-napier-57a77c/src/examples/v3/exampleDocumentedVouch.json +47 -0
  17. package/charming-napier-57a77c/src/examples/v3/exampleElectronicRecord.json +36 -0
  18. package/charming-napier-57a77c/src/examples/v3/exampleTransaction.json +1038 -0
  19. package/charming-napier-57a77c/src/examples/v3/exampleVouch.json +32 -0
  20. package/charming-napier-57a77c/src/mappings/SendPropertyDetailsRequestSchema.json +1588 -0
  21. package/charming-napier-57a77c/src/mappings/adf.js +198 -0
  22. package/charming-napier-57a77c/src/schemas/v1/GeoJSON.json +1279 -0
  23. package/charming-napier-57a77c/src/schemas/v1/baspiNotes.html +102 -0
  24. package/charming-napier-57a77c/src/schemas/v1/energy-performance-certificate.json +124 -0
  25. package/charming-napier-57a77c/src/schemas/v1/freehold-information.json +2051 -0
  26. package/charming-napier-57a77c/src/schemas/v1/leasehold-information.json +2064 -0
  27. package/charming-napier-57a77c/src/schemas/v1/legal-information.json +1045 -0
  28. package/charming-napier-57a77c/src/schemas/v1/material-facts.json +2109 -0
  29. package/charming-napier-57a77c/src/schemas/v1/pdtf-transaction-search-results.json +40 -0
  30. package/charming-napier-57a77c/src/schemas/v1/pdtf-transaction.json +191 -0
  31. package/charming-napier-57a77c/src/schemas/v1/searches/drainage-and-water.json +261 -0
  32. package/charming-napier-57a77c/src/schemas/v1/searches/local-land-charges.json +69 -0
  33. package/charming-napier-57a77c/src/schemas/v1/searches/local-searches-required.json +857 -0
  34. package/charming-napier-57a77c/src/schemas/v1/searches.json +237 -0
  35. package/charming-napier-57a77c/src/schemas/v1/title-deed.json +841 -0
  36. package/charming-napier-57a77c/src/schemas/v2/baspiNotes.html +102 -0
  37. package/charming-napier-57a77c/src/schemas/v2/combined.json +37731 -0
  38. package/charming-napier-57a77c/src/schemas/v2/overlays/baspi.json +8132 -0
  39. package/charming-napier-57a77c/src/schemas/v2/overlays/con29DW.json +705 -0
  40. package/charming-napier-57a77c/src/schemas/v2/overlays/con29R.json +2956 -0
  41. package/charming-napier-57a77c/src/schemas/v2/overlays/fme1.json +1259 -0
  42. package/charming-napier-57a77c/src/schemas/v2/overlays/llc1.json +25 -0
  43. package/charming-napier-57a77c/src/schemas/v2/overlays/lpe1.json +2171 -0
  44. package/charming-napier-57a77c/src/schemas/v2/overlays/nts.json +326 -0
  45. package/charming-napier-57a77c/src/schemas/v2/overlays/oc1.json +2799 -0
  46. package/charming-napier-57a77c/src/schemas/v2/overlays/piq.json +3419 -0
  47. package/charming-napier-57a77c/src/schemas/v2/overlays/rds.json +3736 -0
  48. package/charming-napier-57a77c/src/schemas/v2/overlays/ta10.json +5306 -0
  49. package/charming-napier-57a77c/src/schemas/v2/overlays/ta6.json +4533 -0
  50. package/charming-napier-57a77c/src/schemas/v2/overlays/ta7.json +1045 -0
  51. package/charming-napier-57a77c/src/schemas/v2/pdtf-transaction.json +34351 -0
  52. package/charming-napier-57a77c/src/schemas/v2/skeleton.json +3973 -0
  53. package/charming-napier-57a77c/src/schemas/v3/combined.json +48153 -0
  54. package/charming-napier-57a77c/src/schemas/v3/compactSkeleton.txt +4457 -0
  55. package/charming-napier-57a77c/src/schemas/v3/overlays/README.md +299 -0
  56. package/charming-napier-57a77c/src/schemas/v3/overlays/baspi4.json +8027 -0
  57. package/charming-napier-57a77c/src/schemas/v3/overlays/baspi5.json +8177 -0
  58. package/charming-napier-57a77c/src/schemas/v3/overlays/con29DW.json +716 -0
  59. package/charming-napier-57a77c/src/schemas/v3/overlays/con29R.json +2981 -0
  60. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/ac.json +333 -0
  61. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/as.json +74 -0
  62. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/dk.json +32 -0
  63. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/dr.json +73 -0
  64. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/er.json +85 -0
  65. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/fd.json +75 -0
  66. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/hi.json +51 -0
  67. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/hs.json +73 -0
  68. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/ic.json +59 -0
  69. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/jk.json +96 -0
  70. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/la.json +85 -0
  71. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/lc.json +75 -0
  72. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/ma.json +90 -0
  73. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/mc.json +38 -0
  74. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/mi.json +69 -0
  75. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/nd.json +43 -0
  76. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/oa.json +24 -0
  77. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/oc.json +57 -0
  78. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/pc.json +37 -0
  79. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/ph.json +194 -0
  80. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/rw.json +68 -0
  81. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/sb.json +73 -0
  82. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/sc.json +129 -0
  83. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/sd.json +63 -0
  84. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/sf.json +74 -0
  85. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/sl.json +68 -0
  86. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/ta.json +240 -0
  87. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/tf.json +103 -0
  88. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/tr.json +73 -0
  89. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/wg.json +350 -0
  90. package/charming-napier-57a77c/src/schemas/v3/overlays/fme1.json +1266 -0
  91. package/charming-napier-57a77c/src/schemas/v3/overlays/llc1.json +25 -0
  92. package/charming-napier-57a77c/src/schemas/v3/overlays/lpe1.json +2199 -0
  93. package/charming-napier-57a77c/src/schemas/v3/overlays/nts.json +2157 -0
  94. package/charming-napier-57a77c/src/schemas/v3/overlays/nts2.json +2742 -0
  95. package/charming-napier-57a77c/src/schemas/v3/overlays/ntsl.json +1813 -0
  96. package/charming-napier-57a77c/src/schemas/v3/overlays/ntsl2.json +2217 -0
  97. package/charming-napier-57a77c/src/schemas/v3/overlays/oc1.json +2817 -0
  98. package/charming-napier-57a77c/src/schemas/v3/overlays/piq.json +3321 -0
  99. package/charming-napier-57a77c/src/schemas/v3/overlays/rds.json +3665 -0
  100. package/charming-napier-57a77c/src/schemas/v3/overlays/sef25.json +1639 -0
  101. package/charming-napier-57a77c/src/schemas/v3/overlays/sr24.json +38 -0
  102. package/charming-napier-57a77c/src/schemas/v3/overlays/ta10.json +4654 -0
  103. package/charming-napier-57a77c/src/schemas/v3/overlays/ta6.json +4568 -0
  104. package/charming-napier-57a77c/src/schemas/v3/overlays/ta6ed6.json +6537 -0
  105. package/charming-napier-57a77c/src/schemas/v3/overlays/ta7.json +1537 -0
  106. package/charming-napier-57a77c/src/schemas/v3/overlays/ta7ed5.json +1551 -0
  107. package/charming-napier-57a77c/src/schemas/v3/pdtf-transaction.json +41229 -0
  108. package/charming-napier-57a77c/src/schemas/v3/skeleton.json +5703 -0
  109. package/charming-napier-57a77c/src/schemas/verifiedClaims/README.md +21 -0
  110. package/charming-napier-57a77c/src/schemas/verifiedClaims/pdtf-verified-claims.json +447 -0
  111. package/charming-napier-57a77c/src/tests/v3/buyerCircumstances.test.js +543 -0
  112. package/charming-napier-57a77c/src/tests/v3/caching.test.js +591 -0
  113. package/charming-napier-57a77c/src/tests/v3/enquiries.test.js +1096 -0
  114. package/charming-napier-57a77c/src/tests/v3/extensionOverlays.test.js +1599 -0
  115. package/charming-napier-57a77c/src/tests/v3/offers.test.js +823 -0
  116. package/charming-napier-57a77c/src/tests/v3/patternProperties.test.js +688 -0
  117. package/charming-napier-57a77c/src/tests/v3/ta6ed6.test.js +2374 -0
  118. package/charming-napier-57a77c/src/tests/v3/ta7ed5.test.js +600 -0
  119. package/charming-napier-57a77c/src/tests/v3/transactionSchema.test.js +646 -0
  120. package/charming-napier-57a77c/src/tests/v3/verifiedClaimsValidator.test.js +195 -0
  121. package/charming-napier-57a77c/src/utils/compactSkeleton.js +84 -0
  122. package/charming-napier-57a77c/src/utils/countTokens.js +67 -0
  123. package/charming-napier-57a77c/src/utils/extractExtensionOverlays.js +624 -0
  124. package/charming-napier-57a77c/src/utils/extractOverlay.js +381 -0
  125. package/charming-napier-57a77c/src/utils/extractProperties.js +44 -0
  126. package/charming-napier-57a77c/src/utils/listPathTitles.js +36 -0
  127. package/charming-napier-57a77c/src/utils/minimalSkeleton.js +85 -0
  128. package/charming-napier-57a77c/src/utils/pathList.csv +903 -0
  129. package/charming-napier-57a77c/src/utils/pathSkeleton.js +181 -0
  130. package/keen-dewdney-6ae15b/LICENSE +21 -0
  131. package/keen-dewdney-6ae15b/README.md +334 -0
  132. package/keen-dewdney-6ae15b/index.js +557 -0
  133. package/keen-dewdney-6ae15b/package-lock.json +7296 -0
  134. package/keen-dewdney-6ae15b/package.json +39 -0
  135. package/keen-dewdney-6ae15b/src/examples/v1/exampleAddParticipantVouch.json +32 -0
  136. package/keen-dewdney-6ae15b/src/examples/v1/exampleDocumentedVouch.json +40 -0
  137. package/keen-dewdney-6ae15b/src/examples/v1/exampleElectronicRecord.json +30 -0
  138. package/keen-dewdney-6ae15b/src/examples/v1/exampleTransaction.json +878 -0
  139. package/keen-dewdney-6ae15b/src/examples/v1/exampleVouch.json +25 -0
  140. package/keen-dewdney-6ae15b/src/examples/v2/exampleTransaction.json +901 -0
  141. package/keen-dewdney-6ae15b/src/examples/v3/exampleAddParticipantVouch.json +35 -0
  142. package/keen-dewdney-6ae15b/src/examples/v3/exampleCustomOverlay.json +55 -0
  143. package/keen-dewdney-6ae15b/src/examples/v3/exampleCustomOverlay2.json +93 -0
  144. package/keen-dewdney-6ae15b/src/examples/v3/exampleDocumentedVouch.json +44 -0
  145. package/keen-dewdney-6ae15b/src/examples/v3/exampleElectronicRecord.json +33 -0
  146. package/keen-dewdney-6ae15b/src/examples/v3/exampleTransaction.json +1034 -0
  147. package/keen-dewdney-6ae15b/src/examples/v3/exampleVouch.json +29 -0
  148. package/keen-dewdney-6ae15b/src/mappings/SendPropertyDetailsRequestSchema.json +1588 -0
  149. package/keen-dewdney-6ae15b/src/mappings/adf.js +198 -0
  150. package/keen-dewdney-6ae15b/src/schemas/v1/GeoJSON.json +1279 -0
  151. package/keen-dewdney-6ae15b/src/schemas/v1/baspiNotes.html +102 -0
  152. package/keen-dewdney-6ae15b/src/schemas/v1/energy-performance-certificate.json +124 -0
  153. package/keen-dewdney-6ae15b/src/schemas/v1/freehold-information.json +2051 -0
  154. package/keen-dewdney-6ae15b/src/schemas/v1/leasehold-information.json +2064 -0
  155. package/keen-dewdney-6ae15b/src/schemas/v1/legal-information.json +1045 -0
  156. package/keen-dewdney-6ae15b/src/schemas/v1/material-facts.json +2109 -0
  157. package/keen-dewdney-6ae15b/src/schemas/v1/pdtf-transaction-search-results.json +40 -0
  158. package/keen-dewdney-6ae15b/src/schemas/v1/pdtf-transaction.json +191 -0
  159. package/keen-dewdney-6ae15b/src/schemas/v1/searches/drainage-and-water.json +261 -0
  160. package/keen-dewdney-6ae15b/src/schemas/v1/searches/local-land-charges.json +69 -0
  161. package/keen-dewdney-6ae15b/src/schemas/v1/searches/local-searches-required.json +857 -0
  162. package/keen-dewdney-6ae15b/src/schemas/v1/searches.json +237 -0
  163. package/keen-dewdney-6ae15b/src/schemas/v1/title-deed.json +841 -0
  164. package/keen-dewdney-6ae15b/src/schemas/v2/baspiNotes.html +102 -0
  165. package/keen-dewdney-6ae15b/src/schemas/v2/combined.json +37731 -0
  166. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/baspi.json +8132 -0
  167. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/con29DW.json +705 -0
  168. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/con29R.json +2956 -0
  169. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/fme1.json +1259 -0
  170. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/llc1.json +25 -0
  171. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/lpe1.json +2171 -0
  172. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/nts.json +326 -0
  173. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/oc1.json +2799 -0
  174. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/piq.json +3419 -0
  175. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/rds.json +3736 -0
  176. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/ta10.json +5306 -0
  177. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/ta6.json +4533 -0
  178. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/ta7.json +1045 -0
  179. package/keen-dewdney-6ae15b/src/schemas/v2/pdtf-transaction.json +34351 -0
  180. package/keen-dewdney-6ae15b/src/schemas/v2/skeleton.json +3973 -0
  181. package/keen-dewdney-6ae15b/src/schemas/v3/combined.json +41720 -0
  182. package/keen-dewdney-6ae15b/src/schemas/v3/compactSkeleton.txt +3325 -0
  183. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/README.md +299 -0
  184. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/baspi4.json +7872 -0
  185. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/baspi5.json +8019 -0
  186. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/con29DW.json +716 -0
  187. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/con29R.json +2981 -0
  188. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/as.json +72 -0
  189. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/dr.json +73 -0
  190. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/er.json +83 -0
  191. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/fd.json +72 -0
  192. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/hi.json +48 -0
  193. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/hs.json +71 -0
  194. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/jk.json +76 -0
  195. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/la.json +83 -0
  196. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/ma.json +87 -0
  197. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/mc.json +36 -0
  198. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/oa.json +22 -0
  199. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/oc.json +55 -0
  200. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/sb.json +71 -0
  201. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/sf.json +72 -0
  202. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/sl.json +66 -0
  203. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/tf.json +100 -0
  204. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/fme1.json +1264 -0
  205. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/llc1.json +25 -0
  206. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/lpe1.json +2226 -0
  207. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/nts.json +2090 -0
  208. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/nts2.json +2678 -0
  209. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/ntsl.json +1746 -0
  210. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/ntsl2.json +2153 -0
  211. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/oc1.json +2817 -0
  212. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/piq.json +3276 -0
  213. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/rds.json +3552 -0
  214. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/sr24.json +38 -0
  215. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/ta10.json +4642 -0
  216. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/ta6.json +4501 -0
  217. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/ta7.json +1435 -0
  218. package/keen-dewdney-6ae15b/src/schemas/v3/pdtf-transaction.json +37225 -0
  219. package/keen-dewdney-6ae15b/src/schemas/v3/skeleton.json +4323 -0
  220. package/keen-dewdney-6ae15b/src/schemas/verifiedClaims/README.md +12 -0
  221. package/keen-dewdney-6ae15b/src/schemas/verifiedClaims/pdtf-verified-claims.json +431 -0
  222. package/keen-dewdney-6ae15b/src/tests/v3/caching.test.js +591 -0
  223. package/keen-dewdney-6ae15b/src/tests/v3/extensionOverlays.test.js +525 -0
  224. package/keen-dewdney-6ae15b/src/tests/v3/transactionSchema.test.js +574 -0
  225. package/keen-dewdney-6ae15b/src/tests/v3/verifiedClaimsValidator.test.js +128 -0
  226. package/keen-dewdney-6ae15b/src/utils/compactSkeleton.js +84 -0
  227. package/keen-dewdney-6ae15b/src/utils/countTokens.js +67 -0
  228. package/keen-dewdney-6ae15b/src/utils/extractExtensionOverlays.js +362 -0
  229. package/keen-dewdney-6ae15b/src/utils/extractOverlay.js +290 -0
  230. package/keen-dewdney-6ae15b/src/utils/extractProperties.js +44 -0
  231. package/keen-dewdney-6ae15b/src/utils/listPathTitles.js +36 -0
  232. package/keen-dewdney-6ae15b/src/utils/minimalSkeleton.js +85 -0
  233. package/keen-dewdney-6ae15b/src/utils/pathList.csv +903 -0
  234. package/keen-dewdney-6ae15b/src/utils/pathSkeleton.js +181 -0
  235. package/package.json +1 -1
  236. package/src/schemas/v3/combined.json +8 -15
  237. package/src/schemas/v3/overlays/baspi4.json +12 -7
  238. package/src/schemas/v3/overlays/baspi5.json +12 -7
  239. package/src/schemas/v3/overlays/extensions/ac.json +2 -1
  240. package/src/schemas/v3/overlays/extensions/dk.json +3 -2
  241. package/src/schemas/v3/overlays/extensions/ic.json +2 -1
  242. package/src/schemas/v3/overlays/extensions/lc.json +3 -2
  243. package/src/schemas/v3/overlays/extensions/mi.json +2 -1
  244. package/src/schemas/v3/overlays/extensions/nd.json +3 -2
  245. package/src/schemas/v3/overlays/extensions/pc.json +3 -2
  246. package/src/schemas/v3/overlays/extensions/ph.json +2 -1
  247. package/src/schemas/v3/overlays/extensions/rw.json +4 -3
  248. package/src/schemas/v3/overlays/extensions/sc.json +8 -4
  249. package/src/schemas/v3/overlays/extensions/sd.json +3 -2
  250. package/src/schemas/v3/overlays/extensions/tr.json +3 -2
  251. package/src/schemas/v3/overlays/extensions/wg.json +2 -1
  252. package/src/schemas/v3/overlays/lpe1.json +1 -1
  253. package/src/schemas/v3/overlays/nts.json +3 -1
  254. package/src/schemas/v3/overlays/nts2.json +3 -1
  255. package/src/schemas/v3/overlays/ntsl.json +3 -1
  256. package/src/schemas/v3/overlays/ntsl2.json +3 -1
  257. package/src/schemas/v3/overlays/piq.json +7 -5
  258. package/src/schemas/v3/overlays/rds.json +9 -6
  259. package/src/schemas/v3/overlays/ta10.json +0 -9
  260. package/src/schemas/v3/overlays/ta6.json +8 -4
  261. package/src/schemas/v3/overlays/ta6ed6.json +4 -2
  262. package/src/schemas/v3/pdtf-transaction.json +15 -18
  263. package/src/utils/extractExtensionOverlays.js +10 -1
@@ -0,0 +1,4654 @@
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
+ "properties": {
1504
+ "isIncludedOrExcluded": {
1505
+ "enum": [
1506
+ "None"
1507
+ ]
1508
+ }
1509
+ }
1510
+ }
1511
+ ],
1512
+ "required": [
1513
+ "isIncludedOrExcluded"
1514
+ ],
1515
+ "properties": {
1516
+ "itemName": {
1517
+ "ta10Ref": "2.11"
1518
+ },
1519
+ "isIncludedOrExcluded": {
1520
+ "ta10Ref": "2.11a"
1521
+ },
1522
+ "comments": {
1523
+ "ta10Ref": "2.11c"
1524
+ }
1525
+ }
1526
+ }
1527
+ }
1528
+ }
1529
+ },
1530
+ "bathroom": {
1531
+ "ta10Ref": "3",
1532
+ "required": [
1533
+ "bath",
1534
+ "showerFittingForBath",
1535
+ "showerCurtain",
1536
+ "bathroomCabinet",
1537
+ "taps",
1538
+ "separateShowersAndFittings",
1539
+ "towelRail",
1540
+ "soapToothbrushHolders",
1541
+ "toiletRollHolders",
1542
+ "bathroomMirror"
1543
+ ],
1544
+ "properties": {
1545
+ "bath": {
1546
+ "ta10Ref": "3.1",
1547
+ "discriminator": {
1548
+ "propertyName": "isIncludedExcludedOrNone"
1549
+ },
1550
+ "oneOf": [
1551
+ {
1552
+ "properties": {
1553
+ "isIncludedExcludedOrNone": {
1554
+ "enum": [
1555
+ "Included",
1556
+ "None"
1557
+ ]
1558
+ }
1559
+ }
1560
+ },
1561
+ {
1562
+ "properties": {
1563
+ "isIncludedExcludedOrNone": {
1564
+ "enum": [
1565
+ "Excluded"
1566
+ ]
1567
+ },
1568
+ "price": {
1569
+ "ta10Ref": "3.1b"
1570
+ }
1571
+ }
1572
+ }
1573
+ ],
1574
+ "required": [
1575
+ "isIncludedExcludedOrNone"
1576
+ ],
1577
+ "properties": {
1578
+ "isIncludedExcludedOrNone": {
1579
+ "ta10Ref": "3.1a"
1580
+ },
1581
+ "comments": {
1582
+ "ta10Ref": "3.1c"
1583
+ }
1584
+ }
1585
+ },
1586
+ "showerFittingForBath": {
1587
+ "ta10Ref": "3.2",
1588
+ "discriminator": {
1589
+ "propertyName": "isIncludedExcludedOrNone"
1590
+ },
1591
+ "oneOf": [
1592
+ {
1593
+ "properties": {
1594
+ "isIncludedExcludedOrNone": {
1595
+ "enum": [
1596
+ "Included",
1597
+ "None"
1598
+ ]
1599
+ }
1600
+ }
1601
+ },
1602
+ {
1603
+ "properties": {
1604
+ "isIncludedExcludedOrNone": {
1605
+ "enum": [
1606
+ "Excluded"
1607
+ ]
1608
+ },
1609
+ "price": {
1610
+ "ta10Ref": "3.2b"
1611
+ }
1612
+ }
1613
+ }
1614
+ ],
1615
+ "required": [
1616
+ "isIncludedExcludedOrNone"
1617
+ ],
1618
+ "properties": {
1619
+ "isIncludedExcludedOrNone": {
1620
+ "ta10Ref": "3.2a"
1621
+ },
1622
+ "comments": {
1623
+ "ta10Ref": "3.2c"
1624
+ }
1625
+ }
1626
+ },
1627
+ "showerCurtain": {
1628
+ "ta10Ref": "3.3",
1629
+ "discriminator": {
1630
+ "propertyName": "isIncludedExcludedOrNone"
1631
+ },
1632
+ "oneOf": [
1633
+ {
1634
+ "properties": {
1635
+ "isIncludedExcludedOrNone": {
1636
+ "enum": [
1637
+ "Included",
1638
+ "None"
1639
+ ]
1640
+ }
1641
+ }
1642
+ },
1643
+ {
1644
+ "properties": {
1645
+ "isIncludedExcludedOrNone": {
1646
+ "enum": [
1647
+ "Excluded"
1648
+ ]
1649
+ },
1650
+ "price": {
1651
+ "ta10Ref": "3.3b"
1652
+ }
1653
+ }
1654
+ }
1655
+ ],
1656
+ "required": [
1657
+ "isIncludedExcludedOrNone"
1658
+ ],
1659
+ "properties": {
1660
+ "isIncludedExcludedOrNone": {
1661
+ "ta10Ref": "3.3a"
1662
+ },
1663
+ "comments": {
1664
+ "ta10Ref": "3.3c"
1665
+ }
1666
+ }
1667
+ },
1668
+ "bathroomCabinet": {
1669
+ "ta10Ref": "3.4",
1670
+ "discriminator": {
1671
+ "propertyName": "isIncludedExcludedOrNone"
1672
+ },
1673
+ "oneOf": [
1674
+ {
1675
+ "properties": {
1676
+ "isIncludedExcludedOrNone": {
1677
+ "enum": [
1678
+ "Included",
1679
+ "None"
1680
+ ]
1681
+ }
1682
+ }
1683
+ },
1684
+ {
1685
+ "properties": {
1686
+ "isIncludedExcludedOrNone": {
1687
+ "enum": [
1688
+ "Excluded"
1689
+ ]
1690
+ },
1691
+ "price": {
1692
+ "ta10Ref": "3.4b"
1693
+ }
1694
+ }
1695
+ }
1696
+ ],
1697
+ "required": [
1698
+ "isIncludedExcludedOrNone"
1699
+ ],
1700
+ "properties": {
1701
+ "isIncludedExcludedOrNone": {
1702
+ "ta10Ref": "3.4a"
1703
+ },
1704
+ "comments": {
1705
+ "ta10Ref": "3.4c"
1706
+ }
1707
+ }
1708
+ },
1709
+ "taps": {
1710
+ "ta10Ref": "3.5",
1711
+ "discriminator": {
1712
+ "propertyName": "isIncludedExcludedOrNone"
1713
+ },
1714
+ "oneOf": [
1715
+ {
1716
+ "properties": {
1717
+ "isIncludedExcludedOrNone": {
1718
+ "enum": [
1719
+ "Included",
1720
+ "None"
1721
+ ]
1722
+ }
1723
+ }
1724
+ },
1725
+ {
1726
+ "properties": {
1727
+ "isIncludedExcludedOrNone": {
1728
+ "enum": [
1729
+ "Excluded"
1730
+ ]
1731
+ },
1732
+ "price": {
1733
+ "ta10Ref": "3.5b"
1734
+ }
1735
+ }
1736
+ }
1737
+ ],
1738
+ "required": [
1739
+ "isIncludedExcludedOrNone"
1740
+ ],
1741
+ "properties": {
1742
+ "isIncludedExcludedOrNone": {
1743
+ "ta10Ref": "3.5a"
1744
+ },
1745
+ "comments": {
1746
+ "ta10Ref": "3.5c"
1747
+ }
1748
+ }
1749
+ },
1750
+ "separateShowersAndFittings": {
1751
+ "ta10Ref": "3.6",
1752
+ "discriminator": {
1753
+ "propertyName": "isIncludedExcludedOrNone"
1754
+ },
1755
+ "oneOf": [
1756
+ {
1757
+ "properties": {
1758
+ "isIncludedExcludedOrNone": {
1759
+ "enum": [
1760
+ "Included",
1761
+ "None"
1762
+ ]
1763
+ }
1764
+ }
1765
+ },
1766
+ {
1767
+ "properties": {
1768
+ "isIncludedExcludedOrNone": {
1769
+ "enum": [
1770
+ "Excluded"
1771
+ ]
1772
+ },
1773
+ "price": {
1774
+ "ta10Ref": "3.6b"
1775
+ }
1776
+ }
1777
+ }
1778
+ ],
1779
+ "required": [
1780
+ "isIncludedExcludedOrNone"
1781
+ ],
1782
+ "properties": {
1783
+ "isIncludedExcludedOrNone": {
1784
+ "ta10Ref": "3.6a"
1785
+ },
1786
+ "comments": {
1787
+ "ta10Ref": "3.6c"
1788
+ }
1789
+ }
1790
+ },
1791
+ "towelRail": {
1792
+ "ta10Ref": "3.7",
1793
+ "discriminator": {
1794
+ "propertyName": "isIncludedExcludedOrNone"
1795
+ },
1796
+ "oneOf": [
1797
+ {
1798
+ "properties": {
1799
+ "isIncludedExcludedOrNone": {
1800
+ "enum": [
1801
+ "Included",
1802
+ "None"
1803
+ ]
1804
+ }
1805
+ }
1806
+ },
1807
+ {
1808
+ "properties": {
1809
+ "isIncludedExcludedOrNone": {
1810
+ "enum": [
1811
+ "Excluded"
1812
+ ]
1813
+ },
1814
+ "price": {
1815
+ "ta10Ref": "3.7b"
1816
+ }
1817
+ }
1818
+ }
1819
+ ],
1820
+ "required": [
1821
+ "isIncludedExcludedOrNone"
1822
+ ],
1823
+ "properties": {
1824
+ "isIncludedExcludedOrNone": {
1825
+ "ta10Ref": "3.7a"
1826
+ },
1827
+ "comments": {
1828
+ "ta10Ref": "3.7c"
1829
+ }
1830
+ }
1831
+ },
1832
+ "soapToothbrushHolders": {
1833
+ "ta10Ref": "3.8",
1834
+ "discriminator": {
1835
+ "propertyName": "isIncludedExcludedOrNone"
1836
+ },
1837
+ "oneOf": [
1838
+ {
1839
+ "properties": {
1840
+ "isIncludedExcludedOrNone": {
1841
+ "enum": [
1842
+ "Included",
1843
+ "None"
1844
+ ]
1845
+ }
1846
+ }
1847
+ },
1848
+ {
1849
+ "properties": {
1850
+ "isIncludedExcludedOrNone": {
1851
+ "enum": [
1852
+ "Excluded"
1853
+ ]
1854
+ },
1855
+ "price": {
1856
+ "ta10Ref": "3.8b"
1857
+ }
1858
+ }
1859
+ }
1860
+ ],
1861
+ "required": [
1862
+ "isIncludedExcludedOrNone"
1863
+ ],
1864
+ "properties": {
1865
+ "isIncludedExcludedOrNone": {
1866
+ "ta10Ref": "3.8a"
1867
+ },
1868
+ "comments": {
1869
+ "ta10Ref": "3.8c"
1870
+ }
1871
+ }
1872
+ },
1873
+ "toiletRollHolders": {
1874
+ "ta10Ref": "3.9",
1875
+ "discriminator": {
1876
+ "propertyName": "isIncludedExcludedOrNone"
1877
+ },
1878
+ "oneOf": [
1879
+ {
1880
+ "properties": {
1881
+ "isIncludedExcludedOrNone": {
1882
+ "enum": [
1883
+ "Included",
1884
+ "None"
1885
+ ]
1886
+ }
1887
+ }
1888
+ },
1889
+ {
1890
+ "properties": {
1891
+ "isIncludedExcludedOrNone": {
1892
+ "enum": [
1893
+ "Excluded"
1894
+ ]
1895
+ },
1896
+ "price": {
1897
+ "ta10Ref": "3.9b"
1898
+ }
1899
+ }
1900
+ }
1901
+ ],
1902
+ "required": [
1903
+ "isIncludedExcludedOrNone"
1904
+ ],
1905
+ "properties": {
1906
+ "isIncludedExcludedOrNone": {
1907
+ "ta10Ref": "3.9a"
1908
+ },
1909
+ "comments": {
1910
+ "ta10Ref": "3.9c"
1911
+ }
1912
+ }
1913
+ },
1914
+ "bathroomMirror": {
1915
+ "ta10Ref": "3.10",
1916
+ "discriminator": {
1917
+ "propertyName": "isIncludedExcludedOrNone"
1918
+ },
1919
+ "oneOf": [
1920
+ {
1921
+ "properties": {
1922
+ "isIncludedExcludedOrNone": {
1923
+ "enum": [
1924
+ "Included",
1925
+ "None"
1926
+ ]
1927
+ }
1928
+ }
1929
+ },
1930
+ {
1931
+ "properties": {
1932
+ "isIncludedExcludedOrNone": {
1933
+ "enum": [
1934
+ "Excluded"
1935
+ ]
1936
+ },
1937
+ "price": {
1938
+ "ta10Ref": "3.10b"
1939
+ }
1940
+ }
1941
+ }
1942
+ ],
1943
+ "required": [
1944
+ "isIncludedExcludedOrNone"
1945
+ ],
1946
+ "properties": {
1947
+ "isIncludedExcludedOrNone": {
1948
+ "ta10Ref": "3.10a"
1949
+ },
1950
+ "comments": {
1951
+ "ta10Ref": "3.10c"
1952
+ }
1953
+ }
1954
+ }
1955
+ }
1956
+ },
1957
+ "carpets": {
1958
+ "ta10Ref": "4",
1959
+ "required": [
1960
+ "hallStairsLanding",
1961
+ "livingRoom",
1962
+ "diningRoom",
1963
+ "kitchen",
1964
+ "bedroom1",
1965
+ "bedroom2",
1966
+ "bedroom3"
1967
+ ],
1968
+ "properties": {
1969
+ "hallStairsLanding": {
1970
+ "ta10Ref": "4.1",
1971
+ "discriminator": {
1972
+ "propertyName": "isIncludedExcludedOrNone"
1973
+ },
1974
+ "oneOf": [
1975
+ {
1976
+ "properties": {
1977
+ "isIncludedExcludedOrNone": {
1978
+ "enum": [
1979
+ "Included",
1980
+ "None"
1981
+ ]
1982
+ }
1983
+ }
1984
+ },
1985
+ {
1986
+ "properties": {
1987
+ "isIncludedExcludedOrNone": {
1988
+ "enum": [
1989
+ "Excluded"
1990
+ ]
1991
+ },
1992
+ "price": {
1993
+ "ta10Ref": "4.1b"
1994
+ }
1995
+ }
1996
+ }
1997
+ ],
1998
+ "required": [
1999
+ "isIncludedExcludedOrNone"
2000
+ ],
2001
+ "properties": {
2002
+ "isIncludedExcludedOrNone": {
2003
+ "ta10Ref": "4.1a"
2004
+ },
2005
+ "comments": {
2006
+ "ta10Ref": "4.1c"
2007
+ }
2008
+ }
2009
+ },
2010
+ "livingRoom": {
2011
+ "ta10Ref": "4.2",
2012
+ "discriminator": {
2013
+ "propertyName": "isIncludedExcludedOrNone"
2014
+ },
2015
+ "oneOf": [
2016
+ {
2017
+ "properties": {
2018
+ "isIncludedExcludedOrNone": {
2019
+ "enum": [
2020
+ "Included",
2021
+ "None"
2022
+ ]
2023
+ }
2024
+ }
2025
+ },
2026
+ {
2027
+ "properties": {
2028
+ "isIncludedExcludedOrNone": {
2029
+ "enum": [
2030
+ "Excluded"
2031
+ ]
2032
+ },
2033
+ "price": {
2034
+ "ta10Ref": "4.2b"
2035
+ }
2036
+ }
2037
+ }
2038
+ ],
2039
+ "required": [
2040
+ "isIncludedExcludedOrNone"
2041
+ ],
2042
+ "properties": {
2043
+ "isIncludedExcludedOrNone": {
2044
+ "ta10Ref": "4.2a"
2045
+ },
2046
+ "comments": {
2047
+ "ta10Ref": "4.2c"
2048
+ }
2049
+ }
2050
+ },
2051
+ "diningRoom": {
2052
+ "ta10Ref": "4.3",
2053
+ "discriminator": {
2054
+ "propertyName": "isIncludedExcludedOrNone"
2055
+ },
2056
+ "oneOf": [
2057
+ {
2058
+ "properties": {
2059
+ "isIncludedExcludedOrNone": {
2060
+ "enum": [
2061
+ "Included",
2062
+ "None"
2063
+ ]
2064
+ }
2065
+ }
2066
+ },
2067
+ {
2068
+ "properties": {
2069
+ "isIncludedExcludedOrNone": {
2070
+ "enum": [
2071
+ "Excluded"
2072
+ ]
2073
+ },
2074
+ "price": {
2075
+ "ta10Ref": "4.3b"
2076
+ }
2077
+ }
2078
+ }
2079
+ ],
2080
+ "required": [
2081
+ "isIncludedExcludedOrNone"
2082
+ ],
2083
+ "properties": {
2084
+ "isIncludedExcludedOrNone": {
2085
+ "ta10Ref": "4.3a"
2086
+ },
2087
+ "comments": {
2088
+ "ta10Ref": "4.3c"
2089
+ }
2090
+ }
2091
+ },
2092
+ "kitchen": {
2093
+ "ta10Ref": "4.4",
2094
+ "discriminator": {
2095
+ "propertyName": "isIncludedExcludedOrNone"
2096
+ },
2097
+ "oneOf": [
2098
+ {
2099
+ "properties": {
2100
+ "isIncludedExcludedOrNone": {
2101
+ "enum": [
2102
+ "Included",
2103
+ "None"
2104
+ ]
2105
+ }
2106
+ }
2107
+ },
2108
+ {
2109
+ "properties": {
2110
+ "isIncludedExcludedOrNone": {
2111
+ "enum": [
2112
+ "Excluded"
2113
+ ]
2114
+ },
2115
+ "price": {
2116
+ "ta10Ref": "4.4b"
2117
+ }
2118
+ }
2119
+ }
2120
+ ],
2121
+ "required": [
2122
+ "isIncludedExcludedOrNone"
2123
+ ],
2124
+ "properties": {
2125
+ "isIncludedExcludedOrNone": {
2126
+ "ta10Ref": "4.4a"
2127
+ },
2128
+ "comments": {
2129
+ "ta10Ref": "4.4c"
2130
+ }
2131
+ }
2132
+ },
2133
+ "bedroom1": {
2134
+ "ta10Ref": "4.5",
2135
+ "discriminator": {
2136
+ "propertyName": "isIncludedExcludedOrNone"
2137
+ },
2138
+ "oneOf": [
2139
+ {
2140
+ "properties": {
2141
+ "isIncludedExcludedOrNone": {
2142
+ "enum": [
2143
+ "Included",
2144
+ "None"
2145
+ ]
2146
+ }
2147
+ }
2148
+ },
2149
+ {
2150
+ "properties": {
2151
+ "isIncludedExcludedOrNone": {
2152
+ "enum": [
2153
+ "Excluded"
2154
+ ]
2155
+ },
2156
+ "price": {
2157
+ "ta10Ref": "4.5b"
2158
+ }
2159
+ }
2160
+ }
2161
+ ],
2162
+ "required": [
2163
+ "isIncludedExcludedOrNone"
2164
+ ],
2165
+ "properties": {
2166
+ "isIncludedExcludedOrNone": {
2167
+ "ta10Ref": "4.5a"
2168
+ },
2169
+ "comments": {
2170
+ "ta10Ref": "4.5c"
2171
+ }
2172
+ }
2173
+ },
2174
+ "bedroom2": {
2175
+ "ta10Ref": "4.6",
2176
+ "discriminator": {
2177
+ "propertyName": "isIncludedExcludedOrNone"
2178
+ },
2179
+ "oneOf": [
2180
+ {
2181
+ "properties": {
2182
+ "isIncludedExcludedOrNone": {
2183
+ "enum": [
2184
+ "Included",
2185
+ "None"
2186
+ ]
2187
+ }
2188
+ }
2189
+ },
2190
+ {
2191
+ "properties": {
2192
+ "isIncludedExcludedOrNone": {
2193
+ "enum": [
2194
+ "Excluded"
2195
+ ]
2196
+ },
2197
+ "price": {
2198
+ "ta10Ref": "4.6b"
2199
+ }
2200
+ }
2201
+ }
2202
+ ],
2203
+ "required": [
2204
+ "isIncludedExcludedOrNone"
2205
+ ],
2206
+ "properties": {
2207
+ "isIncludedExcludedOrNone": {
2208
+ "ta10Ref": "4.6a"
2209
+ },
2210
+ "comments": {
2211
+ "ta10Ref": "4.6c"
2212
+ }
2213
+ }
2214
+ },
2215
+ "bedroom3": {
2216
+ "ta10Ref": "4.7",
2217
+ "discriminator": {
2218
+ "propertyName": "isIncludedExcludedOrNone"
2219
+ },
2220
+ "oneOf": [
2221
+ {
2222
+ "properties": {
2223
+ "isIncludedExcludedOrNone": {
2224
+ "enum": [
2225
+ "Included",
2226
+ "None"
2227
+ ]
2228
+ }
2229
+ }
2230
+ },
2231
+ {
2232
+ "properties": {
2233
+ "isIncludedExcludedOrNone": {
2234
+ "enum": [
2235
+ "Excluded"
2236
+ ]
2237
+ },
2238
+ "price": {
2239
+ "ta10Ref": "4.7b"
2240
+ }
2241
+ }
2242
+ }
2243
+ ],
2244
+ "required": [
2245
+ "isIncludedExcludedOrNone"
2246
+ ],
2247
+ "properties": {
2248
+ "isIncludedExcludedOrNone": {
2249
+ "ta10Ref": "4.7a"
2250
+ },
2251
+ "comments": {
2252
+ "ta10Ref": "4.7c"
2253
+ }
2254
+ }
2255
+ },
2256
+ "otherRooms": {
2257
+ "ta10Ref": "4.8",
2258
+ "items": {
2259
+ "discriminator": {
2260
+ "propertyName": "isIncludedOrExcluded"
2261
+ },
2262
+ "oneOf": [
2263
+ {
2264
+ "properties": {
2265
+ "isIncludedOrExcluded": {
2266
+ "enum": [
2267
+ "Included"
2268
+ ]
2269
+ },
2270
+ "comments": {
2271
+ "ta10Ref": "4.8c"
2272
+ }
2273
+ }
2274
+ },
2275
+ {
2276
+ "properties": {
2277
+ "isIncludedOrExcluded": {
2278
+ "enum": [
2279
+ "Excluded"
2280
+ ]
2281
+ },
2282
+ "price": {
2283
+ "ta10Ref": "4.8b"
2284
+ },
2285
+ "comments": {
2286
+ "ta10Ref": "4.8c"
2287
+ }
2288
+ }
2289
+ }
2290
+ ],
2291
+ "required": [
2292
+ "itemName",
2293
+ "isIncludedOrExcluded"
2294
+ ],
2295
+ "properties": {
2296
+ "itemName": {
2297
+ "ta10Ref": "4.8"
2298
+ },
2299
+ "isIncludedOrExcluded": {
2300
+ "ta10Ref": "4.8a"
2301
+ }
2302
+ }
2303
+ }
2304
+ }
2305
+ }
2306
+ },
2307
+ "curtainsAndCurtainRails": {
2308
+ "ta10Ref": "5",
2309
+ "required": [
2310
+ "curtainRailsPolesPelmets",
2311
+ "curtainsBlinds"
2312
+ ],
2313
+ "properties": {
2314
+ "curtainRailsPolesPelmets": {
2315
+ "ta10Ref": "5",
2316
+ "required": [
2317
+ "hallStairsLanding",
2318
+ "livingRoom",
2319
+ "diningRoom",
2320
+ "kitchen",
2321
+ "bedroom1",
2322
+ "bedroom2",
2323
+ "bedroom3"
2324
+ ],
2325
+ "properties": {
2326
+ "hallStairsLanding": {
2327
+ "ta10Ref": "5.1",
2328
+ "discriminator": {
2329
+ "propertyName": "isIncludedExcludedOrNone"
2330
+ },
2331
+ "oneOf": [
2332
+ {
2333
+ "properties": {
2334
+ "isIncludedExcludedOrNone": {
2335
+ "enum": [
2336
+ "Included",
2337
+ "None"
2338
+ ]
2339
+ }
2340
+ }
2341
+ },
2342
+ {
2343
+ "properties": {
2344
+ "isIncludedExcludedOrNone": {
2345
+ "enum": [
2346
+ "Excluded"
2347
+ ]
2348
+ },
2349
+ "price": {
2350
+ "ta10Ref": "5.1b"
2351
+ }
2352
+ }
2353
+ }
2354
+ ],
2355
+ "required": [
2356
+ "isIncludedExcludedOrNone"
2357
+ ],
2358
+ "properties": {
2359
+ "isIncludedExcludedOrNone": {
2360
+ "ta10Ref": "5.1a"
2361
+ },
2362
+ "comments": {
2363
+ "ta10Ref": "5.1c"
2364
+ }
2365
+ }
2366
+ },
2367
+ "livingRoom": {
2368
+ "ta10Ref": "5.2",
2369
+ "discriminator": {
2370
+ "propertyName": "isIncludedExcludedOrNone"
2371
+ },
2372
+ "oneOf": [
2373
+ {
2374
+ "properties": {
2375
+ "isIncludedExcludedOrNone": {
2376
+ "enum": [
2377
+ "Included",
2378
+ "None"
2379
+ ]
2380
+ }
2381
+ }
2382
+ },
2383
+ {
2384
+ "properties": {
2385
+ "isIncludedExcludedOrNone": {
2386
+ "enum": [
2387
+ "Excluded"
2388
+ ]
2389
+ },
2390
+ "price": {
2391
+ "ta10Ref": "5.2b"
2392
+ }
2393
+ }
2394
+ }
2395
+ ],
2396
+ "required": [
2397
+ "isIncludedExcludedOrNone"
2398
+ ],
2399
+ "properties": {
2400
+ "isIncludedExcludedOrNone": {
2401
+ "ta10Ref": "5.2a"
2402
+ },
2403
+ "comments": {
2404
+ "ta10Ref": "5.2c"
2405
+ }
2406
+ }
2407
+ },
2408
+ "diningRoom": {
2409
+ "ta10Ref": "5.3",
2410
+ "discriminator": {
2411
+ "propertyName": "isIncludedExcludedOrNone"
2412
+ },
2413
+ "oneOf": [
2414
+ {
2415
+ "properties": {
2416
+ "isIncludedExcludedOrNone": {
2417
+ "enum": [
2418
+ "Included",
2419
+ "None"
2420
+ ]
2421
+ }
2422
+ }
2423
+ },
2424
+ {
2425
+ "properties": {
2426
+ "isIncludedExcludedOrNone": {
2427
+ "enum": [
2428
+ "Excluded"
2429
+ ]
2430
+ },
2431
+ "price": {
2432
+ "ta10Ref": "5.3b"
2433
+ }
2434
+ }
2435
+ }
2436
+ ],
2437
+ "required": [
2438
+ "isIncludedExcludedOrNone"
2439
+ ],
2440
+ "properties": {
2441
+ "isIncludedExcludedOrNone": {
2442
+ "ta10Ref": "5.3a"
2443
+ },
2444
+ "comments": {
2445
+ "ta10Ref": "5.3c"
2446
+ }
2447
+ }
2448
+ },
2449
+ "kitchen": {
2450
+ "ta10Ref": "5.4",
2451
+ "discriminator": {
2452
+ "propertyName": "isIncludedExcludedOrNone"
2453
+ },
2454
+ "oneOf": [
2455
+ {
2456
+ "properties": {
2457
+ "isIncludedExcludedOrNone": {
2458
+ "enum": [
2459
+ "Included",
2460
+ "None"
2461
+ ]
2462
+ }
2463
+ }
2464
+ },
2465
+ {
2466
+ "properties": {
2467
+ "isIncludedExcludedOrNone": {
2468
+ "enum": [
2469
+ "Excluded"
2470
+ ]
2471
+ },
2472
+ "price": {
2473
+ "ta10Ref": "5.4b"
2474
+ }
2475
+ }
2476
+ }
2477
+ ],
2478
+ "required": [
2479
+ "isIncludedExcludedOrNone"
2480
+ ],
2481
+ "properties": {
2482
+ "isIncludedExcludedOrNone": {
2483
+ "ta10Ref": "5.4a"
2484
+ },
2485
+ "comments": {
2486
+ "ta10Ref": "5.4c"
2487
+ }
2488
+ }
2489
+ },
2490
+ "bedroom1": {
2491
+ "ta10Ref": "5.5",
2492
+ "discriminator": {
2493
+ "propertyName": "isIncludedExcludedOrNone"
2494
+ },
2495
+ "oneOf": [
2496
+ {
2497
+ "properties": {
2498
+ "isIncludedExcludedOrNone": {
2499
+ "enum": [
2500
+ "Included",
2501
+ "None"
2502
+ ]
2503
+ }
2504
+ }
2505
+ },
2506
+ {
2507
+ "properties": {
2508
+ "isIncludedExcludedOrNone": {
2509
+ "enum": [
2510
+ "Excluded"
2511
+ ]
2512
+ },
2513
+ "price": {
2514
+ "ta10Ref": "5.5b"
2515
+ }
2516
+ }
2517
+ }
2518
+ ],
2519
+ "required": [
2520
+ "isIncludedExcludedOrNone"
2521
+ ],
2522
+ "properties": {
2523
+ "isIncludedExcludedOrNone": {
2524
+ "ta10Ref": "5.5a"
2525
+ },
2526
+ "comments": {
2527
+ "ta10Ref": "5.5c"
2528
+ }
2529
+ }
2530
+ },
2531
+ "bedroom2": {
2532
+ "ta10Ref": "5.6",
2533
+ "discriminator": {
2534
+ "propertyName": "isIncludedExcludedOrNone"
2535
+ },
2536
+ "oneOf": [
2537
+ {
2538
+ "properties": {
2539
+ "isIncludedExcludedOrNone": {
2540
+ "enum": [
2541
+ "Included",
2542
+ "None"
2543
+ ]
2544
+ }
2545
+ }
2546
+ },
2547
+ {
2548
+ "properties": {
2549
+ "isIncludedExcludedOrNone": {
2550
+ "enum": [
2551
+ "Excluded"
2552
+ ]
2553
+ },
2554
+ "price": {
2555
+ "ta10Ref": "5.6b"
2556
+ }
2557
+ }
2558
+ }
2559
+ ],
2560
+ "required": [
2561
+ "isIncludedExcludedOrNone"
2562
+ ],
2563
+ "properties": {
2564
+ "isIncludedExcludedOrNone": {
2565
+ "ta10Ref": "5.6a"
2566
+ },
2567
+ "comments": {
2568
+ "ta10Ref": "5.6c"
2569
+ }
2570
+ }
2571
+ },
2572
+ "bedroom3": {
2573
+ "ta10Ref": "5.7",
2574
+ "discriminator": {
2575
+ "propertyName": "isIncludedExcludedOrNone"
2576
+ },
2577
+ "oneOf": [
2578
+ {
2579
+ "properties": {
2580
+ "isIncludedExcludedOrNone": {
2581
+ "enum": [
2582
+ "Included",
2583
+ "None"
2584
+ ]
2585
+ }
2586
+ }
2587
+ },
2588
+ {
2589
+ "properties": {
2590
+ "isIncludedExcludedOrNone": {
2591
+ "enum": [
2592
+ "Excluded"
2593
+ ]
2594
+ },
2595
+ "price": {
2596
+ "ta10Ref": "5.7b"
2597
+ }
2598
+ }
2599
+ }
2600
+ ],
2601
+ "required": [
2602
+ "isIncludedExcludedOrNone"
2603
+ ],
2604
+ "properties": {
2605
+ "isIncludedExcludedOrNone": {
2606
+ "ta10Ref": "5.7a"
2607
+ },
2608
+ "comments": {
2609
+ "ta10Ref": "5.7c"
2610
+ }
2611
+ }
2612
+ },
2613
+ "otherRooms": {
2614
+ "ta10Ref": "5.8",
2615
+ "items": {
2616
+ "discriminator": {
2617
+ "propertyName": "isIncludedOrExcluded"
2618
+ },
2619
+ "oneOf": [
2620
+ {
2621
+ "properties": {
2622
+ "isIncludedOrExcluded": {
2623
+ "enum": [
2624
+ "Included"
2625
+ ]
2626
+ },
2627
+ "comments": {
2628
+ "ta10Ref": "5.8c"
2629
+ }
2630
+ }
2631
+ },
2632
+ {
2633
+ "properties": {
2634
+ "isIncludedOrExcluded": {
2635
+ "enum": [
2636
+ "Excluded"
2637
+ ]
2638
+ },
2639
+ "price": {
2640
+ "ta10Ref": "5.8b"
2641
+ },
2642
+ "comments": {
2643
+ "ta10Ref": "5.8c"
2644
+ }
2645
+ }
2646
+ }
2647
+ ],
2648
+ "required": [
2649
+ "itemName",
2650
+ "isIncludedOrExcluded"
2651
+ ],
2652
+ "properties": {
2653
+ "itemName": {
2654
+ "ta10Ref": "5.8"
2655
+ },
2656
+ "isIncludedOrExcluded": {
2657
+ "ta10Ref": "5.8a"
2658
+ }
2659
+ }
2660
+ }
2661
+ }
2662
+ }
2663
+ },
2664
+ "curtainsBlinds": {
2665
+ "ta10Ref": "5",
2666
+ "required": [
2667
+ "hallStairsLanding",
2668
+ "livingRoom",
2669
+ "diningRoom",
2670
+ "kitchen",
2671
+ "bedroom1",
2672
+ "bedroom2",
2673
+ "bedroom3"
2674
+ ],
2675
+ "properties": {
2676
+ "hallStairsLanding": {
2677
+ "ta10Ref": "5.12",
2678
+ "discriminator": {
2679
+ "propertyName": "isIncludedExcludedOrNone"
2680
+ },
2681
+ "oneOf": [
2682
+ {
2683
+ "properties": {
2684
+ "isIncludedExcludedOrNone": {
2685
+ "enum": [
2686
+ "Included",
2687
+ "None"
2688
+ ]
2689
+ }
2690
+ }
2691
+ },
2692
+ {
2693
+ "properties": {
2694
+ "isIncludedExcludedOrNone": {
2695
+ "enum": [
2696
+ "Excluded"
2697
+ ]
2698
+ },
2699
+ "price": {
2700
+ "ta10Ref": "5.12b"
2701
+ }
2702
+ }
2703
+ }
2704
+ ],
2705
+ "required": [
2706
+ "isIncludedExcludedOrNone"
2707
+ ],
2708
+ "properties": {
2709
+ "isIncludedExcludedOrNone": {
2710
+ "ta10Ref": "5.12a"
2711
+ },
2712
+ "comments": {
2713
+ "ta10Ref": "5.12c"
2714
+ }
2715
+ }
2716
+ },
2717
+ "livingRoom": {
2718
+ "ta10Ref": "5.13",
2719
+ "discriminator": {
2720
+ "propertyName": "isIncludedExcludedOrNone"
2721
+ },
2722
+ "oneOf": [
2723
+ {
2724
+ "properties": {
2725
+ "isIncludedExcludedOrNone": {
2726
+ "enum": [
2727
+ "Included",
2728
+ "None"
2729
+ ]
2730
+ }
2731
+ }
2732
+ },
2733
+ {
2734
+ "properties": {
2735
+ "isIncludedExcludedOrNone": {
2736
+ "enum": [
2737
+ "Excluded"
2738
+ ]
2739
+ },
2740
+ "price": {
2741
+ "ta10Ref": "5.13b"
2742
+ }
2743
+ }
2744
+ }
2745
+ ],
2746
+ "required": [
2747
+ "isIncludedExcludedOrNone"
2748
+ ],
2749
+ "properties": {
2750
+ "isIncludedExcludedOrNone": {
2751
+ "ta10Ref": "5.13a"
2752
+ },
2753
+ "comments": {
2754
+ "ta10Ref": "5.13c"
2755
+ }
2756
+ }
2757
+ },
2758
+ "diningRoom": {
2759
+ "ta10Ref": "5.14",
2760
+ "discriminator": {
2761
+ "propertyName": "isIncludedExcludedOrNone"
2762
+ },
2763
+ "oneOf": [
2764
+ {
2765
+ "properties": {
2766
+ "isIncludedExcludedOrNone": {
2767
+ "enum": [
2768
+ "Included",
2769
+ "None"
2770
+ ]
2771
+ }
2772
+ }
2773
+ },
2774
+ {
2775
+ "properties": {
2776
+ "isIncludedExcludedOrNone": {
2777
+ "enum": [
2778
+ "Excluded"
2779
+ ]
2780
+ },
2781
+ "price": {
2782
+ "ta10Ref": "5.14b"
2783
+ }
2784
+ }
2785
+ }
2786
+ ],
2787
+ "required": [
2788
+ "isIncludedExcludedOrNone"
2789
+ ],
2790
+ "properties": {
2791
+ "isIncludedExcludedOrNone": {
2792
+ "ta10Ref": "5.14a"
2793
+ },
2794
+ "comments": {
2795
+ "ta10Ref": "5.14c"
2796
+ }
2797
+ }
2798
+ },
2799
+ "kitchen": {
2800
+ "ta10Ref": "5.15",
2801
+ "discriminator": {
2802
+ "propertyName": "isIncludedExcludedOrNone"
2803
+ },
2804
+ "oneOf": [
2805
+ {
2806
+ "properties": {
2807
+ "isIncludedExcludedOrNone": {
2808
+ "enum": [
2809
+ "Included",
2810
+ "None"
2811
+ ]
2812
+ }
2813
+ }
2814
+ },
2815
+ {
2816
+ "properties": {
2817
+ "isIncludedExcludedOrNone": {
2818
+ "enum": [
2819
+ "Excluded"
2820
+ ]
2821
+ },
2822
+ "price": {
2823
+ "ta10Ref": "5.15b"
2824
+ }
2825
+ }
2826
+ }
2827
+ ],
2828
+ "required": [
2829
+ "isIncludedExcludedOrNone"
2830
+ ],
2831
+ "properties": {
2832
+ "isIncludedExcludedOrNone": {
2833
+ "ta10Ref": "5.15a"
2834
+ },
2835
+ "comments": {
2836
+ "ta10Ref": "5.15c"
2837
+ }
2838
+ }
2839
+ },
2840
+ "bedroom1": {
2841
+ "ta10Ref": "5.16",
2842
+ "discriminator": {
2843
+ "propertyName": "isIncludedExcludedOrNone"
2844
+ },
2845
+ "oneOf": [
2846
+ {
2847
+ "properties": {
2848
+ "isIncludedExcludedOrNone": {
2849
+ "enum": [
2850
+ "Included",
2851
+ "None"
2852
+ ]
2853
+ }
2854
+ }
2855
+ },
2856
+ {
2857
+ "properties": {
2858
+ "isIncludedExcludedOrNone": {
2859
+ "enum": [
2860
+ "Excluded"
2861
+ ]
2862
+ },
2863
+ "price": {
2864
+ "ta10Ref": "5.16b"
2865
+ }
2866
+ }
2867
+ }
2868
+ ],
2869
+ "required": [
2870
+ "isIncludedExcludedOrNone"
2871
+ ],
2872
+ "properties": {
2873
+ "isIncludedExcludedOrNone": {
2874
+ "ta10Ref": "5.16a"
2875
+ },
2876
+ "comments": {
2877
+ "ta10Ref": "5.16c"
2878
+ }
2879
+ }
2880
+ },
2881
+ "bedroom2": {
2882
+ "ta10Ref": "5.17",
2883
+ "discriminator": {
2884
+ "propertyName": "isIncludedExcludedOrNone"
2885
+ },
2886
+ "oneOf": [
2887
+ {
2888
+ "properties": {
2889
+ "isIncludedExcludedOrNone": {
2890
+ "enum": [
2891
+ "Included",
2892
+ "None"
2893
+ ]
2894
+ }
2895
+ }
2896
+ },
2897
+ {
2898
+ "properties": {
2899
+ "isIncludedExcludedOrNone": {
2900
+ "enum": [
2901
+ "Excluded"
2902
+ ]
2903
+ },
2904
+ "price": {
2905
+ "ta10Ref": "5.17b"
2906
+ }
2907
+ }
2908
+ }
2909
+ ],
2910
+ "required": [
2911
+ "isIncludedExcludedOrNone"
2912
+ ],
2913
+ "properties": {
2914
+ "isIncludedExcludedOrNone": {
2915
+ "ta10Ref": "5.17a"
2916
+ },
2917
+ "comments": {
2918
+ "ta10Ref": "5.17c"
2919
+ }
2920
+ }
2921
+ },
2922
+ "bedroom3": {
2923
+ "ta10Ref": "5.18",
2924
+ "discriminator": {
2925
+ "propertyName": "isIncludedExcludedOrNone"
2926
+ },
2927
+ "oneOf": [
2928
+ {
2929
+ "properties": {
2930
+ "isIncludedExcludedOrNone": {
2931
+ "enum": [
2932
+ "Included",
2933
+ "None"
2934
+ ]
2935
+ }
2936
+ }
2937
+ },
2938
+ {
2939
+ "properties": {
2940
+ "isIncludedExcludedOrNone": {
2941
+ "enum": [
2942
+ "Excluded"
2943
+ ]
2944
+ },
2945
+ "price": {
2946
+ "ta10Ref": "5.18b"
2947
+ }
2948
+ }
2949
+ }
2950
+ ],
2951
+ "required": [
2952
+ "isIncludedExcludedOrNone"
2953
+ ],
2954
+ "properties": {
2955
+ "isIncludedExcludedOrNone": {
2956
+ "ta10Ref": "5.18a"
2957
+ },
2958
+ "comments": {
2959
+ "ta10Ref": "5.18c"
2960
+ }
2961
+ }
2962
+ },
2963
+ "otherRooms": {
2964
+ "ta10Ref": "5.19",
2965
+ "items": {
2966
+ "discriminator": {
2967
+ "propertyName": "isIncludedOrExcluded"
2968
+ },
2969
+ "oneOf": [
2970
+ {
2971
+ "properties": {
2972
+ "isIncludedOrExcluded": {
2973
+ "enum": [
2974
+ "Included"
2975
+ ]
2976
+ },
2977
+ "comments": {
2978
+ "ta10Ref": "5.19c"
2979
+ }
2980
+ }
2981
+ },
2982
+ {
2983
+ "properties": {
2984
+ "isIncludedOrExcluded": {
2985
+ "enum": [
2986
+ "Excluded"
2987
+ ]
2988
+ },
2989
+ "price": {
2990
+ "ta10Ref": "5.19b"
2991
+ },
2992
+ "comments": {
2993
+ "ta10Ref": "5.19c"
2994
+ }
2995
+ }
2996
+ }
2997
+ ],
2998
+ "required": [
2999
+ "itemName",
3000
+ "isIncludedOrExcluded"
3001
+ ],
3002
+ "properties": {
3003
+ "itemName": {
3004
+ "ta10Ref": "5.19"
3005
+ },
3006
+ "isIncludedOrExcluded": {
3007
+ "ta10Ref": "5.19a"
3008
+ }
3009
+ }
3010
+ }
3011
+ }
3012
+ }
3013
+ }
3014
+ }
3015
+ },
3016
+ "lightFittings": {
3017
+ "ta10Ref": "6",
3018
+ "required": [
3019
+ "hallStairsLanding",
3020
+ "livingRoom",
3021
+ "diningRoom",
3022
+ "kitchen",
3023
+ "bedroom1",
3024
+ "bedroom2",
3025
+ "bedroom3"
3026
+ ],
3027
+ "properties": {
3028
+ "hallStairsLanding": {
3029
+ "ta10Ref": "6.1",
3030
+ "discriminator": {
3031
+ "propertyName": "isIncludedExcludedOrNone"
3032
+ },
3033
+ "oneOf": [
3034
+ {
3035
+ "properties": {
3036
+ "isIncludedExcludedOrNone": {
3037
+ "enum": [
3038
+ "Included",
3039
+ "None"
3040
+ ]
3041
+ }
3042
+ }
3043
+ },
3044
+ {
3045
+ "properties": {
3046
+ "isIncludedExcludedOrNone": {
3047
+ "enum": [
3048
+ "Excluded"
3049
+ ]
3050
+ },
3051
+ "price": {
3052
+ "ta10Ref": "6.1b"
3053
+ }
3054
+ }
3055
+ }
3056
+ ],
3057
+ "required": [
3058
+ "isIncludedExcludedOrNone"
3059
+ ],
3060
+ "properties": {
3061
+ "isIncludedExcludedOrNone": {
3062
+ "ta10Ref": "6.1a"
3063
+ },
3064
+ "comments": {
3065
+ "ta10Ref": "6.1c"
3066
+ }
3067
+ }
3068
+ },
3069
+ "livingRoom": {
3070
+ "ta10Ref": "6.2",
3071
+ "discriminator": {
3072
+ "propertyName": "isIncludedExcludedOrNone"
3073
+ },
3074
+ "oneOf": [
3075
+ {
3076
+ "properties": {
3077
+ "isIncludedExcludedOrNone": {
3078
+ "enum": [
3079
+ "Included",
3080
+ "None"
3081
+ ]
3082
+ }
3083
+ }
3084
+ },
3085
+ {
3086
+ "properties": {
3087
+ "isIncludedExcludedOrNone": {
3088
+ "enum": [
3089
+ "Excluded"
3090
+ ]
3091
+ },
3092
+ "price": {
3093
+ "ta10Ref": "6.2b"
3094
+ }
3095
+ }
3096
+ }
3097
+ ],
3098
+ "required": [
3099
+ "isIncludedExcludedOrNone"
3100
+ ],
3101
+ "properties": {
3102
+ "isIncludedExcludedOrNone": {
3103
+ "ta10Ref": "6.2a"
3104
+ },
3105
+ "comments": {
3106
+ "ta10Ref": "6.2c"
3107
+ }
3108
+ }
3109
+ },
3110
+ "diningRoom": {
3111
+ "ta10Ref": "6.3",
3112
+ "discriminator": {
3113
+ "propertyName": "isIncludedExcludedOrNone"
3114
+ },
3115
+ "oneOf": [
3116
+ {
3117
+ "properties": {
3118
+ "isIncludedExcludedOrNone": {
3119
+ "enum": [
3120
+ "Included",
3121
+ "None"
3122
+ ]
3123
+ }
3124
+ }
3125
+ },
3126
+ {
3127
+ "properties": {
3128
+ "isIncludedExcludedOrNone": {
3129
+ "enum": [
3130
+ "Excluded"
3131
+ ]
3132
+ },
3133
+ "price": {
3134
+ "ta10Ref": "6.3b"
3135
+ }
3136
+ }
3137
+ }
3138
+ ],
3139
+ "required": [
3140
+ "isIncludedExcludedOrNone"
3141
+ ],
3142
+ "properties": {
3143
+ "isIncludedExcludedOrNone": {
3144
+ "ta10Ref": "6.3a"
3145
+ },
3146
+ "comments": {
3147
+ "ta10Ref": "6.3c"
3148
+ }
3149
+ }
3150
+ },
3151
+ "kitchen": {
3152
+ "ta10Ref": "6.4",
3153
+ "discriminator": {
3154
+ "propertyName": "isIncludedExcludedOrNone"
3155
+ },
3156
+ "oneOf": [
3157
+ {
3158
+ "properties": {
3159
+ "isIncludedExcludedOrNone": {
3160
+ "enum": [
3161
+ "Included",
3162
+ "None"
3163
+ ]
3164
+ }
3165
+ }
3166
+ },
3167
+ {
3168
+ "properties": {
3169
+ "isIncludedExcludedOrNone": {
3170
+ "enum": [
3171
+ "Excluded"
3172
+ ]
3173
+ },
3174
+ "price": {
3175
+ "ta10Ref": "6.4b"
3176
+ }
3177
+ }
3178
+ }
3179
+ ],
3180
+ "required": [
3181
+ "isIncludedExcludedOrNone"
3182
+ ],
3183
+ "properties": {
3184
+ "isIncludedExcludedOrNone": {
3185
+ "ta10Ref": "6.4a"
3186
+ },
3187
+ "comments": {
3188
+ "ta10Ref": "6.4c"
3189
+ }
3190
+ }
3191
+ },
3192
+ "bedroom1": {
3193
+ "ta10Ref": "6.5",
3194
+ "discriminator": {
3195
+ "propertyName": "isIncludedExcludedOrNone"
3196
+ },
3197
+ "oneOf": [
3198
+ {
3199
+ "properties": {
3200
+ "isIncludedExcludedOrNone": {
3201
+ "enum": [
3202
+ "Included",
3203
+ "None"
3204
+ ]
3205
+ }
3206
+ }
3207
+ },
3208
+ {
3209
+ "properties": {
3210
+ "isIncludedExcludedOrNone": {
3211
+ "enum": [
3212
+ "Excluded"
3213
+ ]
3214
+ },
3215
+ "price": {
3216
+ "ta10Ref": "6.5b"
3217
+ }
3218
+ }
3219
+ }
3220
+ ],
3221
+ "required": [
3222
+ "isIncludedExcludedOrNone"
3223
+ ],
3224
+ "properties": {
3225
+ "isIncludedExcludedOrNone": {
3226
+ "ta10Ref": "6.5a"
3227
+ },
3228
+ "comments": {
3229
+ "ta10Ref": "6.5c"
3230
+ }
3231
+ }
3232
+ },
3233
+ "bedroom2": {
3234
+ "ta10Ref": "6.6",
3235
+ "discriminator": {
3236
+ "propertyName": "isIncludedExcludedOrNone"
3237
+ },
3238
+ "oneOf": [
3239
+ {
3240
+ "properties": {
3241
+ "isIncludedExcludedOrNone": {
3242
+ "enum": [
3243
+ "Included",
3244
+ "None"
3245
+ ]
3246
+ }
3247
+ }
3248
+ },
3249
+ {
3250
+ "properties": {
3251
+ "isIncludedExcludedOrNone": {
3252
+ "enum": [
3253
+ "Excluded"
3254
+ ]
3255
+ },
3256
+ "price": {
3257
+ "ta10Ref": "6.6b"
3258
+ }
3259
+ }
3260
+ }
3261
+ ],
3262
+ "required": [
3263
+ "isIncludedExcludedOrNone"
3264
+ ],
3265
+ "properties": {
3266
+ "isIncludedExcludedOrNone": {
3267
+ "ta10Ref": "6.6a"
3268
+ },
3269
+ "comments": {
3270
+ "ta10Ref": "6.6c"
3271
+ }
3272
+ }
3273
+ },
3274
+ "bedroom3": {
3275
+ "ta10Ref": "6.7",
3276
+ "discriminator": {
3277
+ "propertyName": "isIncludedExcludedOrNone"
3278
+ },
3279
+ "oneOf": [
3280
+ {
3281
+ "properties": {
3282
+ "isIncludedExcludedOrNone": {
3283
+ "enum": [
3284
+ "Included",
3285
+ "None"
3286
+ ]
3287
+ }
3288
+ }
3289
+ },
3290
+ {
3291
+ "properties": {
3292
+ "isIncludedExcludedOrNone": {
3293
+ "enum": [
3294
+ "Excluded"
3295
+ ]
3296
+ },
3297
+ "price": {
3298
+ "ta10Ref": "6.7b"
3299
+ }
3300
+ }
3301
+ }
3302
+ ],
3303
+ "required": [
3304
+ "isIncludedExcludedOrNone"
3305
+ ],
3306
+ "properties": {
3307
+ "isIncludedExcludedOrNone": {
3308
+ "ta10Ref": "6.7a"
3309
+ },
3310
+ "comments": {
3311
+ "ta10Ref": "6.7c"
3312
+ }
3313
+ }
3314
+ },
3315
+ "otherRooms": {
3316
+ "ta10Ref": "6.8",
3317
+ "items": {
3318
+ "discriminator": {
3319
+ "propertyName": "isIncludedOrExcluded"
3320
+ },
3321
+ "oneOf": [
3322
+ {
3323
+ "properties": {
3324
+ "isIncludedOrExcluded": {
3325
+ "enum": [
3326
+ "Included"
3327
+ ]
3328
+ },
3329
+ "comments": {
3330
+ "ta10Ref": "6.8c"
3331
+ }
3332
+ }
3333
+ },
3334
+ {
3335
+ "properties": {
3336
+ "isIncludedOrExcluded": {
3337
+ "enum": [
3338
+ "Excluded"
3339
+ ]
3340
+ },
3341
+ "price": {
3342
+ "ta10Ref": "6.8b"
3343
+ },
3344
+ "comments": {
3345
+ "ta10Ref": "6.8c"
3346
+ }
3347
+ }
3348
+ }
3349
+ ],
3350
+ "required": [
3351
+ "itemName",
3352
+ "isIncludedOrExcluded"
3353
+ ],
3354
+ "properties": {
3355
+ "itemName": {
3356
+ "ta10Ref": "6.8"
3357
+ },
3358
+ "isIncludedOrExcluded": {
3359
+ "ta10Ref": "6.8a"
3360
+ }
3361
+ }
3362
+ }
3363
+ }
3364
+ }
3365
+ },
3366
+ "fittedUnits": {
3367
+ "ta10Ref": "7",
3368
+ "required": [
3369
+ "hallStairsLanding",
3370
+ "livingRoom",
3371
+ "diningRoom",
3372
+ "kitchen",
3373
+ "bedroom1",
3374
+ "bedroom2",
3375
+ "bedroom3"
3376
+ ],
3377
+ "properties": {
3378
+ "hallStairsLanding": {
3379
+ "ta10Ref": "7.1",
3380
+ "discriminator": {
3381
+ "propertyName": "isIncludedExcludedOrNone"
3382
+ },
3383
+ "oneOf": [
3384
+ {
3385
+ "properties": {
3386
+ "isIncludedExcludedOrNone": {
3387
+ "enum": [
3388
+ "Included",
3389
+ "None"
3390
+ ]
3391
+ }
3392
+ }
3393
+ },
3394
+ {
3395
+ "properties": {
3396
+ "isIncludedExcludedOrNone": {
3397
+ "enum": [
3398
+ "Excluded"
3399
+ ]
3400
+ },
3401
+ "price": {
3402
+ "ta10Ref": "7.1b"
3403
+ }
3404
+ }
3405
+ }
3406
+ ],
3407
+ "required": [
3408
+ "isIncludedExcludedOrNone"
3409
+ ],
3410
+ "properties": {
3411
+ "isIncludedExcludedOrNone": {
3412
+ "ta10Ref": "7.1a"
3413
+ },
3414
+ "comments": {
3415
+ "ta10Ref": "7.1c"
3416
+ }
3417
+ }
3418
+ },
3419
+ "livingRoom": {
3420
+ "ta10Ref": "7.2",
3421
+ "discriminator": {
3422
+ "propertyName": "isIncludedExcludedOrNone"
3423
+ },
3424
+ "oneOf": [
3425
+ {
3426
+ "properties": {
3427
+ "isIncludedExcludedOrNone": {
3428
+ "enum": [
3429
+ "Included",
3430
+ "None"
3431
+ ]
3432
+ }
3433
+ }
3434
+ },
3435
+ {
3436
+ "properties": {
3437
+ "isIncludedExcludedOrNone": {
3438
+ "enum": [
3439
+ "Excluded"
3440
+ ]
3441
+ },
3442
+ "price": {
3443
+ "ta10Ref": "7.2b"
3444
+ }
3445
+ }
3446
+ }
3447
+ ],
3448
+ "required": [
3449
+ "isIncludedExcludedOrNone"
3450
+ ],
3451
+ "properties": {
3452
+ "isIncludedExcludedOrNone": {
3453
+ "ta10Ref": "7.2a"
3454
+ },
3455
+ "comments": {
3456
+ "ta10Ref": "7.2c"
3457
+ }
3458
+ }
3459
+ },
3460
+ "diningRoom": {
3461
+ "ta10Ref": "7.3",
3462
+ "discriminator": {
3463
+ "propertyName": "isIncludedExcludedOrNone"
3464
+ },
3465
+ "oneOf": [
3466
+ {
3467
+ "properties": {
3468
+ "isIncludedExcludedOrNone": {
3469
+ "enum": [
3470
+ "Included",
3471
+ "None"
3472
+ ]
3473
+ }
3474
+ }
3475
+ },
3476
+ {
3477
+ "properties": {
3478
+ "isIncludedExcludedOrNone": {
3479
+ "enum": [
3480
+ "Excluded"
3481
+ ]
3482
+ },
3483
+ "price": {
3484
+ "ta10Ref": "7.3b"
3485
+ }
3486
+ }
3487
+ }
3488
+ ],
3489
+ "required": [
3490
+ "isIncludedExcludedOrNone"
3491
+ ],
3492
+ "properties": {
3493
+ "isIncludedExcludedOrNone": {
3494
+ "ta10Ref": "7.3a"
3495
+ },
3496
+ "comments": {
3497
+ "ta10Ref": "7.3c"
3498
+ }
3499
+ }
3500
+ },
3501
+ "kitchen": {
3502
+ "ta10Ref": "7.4",
3503
+ "discriminator": {
3504
+ "propertyName": "isIncludedExcludedOrNone"
3505
+ },
3506
+ "oneOf": [
3507
+ {
3508
+ "properties": {
3509
+ "isIncludedExcludedOrNone": {
3510
+ "enum": [
3511
+ "Included",
3512
+ "None"
3513
+ ]
3514
+ }
3515
+ }
3516
+ },
3517
+ {
3518
+ "properties": {
3519
+ "isIncludedExcludedOrNone": {
3520
+ "enum": [
3521
+ "Excluded"
3522
+ ]
3523
+ },
3524
+ "price": {
3525
+ "ta10Ref": "7.4b"
3526
+ }
3527
+ }
3528
+ }
3529
+ ],
3530
+ "required": [
3531
+ "isIncludedExcludedOrNone"
3532
+ ],
3533
+ "properties": {
3534
+ "isIncludedExcludedOrNone": {
3535
+ "ta10Ref": "7.4a"
3536
+ },
3537
+ "comments": {
3538
+ "ta10Ref": "7.4c"
3539
+ }
3540
+ }
3541
+ },
3542
+ "bedroom1": {
3543
+ "ta10Ref": "7.5",
3544
+ "discriminator": {
3545
+ "propertyName": "isIncludedExcludedOrNone"
3546
+ },
3547
+ "oneOf": [
3548
+ {
3549
+ "properties": {
3550
+ "isIncludedExcludedOrNone": {
3551
+ "enum": [
3552
+ "Included",
3553
+ "None"
3554
+ ]
3555
+ }
3556
+ }
3557
+ },
3558
+ {
3559
+ "properties": {
3560
+ "isIncludedExcludedOrNone": {
3561
+ "enum": [
3562
+ "Excluded"
3563
+ ]
3564
+ },
3565
+ "price": {
3566
+ "ta10Ref": "7.5b"
3567
+ }
3568
+ }
3569
+ }
3570
+ ],
3571
+ "required": [
3572
+ "isIncludedExcludedOrNone"
3573
+ ],
3574
+ "properties": {
3575
+ "isIncludedExcludedOrNone": {
3576
+ "ta10Ref": "7.5a"
3577
+ },
3578
+ "comments": {
3579
+ "ta10Ref": "7.5c"
3580
+ }
3581
+ }
3582
+ },
3583
+ "bedroom2": {
3584
+ "ta10Ref": "7.6",
3585
+ "discriminator": {
3586
+ "propertyName": "isIncludedExcludedOrNone"
3587
+ },
3588
+ "oneOf": [
3589
+ {
3590
+ "properties": {
3591
+ "isIncludedExcludedOrNone": {
3592
+ "enum": [
3593
+ "Included",
3594
+ "None"
3595
+ ]
3596
+ }
3597
+ }
3598
+ },
3599
+ {
3600
+ "properties": {
3601
+ "isIncludedExcludedOrNone": {
3602
+ "enum": [
3603
+ "Excluded"
3604
+ ]
3605
+ },
3606
+ "price": {
3607
+ "ta10Ref": "7.6b"
3608
+ }
3609
+ }
3610
+ }
3611
+ ],
3612
+ "required": [
3613
+ "isIncludedExcludedOrNone"
3614
+ ],
3615
+ "properties": {
3616
+ "isIncludedExcludedOrNone": {
3617
+ "ta10Ref": "7.6a"
3618
+ },
3619
+ "comments": {
3620
+ "ta10Ref": "7.6c"
3621
+ }
3622
+ }
3623
+ },
3624
+ "bedroom3": {
3625
+ "ta10Ref": "7.7",
3626
+ "discriminator": {
3627
+ "propertyName": "isIncludedExcludedOrNone"
3628
+ },
3629
+ "oneOf": [
3630
+ {
3631
+ "properties": {
3632
+ "isIncludedExcludedOrNone": {
3633
+ "enum": [
3634
+ "Included",
3635
+ "None"
3636
+ ]
3637
+ }
3638
+ }
3639
+ },
3640
+ {
3641
+ "properties": {
3642
+ "isIncludedExcludedOrNone": {
3643
+ "enum": [
3644
+ "Excluded"
3645
+ ]
3646
+ },
3647
+ "price": {
3648
+ "ta10Ref": "7.7b"
3649
+ }
3650
+ }
3651
+ }
3652
+ ],
3653
+ "required": [
3654
+ "isIncludedExcludedOrNone"
3655
+ ],
3656
+ "properties": {
3657
+ "isIncludedExcludedOrNone": {
3658
+ "ta10Ref": "7.7a"
3659
+ },
3660
+ "comments": {
3661
+ "ta10Ref": "7.7c"
3662
+ }
3663
+ }
3664
+ },
3665
+ "otherRooms": {
3666
+ "ta10Ref": "7.8",
3667
+ "items": {
3668
+ "discriminator": {
3669
+ "propertyName": "isIncludedOrExcluded"
3670
+ },
3671
+ "oneOf": [
3672
+ {
3673
+ "properties": {
3674
+ "isIncludedOrExcluded": {
3675
+ "enum": [
3676
+ "Included"
3677
+ ]
3678
+ },
3679
+ "comments": {
3680
+ "ta10Ref": "7.8c"
3681
+ }
3682
+ }
3683
+ },
3684
+ {
3685
+ "properties": {
3686
+ "isIncludedOrExcluded": {
3687
+ "enum": [
3688
+ "Excluded"
3689
+ ]
3690
+ },
3691
+ "price": {
3692
+ "ta10Ref": "7.8b"
3693
+ },
3694
+ "comments": {
3695
+ "ta10Ref": "7.8c"
3696
+ }
3697
+ }
3698
+ }
3699
+ ],
3700
+ "required": [
3701
+ "itemName",
3702
+ "isIncludedOrExcluded"
3703
+ ],
3704
+ "properties": {
3705
+ "itemName": {
3706
+ "ta10Ref": "7.8"
3707
+ },
3708
+ "isIncludedOrExcluded": {
3709
+ "ta10Ref": "7.8a"
3710
+ }
3711
+ }
3712
+ }
3713
+ }
3714
+ }
3715
+ },
3716
+ "outdoorArea": {
3717
+ "ta10Ref": "8",
3718
+ "required": [
3719
+ "gardenFurniture",
3720
+ "gardenOrnaments",
3721
+ "treesPlantsShrubs",
3722
+ "barbecue",
3723
+ "dustbins",
3724
+ "gardenShed",
3725
+ "greenhouse",
3726
+ "outdoorHeater",
3727
+ "outdoorLights",
3728
+ "waterButt",
3729
+ "clothesLine",
3730
+ "rotaryLine"
3731
+ ],
3732
+ "properties": {
3733
+ "gardenFurniture": {
3734
+ "ta10Ref": "8.1",
3735
+ "discriminator": {
3736
+ "propertyName": "isIncludedExcludedOrNone"
3737
+ },
3738
+ "oneOf": [
3739
+ {
3740
+ "properties": {
3741
+ "isIncludedExcludedOrNone": {
3742
+ "enum": [
3743
+ "Included",
3744
+ "None"
3745
+ ]
3746
+ }
3747
+ }
3748
+ },
3749
+ {
3750
+ "properties": {
3751
+ "isIncludedExcludedOrNone": {
3752
+ "enum": [
3753
+ "Excluded"
3754
+ ]
3755
+ },
3756
+ "price": {
3757
+ "ta10Ref": "8.1b"
3758
+ }
3759
+ }
3760
+ }
3761
+ ],
3762
+ "required": [
3763
+ "isIncludedExcludedOrNone"
3764
+ ],
3765
+ "properties": {
3766
+ "isIncludedExcludedOrNone": {
3767
+ "ta10Ref": "8.1a"
3768
+ },
3769
+ "comments": {
3770
+ "ta10Ref": "8.1c"
3771
+ }
3772
+ }
3773
+ },
3774
+ "gardenOrnaments": {
3775
+ "ta10Ref": "8.2",
3776
+ "discriminator": {
3777
+ "propertyName": "isIncludedExcludedOrNone"
3778
+ },
3779
+ "oneOf": [
3780
+ {
3781
+ "properties": {
3782
+ "isIncludedExcludedOrNone": {
3783
+ "enum": [
3784
+ "Included",
3785
+ "None"
3786
+ ]
3787
+ }
3788
+ }
3789
+ },
3790
+ {
3791
+ "properties": {
3792
+ "isIncludedExcludedOrNone": {
3793
+ "enum": [
3794
+ "Excluded"
3795
+ ]
3796
+ },
3797
+ "price": {
3798
+ "ta10Ref": "8.2b"
3799
+ }
3800
+ }
3801
+ }
3802
+ ],
3803
+ "required": [
3804
+ "isIncludedExcludedOrNone"
3805
+ ],
3806
+ "properties": {
3807
+ "isIncludedExcludedOrNone": {
3808
+ "ta10Ref": "8.2a"
3809
+ },
3810
+ "comments": {
3811
+ "ta10Ref": "8.2c"
3812
+ }
3813
+ }
3814
+ },
3815
+ "treesPlantsShrubs": {
3816
+ "ta10Ref": "8.3",
3817
+ "discriminator": {
3818
+ "propertyName": "isIncludedExcludedOrNone"
3819
+ },
3820
+ "oneOf": [
3821
+ {
3822
+ "properties": {
3823
+ "isIncludedExcludedOrNone": {
3824
+ "enum": [
3825
+ "Included",
3826
+ "None"
3827
+ ]
3828
+ }
3829
+ }
3830
+ },
3831
+ {
3832
+ "properties": {
3833
+ "isIncludedExcludedOrNone": {
3834
+ "enum": [
3835
+ "Excluded"
3836
+ ]
3837
+ },
3838
+ "price": {
3839
+ "ta10Ref": "8.3b"
3840
+ }
3841
+ }
3842
+ }
3843
+ ],
3844
+ "required": [
3845
+ "isIncludedExcludedOrNone"
3846
+ ],
3847
+ "properties": {
3848
+ "isIncludedExcludedOrNone": {
3849
+ "ta10Ref": "8.3a"
3850
+ },
3851
+ "comments": {
3852
+ "ta10Ref": "8.3c"
3853
+ }
3854
+ }
3855
+ },
3856
+ "barbecue": {
3857
+ "ta10Ref": "8.4",
3858
+ "discriminator": {
3859
+ "propertyName": "isIncludedExcludedOrNone"
3860
+ },
3861
+ "oneOf": [
3862
+ {
3863
+ "properties": {
3864
+ "isIncludedExcludedOrNone": {
3865
+ "enum": [
3866
+ "Included",
3867
+ "None"
3868
+ ]
3869
+ }
3870
+ }
3871
+ },
3872
+ {
3873
+ "properties": {
3874
+ "isIncludedExcludedOrNone": {
3875
+ "enum": [
3876
+ "Excluded"
3877
+ ]
3878
+ },
3879
+ "price": {
3880
+ "ta10Ref": "8.4b"
3881
+ }
3882
+ }
3883
+ }
3884
+ ],
3885
+ "required": [
3886
+ "isIncludedExcludedOrNone"
3887
+ ],
3888
+ "properties": {
3889
+ "isIncludedExcludedOrNone": {
3890
+ "ta10Ref": "8.4a"
3891
+ },
3892
+ "comments": {
3893
+ "ta10Ref": "8.4c"
3894
+ }
3895
+ }
3896
+ },
3897
+ "dustbins": {
3898
+ "ta10Ref": "8.5",
3899
+ "discriminator": {
3900
+ "propertyName": "isIncludedExcludedOrNone"
3901
+ },
3902
+ "oneOf": [
3903
+ {
3904
+ "properties": {
3905
+ "isIncludedExcludedOrNone": {
3906
+ "enum": [
3907
+ "Included",
3908
+ "None"
3909
+ ]
3910
+ }
3911
+ }
3912
+ },
3913
+ {
3914
+ "properties": {
3915
+ "isIncludedExcludedOrNone": {
3916
+ "enum": [
3917
+ "Excluded"
3918
+ ]
3919
+ },
3920
+ "price": {
3921
+ "ta10Ref": "8.5b"
3922
+ }
3923
+ }
3924
+ }
3925
+ ],
3926
+ "required": [
3927
+ "isIncludedExcludedOrNone"
3928
+ ],
3929
+ "properties": {
3930
+ "isIncludedExcludedOrNone": {
3931
+ "ta10Ref": "8.5a"
3932
+ },
3933
+ "comments": {
3934
+ "ta10Ref": "8.5c"
3935
+ }
3936
+ }
3937
+ },
3938
+ "gardenShed": {
3939
+ "ta10Ref": "8.6",
3940
+ "discriminator": {
3941
+ "propertyName": "isIncludedExcludedOrNone"
3942
+ },
3943
+ "oneOf": [
3944
+ {
3945
+ "properties": {
3946
+ "isIncludedExcludedOrNone": {
3947
+ "enum": [
3948
+ "Included",
3949
+ "None"
3950
+ ]
3951
+ }
3952
+ }
3953
+ },
3954
+ {
3955
+ "properties": {
3956
+ "isIncludedExcludedOrNone": {
3957
+ "enum": [
3958
+ "Excluded"
3959
+ ]
3960
+ },
3961
+ "price": {
3962
+ "ta10Ref": "8.6b"
3963
+ }
3964
+ }
3965
+ }
3966
+ ],
3967
+ "required": [
3968
+ "isIncludedExcludedOrNone"
3969
+ ],
3970
+ "properties": {
3971
+ "isIncludedExcludedOrNone": {
3972
+ "ta10Ref": "8.6a"
3973
+ },
3974
+ "comments": {
3975
+ "ta10Ref": "8.6c"
3976
+ }
3977
+ }
3978
+ },
3979
+ "greenhouse": {
3980
+ "ta10Ref": "8.7",
3981
+ "discriminator": {
3982
+ "propertyName": "isIncludedExcludedOrNone"
3983
+ },
3984
+ "oneOf": [
3985
+ {
3986
+ "properties": {
3987
+ "isIncludedExcludedOrNone": {
3988
+ "enum": [
3989
+ "Included",
3990
+ "None"
3991
+ ]
3992
+ }
3993
+ }
3994
+ },
3995
+ {
3996
+ "properties": {
3997
+ "isIncludedExcludedOrNone": {
3998
+ "enum": [
3999
+ "Excluded"
4000
+ ]
4001
+ },
4002
+ "price": {
4003
+ "ta10Ref": "8.7b"
4004
+ }
4005
+ }
4006
+ }
4007
+ ],
4008
+ "required": [
4009
+ "isIncludedExcludedOrNone"
4010
+ ],
4011
+ "properties": {
4012
+ "isIncludedExcludedOrNone": {
4013
+ "ta10Ref": "8.7a"
4014
+ },
4015
+ "comments": {
4016
+ "ta10Ref": "8.7c"
4017
+ }
4018
+ }
4019
+ },
4020
+ "outdoorHeater": {
4021
+ "ta10Ref": "8.8",
4022
+ "discriminator": {
4023
+ "propertyName": "isIncludedExcludedOrNone"
4024
+ },
4025
+ "oneOf": [
4026
+ {
4027
+ "properties": {
4028
+ "isIncludedExcludedOrNone": {
4029
+ "enum": [
4030
+ "Included",
4031
+ "None"
4032
+ ]
4033
+ }
4034
+ }
4035
+ },
4036
+ {
4037
+ "properties": {
4038
+ "isIncludedExcludedOrNone": {
4039
+ "enum": [
4040
+ "Excluded"
4041
+ ]
4042
+ },
4043
+ "price": {
4044
+ "ta10Ref": "8.8b"
4045
+ }
4046
+ }
4047
+ }
4048
+ ],
4049
+ "required": [
4050
+ "isIncludedExcludedOrNone"
4051
+ ],
4052
+ "properties": {
4053
+ "isIncludedExcludedOrNone": {
4054
+ "ta10Ref": "8.8a"
4055
+ },
4056
+ "comments": {
4057
+ "ta10Ref": "8.8c"
4058
+ }
4059
+ }
4060
+ },
4061
+ "outdoorLights": {
4062
+ "ta10Ref": "8.9",
4063
+ "discriminator": {
4064
+ "propertyName": "isIncludedExcludedOrNone"
4065
+ },
4066
+ "oneOf": [
4067
+ {
4068
+ "properties": {
4069
+ "isIncludedExcludedOrNone": {
4070
+ "enum": [
4071
+ "Included",
4072
+ "None"
4073
+ ]
4074
+ }
4075
+ }
4076
+ },
4077
+ {
4078
+ "properties": {
4079
+ "isIncludedExcludedOrNone": {
4080
+ "enum": [
4081
+ "Excluded"
4082
+ ]
4083
+ },
4084
+ "price": {
4085
+ "ta10Ref": "8.9b"
4086
+ }
4087
+ }
4088
+ }
4089
+ ],
4090
+ "required": [
4091
+ "isIncludedExcludedOrNone"
4092
+ ],
4093
+ "properties": {
4094
+ "isIncludedExcludedOrNone": {
4095
+ "ta10Ref": "8.9a"
4096
+ },
4097
+ "comments": {
4098
+ "ta10Ref": "8.9c"
4099
+ }
4100
+ }
4101
+ },
4102
+ "waterButt": {
4103
+ "ta10Ref": "8.10",
4104
+ "discriminator": {
4105
+ "propertyName": "isIncludedExcludedOrNone"
4106
+ },
4107
+ "oneOf": [
4108
+ {
4109
+ "properties": {
4110
+ "isIncludedExcludedOrNone": {
4111
+ "enum": [
4112
+ "Included",
4113
+ "None"
4114
+ ]
4115
+ }
4116
+ }
4117
+ },
4118
+ {
4119
+ "properties": {
4120
+ "isIncludedExcludedOrNone": {
4121
+ "enum": [
4122
+ "Excluded"
4123
+ ]
4124
+ },
4125
+ "price": {
4126
+ "ta10Ref": "8.10b"
4127
+ }
4128
+ }
4129
+ }
4130
+ ],
4131
+ "required": [
4132
+ "isIncludedExcludedOrNone"
4133
+ ],
4134
+ "properties": {
4135
+ "isIncludedExcludedOrNone": {
4136
+ "ta10Ref": "8.10a"
4137
+ },
4138
+ "comments": {
4139
+ "ta10Ref": "8.10c"
4140
+ }
4141
+ }
4142
+ },
4143
+ "clothesLine": {
4144
+ "ta10Ref": "8.11",
4145
+ "discriminator": {
4146
+ "propertyName": "isIncludedExcludedOrNone"
4147
+ },
4148
+ "oneOf": [
4149
+ {
4150
+ "properties": {
4151
+ "isIncludedExcludedOrNone": {
4152
+ "enum": [
4153
+ "Included",
4154
+ "None"
4155
+ ]
4156
+ }
4157
+ }
4158
+ },
4159
+ {
4160
+ "properties": {
4161
+ "isIncludedExcludedOrNone": {
4162
+ "enum": [
4163
+ "Excluded"
4164
+ ]
4165
+ },
4166
+ "price": {
4167
+ "ta10Ref": "8.11b"
4168
+ }
4169
+ }
4170
+ }
4171
+ ],
4172
+ "required": [
4173
+ "isIncludedExcludedOrNone"
4174
+ ],
4175
+ "properties": {
4176
+ "isIncludedExcludedOrNone": {
4177
+ "ta10Ref": "8.11a"
4178
+ },
4179
+ "comments": {
4180
+ "ta10Ref": "8.11c"
4181
+ }
4182
+ }
4183
+ },
4184
+ "rotaryLine": {
4185
+ "ta10Ref": "8.12",
4186
+ "discriminator": {
4187
+ "propertyName": "isIncludedExcludedOrNone"
4188
+ },
4189
+ "oneOf": [
4190
+ {
4191
+ "properties": {
4192
+ "isIncludedExcludedOrNone": {
4193
+ "enum": [
4194
+ "Included",
4195
+ "None"
4196
+ ]
4197
+ }
4198
+ }
4199
+ },
4200
+ {
4201
+ "properties": {
4202
+ "isIncludedExcludedOrNone": {
4203
+ "enum": [
4204
+ "Excluded"
4205
+ ]
4206
+ },
4207
+ "price": {
4208
+ "ta10Ref": "8.12b"
4209
+ }
4210
+ }
4211
+ }
4212
+ ],
4213
+ "required": [
4214
+ "isIncludedExcludedOrNone"
4215
+ ],
4216
+ "properties": {
4217
+ "isIncludedExcludedOrNone": {
4218
+ "ta10Ref": "8.12a"
4219
+ },
4220
+ "comments": {
4221
+ "ta10Ref": "8.12c"
4222
+ }
4223
+ }
4224
+ },
4225
+ "otherItems": {
4226
+ "ta10Ref": "8.13",
4227
+ "items": {
4228
+ "discriminator": {
4229
+ "propertyName": "isIncludedOrExcluded"
4230
+ },
4231
+ "oneOf": [
4232
+ {
4233
+ "properties": {
4234
+ "isIncludedOrExcluded": {
4235
+ "enum": [
4236
+ "Included"
4237
+ ]
4238
+ },
4239
+ "comments": {
4240
+ "ta10Ref": "8.13c"
4241
+ }
4242
+ }
4243
+ },
4244
+ {
4245
+ "properties": {
4246
+ "isIncludedOrExcluded": {
4247
+ "enum": [
4248
+ "Excluded"
4249
+ ]
4250
+ },
4251
+ "price": {
4252
+ "ta10Ref": "8.13b"
4253
+ },
4254
+ "comments": {
4255
+ "ta10Ref": "8.13c"
4256
+ }
4257
+ }
4258
+ }
4259
+ ],
4260
+ "required": [
4261
+ "itemName",
4262
+ "isIncludedOrExcluded"
4263
+ ],
4264
+ "properties": {
4265
+ "itemName": {
4266
+ "ta10Ref": "8.13"
4267
+ },
4268
+ "isIncludedOrExcluded": {
4269
+ "ta10Ref": "8.13a"
4270
+ }
4271
+ }
4272
+ }
4273
+ }
4274
+ }
4275
+ },
4276
+ "televisionAndTelephone": {
4277
+ "ta10Ref": "9",
4278
+ "required": [
4279
+ "telephoneReceivers",
4280
+ "televisionAerial",
4281
+ "radioAerial",
4282
+ "satelliteDish"
4283
+ ],
4284
+ "properties": {
4285
+ "telephoneReceivers": {
4286
+ "ta10Ref": "9.1",
4287
+ "discriminator": {
4288
+ "propertyName": "isIncludedExcludedOrNone"
4289
+ },
4290
+ "oneOf": [
4291
+ {
4292
+ "properties": {
4293
+ "isIncludedExcludedOrNone": {
4294
+ "enum": [
4295
+ "Included",
4296
+ "None"
4297
+ ]
4298
+ }
4299
+ }
4300
+ },
4301
+ {
4302
+ "properties": {
4303
+ "isIncludedExcludedOrNone": {
4304
+ "enum": [
4305
+ "Excluded"
4306
+ ]
4307
+ },
4308
+ "price": {
4309
+ "ta10Ref": "9.1b"
4310
+ }
4311
+ }
4312
+ }
4313
+ ],
4314
+ "required": [
4315
+ "isIncludedExcludedOrNone"
4316
+ ],
4317
+ "properties": {
4318
+ "isIncludedExcludedOrNone": {
4319
+ "ta10Ref": "9.1a"
4320
+ },
4321
+ "comments": {
4322
+ "ta10Ref": "9.1c"
4323
+ }
4324
+ }
4325
+ },
4326
+ "televisionAerial": {
4327
+ "ta10Ref": "9.2",
4328
+ "discriminator": {
4329
+ "propertyName": "isIncludedExcludedOrNone"
4330
+ },
4331
+ "oneOf": [
4332
+ {
4333
+ "properties": {
4334
+ "isIncludedExcludedOrNone": {
4335
+ "enum": [
4336
+ "Included",
4337
+ "None"
4338
+ ]
4339
+ }
4340
+ }
4341
+ },
4342
+ {
4343
+ "properties": {
4344
+ "isIncludedExcludedOrNone": {
4345
+ "enum": [
4346
+ "Excluded"
4347
+ ]
4348
+ },
4349
+ "price": {
4350
+ "ta10Ref": "9.2b"
4351
+ }
4352
+ }
4353
+ }
4354
+ ],
4355
+ "required": [
4356
+ "isIncludedExcludedOrNone"
4357
+ ],
4358
+ "properties": {
4359
+ "isIncludedExcludedOrNone": {
4360
+ "ta10Ref": "9.2a"
4361
+ },
4362
+ "comments": {
4363
+ "ta10Ref": "9.2c"
4364
+ }
4365
+ }
4366
+ },
4367
+ "radioAerial": {
4368
+ "ta10Ref": "9.3",
4369
+ "discriminator": {
4370
+ "propertyName": "isIncludedExcludedOrNone"
4371
+ },
4372
+ "oneOf": [
4373
+ {
4374
+ "properties": {
4375
+ "isIncludedExcludedOrNone": {
4376
+ "enum": [
4377
+ "Included",
4378
+ "None"
4379
+ ]
4380
+ }
4381
+ }
4382
+ },
4383
+ {
4384
+ "properties": {
4385
+ "isIncludedExcludedOrNone": {
4386
+ "enum": [
4387
+ "Excluded"
4388
+ ]
4389
+ },
4390
+ "price": {
4391
+ "ta10Ref": "9.3b"
4392
+ }
4393
+ }
4394
+ }
4395
+ ],
4396
+ "required": [
4397
+ "isIncludedExcludedOrNone"
4398
+ ],
4399
+ "properties": {
4400
+ "isIncludedExcludedOrNone": {
4401
+ "ta10Ref": "9.3a"
4402
+ },
4403
+ "comments": {
4404
+ "ta10Ref": "9.3c"
4405
+ }
4406
+ }
4407
+ },
4408
+ "satelliteDish": {
4409
+ "ta10Ref": "9.4",
4410
+ "discriminator": {
4411
+ "propertyName": "isIncludedExcludedOrNone"
4412
+ },
4413
+ "oneOf": [
4414
+ {
4415
+ "properties": {
4416
+ "isIncludedExcludedOrNone": {
4417
+ "enum": [
4418
+ "Included",
4419
+ "None"
4420
+ ]
4421
+ }
4422
+ }
4423
+ },
4424
+ {
4425
+ "properties": {
4426
+ "isIncludedExcludedOrNone": {
4427
+ "enum": [
4428
+ "Excluded"
4429
+ ]
4430
+ },
4431
+ "price": {
4432
+ "ta10Ref": "9.4b"
4433
+ }
4434
+ }
4435
+ }
4436
+ ],
4437
+ "required": [
4438
+ "isIncludedExcludedOrNone"
4439
+ ],
4440
+ "properties": {
4441
+ "isIncludedExcludedOrNone": {
4442
+ "ta10Ref": "9.4a"
4443
+ },
4444
+ "comments": {
4445
+ "ta10Ref": "9.4c"
4446
+ }
4447
+ }
4448
+ }
4449
+ }
4450
+ },
4451
+ "stockOfFuel": {
4452
+ "ta10Ref": "10",
4453
+ "required": [
4454
+ "oil",
4455
+ "wood",
4456
+ "lpg"
4457
+ ],
4458
+ "properties": {
4459
+ "oil": {
4460
+ "ta10Ref": "10.1",
4461
+ "discriminator": {
4462
+ "propertyName": "isIncludedExcludedOrNone"
4463
+ },
4464
+ "oneOf": [
4465
+ {
4466
+ "properties": {
4467
+ "isIncludedExcludedOrNone": {
4468
+ "enum": [
4469
+ "Included",
4470
+ "None"
4471
+ ]
4472
+ }
4473
+ }
4474
+ },
4475
+ {
4476
+ "properties": {
4477
+ "isIncludedExcludedOrNone": {
4478
+ "enum": [
4479
+ "Excluded"
4480
+ ]
4481
+ },
4482
+ "price": {
4483
+ "ta10Ref": "10.1b"
4484
+ }
4485
+ }
4486
+ }
4487
+ ],
4488
+ "required": [
4489
+ "isIncludedExcludedOrNone"
4490
+ ],
4491
+ "properties": {
4492
+ "isIncludedExcludedOrNone": {
4493
+ "ta10Ref": "10.1a"
4494
+ },
4495
+ "comments": {
4496
+ "ta10Ref": "10.1c"
4497
+ }
4498
+ }
4499
+ },
4500
+ "wood": {
4501
+ "ta10Ref": "10.2",
4502
+ "discriminator": {
4503
+ "propertyName": "isIncludedExcludedOrNone"
4504
+ },
4505
+ "oneOf": [
4506
+ {
4507
+ "properties": {
4508
+ "isIncludedExcludedOrNone": {
4509
+ "enum": [
4510
+ "Included",
4511
+ "None"
4512
+ ]
4513
+ }
4514
+ }
4515
+ },
4516
+ {
4517
+ "properties": {
4518
+ "isIncludedExcludedOrNone": {
4519
+ "enum": [
4520
+ "Excluded"
4521
+ ]
4522
+ },
4523
+ "price": {
4524
+ "ta10Ref": "10.2b"
4525
+ }
4526
+ }
4527
+ }
4528
+ ],
4529
+ "required": [
4530
+ "isIncludedExcludedOrNone"
4531
+ ],
4532
+ "properties": {
4533
+ "isIncludedExcludedOrNone": {
4534
+ "ta10Ref": "10.2a"
4535
+ },
4536
+ "comments": {
4537
+ "ta10Ref": "10.2c"
4538
+ }
4539
+ }
4540
+ },
4541
+ "lpg": {
4542
+ "ta10Ref": "10.3",
4543
+ "discriminator": {
4544
+ "propertyName": "isIncludedExcludedOrNone"
4545
+ },
4546
+ "oneOf": [
4547
+ {
4548
+ "properties": {
4549
+ "isIncludedExcludedOrNone": {
4550
+ "enum": [
4551
+ "Included",
4552
+ "None"
4553
+ ]
4554
+ }
4555
+ }
4556
+ },
4557
+ {
4558
+ "properties": {
4559
+ "isIncludedExcludedOrNone": {
4560
+ "enum": [
4561
+ "Excluded"
4562
+ ]
4563
+ },
4564
+ "price": {
4565
+ "ta10Ref": "10.3b"
4566
+ }
4567
+ }
4568
+ }
4569
+ ],
4570
+ "required": [
4571
+ "isIncludedExcludedOrNone"
4572
+ ],
4573
+ "properties": {
4574
+ "isIncludedExcludedOrNone": {
4575
+ "ta10Ref": "10.3a"
4576
+ },
4577
+ "comments": {
4578
+ "ta10Ref": "10.3c"
4579
+ }
4580
+ }
4581
+ }
4582
+ }
4583
+ },
4584
+ "otherItems": {
4585
+ "ta10Ref": "11",
4586
+ "properties": {
4587
+ "otherItems": {
4588
+ "ta10Ref": "11.1",
4589
+ "items": {
4590
+ "discriminator": {
4591
+ "propertyName": "isIncludedOrExcluded"
4592
+ },
4593
+ "oneOf": [
4594
+ {
4595
+ "properties": {
4596
+ "isIncludedOrExcluded": {
4597
+ "enum": [
4598
+ "Included"
4599
+ ]
4600
+ },
4601
+ "comments": {
4602
+ "ta10Ref": "11.1c"
4603
+ }
4604
+ }
4605
+ },
4606
+ {
4607
+ "properties": {
4608
+ "isIncludedOrExcluded": {
4609
+ "enum": [
4610
+ "Excluded"
4611
+ ]
4612
+ },
4613
+ "price": {
4614
+ "ta10Ref": "11.1b"
4615
+ },
4616
+ "comments": {
4617
+ "ta10Ref": "11.1c"
4618
+ }
4619
+ }
4620
+ }
4621
+ ],
4622
+ "required": [
4623
+ "itemName",
4624
+ "isIncludedOrExcluded"
4625
+ ],
4626
+ "properties": {
4627
+ "itemName": {
4628
+ "ta10Ref": "11.1"
4629
+ },
4630
+ "isIncludedOrExcluded": {
4631
+ "ta10Ref": "11.1a"
4632
+ }
4633
+ }
4634
+ }
4635
+ }
4636
+ }
4637
+ },
4638
+ "confirmationOfAccuracy": {
4639
+ "ta10Ref": "12",
4640
+ "required": [
4641
+ "confirmInformationIsAccurate"
4642
+ ],
4643
+ "properties": {
4644
+ "confirmInformationIsAccurate": {
4645
+ "ta10Ref": "12.1"
4646
+ }
4647
+ }
4648
+ }
4649
+ }
4650
+ }
4651
+ }
4652
+ }
4653
+ }
4654
+ }