@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,4642 @@
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
+ }
2271
+ },
2272
+ {
2273
+ "properties": {
2274
+ "isIncludedOrExcluded": {
2275
+ "enum": [
2276
+ "Excluded"
2277
+ ]
2278
+ },
2279
+ "price": {
2280
+ "ta10Ref": "4.8b"
2281
+ }
2282
+ }
2283
+ }
2284
+ ],
2285
+ "required": [
2286
+ "itemName",
2287
+ "isIncludedOrExcluded"
2288
+ ],
2289
+ "properties": {
2290
+ "itemName": {
2291
+ "ta10Ref": "4.8"
2292
+ },
2293
+ "isIncludedOrExcluded": {
2294
+ "ta10Ref": "4.8a"
2295
+ }
2296
+ }
2297
+ }
2298
+ }
2299
+ }
2300
+ },
2301
+ "curtainsAndCurtainRails": {
2302
+ "ta10Ref": "5",
2303
+ "required": [
2304
+ "curtainRailsPolesPelmets",
2305
+ "curtainsBlinds"
2306
+ ],
2307
+ "properties": {
2308
+ "curtainRailsPolesPelmets": {
2309
+ "ta10Ref": "5",
2310
+ "required": [
2311
+ "hallStairsLanding",
2312
+ "livingRoom",
2313
+ "diningRoom",
2314
+ "kitchen",
2315
+ "bedroom1",
2316
+ "bedroom2",
2317
+ "bedroom3"
2318
+ ],
2319
+ "properties": {
2320
+ "hallStairsLanding": {
2321
+ "ta10Ref": "5.1",
2322
+ "discriminator": {
2323
+ "propertyName": "isIncludedExcludedOrNone"
2324
+ },
2325
+ "oneOf": [
2326
+ {
2327
+ "properties": {
2328
+ "isIncludedExcludedOrNone": {
2329
+ "enum": [
2330
+ "Included",
2331
+ "None"
2332
+ ]
2333
+ }
2334
+ }
2335
+ },
2336
+ {
2337
+ "properties": {
2338
+ "isIncludedExcludedOrNone": {
2339
+ "enum": [
2340
+ "Excluded"
2341
+ ]
2342
+ },
2343
+ "price": {
2344
+ "ta10Ref": "5.1b"
2345
+ }
2346
+ }
2347
+ }
2348
+ ],
2349
+ "required": [
2350
+ "isIncludedExcludedOrNone"
2351
+ ],
2352
+ "properties": {
2353
+ "isIncludedExcludedOrNone": {
2354
+ "ta10Ref": "5.1a"
2355
+ },
2356
+ "comments": {
2357
+ "ta10Ref": "5.1c"
2358
+ }
2359
+ }
2360
+ },
2361
+ "livingRoom": {
2362
+ "ta10Ref": "5.2",
2363
+ "discriminator": {
2364
+ "propertyName": "isIncludedExcludedOrNone"
2365
+ },
2366
+ "oneOf": [
2367
+ {
2368
+ "properties": {
2369
+ "isIncludedExcludedOrNone": {
2370
+ "enum": [
2371
+ "Included",
2372
+ "None"
2373
+ ]
2374
+ }
2375
+ }
2376
+ },
2377
+ {
2378
+ "properties": {
2379
+ "isIncludedExcludedOrNone": {
2380
+ "enum": [
2381
+ "Excluded"
2382
+ ]
2383
+ },
2384
+ "price": {
2385
+ "ta10Ref": "5.2b"
2386
+ }
2387
+ }
2388
+ }
2389
+ ],
2390
+ "required": [
2391
+ "isIncludedExcludedOrNone"
2392
+ ],
2393
+ "properties": {
2394
+ "isIncludedExcludedOrNone": {
2395
+ "ta10Ref": "5.2a"
2396
+ },
2397
+ "comments": {
2398
+ "ta10Ref": "5.2c"
2399
+ }
2400
+ }
2401
+ },
2402
+ "diningRoom": {
2403
+ "ta10Ref": "5.3",
2404
+ "discriminator": {
2405
+ "propertyName": "isIncludedExcludedOrNone"
2406
+ },
2407
+ "oneOf": [
2408
+ {
2409
+ "properties": {
2410
+ "isIncludedExcludedOrNone": {
2411
+ "enum": [
2412
+ "Included",
2413
+ "None"
2414
+ ]
2415
+ }
2416
+ }
2417
+ },
2418
+ {
2419
+ "properties": {
2420
+ "isIncludedExcludedOrNone": {
2421
+ "enum": [
2422
+ "Excluded"
2423
+ ]
2424
+ },
2425
+ "price": {
2426
+ "ta10Ref": "5.3b"
2427
+ }
2428
+ }
2429
+ }
2430
+ ],
2431
+ "required": [
2432
+ "isIncludedExcludedOrNone"
2433
+ ],
2434
+ "properties": {
2435
+ "isIncludedExcludedOrNone": {
2436
+ "ta10Ref": "5.3a"
2437
+ },
2438
+ "comments": {
2439
+ "ta10Ref": "5.3c"
2440
+ }
2441
+ }
2442
+ },
2443
+ "kitchen": {
2444
+ "ta10Ref": "5.4",
2445
+ "discriminator": {
2446
+ "propertyName": "isIncludedExcludedOrNone"
2447
+ },
2448
+ "oneOf": [
2449
+ {
2450
+ "properties": {
2451
+ "isIncludedExcludedOrNone": {
2452
+ "enum": [
2453
+ "Included",
2454
+ "None"
2455
+ ]
2456
+ }
2457
+ }
2458
+ },
2459
+ {
2460
+ "properties": {
2461
+ "isIncludedExcludedOrNone": {
2462
+ "enum": [
2463
+ "Excluded"
2464
+ ]
2465
+ },
2466
+ "price": {
2467
+ "ta10Ref": "5.4b"
2468
+ }
2469
+ }
2470
+ }
2471
+ ],
2472
+ "required": [
2473
+ "isIncludedExcludedOrNone"
2474
+ ],
2475
+ "properties": {
2476
+ "isIncludedExcludedOrNone": {
2477
+ "ta10Ref": "5.4a"
2478
+ },
2479
+ "comments": {
2480
+ "ta10Ref": "5.4c"
2481
+ }
2482
+ }
2483
+ },
2484
+ "bedroom1": {
2485
+ "ta10Ref": "5.5",
2486
+ "discriminator": {
2487
+ "propertyName": "isIncludedExcludedOrNone"
2488
+ },
2489
+ "oneOf": [
2490
+ {
2491
+ "properties": {
2492
+ "isIncludedExcludedOrNone": {
2493
+ "enum": [
2494
+ "Included",
2495
+ "None"
2496
+ ]
2497
+ }
2498
+ }
2499
+ },
2500
+ {
2501
+ "properties": {
2502
+ "isIncludedExcludedOrNone": {
2503
+ "enum": [
2504
+ "Excluded"
2505
+ ]
2506
+ },
2507
+ "price": {
2508
+ "ta10Ref": "5.5b"
2509
+ }
2510
+ }
2511
+ }
2512
+ ],
2513
+ "required": [
2514
+ "isIncludedExcludedOrNone"
2515
+ ],
2516
+ "properties": {
2517
+ "isIncludedExcludedOrNone": {
2518
+ "ta10Ref": "5.5a"
2519
+ },
2520
+ "comments": {
2521
+ "ta10Ref": "5.5c"
2522
+ }
2523
+ }
2524
+ },
2525
+ "bedroom2": {
2526
+ "ta10Ref": "5.6",
2527
+ "discriminator": {
2528
+ "propertyName": "isIncludedExcludedOrNone"
2529
+ },
2530
+ "oneOf": [
2531
+ {
2532
+ "properties": {
2533
+ "isIncludedExcludedOrNone": {
2534
+ "enum": [
2535
+ "Included",
2536
+ "None"
2537
+ ]
2538
+ }
2539
+ }
2540
+ },
2541
+ {
2542
+ "properties": {
2543
+ "isIncludedExcludedOrNone": {
2544
+ "enum": [
2545
+ "Excluded"
2546
+ ]
2547
+ },
2548
+ "price": {
2549
+ "ta10Ref": "5.6b"
2550
+ }
2551
+ }
2552
+ }
2553
+ ],
2554
+ "required": [
2555
+ "isIncludedExcludedOrNone"
2556
+ ],
2557
+ "properties": {
2558
+ "isIncludedExcludedOrNone": {
2559
+ "ta10Ref": "5.6a"
2560
+ },
2561
+ "comments": {
2562
+ "ta10Ref": "5.6c"
2563
+ }
2564
+ }
2565
+ },
2566
+ "bedroom3": {
2567
+ "ta10Ref": "5.7",
2568
+ "discriminator": {
2569
+ "propertyName": "isIncludedExcludedOrNone"
2570
+ },
2571
+ "oneOf": [
2572
+ {
2573
+ "properties": {
2574
+ "isIncludedExcludedOrNone": {
2575
+ "enum": [
2576
+ "Included",
2577
+ "None"
2578
+ ]
2579
+ }
2580
+ }
2581
+ },
2582
+ {
2583
+ "properties": {
2584
+ "isIncludedExcludedOrNone": {
2585
+ "enum": [
2586
+ "Excluded"
2587
+ ]
2588
+ },
2589
+ "price": {
2590
+ "ta10Ref": "5.7b"
2591
+ }
2592
+ }
2593
+ }
2594
+ ],
2595
+ "required": [
2596
+ "isIncludedExcludedOrNone"
2597
+ ],
2598
+ "properties": {
2599
+ "isIncludedExcludedOrNone": {
2600
+ "ta10Ref": "5.7a"
2601
+ },
2602
+ "comments": {
2603
+ "ta10Ref": "5.7c"
2604
+ }
2605
+ }
2606
+ },
2607
+ "otherRooms": {
2608
+ "ta10Ref": "5.8",
2609
+ "items": {
2610
+ "discriminator": {
2611
+ "propertyName": "isIncludedOrExcluded"
2612
+ },
2613
+ "oneOf": [
2614
+ {
2615
+ "properties": {
2616
+ "isIncludedOrExcluded": {
2617
+ "enum": [
2618
+ "Included"
2619
+ ]
2620
+ },
2621
+ "comments": {
2622
+ "ta10Ref": "5.8c"
2623
+ }
2624
+ }
2625
+ },
2626
+ {
2627
+ "properties": {
2628
+ "isIncludedOrExcluded": {
2629
+ "enum": [
2630
+ "Excluded"
2631
+ ]
2632
+ },
2633
+ "price": {
2634
+ "ta10Ref": "5.8b"
2635
+ },
2636
+ "comments": {
2637
+ "ta10Ref": "5.8c"
2638
+ }
2639
+ }
2640
+ }
2641
+ ],
2642
+ "required": [
2643
+ "itemName",
2644
+ "isIncludedOrExcluded"
2645
+ ],
2646
+ "properties": {
2647
+ "itemName": {
2648
+ "ta10Ref": "5.8"
2649
+ },
2650
+ "isIncludedOrExcluded": {
2651
+ "ta10Ref": "5.8a"
2652
+ }
2653
+ }
2654
+ }
2655
+ }
2656
+ }
2657
+ },
2658
+ "curtainsBlinds": {
2659
+ "ta10Ref": "5",
2660
+ "required": [
2661
+ "hallStairsLanding",
2662
+ "livingRoom",
2663
+ "diningRoom",
2664
+ "kitchen",
2665
+ "bedroom1",
2666
+ "bedroom2",
2667
+ "bedroom3"
2668
+ ],
2669
+ "properties": {
2670
+ "hallStairsLanding": {
2671
+ "ta10Ref": "5.12",
2672
+ "discriminator": {
2673
+ "propertyName": "isIncludedExcludedOrNone"
2674
+ },
2675
+ "oneOf": [
2676
+ {
2677
+ "properties": {
2678
+ "isIncludedExcludedOrNone": {
2679
+ "enum": [
2680
+ "Included",
2681
+ "None"
2682
+ ]
2683
+ }
2684
+ }
2685
+ },
2686
+ {
2687
+ "properties": {
2688
+ "isIncludedExcludedOrNone": {
2689
+ "enum": [
2690
+ "Excluded"
2691
+ ]
2692
+ },
2693
+ "price": {
2694
+ "ta10Ref": "5.12b"
2695
+ }
2696
+ }
2697
+ }
2698
+ ],
2699
+ "required": [
2700
+ "isIncludedExcludedOrNone"
2701
+ ],
2702
+ "properties": {
2703
+ "isIncludedExcludedOrNone": {
2704
+ "ta10Ref": "5.12a"
2705
+ },
2706
+ "comments": {
2707
+ "ta10Ref": "5.12c"
2708
+ }
2709
+ }
2710
+ },
2711
+ "livingRoom": {
2712
+ "ta10Ref": "5.13",
2713
+ "discriminator": {
2714
+ "propertyName": "isIncludedExcludedOrNone"
2715
+ },
2716
+ "oneOf": [
2717
+ {
2718
+ "properties": {
2719
+ "isIncludedExcludedOrNone": {
2720
+ "enum": [
2721
+ "Included",
2722
+ "None"
2723
+ ]
2724
+ }
2725
+ }
2726
+ },
2727
+ {
2728
+ "properties": {
2729
+ "isIncludedExcludedOrNone": {
2730
+ "enum": [
2731
+ "Excluded"
2732
+ ]
2733
+ },
2734
+ "price": {
2735
+ "ta10Ref": "5.13b"
2736
+ }
2737
+ }
2738
+ }
2739
+ ],
2740
+ "required": [
2741
+ "isIncludedExcludedOrNone"
2742
+ ],
2743
+ "properties": {
2744
+ "isIncludedExcludedOrNone": {
2745
+ "ta10Ref": "5.13a"
2746
+ },
2747
+ "comments": {
2748
+ "ta10Ref": "5.13c"
2749
+ }
2750
+ }
2751
+ },
2752
+ "diningRoom": {
2753
+ "ta10Ref": "5.14",
2754
+ "discriminator": {
2755
+ "propertyName": "isIncludedExcludedOrNone"
2756
+ },
2757
+ "oneOf": [
2758
+ {
2759
+ "properties": {
2760
+ "isIncludedExcludedOrNone": {
2761
+ "enum": [
2762
+ "Included",
2763
+ "None"
2764
+ ]
2765
+ }
2766
+ }
2767
+ },
2768
+ {
2769
+ "properties": {
2770
+ "isIncludedExcludedOrNone": {
2771
+ "enum": [
2772
+ "Excluded"
2773
+ ]
2774
+ },
2775
+ "price": {
2776
+ "ta10Ref": "5.14b"
2777
+ }
2778
+ }
2779
+ }
2780
+ ],
2781
+ "required": [
2782
+ "isIncludedExcludedOrNone"
2783
+ ],
2784
+ "properties": {
2785
+ "isIncludedExcludedOrNone": {
2786
+ "ta10Ref": "5.14a"
2787
+ },
2788
+ "comments": {
2789
+ "ta10Ref": "5.14c"
2790
+ }
2791
+ }
2792
+ },
2793
+ "kitchen": {
2794
+ "ta10Ref": "5.15",
2795
+ "discriminator": {
2796
+ "propertyName": "isIncludedExcludedOrNone"
2797
+ },
2798
+ "oneOf": [
2799
+ {
2800
+ "properties": {
2801
+ "isIncludedExcludedOrNone": {
2802
+ "enum": [
2803
+ "Included",
2804
+ "None"
2805
+ ]
2806
+ }
2807
+ }
2808
+ },
2809
+ {
2810
+ "properties": {
2811
+ "isIncludedExcludedOrNone": {
2812
+ "enum": [
2813
+ "Excluded"
2814
+ ]
2815
+ },
2816
+ "price": {
2817
+ "ta10Ref": "5.15b"
2818
+ }
2819
+ }
2820
+ }
2821
+ ],
2822
+ "required": [
2823
+ "isIncludedExcludedOrNone"
2824
+ ],
2825
+ "properties": {
2826
+ "isIncludedExcludedOrNone": {
2827
+ "ta10Ref": "5.15a"
2828
+ },
2829
+ "comments": {
2830
+ "ta10Ref": "5.15c"
2831
+ }
2832
+ }
2833
+ },
2834
+ "bedroom1": {
2835
+ "ta10Ref": "5.16",
2836
+ "discriminator": {
2837
+ "propertyName": "isIncludedExcludedOrNone"
2838
+ },
2839
+ "oneOf": [
2840
+ {
2841
+ "properties": {
2842
+ "isIncludedExcludedOrNone": {
2843
+ "enum": [
2844
+ "Included",
2845
+ "None"
2846
+ ]
2847
+ }
2848
+ }
2849
+ },
2850
+ {
2851
+ "properties": {
2852
+ "isIncludedExcludedOrNone": {
2853
+ "enum": [
2854
+ "Excluded"
2855
+ ]
2856
+ },
2857
+ "price": {
2858
+ "ta10Ref": "5.16b"
2859
+ }
2860
+ }
2861
+ }
2862
+ ],
2863
+ "required": [
2864
+ "isIncludedExcludedOrNone"
2865
+ ],
2866
+ "properties": {
2867
+ "isIncludedExcludedOrNone": {
2868
+ "ta10Ref": "5.16a"
2869
+ },
2870
+ "comments": {
2871
+ "ta10Ref": "5.16c"
2872
+ }
2873
+ }
2874
+ },
2875
+ "bedroom2": {
2876
+ "ta10Ref": "5.17",
2877
+ "discriminator": {
2878
+ "propertyName": "isIncludedExcludedOrNone"
2879
+ },
2880
+ "oneOf": [
2881
+ {
2882
+ "properties": {
2883
+ "isIncludedExcludedOrNone": {
2884
+ "enum": [
2885
+ "Included",
2886
+ "None"
2887
+ ]
2888
+ }
2889
+ }
2890
+ },
2891
+ {
2892
+ "properties": {
2893
+ "isIncludedExcludedOrNone": {
2894
+ "enum": [
2895
+ "Excluded"
2896
+ ]
2897
+ },
2898
+ "price": {
2899
+ "ta10Ref": "5.17b"
2900
+ }
2901
+ }
2902
+ }
2903
+ ],
2904
+ "required": [
2905
+ "isIncludedExcludedOrNone"
2906
+ ],
2907
+ "properties": {
2908
+ "isIncludedExcludedOrNone": {
2909
+ "ta10Ref": "5.17a"
2910
+ },
2911
+ "comments": {
2912
+ "ta10Ref": "5.17c"
2913
+ }
2914
+ }
2915
+ },
2916
+ "bedroom3": {
2917
+ "ta10Ref": "5.18",
2918
+ "discriminator": {
2919
+ "propertyName": "isIncludedExcludedOrNone"
2920
+ },
2921
+ "oneOf": [
2922
+ {
2923
+ "properties": {
2924
+ "isIncludedExcludedOrNone": {
2925
+ "enum": [
2926
+ "Included",
2927
+ "None"
2928
+ ]
2929
+ }
2930
+ }
2931
+ },
2932
+ {
2933
+ "properties": {
2934
+ "isIncludedExcludedOrNone": {
2935
+ "enum": [
2936
+ "Excluded"
2937
+ ]
2938
+ },
2939
+ "price": {
2940
+ "ta10Ref": "5.18b"
2941
+ }
2942
+ }
2943
+ }
2944
+ ],
2945
+ "required": [
2946
+ "isIncludedExcludedOrNone"
2947
+ ],
2948
+ "properties": {
2949
+ "isIncludedExcludedOrNone": {
2950
+ "ta10Ref": "5.18a"
2951
+ },
2952
+ "comments": {
2953
+ "ta10Ref": "5.18c"
2954
+ }
2955
+ }
2956
+ },
2957
+ "otherRooms": {
2958
+ "ta10Ref": "5.19",
2959
+ "items": {
2960
+ "discriminator": {
2961
+ "propertyName": "isIncludedOrExcluded"
2962
+ },
2963
+ "oneOf": [
2964
+ {
2965
+ "properties": {
2966
+ "isIncludedOrExcluded": {
2967
+ "enum": [
2968
+ "Included"
2969
+ ]
2970
+ }
2971
+ }
2972
+ },
2973
+ {
2974
+ "properties": {
2975
+ "isIncludedOrExcluded": {
2976
+ "enum": [
2977
+ "Excluded"
2978
+ ]
2979
+ },
2980
+ "price": {
2981
+ "ta10Ref": "5.19b"
2982
+ }
2983
+ }
2984
+ }
2985
+ ],
2986
+ "required": [
2987
+ "itemName",
2988
+ "isIncludedOrExcluded"
2989
+ ],
2990
+ "properties": {
2991
+ "itemName": {
2992
+ "ta10Ref": "5.19"
2993
+ },
2994
+ "isIncludedOrExcluded": {
2995
+ "ta10Ref": "5.19a"
2996
+ }
2997
+ }
2998
+ }
2999
+ }
3000
+ }
3001
+ }
3002
+ }
3003
+ },
3004
+ "lightFittings": {
3005
+ "ta10Ref": "6",
3006
+ "required": [
3007
+ "hallStairsLanding",
3008
+ "livingRoom",
3009
+ "diningRoom",
3010
+ "kitchen",
3011
+ "bedroom1",
3012
+ "bedroom2",
3013
+ "bedroom3"
3014
+ ],
3015
+ "properties": {
3016
+ "hallStairsLanding": {
3017
+ "ta10Ref": "6.1",
3018
+ "discriminator": {
3019
+ "propertyName": "isIncludedExcludedOrNone"
3020
+ },
3021
+ "oneOf": [
3022
+ {
3023
+ "properties": {
3024
+ "isIncludedExcludedOrNone": {
3025
+ "enum": [
3026
+ "Included",
3027
+ "None"
3028
+ ]
3029
+ }
3030
+ }
3031
+ },
3032
+ {
3033
+ "properties": {
3034
+ "isIncludedExcludedOrNone": {
3035
+ "enum": [
3036
+ "Excluded"
3037
+ ]
3038
+ },
3039
+ "price": {
3040
+ "ta10Ref": "6.1b"
3041
+ }
3042
+ }
3043
+ }
3044
+ ],
3045
+ "required": [
3046
+ "isIncludedExcludedOrNone"
3047
+ ],
3048
+ "properties": {
3049
+ "isIncludedExcludedOrNone": {
3050
+ "ta10Ref": "6.1a"
3051
+ },
3052
+ "comments": {
3053
+ "ta10Ref": "6.1c"
3054
+ }
3055
+ }
3056
+ },
3057
+ "livingRoom": {
3058
+ "ta10Ref": "6.2",
3059
+ "discriminator": {
3060
+ "propertyName": "isIncludedExcludedOrNone"
3061
+ },
3062
+ "oneOf": [
3063
+ {
3064
+ "properties": {
3065
+ "isIncludedExcludedOrNone": {
3066
+ "enum": [
3067
+ "Included",
3068
+ "None"
3069
+ ]
3070
+ }
3071
+ }
3072
+ },
3073
+ {
3074
+ "properties": {
3075
+ "isIncludedExcludedOrNone": {
3076
+ "enum": [
3077
+ "Excluded"
3078
+ ]
3079
+ },
3080
+ "price": {
3081
+ "ta10Ref": "6.2b"
3082
+ }
3083
+ }
3084
+ }
3085
+ ],
3086
+ "required": [
3087
+ "isIncludedExcludedOrNone"
3088
+ ],
3089
+ "properties": {
3090
+ "isIncludedExcludedOrNone": {
3091
+ "ta10Ref": "6.2a"
3092
+ },
3093
+ "comments": {
3094
+ "ta10Ref": "6.2c"
3095
+ }
3096
+ }
3097
+ },
3098
+ "diningRoom": {
3099
+ "ta10Ref": "6.3",
3100
+ "discriminator": {
3101
+ "propertyName": "isIncludedExcludedOrNone"
3102
+ },
3103
+ "oneOf": [
3104
+ {
3105
+ "properties": {
3106
+ "isIncludedExcludedOrNone": {
3107
+ "enum": [
3108
+ "Included",
3109
+ "None"
3110
+ ]
3111
+ }
3112
+ }
3113
+ },
3114
+ {
3115
+ "properties": {
3116
+ "isIncludedExcludedOrNone": {
3117
+ "enum": [
3118
+ "Excluded"
3119
+ ]
3120
+ },
3121
+ "price": {
3122
+ "ta10Ref": "6.3b"
3123
+ }
3124
+ }
3125
+ }
3126
+ ],
3127
+ "required": [
3128
+ "isIncludedExcludedOrNone"
3129
+ ],
3130
+ "properties": {
3131
+ "isIncludedExcludedOrNone": {
3132
+ "ta10Ref": "6.3a"
3133
+ },
3134
+ "comments": {
3135
+ "ta10Ref": "6.3c"
3136
+ }
3137
+ }
3138
+ },
3139
+ "kitchen": {
3140
+ "ta10Ref": "6.4",
3141
+ "discriminator": {
3142
+ "propertyName": "isIncludedExcludedOrNone"
3143
+ },
3144
+ "oneOf": [
3145
+ {
3146
+ "properties": {
3147
+ "isIncludedExcludedOrNone": {
3148
+ "enum": [
3149
+ "Included",
3150
+ "None"
3151
+ ]
3152
+ }
3153
+ }
3154
+ },
3155
+ {
3156
+ "properties": {
3157
+ "isIncludedExcludedOrNone": {
3158
+ "enum": [
3159
+ "Excluded"
3160
+ ]
3161
+ },
3162
+ "price": {
3163
+ "ta10Ref": "6.4b"
3164
+ }
3165
+ }
3166
+ }
3167
+ ],
3168
+ "required": [
3169
+ "isIncludedExcludedOrNone"
3170
+ ],
3171
+ "properties": {
3172
+ "isIncludedExcludedOrNone": {
3173
+ "ta10Ref": "6.4a"
3174
+ },
3175
+ "comments": {
3176
+ "ta10Ref": "6.4c"
3177
+ }
3178
+ }
3179
+ },
3180
+ "bedroom1": {
3181
+ "ta10Ref": "6.5",
3182
+ "discriminator": {
3183
+ "propertyName": "isIncludedExcludedOrNone"
3184
+ },
3185
+ "oneOf": [
3186
+ {
3187
+ "properties": {
3188
+ "isIncludedExcludedOrNone": {
3189
+ "enum": [
3190
+ "Included",
3191
+ "None"
3192
+ ]
3193
+ }
3194
+ }
3195
+ },
3196
+ {
3197
+ "properties": {
3198
+ "isIncludedExcludedOrNone": {
3199
+ "enum": [
3200
+ "Excluded"
3201
+ ]
3202
+ },
3203
+ "price": {
3204
+ "ta10Ref": "6.5b"
3205
+ }
3206
+ }
3207
+ }
3208
+ ],
3209
+ "required": [
3210
+ "isIncludedExcludedOrNone"
3211
+ ],
3212
+ "properties": {
3213
+ "isIncludedExcludedOrNone": {
3214
+ "ta10Ref": "6.5a"
3215
+ },
3216
+ "comments": {
3217
+ "ta10Ref": "6.5c"
3218
+ }
3219
+ }
3220
+ },
3221
+ "bedroom2": {
3222
+ "ta10Ref": "6.6",
3223
+ "discriminator": {
3224
+ "propertyName": "isIncludedExcludedOrNone"
3225
+ },
3226
+ "oneOf": [
3227
+ {
3228
+ "properties": {
3229
+ "isIncludedExcludedOrNone": {
3230
+ "enum": [
3231
+ "Included",
3232
+ "None"
3233
+ ]
3234
+ }
3235
+ }
3236
+ },
3237
+ {
3238
+ "properties": {
3239
+ "isIncludedExcludedOrNone": {
3240
+ "enum": [
3241
+ "Excluded"
3242
+ ]
3243
+ },
3244
+ "price": {
3245
+ "ta10Ref": "6.6b"
3246
+ }
3247
+ }
3248
+ }
3249
+ ],
3250
+ "required": [
3251
+ "isIncludedExcludedOrNone"
3252
+ ],
3253
+ "properties": {
3254
+ "isIncludedExcludedOrNone": {
3255
+ "ta10Ref": "6.6a"
3256
+ },
3257
+ "comments": {
3258
+ "ta10Ref": "6.6c"
3259
+ }
3260
+ }
3261
+ },
3262
+ "bedroom3": {
3263
+ "ta10Ref": "6.7",
3264
+ "discriminator": {
3265
+ "propertyName": "isIncludedExcludedOrNone"
3266
+ },
3267
+ "oneOf": [
3268
+ {
3269
+ "properties": {
3270
+ "isIncludedExcludedOrNone": {
3271
+ "enum": [
3272
+ "Included",
3273
+ "None"
3274
+ ]
3275
+ }
3276
+ }
3277
+ },
3278
+ {
3279
+ "properties": {
3280
+ "isIncludedExcludedOrNone": {
3281
+ "enum": [
3282
+ "Excluded"
3283
+ ]
3284
+ },
3285
+ "price": {
3286
+ "ta10Ref": "6.7b"
3287
+ }
3288
+ }
3289
+ }
3290
+ ],
3291
+ "required": [
3292
+ "isIncludedExcludedOrNone"
3293
+ ],
3294
+ "properties": {
3295
+ "isIncludedExcludedOrNone": {
3296
+ "ta10Ref": "6.7a"
3297
+ },
3298
+ "comments": {
3299
+ "ta10Ref": "6.7c"
3300
+ }
3301
+ }
3302
+ },
3303
+ "otherRooms": {
3304
+ "ta10Ref": "6.8",
3305
+ "items": {
3306
+ "discriminator": {
3307
+ "propertyName": "isIncludedOrExcluded"
3308
+ },
3309
+ "oneOf": [
3310
+ {
3311
+ "properties": {
3312
+ "isIncludedOrExcluded": {
3313
+ "enum": [
3314
+ "Included"
3315
+ ]
3316
+ },
3317
+ "comments": {
3318
+ "ta10Ref": "6.8c"
3319
+ }
3320
+ }
3321
+ },
3322
+ {
3323
+ "properties": {
3324
+ "isIncludedOrExcluded": {
3325
+ "enum": [
3326
+ "Excluded"
3327
+ ]
3328
+ },
3329
+ "price": {
3330
+ "ta10Ref": "6.8b"
3331
+ },
3332
+ "comments": {
3333
+ "ta10Ref": "6.8c"
3334
+ }
3335
+ }
3336
+ }
3337
+ ],
3338
+ "required": [
3339
+ "itemName",
3340
+ "isIncludedOrExcluded"
3341
+ ],
3342
+ "properties": {
3343
+ "itemName": {
3344
+ "ta10Ref": "6.8"
3345
+ },
3346
+ "isIncludedOrExcluded": {
3347
+ "ta10Ref": "6.8a"
3348
+ }
3349
+ }
3350
+ }
3351
+ }
3352
+ }
3353
+ },
3354
+ "fittedUnits": {
3355
+ "ta10Ref": "7",
3356
+ "required": [
3357
+ "hallStairsLanding",
3358
+ "livingRoom",
3359
+ "diningRoom",
3360
+ "kitchen",
3361
+ "bedroom1",
3362
+ "bedroom2",
3363
+ "bedroom3"
3364
+ ],
3365
+ "properties": {
3366
+ "hallStairsLanding": {
3367
+ "ta10Ref": "7.1",
3368
+ "discriminator": {
3369
+ "propertyName": "isIncludedExcludedOrNone"
3370
+ },
3371
+ "oneOf": [
3372
+ {
3373
+ "properties": {
3374
+ "isIncludedExcludedOrNone": {
3375
+ "enum": [
3376
+ "Included",
3377
+ "None"
3378
+ ]
3379
+ }
3380
+ }
3381
+ },
3382
+ {
3383
+ "properties": {
3384
+ "isIncludedExcludedOrNone": {
3385
+ "enum": [
3386
+ "Excluded"
3387
+ ]
3388
+ },
3389
+ "price": {
3390
+ "ta10Ref": "7.1b"
3391
+ }
3392
+ }
3393
+ }
3394
+ ],
3395
+ "required": [
3396
+ "isIncludedExcludedOrNone"
3397
+ ],
3398
+ "properties": {
3399
+ "isIncludedExcludedOrNone": {
3400
+ "ta10Ref": "7.1a"
3401
+ },
3402
+ "comments": {
3403
+ "ta10Ref": "7.1c"
3404
+ }
3405
+ }
3406
+ },
3407
+ "livingRoom": {
3408
+ "ta10Ref": "7.2",
3409
+ "discriminator": {
3410
+ "propertyName": "isIncludedExcludedOrNone"
3411
+ },
3412
+ "oneOf": [
3413
+ {
3414
+ "properties": {
3415
+ "isIncludedExcludedOrNone": {
3416
+ "enum": [
3417
+ "Included",
3418
+ "None"
3419
+ ]
3420
+ }
3421
+ }
3422
+ },
3423
+ {
3424
+ "properties": {
3425
+ "isIncludedExcludedOrNone": {
3426
+ "enum": [
3427
+ "Excluded"
3428
+ ]
3429
+ },
3430
+ "price": {
3431
+ "ta10Ref": "7.2b"
3432
+ }
3433
+ }
3434
+ }
3435
+ ],
3436
+ "required": [
3437
+ "isIncludedExcludedOrNone"
3438
+ ],
3439
+ "properties": {
3440
+ "isIncludedExcludedOrNone": {
3441
+ "ta10Ref": "7.2a"
3442
+ },
3443
+ "comments": {
3444
+ "ta10Ref": "7.2c"
3445
+ }
3446
+ }
3447
+ },
3448
+ "diningRoom": {
3449
+ "ta10Ref": "7.3",
3450
+ "discriminator": {
3451
+ "propertyName": "isIncludedExcludedOrNone"
3452
+ },
3453
+ "oneOf": [
3454
+ {
3455
+ "properties": {
3456
+ "isIncludedExcludedOrNone": {
3457
+ "enum": [
3458
+ "Included",
3459
+ "None"
3460
+ ]
3461
+ }
3462
+ }
3463
+ },
3464
+ {
3465
+ "properties": {
3466
+ "isIncludedExcludedOrNone": {
3467
+ "enum": [
3468
+ "Excluded"
3469
+ ]
3470
+ },
3471
+ "price": {
3472
+ "ta10Ref": "7.3b"
3473
+ }
3474
+ }
3475
+ }
3476
+ ],
3477
+ "required": [
3478
+ "isIncludedExcludedOrNone"
3479
+ ],
3480
+ "properties": {
3481
+ "isIncludedExcludedOrNone": {
3482
+ "ta10Ref": "7.3a"
3483
+ },
3484
+ "comments": {
3485
+ "ta10Ref": "7.3c"
3486
+ }
3487
+ }
3488
+ },
3489
+ "kitchen": {
3490
+ "ta10Ref": "7.4",
3491
+ "discriminator": {
3492
+ "propertyName": "isIncludedExcludedOrNone"
3493
+ },
3494
+ "oneOf": [
3495
+ {
3496
+ "properties": {
3497
+ "isIncludedExcludedOrNone": {
3498
+ "enum": [
3499
+ "Included",
3500
+ "None"
3501
+ ]
3502
+ }
3503
+ }
3504
+ },
3505
+ {
3506
+ "properties": {
3507
+ "isIncludedExcludedOrNone": {
3508
+ "enum": [
3509
+ "Excluded"
3510
+ ]
3511
+ },
3512
+ "price": {
3513
+ "ta10Ref": "7.4b"
3514
+ }
3515
+ }
3516
+ }
3517
+ ],
3518
+ "required": [
3519
+ "isIncludedExcludedOrNone"
3520
+ ],
3521
+ "properties": {
3522
+ "isIncludedExcludedOrNone": {
3523
+ "ta10Ref": "7.4a"
3524
+ },
3525
+ "comments": {
3526
+ "ta10Ref": "7.4c"
3527
+ }
3528
+ }
3529
+ },
3530
+ "bedroom1": {
3531
+ "ta10Ref": "7.5",
3532
+ "discriminator": {
3533
+ "propertyName": "isIncludedExcludedOrNone"
3534
+ },
3535
+ "oneOf": [
3536
+ {
3537
+ "properties": {
3538
+ "isIncludedExcludedOrNone": {
3539
+ "enum": [
3540
+ "Included",
3541
+ "None"
3542
+ ]
3543
+ }
3544
+ }
3545
+ },
3546
+ {
3547
+ "properties": {
3548
+ "isIncludedExcludedOrNone": {
3549
+ "enum": [
3550
+ "Excluded"
3551
+ ]
3552
+ },
3553
+ "price": {
3554
+ "ta10Ref": "7.5b"
3555
+ }
3556
+ }
3557
+ }
3558
+ ],
3559
+ "required": [
3560
+ "isIncludedExcludedOrNone"
3561
+ ],
3562
+ "properties": {
3563
+ "isIncludedExcludedOrNone": {
3564
+ "ta10Ref": "7.5a"
3565
+ },
3566
+ "comments": {
3567
+ "ta10Ref": "7.5c"
3568
+ }
3569
+ }
3570
+ },
3571
+ "bedroom2": {
3572
+ "ta10Ref": "7.6",
3573
+ "discriminator": {
3574
+ "propertyName": "isIncludedExcludedOrNone"
3575
+ },
3576
+ "oneOf": [
3577
+ {
3578
+ "properties": {
3579
+ "isIncludedExcludedOrNone": {
3580
+ "enum": [
3581
+ "Included",
3582
+ "None"
3583
+ ]
3584
+ }
3585
+ }
3586
+ },
3587
+ {
3588
+ "properties": {
3589
+ "isIncludedExcludedOrNone": {
3590
+ "enum": [
3591
+ "Excluded"
3592
+ ]
3593
+ },
3594
+ "price": {
3595
+ "ta10Ref": "7.6b"
3596
+ }
3597
+ }
3598
+ }
3599
+ ],
3600
+ "required": [
3601
+ "isIncludedExcludedOrNone"
3602
+ ],
3603
+ "properties": {
3604
+ "isIncludedExcludedOrNone": {
3605
+ "ta10Ref": "7.6a"
3606
+ },
3607
+ "comments": {
3608
+ "ta10Ref": "7.6c"
3609
+ }
3610
+ }
3611
+ },
3612
+ "bedroom3": {
3613
+ "ta10Ref": "7.7",
3614
+ "discriminator": {
3615
+ "propertyName": "isIncludedExcludedOrNone"
3616
+ },
3617
+ "oneOf": [
3618
+ {
3619
+ "properties": {
3620
+ "isIncludedExcludedOrNone": {
3621
+ "enum": [
3622
+ "Included",
3623
+ "None"
3624
+ ]
3625
+ }
3626
+ }
3627
+ },
3628
+ {
3629
+ "properties": {
3630
+ "isIncludedExcludedOrNone": {
3631
+ "enum": [
3632
+ "Excluded"
3633
+ ]
3634
+ },
3635
+ "price": {
3636
+ "ta10Ref": "7.7b"
3637
+ }
3638
+ }
3639
+ }
3640
+ ],
3641
+ "required": [
3642
+ "isIncludedExcludedOrNone"
3643
+ ],
3644
+ "properties": {
3645
+ "isIncludedExcludedOrNone": {
3646
+ "ta10Ref": "7.7a"
3647
+ },
3648
+ "comments": {
3649
+ "ta10Ref": "7.7c"
3650
+ }
3651
+ }
3652
+ },
3653
+ "otherRooms": {
3654
+ "ta10Ref": "7.8",
3655
+ "items": {
3656
+ "discriminator": {
3657
+ "propertyName": "isIncludedOrExcluded"
3658
+ },
3659
+ "oneOf": [
3660
+ {
3661
+ "properties": {
3662
+ "isIncludedOrExcluded": {
3663
+ "enum": [
3664
+ "Included"
3665
+ ]
3666
+ },
3667
+ "comments": {
3668
+ "ta10Ref": "7.8c"
3669
+ }
3670
+ }
3671
+ },
3672
+ {
3673
+ "properties": {
3674
+ "isIncludedOrExcluded": {
3675
+ "enum": [
3676
+ "Excluded"
3677
+ ]
3678
+ },
3679
+ "price": {
3680
+ "ta10Ref": "7.8b"
3681
+ },
3682
+ "comments": {
3683
+ "ta10Ref": "7.8c"
3684
+ }
3685
+ }
3686
+ }
3687
+ ],
3688
+ "required": [
3689
+ "itemName",
3690
+ "isIncludedOrExcluded"
3691
+ ],
3692
+ "properties": {
3693
+ "itemName": {
3694
+ "ta10Ref": "7.8"
3695
+ },
3696
+ "isIncludedOrExcluded": {
3697
+ "ta10Ref": "7.8a"
3698
+ }
3699
+ }
3700
+ }
3701
+ }
3702
+ }
3703
+ },
3704
+ "outdoorArea": {
3705
+ "ta10Ref": "8",
3706
+ "required": [
3707
+ "gardenFurniture",
3708
+ "gardenOrnaments",
3709
+ "treesPlantsShrubs",
3710
+ "barbecue",
3711
+ "dustbins",
3712
+ "gardenShed",
3713
+ "greenhouse",
3714
+ "outdoorHeater",
3715
+ "outdoorLights",
3716
+ "waterButt",
3717
+ "clothesLine",
3718
+ "rotaryLine"
3719
+ ],
3720
+ "properties": {
3721
+ "gardenFurniture": {
3722
+ "ta10Ref": "8.1",
3723
+ "discriminator": {
3724
+ "propertyName": "isIncludedExcludedOrNone"
3725
+ },
3726
+ "oneOf": [
3727
+ {
3728
+ "properties": {
3729
+ "isIncludedExcludedOrNone": {
3730
+ "enum": [
3731
+ "Included",
3732
+ "None"
3733
+ ]
3734
+ }
3735
+ }
3736
+ },
3737
+ {
3738
+ "properties": {
3739
+ "isIncludedExcludedOrNone": {
3740
+ "enum": [
3741
+ "Excluded"
3742
+ ]
3743
+ },
3744
+ "price": {
3745
+ "ta10Ref": "8.1b"
3746
+ }
3747
+ }
3748
+ }
3749
+ ],
3750
+ "required": [
3751
+ "isIncludedExcludedOrNone"
3752
+ ],
3753
+ "properties": {
3754
+ "isIncludedExcludedOrNone": {
3755
+ "ta10Ref": "8.1a"
3756
+ },
3757
+ "comments": {
3758
+ "ta10Ref": "8.1c"
3759
+ }
3760
+ }
3761
+ },
3762
+ "gardenOrnaments": {
3763
+ "ta10Ref": "8.2",
3764
+ "discriminator": {
3765
+ "propertyName": "isIncludedExcludedOrNone"
3766
+ },
3767
+ "oneOf": [
3768
+ {
3769
+ "properties": {
3770
+ "isIncludedExcludedOrNone": {
3771
+ "enum": [
3772
+ "Included",
3773
+ "None"
3774
+ ]
3775
+ }
3776
+ }
3777
+ },
3778
+ {
3779
+ "properties": {
3780
+ "isIncludedExcludedOrNone": {
3781
+ "enum": [
3782
+ "Excluded"
3783
+ ]
3784
+ },
3785
+ "price": {
3786
+ "ta10Ref": "8.2b"
3787
+ }
3788
+ }
3789
+ }
3790
+ ],
3791
+ "required": [
3792
+ "isIncludedExcludedOrNone"
3793
+ ],
3794
+ "properties": {
3795
+ "isIncludedExcludedOrNone": {
3796
+ "ta10Ref": "8.2a"
3797
+ },
3798
+ "comments": {
3799
+ "ta10Ref": "8.2c"
3800
+ }
3801
+ }
3802
+ },
3803
+ "treesPlantsShrubs": {
3804
+ "ta10Ref": "8.3",
3805
+ "discriminator": {
3806
+ "propertyName": "isIncludedExcludedOrNone"
3807
+ },
3808
+ "oneOf": [
3809
+ {
3810
+ "properties": {
3811
+ "isIncludedExcludedOrNone": {
3812
+ "enum": [
3813
+ "Included",
3814
+ "None"
3815
+ ]
3816
+ }
3817
+ }
3818
+ },
3819
+ {
3820
+ "properties": {
3821
+ "isIncludedExcludedOrNone": {
3822
+ "enum": [
3823
+ "Excluded"
3824
+ ]
3825
+ },
3826
+ "price": {
3827
+ "ta10Ref": "8.3b"
3828
+ }
3829
+ }
3830
+ }
3831
+ ],
3832
+ "required": [
3833
+ "isIncludedExcludedOrNone"
3834
+ ],
3835
+ "properties": {
3836
+ "isIncludedExcludedOrNone": {
3837
+ "ta10Ref": "8.3a"
3838
+ },
3839
+ "comments": {
3840
+ "ta10Ref": "8.3c"
3841
+ }
3842
+ }
3843
+ },
3844
+ "barbecue": {
3845
+ "ta10Ref": "8.4",
3846
+ "discriminator": {
3847
+ "propertyName": "isIncludedExcludedOrNone"
3848
+ },
3849
+ "oneOf": [
3850
+ {
3851
+ "properties": {
3852
+ "isIncludedExcludedOrNone": {
3853
+ "enum": [
3854
+ "Included",
3855
+ "None"
3856
+ ]
3857
+ }
3858
+ }
3859
+ },
3860
+ {
3861
+ "properties": {
3862
+ "isIncludedExcludedOrNone": {
3863
+ "enum": [
3864
+ "Excluded"
3865
+ ]
3866
+ },
3867
+ "price": {
3868
+ "ta10Ref": "8.4b"
3869
+ }
3870
+ }
3871
+ }
3872
+ ],
3873
+ "required": [
3874
+ "isIncludedExcludedOrNone"
3875
+ ],
3876
+ "properties": {
3877
+ "isIncludedExcludedOrNone": {
3878
+ "ta10Ref": "8.4a"
3879
+ },
3880
+ "comments": {
3881
+ "ta10Ref": "8.4c"
3882
+ }
3883
+ }
3884
+ },
3885
+ "dustbins": {
3886
+ "ta10Ref": "8.5",
3887
+ "discriminator": {
3888
+ "propertyName": "isIncludedExcludedOrNone"
3889
+ },
3890
+ "oneOf": [
3891
+ {
3892
+ "properties": {
3893
+ "isIncludedExcludedOrNone": {
3894
+ "enum": [
3895
+ "Included",
3896
+ "None"
3897
+ ]
3898
+ }
3899
+ }
3900
+ },
3901
+ {
3902
+ "properties": {
3903
+ "isIncludedExcludedOrNone": {
3904
+ "enum": [
3905
+ "Excluded"
3906
+ ]
3907
+ },
3908
+ "price": {
3909
+ "ta10Ref": "8.5b"
3910
+ }
3911
+ }
3912
+ }
3913
+ ],
3914
+ "required": [
3915
+ "isIncludedExcludedOrNone"
3916
+ ],
3917
+ "properties": {
3918
+ "isIncludedExcludedOrNone": {
3919
+ "ta10Ref": "8.5a"
3920
+ },
3921
+ "comments": {
3922
+ "ta10Ref": "8.5c"
3923
+ }
3924
+ }
3925
+ },
3926
+ "gardenShed": {
3927
+ "ta10Ref": "8.6",
3928
+ "discriminator": {
3929
+ "propertyName": "isIncludedExcludedOrNone"
3930
+ },
3931
+ "oneOf": [
3932
+ {
3933
+ "properties": {
3934
+ "isIncludedExcludedOrNone": {
3935
+ "enum": [
3936
+ "Included",
3937
+ "None"
3938
+ ]
3939
+ }
3940
+ }
3941
+ },
3942
+ {
3943
+ "properties": {
3944
+ "isIncludedExcludedOrNone": {
3945
+ "enum": [
3946
+ "Excluded"
3947
+ ]
3948
+ },
3949
+ "price": {
3950
+ "ta10Ref": "8.6b"
3951
+ }
3952
+ }
3953
+ }
3954
+ ],
3955
+ "required": [
3956
+ "isIncludedExcludedOrNone"
3957
+ ],
3958
+ "properties": {
3959
+ "isIncludedExcludedOrNone": {
3960
+ "ta10Ref": "8.6a"
3961
+ },
3962
+ "comments": {
3963
+ "ta10Ref": "8.6c"
3964
+ }
3965
+ }
3966
+ },
3967
+ "greenhouse": {
3968
+ "ta10Ref": "8.7",
3969
+ "discriminator": {
3970
+ "propertyName": "isIncludedExcludedOrNone"
3971
+ },
3972
+ "oneOf": [
3973
+ {
3974
+ "properties": {
3975
+ "isIncludedExcludedOrNone": {
3976
+ "enum": [
3977
+ "Included",
3978
+ "None"
3979
+ ]
3980
+ }
3981
+ }
3982
+ },
3983
+ {
3984
+ "properties": {
3985
+ "isIncludedExcludedOrNone": {
3986
+ "enum": [
3987
+ "Excluded"
3988
+ ]
3989
+ },
3990
+ "price": {
3991
+ "ta10Ref": "8.7b"
3992
+ }
3993
+ }
3994
+ }
3995
+ ],
3996
+ "required": [
3997
+ "isIncludedExcludedOrNone"
3998
+ ],
3999
+ "properties": {
4000
+ "isIncludedExcludedOrNone": {
4001
+ "ta10Ref": "8.7a"
4002
+ },
4003
+ "comments": {
4004
+ "ta10Ref": "8.7c"
4005
+ }
4006
+ }
4007
+ },
4008
+ "outdoorHeater": {
4009
+ "ta10Ref": "8.8",
4010
+ "discriminator": {
4011
+ "propertyName": "isIncludedExcludedOrNone"
4012
+ },
4013
+ "oneOf": [
4014
+ {
4015
+ "properties": {
4016
+ "isIncludedExcludedOrNone": {
4017
+ "enum": [
4018
+ "Included",
4019
+ "None"
4020
+ ]
4021
+ }
4022
+ }
4023
+ },
4024
+ {
4025
+ "properties": {
4026
+ "isIncludedExcludedOrNone": {
4027
+ "enum": [
4028
+ "Excluded"
4029
+ ]
4030
+ },
4031
+ "price": {
4032
+ "ta10Ref": "8.8b"
4033
+ }
4034
+ }
4035
+ }
4036
+ ],
4037
+ "required": [
4038
+ "isIncludedExcludedOrNone"
4039
+ ],
4040
+ "properties": {
4041
+ "isIncludedExcludedOrNone": {
4042
+ "ta10Ref": "8.8a"
4043
+ },
4044
+ "comments": {
4045
+ "ta10Ref": "8.8c"
4046
+ }
4047
+ }
4048
+ },
4049
+ "outdoorLights": {
4050
+ "ta10Ref": "8.9",
4051
+ "discriminator": {
4052
+ "propertyName": "isIncludedExcludedOrNone"
4053
+ },
4054
+ "oneOf": [
4055
+ {
4056
+ "properties": {
4057
+ "isIncludedExcludedOrNone": {
4058
+ "enum": [
4059
+ "Included",
4060
+ "None"
4061
+ ]
4062
+ }
4063
+ }
4064
+ },
4065
+ {
4066
+ "properties": {
4067
+ "isIncludedExcludedOrNone": {
4068
+ "enum": [
4069
+ "Excluded"
4070
+ ]
4071
+ },
4072
+ "price": {
4073
+ "ta10Ref": "8.9b"
4074
+ }
4075
+ }
4076
+ }
4077
+ ],
4078
+ "required": [
4079
+ "isIncludedExcludedOrNone"
4080
+ ],
4081
+ "properties": {
4082
+ "isIncludedExcludedOrNone": {
4083
+ "ta10Ref": "8.9a"
4084
+ },
4085
+ "comments": {
4086
+ "ta10Ref": "8.9c"
4087
+ }
4088
+ }
4089
+ },
4090
+ "waterButt": {
4091
+ "ta10Ref": "8.10",
4092
+ "discriminator": {
4093
+ "propertyName": "isIncludedExcludedOrNone"
4094
+ },
4095
+ "oneOf": [
4096
+ {
4097
+ "properties": {
4098
+ "isIncludedExcludedOrNone": {
4099
+ "enum": [
4100
+ "Included",
4101
+ "None"
4102
+ ]
4103
+ }
4104
+ }
4105
+ },
4106
+ {
4107
+ "properties": {
4108
+ "isIncludedExcludedOrNone": {
4109
+ "enum": [
4110
+ "Excluded"
4111
+ ]
4112
+ },
4113
+ "price": {
4114
+ "ta10Ref": "8.10b"
4115
+ }
4116
+ }
4117
+ }
4118
+ ],
4119
+ "required": [
4120
+ "isIncludedExcludedOrNone"
4121
+ ],
4122
+ "properties": {
4123
+ "isIncludedExcludedOrNone": {
4124
+ "ta10Ref": "8.10a"
4125
+ },
4126
+ "comments": {
4127
+ "ta10Ref": "8.10c"
4128
+ }
4129
+ }
4130
+ },
4131
+ "clothesLine": {
4132
+ "ta10Ref": "8.11",
4133
+ "discriminator": {
4134
+ "propertyName": "isIncludedExcludedOrNone"
4135
+ },
4136
+ "oneOf": [
4137
+ {
4138
+ "properties": {
4139
+ "isIncludedExcludedOrNone": {
4140
+ "enum": [
4141
+ "Included",
4142
+ "None"
4143
+ ]
4144
+ }
4145
+ }
4146
+ },
4147
+ {
4148
+ "properties": {
4149
+ "isIncludedExcludedOrNone": {
4150
+ "enum": [
4151
+ "Excluded"
4152
+ ]
4153
+ },
4154
+ "price": {
4155
+ "ta10Ref": "8.11b"
4156
+ }
4157
+ }
4158
+ }
4159
+ ],
4160
+ "required": [
4161
+ "isIncludedExcludedOrNone"
4162
+ ],
4163
+ "properties": {
4164
+ "isIncludedExcludedOrNone": {
4165
+ "ta10Ref": "8.11a"
4166
+ },
4167
+ "comments": {
4168
+ "ta10Ref": "8.11c"
4169
+ }
4170
+ }
4171
+ },
4172
+ "rotaryLine": {
4173
+ "ta10Ref": "8.12",
4174
+ "discriminator": {
4175
+ "propertyName": "isIncludedExcludedOrNone"
4176
+ },
4177
+ "oneOf": [
4178
+ {
4179
+ "properties": {
4180
+ "isIncludedExcludedOrNone": {
4181
+ "enum": [
4182
+ "Included",
4183
+ "None"
4184
+ ]
4185
+ }
4186
+ }
4187
+ },
4188
+ {
4189
+ "properties": {
4190
+ "isIncludedExcludedOrNone": {
4191
+ "enum": [
4192
+ "Excluded"
4193
+ ]
4194
+ },
4195
+ "price": {
4196
+ "ta10Ref": "8.12b"
4197
+ }
4198
+ }
4199
+ }
4200
+ ],
4201
+ "required": [
4202
+ "isIncludedExcludedOrNone"
4203
+ ],
4204
+ "properties": {
4205
+ "isIncludedExcludedOrNone": {
4206
+ "ta10Ref": "8.12a"
4207
+ },
4208
+ "comments": {
4209
+ "ta10Ref": "8.12c"
4210
+ }
4211
+ }
4212
+ },
4213
+ "otherItems": {
4214
+ "ta10Ref": "8.13",
4215
+ "items": {
4216
+ "discriminator": {
4217
+ "propertyName": "isIncludedOrExcluded"
4218
+ },
4219
+ "oneOf": [
4220
+ {
4221
+ "properties": {
4222
+ "isIncludedOrExcluded": {
4223
+ "enum": [
4224
+ "Included"
4225
+ ]
4226
+ },
4227
+ "comments": {
4228
+ "ta10Ref": "8.13c"
4229
+ }
4230
+ }
4231
+ },
4232
+ {
4233
+ "properties": {
4234
+ "isIncludedOrExcluded": {
4235
+ "enum": [
4236
+ "Excluded"
4237
+ ]
4238
+ },
4239
+ "price": {
4240
+ "ta10Ref": "8.13b"
4241
+ },
4242
+ "comments": {
4243
+ "ta10Ref": "8.13c"
4244
+ }
4245
+ }
4246
+ }
4247
+ ],
4248
+ "required": [
4249
+ "itemName",
4250
+ "isIncludedOrExcluded"
4251
+ ],
4252
+ "properties": {
4253
+ "itemName": {
4254
+ "ta10Ref": "8.13"
4255
+ },
4256
+ "isIncludedOrExcluded": {
4257
+ "ta10Ref": "8.13a"
4258
+ }
4259
+ }
4260
+ }
4261
+ }
4262
+ }
4263
+ },
4264
+ "televisionAndTelephone": {
4265
+ "ta10Ref": "9",
4266
+ "required": [
4267
+ "telephoneReceivers",
4268
+ "televisionAerial",
4269
+ "radioAerial",
4270
+ "satelliteDish"
4271
+ ],
4272
+ "properties": {
4273
+ "telephoneReceivers": {
4274
+ "ta10Ref": "9.1",
4275
+ "discriminator": {
4276
+ "propertyName": "isIncludedExcludedOrNone"
4277
+ },
4278
+ "oneOf": [
4279
+ {
4280
+ "properties": {
4281
+ "isIncludedExcludedOrNone": {
4282
+ "enum": [
4283
+ "Included",
4284
+ "None"
4285
+ ]
4286
+ }
4287
+ }
4288
+ },
4289
+ {
4290
+ "properties": {
4291
+ "isIncludedExcludedOrNone": {
4292
+ "enum": [
4293
+ "Excluded"
4294
+ ]
4295
+ },
4296
+ "price": {
4297
+ "ta10Ref": "9.1b"
4298
+ }
4299
+ }
4300
+ }
4301
+ ],
4302
+ "required": [
4303
+ "isIncludedExcludedOrNone"
4304
+ ],
4305
+ "properties": {
4306
+ "isIncludedExcludedOrNone": {
4307
+ "ta10Ref": "9.1a"
4308
+ },
4309
+ "comments": {
4310
+ "ta10Ref": "9.1c"
4311
+ }
4312
+ }
4313
+ },
4314
+ "televisionAerial": {
4315
+ "ta10Ref": "9.2",
4316
+ "discriminator": {
4317
+ "propertyName": "isIncludedExcludedOrNone"
4318
+ },
4319
+ "oneOf": [
4320
+ {
4321
+ "properties": {
4322
+ "isIncludedExcludedOrNone": {
4323
+ "enum": [
4324
+ "Included",
4325
+ "None"
4326
+ ]
4327
+ }
4328
+ }
4329
+ },
4330
+ {
4331
+ "properties": {
4332
+ "isIncludedExcludedOrNone": {
4333
+ "enum": [
4334
+ "Excluded"
4335
+ ]
4336
+ },
4337
+ "price": {
4338
+ "ta10Ref": "9.2b"
4339
+ }
4340
+ }
4341
+ }
4342
+ ],
4343
+ "required": [
4344
+ "isIncludedExcludedOrNone"
4345
+ ],
4346
+ "properties": {
4347
+ "isIncludedExcludedOrNone": {
4348
+ "ta10Ref": "9.2a"
4349
+ },
4350
+ "comments": {
4351
+ "ta10Ref": "9.2c"
4352
+ }
4353
+ }
4354
+ },
4355
+ "radioAerial": {
4356
+ "ta10Ref": "9.3",
4357
+ "discriminator": {
4358
+ "propertyName": "isIncludedExcludedOrNone"
4359
+ },
4360
+ "oneOf": [
4361
+ {
4362
+ "properties": {
4363
+ "isIncludedExcludedOrNone": {
4364
+ "enum": [
4365
+ "Included",
4366
+ "None"
4367
+ ]
4368
+ }
4369
+ }
4370
+ },
4371
+ {
4372
+ "properties": {
4373
+ "isIncludedExcludedOrNone": {
4374
+ "enum": [
4375
+ "Excluded"
4376
+ ]
4377
+ },
4378
+ "price": {
4379
+ "ta10Ref": "9.3b"
4380
+ }
4381
+ }
4382
+ }
4383
+ ],
4384
+ "required": [
4385
+ "isIncludedExcludedOrNone"
4386
+ ],
4387
+ "properties": {
4388
+ "isIncludedExcludedOrNone": {
4389
+ "ta10Ref": "9.3a"
4390
+ },
4391
+ "comments": {
4392
+ "ta10Ref": "9.3c"
4393
+ }
4394
+ }
4395
+ },
4396
+ "satelliteDish": {
4397
+ "ta10Ref": "9.4",
4398
+ "discriminator": {
4399
+ "propertyName": "isIncludedExcludedOrNone"
4400
+ },
4401
+ "oneOf": [
4402
+ {
4403
+ "properties": {
4404
+ "isIncludedExcludedOrNone": {
4405
+ "enum": [
4406
+ "Included",
4407
+ "None"
4408
+ ]
4409
+ }
4410
+ }
4411
+ },
4412
+ {
4413
+ "properties": {
4414
+ "isIncludedExcludedOrNone": {
4415
+ "enum": [
4416
+ "Excluded"
4417
+ ]
4418
+ },
4419
+ "price": {
4420
+ "ta10Ref": "9.4b"
4421
+ }
4422
+ }
4423
+ }
4424
+ ],
4425
+ "required": [
4426
+ "isIncludedExcludedOrNone"
4427
+ ],
4428
+ "properties": {
4429
+ "isIncludedExcludedOrNone": {
4430
+ "ta10Ref": "9.4a"
4431
+ },
4432
+ "comments": {
4433
+ "ta10Ref": "9.4c"
4434
+ }
4435
+ }
4436
+ }
4437
+ }
4438
+ },
4439
+ "stockOfFuel": {
4440
+ "ta10Ref": "10",
4441
+ "required": [
4442
+ "oil",
4443
+ "wood",
4444
+ "lpg"
4445
+ ],
4446
+ "properties": {
4447
+ "oil": {
4448
+ "ta10Ref": "10.1",
4449
+ "discriminator": {
4450
+ "propertyName": "isIncludedExcludedOrNone"
4451
+ },
4452
+ "oneOf": [
4453
+ {
4454
+ "properties": {
4455
+ "isIncludedExcludedOrNone": {
4456
+ "enum": [
4457
+ "Included",
4458
+ "None"
4459
+ ]
4460
+ }
4461
+ }
4462
+ },
4463
+ {
4464
+ "properties": {
4465
+ "isIncludedExcludedOrNone": {
4466
+ "enum": [
4467
+ "Excluded"
4468
+ ]
4469
+ },
4470
+ "price": {
4471
+ "ta10Ref": "10.1b"
4472
+ }
4473
+ }
4474
+ }
4475
+ ],
4476
+ "required": [
4477
+ "isIncludedExcludedOrNone"
4478
+ ],
4479
+ "properties": {
4480
+ "isIncludedExcludedOrNone": {
4481
+ "ta10Ref": "10.1a"
4482
+ },
4483
+ "comments": {
4484
+ "ta10Ref": "10.1c"
4485
+ }
4486
+ }
4487
+ },
4488
+ "wood": {
4489
+ "ta10Ref": "10.2",
4490
+ "discriminator": {
4491
+ "propertyName": "isIncludedExcludedOrNone"
4492
+ },
4493
+ "oneOf": [
4494
+ {
4495
+ "properties": {
4496
+ "isIncludedExcludedOrNone": {
4497
+ "enum": [
4498
+ "Included",
4499
+ "None"
4500
+ ]
4501
+ }
4502
+ }
4503
+ },
4504
+ {
4505
+ "properties": {
4506
+ "isIncludedExcludedOrNone": {
4507
+ "enum": [
4508
+ "Excluded"
4509
+ ]
4510
+ },
4511
+ "price": {
4512
+ "ta10Ref": "10.2b"
4513
+ }
4514
+ }
4515
+ }
4516
+ ],
4517
+ "required": [
4518
+ "isIncludedExcludedOrNone"
4519
+ ],
4520
+ "properties": {
4521
+ "isIncludedExcludedOrNone": {
4522
+ "ta10Ref": "10.2a"
4523
+ },
4524
+ "comments": {
4525
+ "ta10Ref": "10.2c"
4526
+ }
4527
+ }
4528
+ },
4529
+ "lpg": {
4530
+ "ta10Ref": "10.3",
4531
+ "discriminator": {
4532
+ "propertyName": "isIncludedExcludedOrNone"
4533
+ },
4534
+ "oneOf": [
4535
+ {
4536
+ "properties": {
4537
+ "isIncludedExcludedOrNone": {
4538
+ "enum": [
4539
+ "Included",
4540
+ "None"
4541
+ ]
4542
+ }
4543
+ }
4544
+ },
4545
+ {
4546
+ "properties": {
4547
+ "isIncludedExcludedOrNone": {
4548
+ "enum": [
4549
+ "Excluded"
4550
+ ]
4551
+ },
4552
+ "price": {
4553
+ "ta10Ref": "10.3b"
4554
+ }
4555
+ }
4556
+ }
4557
+ ],
4558
+ "required": [
4559
+ "isIncludedExcludedOrNone"
4560
+ ],
4561
+ "properties": {
4562
+ "isIncludedExcludedOrNone": {
4563
+ "ta10Ref": "10.3a"
4564
+ },
4565
+ "comments": {
4566
+ "ta10Ref": "10.3c"
4567
+ }
4568
+ }
4569
+ }
4570
+ }
4571
+ },
4572
+ "otherItems": {
4573
+ "ta10Ref": "11",
4574
+ "properties": {
4575
+ "otherItems": {
4576
+ "ta10Ref": "11.1",
4577
+ "items": {
4578
+ "discriminator": {
4579
+ "propertyName": "isIncludedOrExcluded"
4580
+ },
4581
+ "oneOf": [
4582
+ {
4583
+ "properties": {
4584
+ "isIncludedOrExcluded": {
4585
+ "enum": [
4586
+ "Included"
4587
+ ]
4588
+ },
4589
+ "comments": {
4590
+ "ta10Ref": "11.1c"
4591
+ }
4592
+ }
4593
+ },
4594
+ {
4595
+ "properties": {
4596
+ "isIncludedOrExcluded": {
4597
+ "enum": [
4598
+ "Excluded"
4599
+ ]
4600
+ },
4601
+ "price": {
4602
+ "ta10Ref": "11.1b"
4603
+ },
4604
+ "comments": {
4605
+ "ta10Ref": "11.1c"
4606
+ }
4607
+ }
4608
+ }
4609
+ ],
4610
+ "required": [
4611
+ "itemName",
4612
+ "isIncludedOrExcluded"
4613
+ ],
4614
+ "properties": {
4615
+ "itemName": {
4616
+ "ta10Ref": "11.1"
4617
+ },
4618
+ "isIncludedOrExcluded": {
4619
+ "ta10Ref": "11.1a"
4620
+ }
4621
+ }
4622
+ }
4623
+ }
4624
+ }
4625
+ },
4626
+ "confirmationOfAccuracy": {
4627
+ "ta10Ref": "12",
4628
+ "required": [
4629
+ "confirmInformationIsAccurate"
4630
+ ],
4631
+ "properties": {
4632
+ "confirmInformationIsAccurate": {
4633
+ "ta10Ref": "12.1"
4634
+ }
4635
+ }
4636
+ }
4637
+ }
4638
+ }
4639
+ }
4640
+ }
4641
+ }
4642
+ }