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

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 (280) 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/compassionate-easley-bafb14/CLAUDE.md +101 -0
  131. package/compassionate-easley-bafb14/LICENSE +21 -0
  132. package/compassionate-easley-bafb14/README.md +435 -0
  133. package/compassionate-easley-bafb14/docs/branch-release-workflow.md +138 -0
  134. package/compassionate-easley-bafb14/docs/sef25-extensions-ui-spec.md +355 -0
  135. package/compassionate-easley-bafb14/index.js +654 -0
  136. package/compassionate-easley-bafb14/package-lock.json +7297 -0
  137. package/compassionate-easley-bafb14/package.json +44 -0
  138. package/compassionate-easley-bafb14/src/examples/v1/exampleAddParticipantVouch.json +32 -0
  139. package/compassionate-easley-bafb14/src/examples/v1/exampleDocumentedVouch.json +40 -0
  140. package/compassionate-easley-bafb14/src/examples/v1/exampleElectronicRecord.json +30 -0
  141. package/compassionate-easley-bafb14/src/examples/v1/exampleTransaction.json +878 -0
  142. package/compassionate-easley-bafb14/src/examples/v1/exampleVouch.json +25 -0
  143. package/compassionate-easley-bafb14/src/examples/v2/exampleTransaction.json +901 -0
  144. package/compassionate-easley-bafb14/src/examples/v3/exampleAddParticipantVouch.json +38 -0
  145. package/compassionate-easley-bafb14/src/examples/v3/exampleCustomOverlay.json +55 -0
  146. package/compassionate-easley-bafb14/src/examples/v3/exampleCustomOverlay2.json +93 -0
  147. package/compassionate-easley-bafb14/src/examples/v3/exampleDocumentedVouch.json +47 -0
  148. package/compassionate-easley-bafb14/src/examples/v3/exampleElectronicRecord.json +36 -0
  149. package/compassionate-easley-bafb14/src/examples/v3/exampleTransaction.json +1038 -0
  150. package/compassionate-easley-bafb14/src/examples/v3/exampleVouch.json +32 -0
  151. package/compassionate-easley-bafb14/src/mappings/SendPropertyDetailsRequestSchema.json +1588 -0
  152. package/compassionate-easley-bafb14/src/mappings/adf.js +198 -0
  153. package/compassionate-easley-bafb14/src/schemas/v1/GeoJSON.json +1279 -0
  154. package/compassionate-easley-bafb14/src/schemas/v1/baspiNotes.html +102 -0
  155. package/compassionate-easley-bafb14/src/schemas/v1/energy-performance-certificate.json +124 -0
  156. package/compassionate-easley-bafb14/src/schemas/v1/freehold-information.json +2051 -0
  157. package/compassionate-easley-bafb14/src/schemas/v1/leasehold-information.json +2064 -0
  158. package/compassionate-easley-bafb14/src/schemas/v1/legal-information.json +1045 -0
  159. package/compassionate-easley-bafb14/src/schemas/v1/material-facts.json +2109 -0
  160. package/compassionate-easley-bafb14/src/schemas/v1/pdtf-transaction-search-results.json +40 -0
  161. package/compassionate-easley-bafb14/src/schemas/v1/pdtf-transaction.json +191 -0
  162. package/compassionate-easley-bafb14/src/schemas/v1/searches/drainage-and-water.json +261 -0
  163. package/compassionate-easley-bafb14/src/schemas/v1/searches/local-land-charges.json +69 -0
  164. package/compassionate-easley-bafb14/src/schemas/v1/searches/local-searches-required.json +857 -0
  165. package/compassionate-easley-bafb14/src/schemas/v1/searches.json +237 -0
  166. package/compassionate-easley-bafb14/src/schemas/v1/title-deed.json +841 -0
  167. package/compassionate-easley-bafb14/src/schemas/v2/baspiNotes.html +102 -0
  168. package/compassionate-easley-bafb14/src/schemas/v2/combined.json +37731 -0
  169. package/compassionate-easley-bafb14/src/schemas/v2/overlays/baspi.json +8132 -0
  170. package/compassionate-easley-bafb14/src/schemas/v2/overlays/con29DW.json +705 -0
  171. package/compassionate-easley-bafb14/src/schemas/v2/overlays/con29R.json +2956 -0
  172. package/compassionate-easley-bafb14/src/schemas/v2/overlays/fme1.json +1259 -0
  173. package/compassionate-easley-bafb14/src/schemas/v2/overlays/llc1.json +25 -0
  174. package/compassionate-easley-bafb14/src/schemas/v2/overlays/lpe1.json +2171 -0
  175. package/compassionate-easley-bafb14/src/schemas/v2/overlays/nts.json +326 -0
  176. package/compassionate-easley-bafb14/src/schemas/v2/overlays/oc1.json +2799 -0
  177. package/compassionate-easley-bafb14/src/schemas/v2/overlays/piq.json +3419 -0
  178. package/compassionate-easley-bafb14/src/schemas/v2/overlays/rds.json +3736 -0
  179. package/compassionate-easley-bafb14/src/schemas/v2/overlays/ta10.json +5306 -0
  180. package/compassionate-easley-bafb14/src/schemas/v2/overlays/ta6.json +4533 -0
  181. package/compassionate-easley-bafb14/src/schemas/v2/overlays/ta7.json +1045 -0
  182. package/compassionate-easley-bafb14/src/schemas/v2/pdtf-transaction.json +34351 -0
  183. package/compassionate-easley-bafb14/src/schemas/v2/skeleton.json +3973 -0
  184. package/compassionate-easley-bafb14/src/schemas/v3/combined.json +48461 -0
  185. package/compassionate-easley-bafb14/src/schemas/v3/compactSkeleton.txt +4519 -0
  186. package/compassionate-easley-bafb14/src/schemas/v3/overlays/README.md +299 -0
  187. package/compassionate-easley-bafb14/src/schemas/v3/overlays/baspi4.json +8030 -0
  188. package/compassionate-easley-bafb14/src/schemas/v3/overlays/baspi5.json +8180 -0
  189. package/compassionate-easley-bafb14/src/schemas/v3/overlays/con29DW.json +716 -0
  190. package/compassionate-easley-bafb14/src/schemas/v3/overlays/con29R.json +2981 -0
  191. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/ac.json +334 -0
  192. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/as.json +74 -0
  193. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/dk.json +33 -0
  194. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/dr.json +73 -0
  195. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/er.json +85 -0
  196. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/fd.json +75 -0
  197. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/hi.json +51 -0
  198. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/hs.json +73 -0
  199. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/ic.json +83 -0
  200. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/jk.json +96 -0
  201. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/la.json +85 -0
  202. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/lc.json +76 -0
  203. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/ma.json +90 -0
  204. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/mc.json +38 -0
  205. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/mi.json +70 -0
  206. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/nd.json +44 -0
  207. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/oa.json +24 -0
  208. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/oc.json +57 -0
  209. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/pc.json +38 -0
  210. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/ph.json +195 -0
  211. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/rw.json +69 -0
  212. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/sb.json +73 -0
  213. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/sc.json +133 -0
  214. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/sd.json +64 -0
  215. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/sf.json +74 -0
  216. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/sl.json +68 -0
  217. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/ta.json +204 -0
  218. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/tf.json +103 -0
  219. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/tr.json +74 -0
  220. package/compassionate-easley-bafb14/src/schemas/v3/overlays/extensions/wg.json +351 -0
  221. package/compassionate-easley-bafb14/src/schemas/v3/overlays/fme1.json +1266 -0
  222. package/compassionate-easley-bafb14/src/schemas/v3/overlays/llc1.json +25 -0
  223. package/compassionate-easley-bafb14/src/schemas/v3/overlays/lpe1.json +2199 -0
  224. package/compassionate-easley-bafb14/src/schemas/v3/overlays/nts.json +2159 -0
  225. package/compassionate-easley-bafb14/src/schemas/v3/overlays/nts2.json +2744 -0
  226. package/compassionate-easley-bafb14/src/schemas/v3/overlays/ntsl.json +1815 -0
  227. package/compassionate-easley-bafb14/src/schemas/v3/overlays/ntsl2.json +2219 -0
  228. package/compassionate-easley-bafb14/src/schemas/v3/overlays/oc1.json +2817 -0
  229. package/compassionate-easley-bafb14/src/schemas/v3/overlays/piq.json +3324 -0
  230. package/compassionate-easley-bafb14/src/schemas/v3/overlays/rds.json +3668 -0
  231. package/compassionate-easley-bafb14/src/schemas/v3/overlays/sef25.json +1644 -0
  232. package/compassionate-easley-bafb14/src/schemas/v3/overlays/sr24.json +38 -0
  233. package/compassionate-easley-bafb14/src/schemas/v3/overlays/ta10.json +4645 -0
  234. package/compassionate-easley-bafb14/src/schemas/v3/overlays/ta6.json +4572 -0
  235. package/compassionate-easley-bafb14/src/schemas/v3/overlays/ta6ed6.json +6536 -0
  236. package/compassionate-easley-bafb14/src/schemas/v3/overlays/ta7.json +1537 -0
  237. package/compassionate-easley-bafb14/src/schemas/v3/overlays/ta7ed5.json +1551 -0
  238. package/compassionate-easley-bafb14/src/schemas/v3/pdtf-transaction.json +41570 -0
  239. package/compassionate-easley-bafb14/src/schemas/v3/skeleton.json +5767 -0
  240. package/compassionate-easley-bafb14/src/schemas/verifiedClaims/README.md +21 -0
  241. package/compassionate-easley-bafb14/src/schemas/verifiedClaims/pdtf-verified-claims.json +447 -0
  242. package/compassionate-easley-bafb14/src/utils/compactSkeleton.js +84 -0
  243. package/compassionate-easley-bafb14/src/utils/countTokens.js +67 -0
  244. package/compassionate-easley-bafb14/src/utils/extractExtensionOverlays.js +633 -0
  245. package/compassionate-easley-bafb14/src/utils/extractOverlay.js +381 -0
  246. package/compassionate-easley-bafb14/src/utils/extractProperties.js +44 -0
  247. package/compassionate-easley-bafb14/src/utils/listPathTitles.js +36 -0
  248. package/compassionate-easley-bafb14/src/utils/minimalSkeleton.js +85 -0
  249. package/compassionate-easley-bafb14/src/utils/pathList.csv +903 -0
  250. package/compassionate-easley-bafb14/src/utils/pathSkeleton.js +181 -0
  251. package/package.json +1 -1
  252. package/src/schemas/v3/combined.json +9 -15
  253. package/src/schemas/v3/overlays/baspi4.json +12 -7
  254. package/src/schemas/v3/overlays/baspi5.json +12 -7
  255. package/src/schemas/v3/overlays/extensions/ac.json +2 -1
  256. package/src/schemas/v3/overlays/extensions/dk.json +3 -2
  257. package/src/schemas/v3/overlays/extensions/ic.json +33 -9
  258. package/src/schemas/v3/overlays/extensions/lc.json +3 -2
  259. package/src/schemas/v3/overlays/extensions/mi.json +2 -1
  260. package/src/schemas/v3/overlays/extensions/nd.json +3 -2
  261. package/src/schemas/v3/overlays/extensions/pc.json +3 -2
  262. package/src/schemas/v3/overlays/extensions/ph.json +2 -1
  263. package/src/schemas/v3/overlays/extensions/rw.json +4 -3
  264. package/src/schemas/v3/overlays/extensions/sc.json +8 -4
  265. package/src/schemas/v3/overlays/extensions/sd.json +3 -2
  266. package/src/schemas/v3/overlays/extensions/tr.json +3 -2
  267. package/src/schemas/v3/overlays/extensions/wg.json +2 -1
  268. package/src/schemas/v3/overlays/lpe1.json +1 -1
  269. package/src/schemas/v3/overlays/nts.json +3 -1
  270. package/src/schemas/v3/overlays/nts2.json +3 -1
  271. package/src/schemas/v3/overlays/ntsl.json +3 -1
  272. package/src/schemas/v3/overlays/ntsl2.json +3 -1
  273. package/src/schemas/v3/overlays/piq.json +7 -5
  274. package/src/schemas/v3/overlays/rds.json +9 -6
  275. package/src/schemas/v3/overlays/sef25.json +6 -1
  276. package/src/schemas/v3/overlays/ta10.json +0 -9
  277. package/src/schemas/v3/overlays/ta6.json +8 -4
  278. package/src/schemas/v3/overlays/ta6ed6.json +4 -2
  279. package/src/schemas/v3/pdtf-transaction.json +15 -18
  280. package/src/utils/extractExtensionOverlays.js +11 -2
@@ -0,0 +1,4457 @@
1
+ transactionId
2
+ externalIds{*}
3
+ status
4
+ participants[
5
+ name
6
+ firstName
7
+ middleName
8
+ lastName
9
+ maidenName
10
+ preferredName
11
+ dateOfBirth
12
+ phone
13
+ email
14
+ address
15
+ buildingNumber
16
+ buildingName
17
+ subBuilding
18
+ street
19
+ line1
20
+ line2
21
+ line3
22
+ town
23
+ postcode
24
+ homeNation
25
+ countryCode
26
+ organisation
27
+ organisationReference
28
+ role
29
+ externalIds{*}
30
+ participantStatus
31
+ verification
32
+ identity
33
+ status
34
+ result
35
+ reports[
36
+ reportName
37
+ result
38
+ details
39
+ ]
40
+ antiMoneyLaundering
41
+ status
42
+ result
43
+ reports[
44
+ reportName
45
+ result
46
+ details
47
+ ]
48
+ sourceOfFunds
49
+ status
50
+ result
51
+ reports[
52
+ reportName
53
+ result
54
+ details
55
+ ]
56
+ offerId
57
+ sellersCapacity
58
+ capacity
59
+ sellersCapacityDetails
60
+ attachments
61
+ companyName
62
+ companyNumber
63
+ countryOfIncorporation
64
+ dateBecameOwnerOrAuthority
65
+ ]
66
+ propertyPack
67
+ address
68
+ buildingNumber
69
+ buildingName
70
+ subBuilding
71
+ street
72
+ line1
73
+ line2
74
+ line3
75
+ town
76
+ postcode
77
+ homeNation
78
+ countryCode
79
+ uprn
80
+ location
81
+ latitude
82
+ longitude
83
+ bng
84
+ easting
85
+ northing
86
+ googleStreetViewPOV
87
+ heading
88
+ pitch
89
+ zoom
90
+ lat
91
+ lng
92
+ localAuthority
93
+ localAuthorityName
94
+ districtCouncil
95
+ countyCouncil
96
+ unitaryAuthority
97
+ localAuthorityReference
98
+ councilSearchTurnaroundTimeInWorkingDays
99
+ regulatedSearchTurnaroundTimeInWorkingDays
100
+ priceInformation
101
+ price
102
+ priceQualifier
103
+ disposal
104
+ saleAtUndervalue
105
+ lettingInformation
106
+ rent
107
+ rentFrequency
108
+ securityDeposit
109
+ holdingDeposit
110
+ summaryDescription
111
+ marketingTenure
112
+ media[
113
+ mediaType
114
+ mediaUrl
115
+ caption
116
+ ]
117
+ buildInformation
118
+ building
119
+ builtForm
120
+ propertyType
121
+ otherType
122
+ numberOfFloors
123
+ entranceFloor
124
+ hasLift
125
+ overCommercialPremises
126
+ isLocatedOverCommercialPremises
127
+ details
128
+ internalArea
129
+ area
130
+ units
131
+ yearOfBuild
132
+ isNewBuild
133
+ yesNo
134
+ isHMO
135
+ isStudentAccommodation
136
+ roomDimensions
137
+ hasFloorplan
138
+ attachments
139
+ rooms[
140
+ roomName
141
+ length
142
+ width
143
+ units
144
+ dimensionDetails
145
+ ]
146
+ residentialPropertyFeatures
147
+ bedrooms
148
+ bathrooms
149
+ receptions
150
+ kitchens
151
+ diningAreas
152
+ outsideAreas[]
153
+ nearbyFacilities
154
+ schools[
155
+ name
156
+ contact
157
+ address
158
+ line1
159
+ line2
160
+ line3
161
+ town
162
+ postcode
163
+ telephone
164
+ emailAddress
165
+ website
166
+ ofstedRating
167
+ pupils
168
+ distanceInMiles
169
+ ageRange
170
+ religiousCharacter
171
+ schoolType
172
+ nursery
173
+ primary
174
+ secondary
175
+ college
176
+ private
177
+ otherRating
178
+ ]
179
+ transport[
180
+ name
181
+ transportType
182
+ latitude
183
+ longitude
184
+ distanceInMiles
185
+ ]
186
+ healthCare[
187
+ name
188
+ typeOfHealthCare
189
+ contact
190
+ address
191
+ line1
192
+ line2
193
+ line3
194
+ town
195
+ postcode
196
+ telephone
197
+ emailAddress
198
+ website
199
+ containsAccidentAndEmergencyFacility
200
+ distanceInMiles
201
+ specialties[]
202
+ openingHours[
203
+ day
204
+ hours
205
+ ]
206
+ ]
207
+ delayFactors
208
+ hasDelayFactors
209
+ yesNo
210
+ details
211
+ attachments
212
+ ownership
213
+ numberOfSellers
214
+ numberOfNonUkResidentSellers
215
+ outstandingMortgage
216
+ existingLender
217
+ hasHelpToBuyEquityLoan
218
+ isFirstRegistration
219
+ isLimitedCompanySale
220
+ ownershipsToBeTransferred[
221
+ titleNumber
222
+ titlePropertyDescription
223
+ ownershipType
224
+ estateRentcharges
225
+ yesNo
226
+ details
227
+ amount
228
+ titleRestrictions
229
+ yesNo
230
+ details
231
+ wholeFreeholdForSale
232
+ yesNo
233
+ details
234
+ managedFreeholdOrCommonholdInformation
235
+ contactDetails
236
+ rentchargeOwner
237
+ contact
238
+ nameOrOrganisation
239
+ address
240
+ line1
241
+ line2
242
+ line3
243
+ town
244
+ postcode
245
+ telephone
246
+ emailAddress
247
+ bankDetails
248
+ accountName
249
+ sortCode
250
+ accountNumber
251
+ reference
252
+ feeType
253
+ managementCompany
254
+ contact
255
+ nameOrOrganisation
256
+ address
257
+ line1
258
+ line2
259
+ line3
260
+ town
261
+ postcode
262
+ telephone
263
+ emailAddress
264
+ bankDetails
265
+ accountName
266
+ sortCode
267
+ accountNumber
268
+ reference
269
+ feeType
270
+ managingAgent
271
+ contact
272
+ nameOrOrganisation
273
+ address
274
+ line1
275
+ line2
276
+ line3
277
+ town
278
+ postcode
279
+ telephone
280
+ emailAddress
281
+ appointedBy
282
+ bankDetails
283
+ accountName
284
+ sortCode
285
+ accountNumber
286
+ reference
287
+ feeType
288
+ legalRepresentative
289
+ contact
290
+ nameOrOrganisation
291
+ address
292
+ line1
293
+ line2
294
+ line3
295
+ town
296
+ postcode
297
+ telephone
298
+ emailAddress
299
+ appointedBy
300
+ noticeOfTransferAndCharge
301
+ rentchargeOwner
302
+ isApplicableParty
303
+ feeIncludingVAT
304
+ noticeViaEmail
305
+ managementCompany
306
+ isApplicableParty
307
+ feeIncludingVAT
308
+ noticeViaEmail
309
+ managingAgent
310
+ isApplicableParty
311
+ feeIncludingVAT
312
+ noticeViaEmail
313
+ legalRepresentative
314
+ isApplicableParty
315
+ feeIncludingVAT
316
+ noticeViaEmail
317
+ other
318
+ isApplicableParty
319
+ feeIncludingVAT
320
+ noticeViaEmail
321
+ contact
322
+ nameOrOrganisation
323
+ address
324
+ line1
325
+ line2
326
+ line3
327
+ town
328
+ postcode
329
+ telephone
330
+ emailAddress
331
+ capacity
332
+ otherDetailsRequired
333
+ areOtherDetailsRequired
334
+ details
335
+ collectsServiceCharges
336
+ dealsWithDayToDayMaintenanceOfManagedArea
337
+ organisesManagedAreaInsurance
338
+ transferAndRegistration
339
+ deedOfCovenantRequired
340
+ yesNoNotKnown
341
+ costsApplicableToTheDeed
342
+ personWhoDealsWithTheDeedOfCovenant
343
+ awareOfConsents
344
+ yesNo
345
+ details
346
+ requirementsToBeMemberOfManagementCompany
347
+ yesNo
348
+ details
349
+ procedureForObtainingCertificate
350
+ serviceCharge
351
+ annualServiceCharge
352
+ hasFixedRentcharge
353
+ largeAdditionalExpense
354
+ yesNo
355
+ details
356
+ serviceChargePaidUpToDate
357
+ yesNo
358
+ details
359
+ lastDemandPeriod
360
+ from
361
+ to
362
+ propertiesContribute
363
+ residentialFreehold
364
+ residentialLeasehold
365
+ commercial
366
+ doAllPropertiesContribute
367
+ yesNo
368
+ details
369
+ excessPaymentAnticipated
370
+ yesNo
371
+ details
372
+ hasInabilityToCollectAffectedMaintenance
373
+ yesNo
374
+ details
375
+ reserveFund
376
+ yesNo
377
+ amount
378
+ fromTheOwners
379
+ forTheManagedAreas
380
+ sufficentToCoverKnownExpenditure
381
+ yesNo
382
+ details
383
+ lastDecoratedPeriod
384
+ internally
385
+ from
386
+ to
387
+ externally
388
+ from
389
+ to
390
+ worksProposed
391
+ yesNo
392
+ details
393
+ increaseInServiceChargeAnticipated
394
+ yesNo
395
+ details
396
+ outstandingServiceChargeConsultation
397
+ yesNo
398
+ details
399
+ japaneseKnotweedAffectingManagedAreas
400
+ yesNo
401
+ details
402
+ transferFees
403
+ yesNo
404
+ details
405
+ insurance
406
+ managedAreaInsured
407
+ yesNo
408
+ premiumsPaidUpToDate
409
+ yesNo
410
+ details
411
+ lastDemandPeriod
412
+ from
413
+ to
414
+ claimsMade
415
+ yesNo
416
+ details
417
+ claimsAnticipated
418
+ yesNo
419
+ details
420
+ premiumIncludedInServiceCharge
421
+ yesNo
422
+ details
423
+ standardTermsAvailable
424
+ yesNo
425
+ details
426
+ nonComplianceWithConditions
427
+ yesNo
428
+ details
429
+ disputes
430
+ unresolvedDisputes
431
+ yesNo
432
+ details
433
+ breachOfTermsOfTransfer
434
+ yesNo
435
+ details
436
+ requiredDocuments
437
+ serviceChargeAccounts
438
+ managedAreasInsurancePolicy
439
+ serviceChargeEstimatesCurrent
440
+ serviceChargeEstimatesPrevious
441
+ proposedWorksNotices
442
+ additionalRegulationsNotInTransfer
443
+ deedOfCovenant
444
+ certificateOfCompliance
445
+ permissionToAlter
446
+ noticesServedOnOwner
447
+ asbestosSurvey
448
+ managedAreaFireRiskAssessment
449
+ memorandumAndArticles
450
+ managementCompanyAGMMinutes
451
+ feesForAdminServices
452
+ confirmation
453
+ response
454
+ capacity
455
+ leaseholdInformation
456
+ typeOfLeasehold
457
+ leaseholdType
458
+ otherLeaseholdType
459
+ sharedOwnership
460
+ isSharedOwnership
461
+ sharedOwnershipPercentage
462
+ sharedOwnershipRent
463
+ sharedOwnershipRentFrequency
464
+ leaseTerm
465
+ startYearOfLease
466
+ lengthOfLeaseInYears
467
+ contactDetails
468
+ contacts
469
+ landlord
470
+ contact
471
+ nameOrOrganisation
472
+ address
473
+ line1
474
+ line2
475
+ line3
476
+ town
477
+ postcode
478
+ telephone
479
+ emailAddress
480
+ bankDetails
481
+ accountName
482
+ sortCode
483
+ accountNumber
484
+ reference
485
+ feeType
486
+ rentchargeOwner
487
+ contact
488
+ nameOrOrganisation
489
+ address
490
+ line1
491
+ line2
492
+ line3
493
+ town
494
+ postcode
495
+ telephone
496
+ emailAddress
497
+ bankDetails
498
+ accountName
499
+ sortCode
500
+ accountNumber
501
+ reference
502
+ feeType
503
+ managementCompany
504
+ contact
505
+ nameOrOrganisation
506
+ address
507
+ line1
508
+ line2
509
+ line3
510
+ town
511
+ postcode
512
+ telephone
513
+ emailAddress
514
+ bankDetails
515
+ accountName
516
+ sortCode
517
+ accountNumber
518
+ reference
519
+ feeType
520
+ rightToManageCompany
521
+ contact
522
+ nameOrOrganisation
523
+ address
524
+ line1
525
+ line2
526
+ line3
527
+ town
528
+ postcode
529
+ emailAddress
530
+ telephone
531
+ freeholder
532
+ contact
533
+ nameOrOrganisation
534
+ address
535
+ line1
536
+ line2
537
+ line3
538
+ town
539
+ postcode
540
+ emailAddress
541
+ telephone
542
+ headLeaseHolder
543
+ contact
544
+ nameOrOrganisation
545
+ address
546
+ line1
547
+ line2
548
+ line3
549
+ town
550
+ postcode
551
+ emailAddress
552
+ telephone
553
+ managingAgent
554
+ contact
555
+ nameOrOrganisation
556
+ address
557
+ line1
558
+ line2
559
+ line3
560
+ town
561
+ postcode
562
+ telephone
563
+ emailAddress
564
+ appointedBy
565
+ bankDetails
566
+ accountName
567
+ sortCode
568
+ accountNumber
569
+ reference
570
+ feeType
571
+ residentTenantsAssociation
572
+ contact
573
+ nameOrOrganisation
574
+ address
575
+ line1
576
+ line2
577
+ line3
578
+ town
579
+ postcode
580
+ telephone
581
+ emailAddress
582
+ bankDetails
583
+ accountName
584
+ sortCode
585
+ accountNumber
586
+ reference
587
+ feeType
588
+ legalRepresentative
589
+ contact
590
+ nameOrOrganisation
591
+ address
592
+ line1
593
+ line2
594
+ line3
595
+ town
596
+ postcode
597
+ telephone
598
+ emailAddress
599
+ appointedBy
600
+ serviceContactAssignments
601
+ noticeOfAssignmentAndCharge
602
+ landlord
603
+ isApplicableParty
604
+ feeIncludingVAT
605
+ noticeViaEmail
606
+ managementCompany
607
+ isApplicableParty
608
+ feeIncludingVAT
609
+ noticeViaEmail
610
+ managingAgent
611
+ isApplicableParty
612
+ feeIncludingVAT
613
+ noticeViaEmail
614
+ other
615
+ isApplicableParty
616
+ feeIncludingVAT
617
+ noticeViaEmail
618
+ contact
619
+ nameOrOrganisation
620
+ address
621
+ line1
622
+ line2
623
+ line3
624
+ town
625
+ postcode
626
+ telephone
627
+ emailAddress
628
+ capacity
629
+ noticeOfTransferAndCharge
630
+ rentchargeOwner
631
+ isApplicableParty
632
+ feeIncludingVAT
633
+ noticeViaEmail
634
+ managementCompany
635
+ isApplicableParty
636
+ feeIncludingVAT
637
+ noticeViaEmail
638
+ managingAgent
639
+ isApplicableParty
640
+ feeIncludingVAT
641
+ noticeViaEmail
642
+ legalRepresentative
643
+ isApplicableParty
644
+ feeIncludingVAT
645
+ noticeViaEmail
646
+ other
647
+ isApplicableParty
648
+ feeIncludingVAT
649
+ noticeViaEmail
650
+ contact
651
+ nameOrOrganisation
652
+ address
653
+ line1
654
+ line2
655
+ line3
656
+ town
657
+ postcode
658
+ telephone
659
+ emailAddress
660
+ capacity
661
+ otherDetailsRequired
662
+ areOtherDetailsRequired
663
+ details
664
+ collectsGroundRent
665
+ collector
666
+ otherCollector
667
+ collectsServiceCharges
668
+ collectsbuildingInsurancePremiums
669
+ collector
670
+ otherCollector
671
+ dealsWithDayToDayMaintenanceOfManagedArea
672
+ organisesBuildingInsurance
673
+ dealsWithDayToDayMaintenanceOfBuilding
674
+ assignedContact
675
+ lesseeInCharge
676
+ nameOrOrganisation
677
+ address
678
+ line1
679
+ line2
680
+ line3
681
+ town
682
+ postcode
683
+ telephone
684
+ emailAddress
685
+ consents
686
+ changesInTermOfLease
687
+ isSellerAwareOfChanges
688
+ details
689
+ attachments
690
+ landlordConsents
691
+ isSellerAwareOfLandlordConsents
692
+ details
693
+ attachments
694
+ transferAndRegistration
695
+ deedOfCovenantRequired
696
+ yesNoNotKnown
697
+ costsApplicableToTheDeed
698
+ personWhoDealsWithTheDeedOfCovenant
699
+ licenceToAssignRequired
700
+ yesNo
701
+ requirements
702
+ awareOfConsents
703
+ yesNo
704
+ details
705
+ requirementsToBeMemberOfManagementCompany
706
+ yesNoNotApplicable
707
+ details
708
+ procedureForObtainingCertificate
709
+ groundRent
710
+ isGroundRentPayable
711
+ annualGroundRent
712
+ groundRentFrequency
713
+ mostRecentGroundRentDemandStatus
714
+ rentSubjectToIncrease
715
+ yesNo
716
+ rentReviewFrequency
717
+ rentIncreaseCalculated
718
+ groundRentPaidUpToDate
719
+ yesNoNotApplicable
720
+ details
721
+ lastDemandPeriod
722
+ from
723
+ to
724
+ ownershipAndManagement
725
+ freeholdOwner
726
+ hasHeadlease
727
+ yesNo
728
+ headLeaseholderControlled
729
+ buildingManager
730
+ buildingManagerType
731
+ details
732
+ isManagingAgentEmployed
733
+ sellerOwnership
734
+ yesNo
735
+ attachments
736
+ hasTenantCompanyDissolved
737
+ hasTenantCompanyDissolvedDetails
738
+ serviceCharge
739
+ sellerContributesToServiceCharge
740
+ annualServiceCharge
741
+ mostRecentServiceChargeDemandStatus
742
+ largeAdditionalExpense
743
+ yesNo
744
+ details
745
+ problemInServiceChargeLevel
746
+ yesNo
747
+ details
748
+ serviceChargeChallenged
749
+ yesNo
750
+ details
751
+ dangerousCladdingOrDefects
752
+ yesNo
753
+ details
754
+ difficultyInCollectingServiceCharge
755
+ yesNo
756
+ details
757
+ serviceChargeOwed
758
+ yesNo
759
+ details
760
+ propertiesContributingToMaintenanceOfManagedArea
761
+ adHocExpenses
762
+ serviceChargePaidUpToDate
763
+ yesNo
764
+ details
765
+ excessPaymentAnticipated
766
+ yesNo
767
+ details
768
+ lastDemandPeriod
769
+ from
770
+ to
771
+ hasInabilityToCollectAffectedMaintenance
772
+ yesNo
773
+ details
774
+ reserveFund
775
+ yesNo
776
+ details
777
+ contributionIncludedInServiceCharge
778
+ sufficentToCoverSection20Expenditure
779
+ yesNo
780
+ details
781
+ lastDecoratedPeriod
782
+ externally
783
+ year
784
+ from
785
+ to
786
+ internally
787
+ year
788
+ from
789
+ to
790
+ section20WorksProposed
791
+ yesNo
792
+ details
793
+ increaseInServiceChargeAnticipated
794
+ yesNo
795
+ details
796
+ outstandingServiceChargeConsultation
797
+ yesNo
798
+ details
799
+ japaneseKnotweedAffectingManagedAreas
800
+ yesNo
801
+ details
802
+ transferFees
803
+ yesNo
804
+ details
805
+ allPropertiesContribute
806
+ yesNo
807
+ details
808
+ leaseRestrictions
809
+ yesNo
810
+ details
811
+ buildingsInsurance
812
+ premiumsPaidUpToDate
813
+ yesNo
814
+ details
815
+ mostRecentBuildingsInsuranceDemandStatus
816
+ lastDemandPeriod
817
+ from
818
+ to
819
+ premiumPaidinFull
820
+ yesNo
821
+ details
822
+ claimsMade
823
+ yesNo
824
+ details
825
+ claimsAnticipated
826
+ yesNo
827
+ details
828
+ managedAreasCoveredByPolicy
829
+ yesNo
830
+ riskAssessments
831
+ assessmentsCarriedOut
832
+ urgentWorksRecommended
833
+ urgentWorksCarriedOut
834
+ outstandingEnforcementAction
835
+ dateRemedialActionRequired
836
+ standardTermsAvailable
837
+ yesNo
838
+ details
839
+ nonComplianceWithConditions
840
+ yesNo
841
+ details
842
+ buildingsReinstatementCostAssessment
843
+ premiumIncludedInServiceCharge
844
+ yesNo
845
+ details
846
+ disputes
847
+ sellerReceivedComplaint
848
+ yesNo
849
+ details
850
+ sellerSentComplaint
851
+ yesNo
852
+ details
853
+ ongoingForfeitureProceedings
854
+ yesNo
855
+ unresolvedDisputes
856
+ yesNo
857
+ details
858
+ breachOfTermsOfLease
859
+ yesNo
860
+ details
861
+ buildingSafetyAct
862
+ isLeaseQualifying
863
+ deedOfCertificateServed
864
+ yesNoNotApplicable
865
+ sellerCompletedDeedOfCertificate
866
+ attachments
867
+ landlordNotifiedOfSale
868
+ landlordsCertificateServed
869
+ yesNoNotApplicable
870
+ attachments
871
+ alterations
872
+ sellerAwareOfAlterations
873
+ yesNo
874
+ details
875
+ landlordConsentObtained
876
+ yesNo
877
+ attachments
878
+ enfranchisement
879
+ sellerOwnedProperty
880
+ sellerServedNoticeOnLandlord
881
+ yesNo
882
+ attachments
883
+ sellerAwareOfNoticeOfCollectivePurchase
884
+ yesNo
885
+ attachments
886
+ sellerAwareOfResponse
887
+ yesNo
888
+ attachments
889
+ enfranchisementSteps
890
+ yesNo
891
+ details
892
+ general
893
+ otherPropertiesInManagedArea
894
+ leasedOnSimilarTerms
895
+ yesNo
896
+ details
897
+ buildingKnownToBeHMO
898
+ yesNo
899
+ details
900
+ additionalParkingRegulations
901
+ yesNo
902
+ details
903
+ restrictionOnKeepingPets
904
+ yesNo
905
+ details
906
+ requiredDocuments
907
+ lease
908
+ deedsOfVariation
909
+ copyOfcorrespondence
910
+ serviceChargeAccounts
911
+ serviceCharges
912
+ groundRent
913
+ buildingsInsurancePolicy
914
+ arrangedBySeller
915
+ arrangedByLandlord
916
+ noticeOfSale
917
+ yesNo
918
+ attachments
919
+ noticeOfBuildingCondition
920
+ yesNo
921
+ attachments
922
+ managedAreasBuildingsInsurancePolicy
923
+ serviceChargeEstimatesCurrent
924
+ serviceChargeEstimatesPrevious
925
+ proposedWorksNotices
926
+ forfeitureDocumentation
927
+ additionalRegulationsNotInLease
928
+ deedOfCovenant
929
+ certificateOfCompliance
930
+ certificateOfComplianceFee
931
+ licenceToAssign
932
+ permissionToAlter
933
+ noticesServedOnLessee
934
+ asbestosSurvey
935
+ managedAreaFireRiskAssessment
936
+ managementCompanyDocuments
937
+ memorandumAndArticles
938
+ shareOrMembershipCertificate
939
+ companyAccounts
940
+ managementCompanyAGMMinutes
941
+ enforcementNotices
942
+ additionalInformation
943
+ details
944
+ attachments
945
+ confirmationOfAccuracy
946
+ confirmation
947
+ capacity
948
+ otherOwnershipDetails
949
+ ]
950
+ parking
951
+ parkingArrangements[]
952
+ disabledParking
953
+ yesNo
954
+ controlledParking
955
+ yesNo
956
+ annualCostOfPermit
957
+ costOfPermit
958
+ costOfPermitFrequency
959
+ vehicleTypeRestriction
960
+ yesNo
961
+ details
962
+ droppedKerbAccess
963
+ yesNo
964
+ electricVehicleChargingPoint
965
+ yesNo
966
+ chargerDetails
967
+ chargerDetailsAttachments
968
+ cableCrossesPavement
969
+ yesNo
970
+ details
971
+ locatedInUlez
972
+ yesNo
973
+ listingAndConservation
974
+ isListed
975
+ yesNo
976
+ details
977
+ attachments
978
+ isConservationArea
979
+ yesNo
980
+ details
981
+ attachments
982
+ hasTreePreservationOrder
983
+ yesNo
984
+ workCarriedOut
985
+ yesNo
986
+ details
987
+ consentsObtained
988
+ attachments
989
+ typeOfConstruction
990
+ isStandardForm
991
+ yesNo
992
+ constructionType
993
+ details
994
+ buildingSafety
995
+ yesNo
996
+ details
997
+ workAlreadyDone
998
+ workToBeDone
999
+ potentialCost
1000
+ abilityToResideAtProperty
1001
+ attachments
1002
+ loft
1003
+ loftAccess
1004
+ details
1005
+ loftBoarded
1006
+ loftInsulated
1007
+ sprayFoamInsulation
1008
+ hasSprayFoamInstalled
1009
+ details
1010
+ attachments
1011
+ accessibilityAndAdaptations[]
1012
+ energyEfficiency
1013
+ certificateIsSupplied
1014
+ certificate
1015
+ certificateNumber
1016
+ address
1017
+ address1
1018
+ address2
1019
+ address3
1020
+ buildingReferenceNumber
1021
+ builtForm
1022
+ co2EmissCurrPerFloorArea
1023
+ co2EmissionsCurrent
1024
+ co2EmissionsPotential
1025
+ constituencyLabel
1026
+ constituency
1027
+ constructionAgeBand
1028
+ county
1029
+ currentEnergyEfficiency
1030
+ currentEnergyRating
1031
+ energyConsumptionCurrent
1032
+ energyConsumptionPotential
1033
+ energyTariff
1034
+ environmentImpactCurrent
1035
+ environmentImpactPotential
1036
+ extensionCount
1037
+ fixedLightingOutletsCount
1038
+ flatStoreyCount
1039
+ flatTopStorey
1040
+ floorDescription
1041
+ floorEnergyEff
1042
+ floorEnvEff
1043
+ floorHeight
1044
+ floorLevel
1045
+ glazedArea
1046
+ glazedType
1047
+ heatLossCorridor
1048
+ heatingCostCurrent
1049
+ heatingCostPotential
1050
+ hotWaterCostCurrent
1051
+ hotWaterCostPotential
1052
+ hotWaterEnergyEff
1053
+ hotWaterEnvEff
1054
+ hotwaterDescription
1055
+ inspectionDate
1056
+ lightingCostCurrent
1057
+ lightingCostPotential
1058
+ lightingDescription
1059
+ lightingEnergyEff
1060
+ lightingEnvEff
1061
+ lmkKey
1062
+ localAuthorityLabel
1063
+ localAuthority
1064
+ lodgementDate
1065
+ lodgementDatetime
1066
+ lowEnergyFixedLightCount
1067
+ lowEnergyLighting
1068
+ mainFuel
1069
+ mainHeatingControls
1070
+ mainheatDescription
1071
+ mainheatEnergyEff
1072
+ mainheatEnvEff
1073
+ mainheatcEnergyEff
1074
+ mainheatcEnvEff
1075
+ mainheatcontDescription
1076
+ mainsGasFlag
1077
+ mechanicalVentilation
1078
+ multiGlazeProportion
1079
+ numberHabitableRooms
1080
+ numberHeatedRooms
1081
+ numberOpenFireplaces
1082
+ photoSupply
1083
+ postcode
1084
+ posttown
1085
+ potentialEnergyEfficiency
1086
+ potentialEnergyRating
1087
+ propertyType
1088
+ roofDescription
1089
+ roofEnergyEff
1090
+ roofEnvEff
1091
+ secondheatDescription
1092
+ sheatingEnergyEff
1093
+ sheatingEnvEff
1094
+ solarWaterHeatingFlag
1095
+ tenure
1096
+ totalFloorArea
1097
+ transactionType
1098
+ unheatedCorridorLength
1099
+ uprnSource
1100
+ uprn
1101
+ wallsDescription
1102
+ wallsEnergyEff
1103
+ wallsEnvEff
1104
+ windTurbineCount
1105
+ windowsDescription
1106
+ windowsEnergyEff
1107
+ windowsEnvEff
1108
+ recommendations[
1109
+ lmkKey
1110
+ improvementItem
1111
+ indicativeCost
1112
+ improvementSummaryText
1113
+ improvementDescrText
1114
+ improvementId
1115
+ improvementIdText
1116
+ ]
1117
+ greenDealLoan
1118
+ hasGreenDealLoan
1119
+ yesNo
1120
+ details
1121
+ attachments
1122
+ councilTax
1123
+ councilTaxBand
1124
+ councilTaxAffectingAlterations
1125
+ yesNo
1126
+ details
1127
+ attachments
1128
+ councilTaxAnnualCharge
1129
+ disputesAndComplaints
1130
+ hasDisputesAndComplaints
1131
+ yesNo
1132
+ details
1133
+ leadingToDisputesAndComplaints
1134
+ yesNo
1135
+ details
1136
+ alterationsAndChanges
1137
+ hasStructuralAlterations
1138
+ yesNo
1139
+ details
1140
+ buildingRegApproval
1141
+ yesNo
1142
+ attachments
1143
+ details
1144
+ planningPermission
1145
+ yesNo
1146
+ attachments
1147
+ details
1148
+ listedBuildingConsent
1149
+ yesNo
1150
+ attachments
1151
+ details
1152
+ deedRestrictionConsent
1153
+ yesNo
1154
+ attachments
1155
+ details
1156
+ changeOfUse
1157
+ yesNo
1158
+ details
1159
+ yearCompleted
1160
+ buildingRegApproval
1161
+ yesNo
1162
+ attachments
1163
+ details
1164
+ planningPermission
1165
+ yesNo
1166
+ attachments
1167
+ details
1168
+ listedBuildingConsent
1169
+ yesNo
1170
+ attachments
1171
+ details
1172
+ deedRestrictionConsent
1173
+ yesNo
1174
+ attachments
1175
+ details
1176
+ nonResidentialPurposes
1177
+ yesNo
1178
+ details
1179
+ attachments
1180
+ windowReplacementsSince2002
1181
+ yesNo
1182
+ details
1183
+ yearCompleted
1184
+ buildingRegApproval
1185
+ yesNo
1186
+ attachments
1187
+ details
1188
+ planningPermission
1189
+ yesNo
1190
+ attachments
1191
+ details
1192
+ listedBuildingConsent
1193
+ yesNo
1194
+ attachments
1195
+ details
1196
+ deedRestrictionConsent
1197
+ yesNo
1198
+ attachments
1199
+ details
1200
+ workCompleted
1201
+ yesNo
1202
+ details
1203
+ documents
1204
+ extension
1205
+ yesNo
1206
+ details
1207
+ workCompleted
1208
+ yesNo
1209
+ details
1210
+ documents
1211
+ planningPermission
1212
+ yesNo
1213
+ attachments
1214
+ details
1215
+ buildingRegApproval
1216
+ yesNo
1217
+ attachments
1218
+ details
1219
+ hasAddedConservatory
1220
+ yesNo
1221
+ details
1222
+ yearCompleted
1223
+ buildingRegApproval
1224
+ yesNo
1225
+ attachments
1226
+ details
1227
+ planningPermission
1228
+ yesNo
1229
+ attachments
1230
+ details
1231
+ listedBuildingConsent
1232
+ yesNo
1233
+ attachments
1234
+ details
1235
+ deedRestrictionConsent
1236
+ yesNo
1237
+ attachments
1238
+ details
1239
+ workCompleted
1240
+ yesNo
1241
+ details
1242
+ documents
1243
+ loftConversion
1244
+ yesNo
1245
+ details
1246
+ workCompleted
1247
+ yesNo
1248
+ details
1249
+ documents
1250
+ planningPermission
1251
+ yesNo
1252
+ attachments
1253
+ details
1254
+ buildingRegApproval
1255
+ yesNo
1256
+ attachments
1257
+ details
1258
+ garageConversion
1259
+ yesNo
1260
+ details
1261
+ workCompleted
1262
+ yesNo
1263
+ details
1264
+ documents
1265
+ planningPermission
1266
+ yesNo
1267
+ attachments
1268
+ details
1269
+ buildingRegApproval
1270
+ yesNo
1271
+ attachments
1272
+ details
1273
+ removalOfInternalWalls
1274
+ yesNo
1275
+ details
1276
+ workCompleted
1277
+ yesNo
1278
+ details
1279
+ documents
1280
+ planningPermission
1281
+ yesNo
1282
+ attachments
1283
+ details
1284
+ buildingRegApproval
1285
+ yesNo
1286
+ attachments
1287
+ details
1288
+ removalOfChimneyBreast
1289
+ yesNo
1290
+ details
1291
+ workCompleted
1292
+ yesNo
1293
+ details
1294
+ documents
1295
+ planningPermission
1296
+ yesNo
1297
+ attachments
1298
+ details
1299
+ buildingRegApproval
1300
+ yesNo
1301
+ attachments
1302
+ details
1303
+ insulation
1304
+ yesNo
1305
+ details
1306
+ workCompleted
1307
+ yesNo
1308
+ details
1309
+ documents
1310
+ planningPermission
1311
+ yesNo
1312
+ attachments
1313
+ details
1314
+ buildingRegApproval
1315
+ yesNo
1316
+ attachments
1317
+ details
1318
+ otherBuildingWorksOrChangesToTheProperty
1319
+ yesNo
1320
+ details
1321
+ workCompleted
1322
+ yesNo
1323
+ details
1324
+ documents
1325
+ planningPermission
1326
+ yesNo
1327
+ attachments
1328
+ details
1329
+ buildingRegApproval
1330
+ yesNo
1331
+ attachments
1332
+ details
1333
+ worksUnfinished
1334
+ yesNo
1335
+ details
1336
+ attachments
1337
+ planningPermissionBreaches
1338
+ yesNo
1339
+ details
1340
+ willingToInsure
1341
+ attachments
1342
+ unresolvedPlanningIssues
1343
+ yesNo
1344
+ details
1345
+ willingToInsure
1346
+ attachments
1347
+ notices
1348
+ neighbourDevelopment
1349
+ yesNo
1350
+ details
1351
+ attachments
1352
+ planningApplication
1353
+ yesNo
1354
+ details
1355
+ attachments
1356
+ requiredMaintenance
1357
+ yesNo
1358
+ details
1359
+ attachments
1360
+ listedBuildingApplication
1361
+ yesNo
1362
+ details
1363
+ attachments
1364
+ infrastructureProject
1365
+ yesNo
1366
+ details
1367
+ attachments
1368
+ partyWallAct
1369
+ yesNo
1370
+ details
1371
+ attachments
1372
+ otherNotices
1373
+ yesNo
1374
+ details
1375
+ attachments
1376
+ specialistIssues
1377
+ dryRotEtcTreatment
1378
+ yesNo
1379
+ details
1380
+ attachments
1381
+ containsAsbestos
1382
+ yesNo
1383
+ details
1384
+ attachments
1385
+ japaneseKnotweed
1386
+ knotweedSurveyCarriedOut
1387
+ yesNo
1388
+ attachments
1389
+ yesNo
1390
+ managementPlanInPlace
1391
+ attachments
1392
+ subsidenceOrStructuralFault
1393
+ yesNo
1394
+ details
1395
+ attachments
1396
+ ongoingHealthOrSafetyIssue
1397
+ yesNo
1398
+ details
1399
+ attachments
1400
+ wellsDitchesShaft
1401
+ yesNo
1402
+ details
1403
+ damagedOrExposedElectrics
1404
+ yesNo
1405
+ details
1406
+ damageToFlooringOrStaircases
1407
+ yesNo
1408
+ details
1409
+ knownAreasInPoorCondition
1410
+ yesNo
1411
+ details
1412
+ fixturesAndFittings
1413
+ itemsToRemove
1414
+ yesNo
1415
+ details
1416
+ itemsToInclude
1417
+ yesNo
1418
+ details
1419
+ basicFittings
1420
+ boilerImmersionHeater
1421
+ isIncludedExcludedOrNone
1422
+ comments
1423
+ price
1424
+ radiatorsWallHeaters
1425
+ isIncludedExcludedOrNone
1426
+ comments
1427
+ price
1428
+ nightStorageHeaters
1429
+ isIncludedExcludedOrNone
1430
+ comments
1431
+ price
1432
+ freeStandingHeaters
1433
+ isIncludedExcludedOrNone
1434
+ comments
1435
+ price
1436
+ gasFiresWithSurround
1437
+ isIncludedExcludedOrNone
1438
+ comments
1439
+ price
1440
+ electricFiresWithSurround
1441
+ isIncludedExcludedOrNone
1442
+ comments
1443
+ price
1444
+ lightSwitches
1445
+ isIncludedExcludedOrNone
1446
+ comments
1447
+ price
1448
+ roofInsulation
1449
+ isIncludedExcludedOrNone
1450
+ comments
1451
+ price
1452
+ windowFittings
1453
+ isIncludedExcludedOrNone
1454
+ comments
1455
+ price
1456
+ windowShuttersGrilles
1457
+ isIncludedExcludedOrNone
1458
+ comments
1459
+ price
1460
+ internalDoorFittings
1461
+ isIncludedExcludedOrNone
1462
+ comments
1463
+ price
1464
+ externalDoorFittings
1465
+ isIncludedExcludedOrNone
1466
+ comments
1467
+ price
1468
+ doorbellChime
1469
+ isIncludedExcludedOrNone
1470
+ comments
1471
+ price
1472
+ electricSockets
1473
+ isIncludedExcludedOrNone
1474
+ comments
1475
+ price
1476
+ burglarAlarm
1477
+ isIncludedExcludedOrNone
1478
+ comments
1479
+ price
1480
+ otherItems[
1481
+ itemName
1482
+ isIncludedOrExcluded
1483
+ comments
1484
+ price
1485
+ ]
1486
+ kitchen
1487
+ hob
1488
+ isIncludedExcludedOrNone
1489
+ comments
1490
+ fittedOrFreestanding
1491
+ fittedOrFreestanding
1492
+ price
1493
+ extractorHood
1494
+ isIncludedExcludedOrNone
1495
+ comments
1496
+ fittedOrFreestanding
1497
+ fittedOrFreestanding
1498
+ price
1499
+ ovenGrill
1500
+ isIncludedExcludedOrNone
1501
+ comments
1502
+ fittedOrFreestanding
1503
+ fittedOrFreestanding
1504
+ price
1505
+ cooker
1506
+ isIncludedExcludedOrNone
1507
+ comments
1508
+ fittedOrFreestanding
1509
+ fittedOrFreestanding
1510
+ price
1511
+ microwave
1512
+ isIncludedExcludedOrNone
1513
+ comments
1514
+ fittedOrFreestanding
1515
+ fittedOrFreestanding
1516
+ price
1517
+ refrigeratorFridgeFreezer
1518
+ isIncludedExcludedOrNone
1519
+ comments
1520
+ fittedOrFreestanding
1521
+ fittedOrFreestanding
1522
+ price
1523
+ freezer
1524
+ isIncludedExcludedOrNone
1525
+ comments
1526
+ fittedOrFreestanding
1527
+ fittedOrFreestanding
1528
+ price
1529
+ dishwasher
1530
+ isIncludedExcludedOrNone
1531
+ comments
1532
+ fittedOrFreestanding
1533
+ fittedOrFreestanding
1534
+ price
1535
+ tumbleDryer
1536
+ isIncludedExcludedOrNone
1537
+ comments
1538
+ fittedOrFreestanding
1539
+ fittedOrFreestanding
1540
+ price
1541
+ washingMachine
1542
+ isIncludedExcludedOrNone
1543
+ comments
1544
+ fittedOrFreestanding
1545
+ fittedOrFreestanding
1546
+ price
1547
+ otherItems[
1548
+ itemName
1549
+ isIncludedOrExcluded
1550
+ comments
1551
+ fittedOrFreestanding
1552
+ fittedOrFreestanding
1553
+ price
1554
+ ]
1555
+ bathroom
1556
+ bath
1557
+ isIncludedExcludedOrNone
1558
+ comments
1559
+ price
1560
+ showerFittingForBath
1561
+ isIncludedExcludedOrNone
1562
+ comments
1563
+ price
1564
+ showerCurtain
1565
+ isIncludedExcludedOrNone
1566
+ comments
1567
+ price
1568
+ bathroomCabinet
1569
+ isIncludedExcludedOrNone
1570
+ comments
1571
+ price
1572
+ taps
1573
+ isIncludedExcludedOrNone
1574
+ comments
1575
+ price
1576
+ separateShowersAndFittings
1577
+ isIncludedExcludedOrNone
1578
+ comments
1579
+ price
1580
+ towelRail
1581
+ isIncludedExcludedOrNone
1582
+ comments
1583
+ price
1584
+ soapToothbrushHolders
1585
+ isIncludedExcludedOrNone
1586
+ comments
1587
+ price
1588
+ toiletRollHolders
1589
+ isIncludedExcludedOrNone
1590
+ comments
1591
+ price
1592
+ bathroomMirror
1593
+ isIncludedExcludedOrNone
1594
+ comments
1595
+ price
1596
+ carpets
1597
+ hallStairsLanding
1598
+ isIncludedExcludedOrNone
1599
+ comments
1600
+ price
1601
+ livingRoom
1602
+ isIncludedExcludedOrNone
1603
+ comments
1604
+ price
1605
+ diningRoom
1606
+ isIncludedExcludedOrNone
1607
+ comments
1608
+ price
1609
+ kitchen
1610
+ isIncludedExcludedOrNone
1611
+ comments
1612
+ price
1613
+ bedroom1
1614
+ isIncludedExcludedOrNone
1615
+ comments
1616
+ price
1617
+ bedroom2
1618
+ isIncludedExcludedOrNone
1619
+ comments
1620
+ price
1621
+ bedroom3
1622
+ isIncludedExcludedOrNone
1623
+ comments
1624
+ price
1625
+ otherRooms[
1626
+ itemName
1627
+ isIncludedOrExcluded
1628
+ comments
1629
+ price
1630
+ ]
1631
+ curtainsAndCurtainRails
1632
+ curtainRailsPolesPelmets
1633
+ hallStairsLanding
1634
+ isIncludedExcludedOrNone
1635
+ comments
1636
+ price
1637
+ livingRoom
1638
+ isIncludedExcludedOrNone
1639
+ comments
1640
+ price
1641
+ diningRoom
1642
+ isIncludedExcludedOrNone
1643
+ comments
1644
+ price
1645
+ kitchen
1646
+ isIncludedExcludedOrNone
1647
+ comments
1648
+ price
1649
+ bedroom1
1650
+ isIncludedExcludedOrNone
1651
+ comments
1652
+ price
1653
+ bedroom2
1654
+ isIncludedExcludedOrNone
1655
+ comments
1656
+ price
1657
+ bedroom3
1658
+ isIncludedExcludedOrNone
1659
+ comments
1660
+ price
1661
+ otherRooms[
1662
+ itemName
1663
+ isIncludedOrExcluded
1664
+ comments
1665
+ price
1666
+ ]
1667
+ curtainsBlinds
1668
+ hallStairsLanding
1669
+ isIncludedExcludedOrNone
1670
+ comments
1671
+ price
1672
+ livingRoom
1673
+ isIncludedExcludedOrNone
1674
+ comments
1675
+ price
1676
+ diningRoom
1677
+ isIncludedExcludedOrNone
1678
+ comments
1679
+ price
1680
+ kitchen
1681
+ isIncludedExcludedOrNone
1682
+ comments
1683
+ price
1684
+ bedroom1
1685
+ isIncludedExcludedOrNone
1686
+ comments
1687
+ price
1688
+ bedroom2
1689
+ isIncludedExcludedOrNone
1690
+ comments
1691
+ price
1692
+ bedroom3
1693
+ isIncludedExcludedOrNone
1694
+ comments
1695
+ price
1696
+ otherRooms[
1697
+ itemName
1698
+ isIncludedOrExcluded
1699
+ comments
1700
+ price
1701
+ ]
1702
+ lightFittings
1703
+ hallStairsLanding
1704
+ isIncludedExcludedOrNone
1705
+ comments
1706
+ price
1707
+ livingRoom
1708
+ isIncludedExcludedOrNone
1709
+ comments
1710
+ price
1711
+ diningRoom
1712
+ isIncludedExcludedOrNone
1713
+ comments
1714
+ price
1715
+ kitchen
1716
+ isIncludedExcludedOrNone
1717
+ comments
1718
+ price
1719
+ bedroom1
1720
+ isIncludedExcludedOrNone
1721
+ comments
1722
+ price
1723
+ bedroom2
1724
+ isIncludedExcludedOrNone
1725
+ comments
1726
+ price
1727
+ bedroom3
1728
+ isIncludedExcludedOrNone
1729
+ comments
1730
+ price
1731
+ otherRooms[
1732
+ itemName
1733
+ isIncludedOrExcluded
1734
+ comments
1735
+ price
1736
+ ]
1737
+ fittedUnits
1738
+ hallStairsLanding
1739
+ isIncludedExcludedOrNone
1740
+ comments
1741
+ price
1742
+ livingRoom
1743
+ isIncludedExcludedOrNone
1744
+ comments
1745
+ price
1746
+ diningRoom
1747
+ isIncludedExcludedOrNone
1748
+ comments
1749
+ price
1750
+ kitchen
1751
+ isIncludedExcludedOrNone
1752
+ comments
1753
+ price
1754
+ bedroom1
1755
+ isIncludedExcludedOrNone
1756
+ comments
1757
+ price
1758
+ bedroom2
1759
+ isIncludedExcludedOrNone
1760
+ comments
1761
+ price
1762
+ bedroom3
1763
+ isIncludedExcludedOrNone
1764
+ comments
1765
+ price
1766
+ otherRooms[
1767
+ itemName
1768
+ isIncludedOrExcluded
1769
+ comments
1770
+ price
1771
+ ]
1772
+ outdoorArea
1773
+ gardenFurniture
1774
+ isIncludedExcludedOrNone
1775
+ comments
1776
+ price
1777
+ gardenOrnaments
1778
+ isIncludedExcludedOrNone
1779
+ comments
1780
+ price
1781
+ treesPlantsShrubs
1782
+ isIncludedExcludedOrNone
1783
+ comments
1784
+ price
1785
+ barbecue
1786
+ isIncludedExcludedOrNone
1787
+ comments
1788
+ price
1789
+ dustbins
1790
+ isIncludedExcludedOrNone
1791
+ comments
1792
+ price
1793
+ gardenShed
1794
+ isIncludedExcludedOrNone
1795
+ comments
1796
+ price
1797
+ greenhouse
1798
+ isIncludedExcludedOrNone
1799
+ comments
1800
+ price
1801
+ outdoorHeater
1802
+ isIncludedExcludedOrNone
1803
+ comments
1804
+ price
1805
+ outdoorLights
1806
+ isIncludedExcludedOrNone
1807
+ comments
1808
+ price
1809
+ waterButt
1810
+ isIncludedExcludedOrNone
1811
+ comments
1812
+ price
1813
+ clothesLine
1814
+ isIncludedExcludedOrNone
1815
+ comments
1816
+ price
1817
+ rotaryLine
1818
+ isIncludedExcludedOrNone
1819
+ comments
1820
+ price
1821
+ otherItems[
1822
+ itemName
1823
+ isIncludedOrExcluded
1824
+ comments
1825
+ price
1826
+ ]
1827
+ televisionAndTelephone
1828
+ telephoneReceivers
1829
+ isIncludedExcludedOrNone
1830
+ comments
1831
+ price
1832
+ televisionAerial
1833
+ isIncludedExcludedOrNone
1834
+ comments
1835
+ price
1836
+ radioAerial
1837
+ isIncludedExcludedOrNone
1838
+ comments
1839
+ price
1840
+ satelliteDish
1841
+ isIncludedExcludedOrNone
1842
+ comments
1843
+ price
1844
+ stockOfFuel
1845
+ oil
1846
+ isIncludedExcludedOrNone
1847
+ comments
1848
+ price
1849
+ wood
1850
+ isIncludedExcludedOrNone
1851
+ comments
1852
+ price
1853
+ lpg
1854
+ isIncludedExcludedOrNone
1855
+ comments
1856
+ price
1857
+ otherItems
1858
+ otherItems[
1859
+ itemName
1860
+ isIncludedOrExcluded
1861
+ comments
1862
+ price
1863
+ ]
1864
+ confirmationOfAccuracy
1865
+ confirmInformationIsAccurate
1866
+ electricity
1867
+ mainsElectricity
1868
+ yesNo
1869
+ supplier
1870
+ electricityMeter
1871
+ location
1872
+ attachments
1873
+ mpan
1874
+ dateToBeConnected
1875
+ solarPanels
1876
+ yesNo
1877
+ supplier
1878
+ hotWaterOnly
1879
+ yearInstalled
1880
+ panelsOwnedOutright
1881
+ yesNo
1882
+ details
1883
+ attachments
1884
+ associatedCost
1885
+ frequency
1886
+ amount
1887
+ panelProviderLease
1888
+ yesNo
1889
+ details
1890
+ attachments
1891
+ lastMaintained
1892
+ inGoodWorkingOrder
1893
+ yesNo
1894
+ details
1895
+ photovoltaicMeterPanelLocation
1896
+ attachments
1897
+ maintenanceAgreement
1898
+ yesNo
1899
+ attachments
1900
+ photovoltaicBatteries
1901
+ yesNo
1902
+ attachments
1903
+ details
1904
+ nationalGrid
1905
+ yesNo
1906
+ fitOrSegInPlace
1907
+ yesNo
1908
+ fitSegAgreementCopy
1909
+ attachments
1910
+ fitSegAssignmentProcedure
1911
+ installationCertificates
1912
+ dateToBeConnected
1913
+ heatPump
1914
+ yesNo
1915
+ details
1916
+ supplier
1917
+ dateInstalled
1918
+ attachments
1919
+ makeModel
1920
+ serviceProviderName
1921
+ dateToBeConnected
1922
+ otherSources
1923
+ yesNo
1924
+ details
1925
+ supplier
1926
+ dateToBeConnected
1927
+ waterAndDrainage
1928
+ maps
1929
+ publicSewerMapAttached
1930
+ waterworksMapAttached
1931
+ water
1932
+ mainsWater
1933
+ yesNo
1934
+ details
1935
+ associatedCost
1936
+ frequency
1937
+ amount
1938
+ supplier
1939
+ stopcock
1940
+ location
1941
+ attachments
1942
+ waterMeter
1943
+ isSupplyMetered
1944
+ location
1945
+ attachments
1946
+ dateToBeConnected
1947
+ waterMainsWithinBoundaries
1948
+ yesNo
1949
+ details
1950
+ waterMainsSubjectOfAdoptionAgreement
1951
+ yesNo
1952
+ details
1953
+ lowWaterPressureRisk
1954
+ yesNo
1955
+ details
1956
+ supplyClassification
1957
+ drainage
1958
+ mainsSurfaceWaterDrainage
1959
+ yesNo
1960
+ details
1961
+ dateToBeConnected
1962
+ mainsFoulDrainage
1963
+ yesNo
1964
+ details
1965
+ supplier
1966
+ dateToBeConnected
1967
+ offMainsDrainageSystem
1968
+ offMainsDrainageSystemType
1969
+ otherConnectedProperties
1970
+ yesNo
1971
+ numberOfPropertiesSharing
1972
+ details
1973
+ plantOnOtherLand
1974
+ yesNo
1975
+ attachments
1976
+ plantRegistered
1977
+ yesNo
1978
+ attachments
1979
+ plantDrainsIntoWaterway
1980
+ yesNo
1981
+ hasInfiltrationSystem
1982
+ yesNo
1983
+ dischargeCompliesWithGBR
1984
+ dateDischargeCommenced
1985
+ dateInstalled
1986
+ dateReplaced
1987
+ dateLastEmptied
1988
+ supplier
1989
+ makeModel
1990
+ serviceProviderName
1991
+ dateLastServiced
1992
+ attachments
1993
+ details
1994
+ associatedCost
1995
+ frequency
1996
+ amount
1997
+ surfaceDrainageCharge
1998
+ yesNo
1999
+ details
2000
+ publicDrainWithinBoundaries
2001
+ yesNo
2002
+ details
2003
+ publicPumpingStationWithinBoundaries
2004
+ yesNo
2005
+ details
2006
+ publicSewerWithin100ft
2007
+ yesNo
2008
+ details
2009
+ publicPumpingStationWithin50mOfBuildings
2010
+ yesNo
2011
+ details
2012
+ sewersSubjectOfAdoptionAgreement
2013
+ yesNo
2014
+ details
2015
+ sewerageUndertakerApproval
2016
+ yesNo
2017
+ details
2018
+ riskOfInternalFlooding
2019
+ yesNo
2020
+ details
2021
+ distanceToNearestSewerageTreatment
2022
+ maintenanceAgreements
2023
+ yesNo
2024
+ details
2025
+ attachments
2026
+ charging
2027
+ sewerageProvider
2028
+ waterProvider
2029
+ sewerageBills
2030
+ waterBills
2031
+ currentChargingBasis
2032
+ consequentialChargingBasis
2033
+ heating
2034
+ heatingSystem
2035
+ heatingType
2036
+ centralHeatingDetails
2037
+ centralHeatingFuel
2038
+ centralHeatingFuelType
2039
+ supplier
2040
+ gasMeter
2041
+ location
2042
+ attachments
2043
+ mprn
2044
+ otherCentralHeatingFuelType
2045
+ centralHeatingInstalled
2046
+ boilerInstallationCertificate
2047
+ yesNo
2048
+ boilerInstallationDate
2049
+ attachments
2050
+ replacementOtherThanBoiler
2051
+ yesNo
2052
+ attachments
2053
+ heatingLastServicedDate
2054
+ heatingLastServicedReport
2055
+ heatingInGoodWorkingOrder
2056
+ yesNo
2057
+ details
2058
+ details
2059
+ otherHeatingFeatures[]
2060
+ multipleHeatingSystems
2061
+ connectivity
2062
+ telephone
2063
+ yesNo
2064
+ supplier
2065
+ dateToBeConnected
2066
+ cableSatelliteTV
2067
+ yesNo
2068
+ supplier
2069
+ dateToBeConnected
2070
+ broadband
2071
+ typeOfConnection
2072
+ predictedSpeed
2073
+ maxBbPredictedDown
2074
+ maxBbPredictedUp
2075
+ maxSfbbPredictedDown
2076
+ maxSfbbPredictedUp
2077
+ maxUfbbPredictedDown
2078
+ maxUfbbPredictedUp
2079
+ maxPredictedDown
2080
+ maxPredictedUp
2081
+ providerName
2082
+ mobilePhone
2083
+ knownSignalIssues
2084
+ yesNo
2085
+ details
2086
+ predictedCoverage
2087
+ eeVoiceOutdoor
2088
+ eeVoiceOutdoorNo4g
2089
+ eeVoiceIndoor
2090
+ eeVoiceIndoorNo4g
2091
+ eeDataOutdoor
2092
+ eeDataOutdoorNo4g
2093
+ eeDataIndoor
2094
+ eeDataIndoorNo4g
2095
+ h3VoiceOutdoor
2096
+ h3VoiceOutdoorNo4g
2097
+ h3VoiceIndoor
2098
+ h3VoiceIndoorNo4g
2099
+ h3DataOutdoor
2100
+ h3DataOutdoorNo4g
2101
+ h3DataIndoor
2102
+ h3DataIndoorNo4g
2103
+ tfVoiceOutdoor
2104
+ tfVoiceOutdoorNo4g
2105
+ tfVoiceIndoor
2106
+ tfVoiceIndoorNo4g
2107
+ tfDataOutdoor
2108
+ tfDataOutdoorNo4g
2109
+ tfDataIndoor
2110
+ tfDataIndoorNo4g
2111
+ voVoiceOutdoor
2112
+ voVoiceOutdoorNo4g
2113
+ voVoiceIndoor
2114
+ voVoiceIndoorNo4g
2115
+ voDataOutdoor
2116
+ voDataOutdoorNo4g
2117
+ voDataIndoor
2118
+ voDataIndoorNo4g
2119
+ otherServices
2120
+ insurance
2121
+ difficultiesObtainingInsurance
2122
+ abnormalRiseInPremiums
2123
+ yesNo
2124
+ details
2125
+ subjectToHighExcesses
2126
+ yesNo
2127
+ details
2128
+ subjectToUnusualConditions
2129
+ yesNo
2130
+ details
2131
+ refused
2132
+ yesNo
2133
+ details
2134
+ isInsured
2135
+ details
2136
+ landlordInsuresIfFlat
2137
+ whoInsures
2138
+ insuranceClaims
2139
+ yesNo
2140
+ details
2141
+ rightsAndInformalArrangements
2142
+ sharedContributions
2143
+ yesNo
2144
+ details
2145
+ disagreementOrComplaint
2146
+ yesNo
2147
+ details
2148
+ neighbouringLandRights
2149
+ yesNo
2150
+ details
2151
+ disagreementOrComplaint
2152
+ yesNo
2153
+ details
2154
+ attachments
2155
+ accessRestrictionAttempts
2156
+ yesNo
2157
+ details
2158
+ rightsOrArrangements
2159
+ publicRightOfWay
2160
+ yesNo
2161
+ details
2162
+ attachments
2163
+ privateRightOfWay
2164
+ yesNo
2165
+ details
2166
+ rightsOfLight
2167
+ yesNo
2168
+ details
2169
+ rightsOfSupport
2170
+ yesNo
2171
+ details
2172
+ rightsCreatedThroughCustom
2173
+ yesNo
2174
+ details
2175
+ rightsToTakeFromLand
2176
+ yesNo
2177
+ details
2178
+ minesAndMinerals
2179
+ yesNo
2180
+ details
2181
+ churchChancel
2182
+ yesNo
2183
+ details
2184
+ otherRights
2185
+ yesNo
2186
+ details
2187
+ disagreementOrComplaint
2188
+ yesNo
2189
+ details
2190
+ askedOthersToContribute
2191
+ yesNo
2192
+ details
2193
+ disagreementOrComplaint
2194
+ yesNo
2195
+ details
2196
+ environmentalIssues
2197
+ flooding
2198
+ floodRiskReport
2199
+ hasReportBeenPrepared
2200
+ attachments
2201
+ floodRisk
2202
+ riskIndicator
2203
+ actionAlertRating
2204
+ result
2205
+ summary
2206
+ recommendations
2207
+ datasetAttribution
2208
+ riskSubcategories[
2209
+ subCategory
2210
+ riskIndicator
2211
+ actionAlertRating
2212
+ result
2213
+ summary
2214
+ recommendations
2215
+ datasetAttribution
2216
+ ]
2217
+ historicalFlooding
2218
+ hasBeenFlooded
2219
+ typeOfFlooding[]
2220
+ details
2221
+ floodDefences
2222
+ hasFloodDefences
2223
+ details
2224
+ stormFireFloodDamage
2225
+ yesNo
2226
+ details
2227
+ radon
2228
+ radonRisk
2229
+ riskIndicator
2230
+ actionAlertRating
2231
+ result
2232
+ summary
2233
+ recommendations
2234
+ datasetAttribution
2235
+ riskSubcategories[
2236
+ subCategory
2237
+ riskIndicator
2238
+ actionAlertRating
2239
+ result
2240
+ summary
2241
+ recommendations
2242
+ datasetAttribution
2243
+ ]
2244
+ radonTest
2245
+ yesNo
2246
+ details
2247
+ attachments
2248
+ remedialMeasuresOnConstruction
2249
+ yesNo
2250
+ contaminatedLand
2251
+ contaminatedLandRisk
2252
+ riskIndicator
2253
+ actionAlertRating
2254
+ result
2255
+ summary
2256
+ recommendations
2257
+ datasetAttribution
2258
+ riskSubcategories[
2259
+ subCategory
2260
+ riskIndicator
2261
+ actionAlertRating
2262
+ result
2263
+ summary
2264
+ recommendations
2265
+ datasetAttribution
2266
+ ]
2267
+ groundStability
2268
+ groundStabilityRisk
2269
+ riskIndicator
2270
+ actionAlertRating
2271
+ result
2272
+ summary
2273
+ recommendations
2274
+ datasetAttribution
2275
+ riskSubcategories[
2276
+ subCategory
2277
+ riskIndicator
2278
+ actionAlertRating
2279
+ result
2280
+ summary
2281
+ recommendations
2282
+ datasetAttribution
2283
+ ]
2284
+ infrastructure
2285
+ infrastructureRisk
2286
+ riskIndicator
2287
+ actionAlertRating
2288
+ result
2289
+ summary
2290
+ recommendations
2291
+ datasetAttribution
2292
+ riskSubcategories[
2293
+ subCategory
2294
+ riskIndicator
2295
+ actionAlertRating
2296
+ result
2297
+ summary
2298
+ recommendations
2299
+ datasetAttribution
2300
+ ]
2301
+ energy
2302
+ energyRisk
2303
+ riskIndicator
2304
+ actionAlertRating
2305
+ result
2306
+ summary
2307
+ recommendations
2308
+ datasetAttribution
2309
+ riskSubcategories[
2310
+ subCategory
2311
+ riskIndicator
2312
+ actionAlertRating
2313
+ result
2314
+ summary
2315
+ recommendations
2316
+ datasetAttribution
2317
+ ]
2318
+ transportation
2319
+ transportationRisk
2320
+ riskIndicator
2321
+ actionAlertRating
2322
+ result
2323
+ summary
2324
+ recommendations
2325
+ datasetAttribution
2326
+ riskSubcategories[
2327
+ subCategory
2328
+ riskIndicator
2329
+ actionAlertRating
2330
+ result
2331
+ summary
2332
+ recommendations
2333
+ datasetAttribution
2334
+ ]
2335
+ planning
2336
+ planningRisk
2337
+ riskIndicator
2338
+ actionAlertRating
2339
+ result
2340
+ summary
2341
+ recommendations
2342
+ datasetAttribution
2343
+ riskSubcategories[
2344
+ subCategory
2345
+ riskIndicator
2346
+ actionAlertRating
2347
+ result
2348
+ summary
2349
+ recommendations
2350
+ datasetAttribution
2351
+ ]
2352
+ climate
2353
+ climateRisk
2354
+ riskIndicator
2355
+ actionAlertRating
2356
+ result
2357
+ summary
2358
+ recommendations
2359
+ datasetAttribution
2360
+ riskSubcategories[
2361
+ subCategory
2362
+ riskIndicator
2363
+ actionAlertRating
2364
+ result
2365
+ summary
2366
+ recommendations
2367
+ datasetAttribution
2368
+ ]
2369
+ coalMining
2370
+ riskIndicator
2371
+ actionAlertRating
2372
+ result
2373
+ summary
2374
+ recommendations
2375
+ datasetAttribution
2376
+ riskSubcategories[
2377
+ subCategory
2378
+ riskIndicator
2379
+ actionAlertRating
2380
+ result
2381
+ summary
2382
+ recommendations
2383
+ datasetAttribution
2384
+ ]
2385
+ nonCoalMining
2386
+ riskIndicator
2387
+ actionAlertRating
2388
+ result
2389
+ summary
2390
+ recommendations
2391
+ datasetAttribution
2392
+ riskSubcategories[
2393
+ subCategory
2394
+ riskIndicator
2395
+ actionAlertRating
2396
+ result
2397
+ summary
2398
+ recommendations
2399
+ datasetAttribution
2400
+ ]
2401
+ coastalErosion
2402
+ riskIndicator
2403
+ actionAlertRating
2404
+ result
2405
+ summary
2406
+ recommendations
2407
+ datasetAttribution
2408
+ riskSubcategories[
2409
+ subCategory
2410
+ riskIndicator
2411
+ actionAlertRating
2412
+ result
2413
+ summary
2414
+ recommendations
2415
+ datasetAttribution
2416
+ ]
2417
+ otherEnvironmental
2418
+ riskIndicator
2419
+ summary
2420
+ otherIssues
2421
+ excessiveNoise
2422
+ yesNo
2423
+ details
2424
+ attachments
2425
+ crime
2426
+ yesNo
2427
+ details
2428
+ attachments
2429
+ cautionOrConviction
2430
+ yesNo
2431
+ details
2432
+ attachments
2433
+ failedTransactionsInLast12Months
2434
+ yesNo
2435
+ details
2436
+ attachments
2437
+ additionalInformation
2438
+ consents
2439
+ attachments
2440
+ consentsAttached
2441
+ consentsToFollow
2442
+ consentsNotAvailable
2443
+ furtherInformation
2444
+ details
2445
+ attachments
2446
+ restrictionsOnUseNotCompliedWith
2447
+ yesNo
2448
+ details
2449
+ attachments
2450
+ otherMaterialIssue
2451
+ yesNo
2452
+ details
2453
+ attachments
2454
+ otherCharges
2455
+ yesNo
2456
+ details
2457
+ buyToLet
2458
+ yesNo
2459
+ consumerProtectionRegulationsDeclaration
2460
+ consumerProtectionRegulationsResponse
2461
+ legalOwners
2462
+ namesOfLegalOwners[
2463
+ ownerType
2464
+ firstName
2465
+ middleNames
2466
+ lastName
2467
+ organisationName
2468
+ ]
2469
+ legalBoundaries
2470
+ partOutsideLegalOwnership
2471
+ yesNo
2472
+ details
2473
+ partOnSeparateSiteOrDeed
2474
+ yesNo
2475
+ details
2476
+ boundariesDifferFromTitlePlan
2477
+ yesNo
2478
+ details
2479
+ attachments
2480
+ boundaryAlterationProposal
2481
+ yesNo
2482
+ details
2483
+ ownership
2484
+ areBoundariesUniform
2485
+ uniformBoundaries
2486
+ left
2487
+ right
2488
+ rear
2489
+ front
2490
+ details
2491
+ attachments
2492
+ haveBoundaryFeaturesMoved
2493
+ yesNo
2494
+ details
2495
+ adjacentLandIncluded
2496
+ yesNo
2497
+ details
2498
+ flyingFreehold
2499
+ yesNo
2500
+ details
2501
+ servicesCrossing
2502
+ pipesWiresCablesDrainsToProperty
2503
+ yesNo
2504
+ details
2505
+ attachments
2506
+ pipesWiresCablesDrainsFromProperty
2507
+ yesNo
2508
+ details
2509
+ attachments
2510
+ formalOrInformalAgreements
2511
+ yesNo
2512
+ details
2513
+ attachments
2514
+ electricalWorks
2515
+ testedByQualifiedElectrician
2516
+ yesNo
2517
+ yearTested
2518
+ attachments
2519
+ electricalWorkSince2005
2520
+ yesNo
2521
+ yearWorkCarriedOut
2522
+ details
2523
+ suppliedCertificate
2524
+ certificateType
2525
+ attachments
2526
+ smartHomeSystems
2527
+ hasSmartHomeSystems
2528
+ heatingAndPower
2529
+ yesNo
2530
+ details
2531
+ security
2532
+ yesNo
2533
+ details
2534
+ entertainment
2535
+ yesNo
2536
+ details
2537
+ handoverOnCompletion
2538
+ guaranteesWarrantiesAndIndemnityInsurances
2539
+ hasValidGuaranteesOrWarranties
2540
+ newHomeWarranty
2541
+ yesNo
2542
+ details
2543
+ attachments
2544
+ roofingWork
2545
+ yesNo
2546
+ attachments
2547
+ dampProofingTreatment
2548
+ yesNo
2549
+ attachments
2550
+ timberRotOrInfestationTreatment
2551
+ yesNo
2552
+ attachments
2553
+ centralHeatingAndorPlumbing
2554
+ yesNo
2555
+ attachments
2556
+ doubleGlazing
2557
+ yesNo
2558
+ attachments
2559
+ fensaCertificates
2560
+ certificates[
2561
+ certificateId
2562
+ numberOfWindows
2563
+ numberOfDoors
2564
+ certificateIssued
2565
+ workCompleted
2566
+ ]
2567
+ electricalRepairOrInstallation
2568
+ yesNo
2569
+ attachments
2570
+ subsidenceWork
2571
+ yesNo
2572
+ attachments
2573
+ insulation
2574
+ yesNo
2575
+ attachments
2576
+ solarPanels
2577
+ yesNo
2578
+ attachments
2579
+ otherGuarantees
2580
+ yesNo
2581
+ details
2582
+ attachments
2583
+ outstandingClaimsOrApplications
2584
+ yesNo
2585
+ details
2586
+ attachments
2587
+ breachOfTermsOrConditions
2588
+ yesNo
2589
+ details
2590
+ titleDefectInsurance
2591
+ yesNo
2592
+ details
2593
+ attachments
2594
+ occupiers
2595
+ sellerLivesAtProperty
2596
+ yesNo
2597
+ othersAged17OrOver
2598
+ hasOthersAged17OrOver
2599
+ aged17OrOverNames
2600
+ aged17OrOverTenantsOrLodgers
2601
+ yesNo
2602
+ vacantPossession
2603
+ soldWithVacantPossession
2604
+ details
2605
+ attachments
2606
+ aged17OrOverAgreedToLeave
2607
+ yesNo
2608
+ aged17OrOverWillSignToConfirmWillVacate
2609
+ yesNo
2610
+ details
2611
+ attachments
2612
+ completionAndMoving
2613
+ sellerWillEnsure
2614
+ removeRubbish
2615
+ replaceLightFittings
2616
+ takeReasonableCare
2617
+ leaveKeys
2618
+ otherPropertyInChain
2619
+ yesNo
2620
+ propertyDependencyType
2621
+ dependentPropertyAddress
2622
+ line1
2623
+ line2
2624
+ line3
2625
+ town
2626
+ postcode
2627
+ moveRestrictionDates
2628
+ yesNo
2629
+ details
2630
+ digitalPropertyLogbook
2631
+ yesNo
2632
+ logbookProvider
2633
+ willHandoverLogbook
2634
+ sufficientToRepayAllMortgages
2635
+ yesNo
2636
+ confirmationOfAccuracyByOwners
2637
+ confirmWillProvideAdditionalDocumentation
2638
+ confirmInformationIsAccurate
2639
+ saleReadyDeclarations
2640
+ authorisedToActOnBehalfOfAllSellers
2641
+ authorisationToShare
2642
+ sellerSignatures[
2643
+ name
2644
+ signedOn
2645
+ externalIds{*}
2646
+ ]
2647
+ localSearches
2648
+ localLandCharges[
2649
+ hmlrReference
2650
+ originatingAuthority
2651
+ authorityReference
2652
+ creationDate
2653
+ registrationDate
2654
+ category
2655
+ chargeSubCategory
2656
+ law
2657
+ legalDocument
2658
+ location
2659
+ line1
2660
+ line2
2661
+ postcode
2662
+ locationDominantBuilding
2663
+ line1
2664
+ line2
2665
+ postcode
2666
+ sourceOfInformation
2667
+ availableDocument[
2668
+ document
2669
+ startDate
2670
+ endDate
2671
+ ]
2672
+ interestInLand
2673
+ applicantName
2674
+ applicantAddress
2675
+ line1
2676
+ line2
2677
+ postcode
2678
+ country
2679
+ servientLandDevelopment
2680
+ height
2681
+ coversAllOrPartOfExtent
2682
+ amount
2683
+ interestRate
2684
+ landSold
2685
+ worksDone
2686
+ advancePayment
2687
+ totalCompensation
2688
+ agreedOrEstimated
2689
+ adjoining
2690
+ otherData[
2691
+ dataLabel
2692
+ data
2693
+ ]
2694
+ chargeExtent
2695
+ ]
2696
+ localAuthoritySearches
2697
+ planningAndBuildingRegulations
2698
+ decisionsAndPendingApplications
2699
+ planningPermission[
2700
+ address
2701
+ refNumber
2702
+ isProposal
2703
+ applicationDate
2704
+ decision
2705
+ decisionDate
2706
+ applicationType
2707
+ status
2708
+ url
2709
+ ]
2710
+ listedBuildingConsent[
2711
+ refNumber
2712
+ isProposal
2713
+ applicationDate
2714
+ decision
2715
+ decisionDate
2716
+ applicationType
2717
+ ]
2718
+ conservationAreaConsent[
2719
+ refNumber
2720
+ isProposal
2721
+ applicationDate
2722
+ decision
2723
+ decisionDate
2724
+ applicationType
2725
+ ]
2726
+ lawfulnessOfExistingUse[
2727
+ refNumber
2728
+ isProposal
2729
+ applicationDate
2730
+ decision
2731
+ decisionDate
2732
+ applicationType
2733
+ ]
2734
+ certificateOfLawfulnessOfProposedUse[
2735
+ refNumber
2736
+ isProposal
2737
+ applicationDate
2738
+ decision
2739
+ decisionDate
2740
+ applicationType
2741
+ ]
2742
+ lawfulnessOfProposedListedWorks[
2743
+ refNumber
2744
+ isProposal
2745
+ applicationDate
2746
+ decision
2747
+ decisionDate
2748
+ applicationType
2749
+ ]
2750
+ heritagePartnershipAgreement[
2751
+ refNumber
2752
+ isProposal
2753
+ applicationDate
2754
+ decision
2755
+ decisionDate
2756
+ applicationType
2757
+ ]
2758
+ listedBuildingConsentOrder[
2759
+ refNumber
2760
+ isProposal
2761
+ applicationDate
2762
+ decision
2763
+ decisionDate
2764
+ applicationType
2765
+ ]
2766
+ localListedBuildingConsentOrder[
2767
+ refNumber
2768
+ isProposal
2769
+ applicationDate
2770
+ decision
2771
+ decisionDate
2772
+ applicationType
2773
+ ]
2774
+ buildingRegulationsApproval[
2775
+ refNumber
2776
+ isProposal
2777
+ applicationDate
2778
+ decision
2779
+ decisionDate
2780
+ applicationType
2781
+ ]
2782
+ buildingRegulationsCompletion[
2783
+ refNumber
2784
+ isProposal
2785
+ applicationDate
2786
+ decision
2787
+ decisionDate
2788
+ applicationType
2789
+ ]
2790
+ buildingRegulationsSelfCertification[
2791
+ refNumber
2792
+ isProposal
2793
+ applicationDate
2794
+ decision
2795
+ decisionDate
2796
+ applicationType
2797
+ ]
2798
+ planningStartDate
2799
+ buildingControlStartDate
2800
+ designationsAndProposals
2801
+ plans[
2802
+ name
2803
+ status
2804
+ statusDate
2805
+ designations[
2806
+ designationType
2807
+ ]
2808
+ ]
2809
+ roadsAndPublicRightsOfWay
2810
+ roadsFootwaysAndFootpaths
2811
+ highwaysMaintainableAtPublicExpense[
2812
+ name
2813
+ status
2814
+ ]
2815
+ subjectToAdoption[
2816
+ name
2817
+ status
2818
+ ]
2819
+ toBeMadeUpWithReclaim[
2820
+ name
2821
+ status
2822
+ ]
2823
+ toBeMadeUpWithoutReclaim[
2824
+ name
2825
+ status
2826
+ ]
2827
+ publicRightsOfWay
2828
+ shownOnDefinitiveMap
2829
+ yesNo
2830
+ details
2831
+ pendingApplicationsToRecord
2832
+ yesNo
2833
+ details
2834
+ legalOrdersToStop
2835
+ yesNo
2836
+ details
2837
+ otherMatters
2838
+ landRequiredForPublicPurposes
2839
+ yesNo
2840
+ details
2841
+ landToBeAcquiredForRoadWorks
2842
+ yesNo
2843
+ details
2844
+ drainageMatters
2845
+ propertyServedByASustainableUrbanDrainage
2846
+ yesNo
2847
+ details
2848
+ suDsFeaturesWithinTheBoundaryOfTheProperty
2849
+ yesNo
2850
+ details
2851
+ ifPropertyBenefitsFromASuDsForWhichThereIsAChargeWhoBillsThePropertyForSurfaceWaterDrainageCharge
2852
+ yesNo
2853
+ details
2854
+ nearbyRoadSchemes
2855
+ centreLineOfANewTrunkRoadOrSpecialRoadSpecifiedInAnyOrderDraftOrderOrScheme
2856
+ yesNo
2857
+ details
2858
+ centreLineOfAProposedAlterationOrImprovementToAnExistingRoad
2859
+ yesNo
2860
+ details
2861
+ outerLimitsOfConstructionWorksForAProposedAlterationOrImprovementToAnExistingRoad
2862
+ constructionOfARoundaboutOtherThanAMiniRoundabout
2863
+ yesNo
2864
+ details
2865
+ wideningByConstructionOfOneOrMoreAdditionalTrafficLanes
2866
+ yesNo
2867
+ details
2868
+ outerLimitsOf
2869
+ constructionOfANewRoadToBeBuiltByALocalAuthority
2870
+ yesNo
2871
+ details
2872
+ approvedAlterationOrImprovementToAnExistingRoad
2873
+ yesNo
2874
+ details
2875
+ constructionOfARoundaboutOtherThanAMiniRoundaboutOrWideningByConstructionOfOneOrMoreAdditionalTrafficLanes
2876
+ yesNo
2877
+ details
2878
+ centreLineOfTheProposedRouteOfANewRoad
2879
+ yesNo
2880
+ details
2881
+ outerLimitsOfConstructionUnderProposalsUnderPublicConsultation
2882
+ constructionOfAProposedAlterationOrImprovementToAnExistingRoad
2883
+ yesNo
2884
+ details
2885
+ constructionOfARoundaboutOtherThanAMiniRoundabout
2886
+ yesNo
2887
+ details
2888
+ wideningByConstructionOfOneOrMoreAdditionalTrafficLanes
2889
+ yesNo
2890
+ details
2891
+ nearbyRailwaySchemes
2892
+ propertyWithin200MetersOfTheCentreLineOfAProposedRailwayTramwayLightRailwayOrMonorail
2893
+ yesNo
2894
+ details
2895
+ proposalsForARailwayTramwayLightRailwayOrMonorail
2896
+ yesNo
2897
+ details
2898
+ trafficSchemes
2899
+ permanentStoppingUpOrDiversion
2900
+ yesNo
2901
+ details
2902
+ waitingOrLoadingRestrictions
2903
+ yesNo
2904
+ details
2905
+ oneWayDriving
2906
+ yesNo
2907
+ details
2908
+ prohibitionOfDriving
2909
+ yesNo
2910
+ details
2911
+ pedestrianisation
2912
+ yesNo
2913
+ details
2914
+ vehicleWidthOrWeightRestriction
2915
+ yesNo
2916
+ details
2917
+ trafficCalmingWorks
2918
+ yesNo
2919
+ details
2920
+ residentsParkingControls
2921
+ yesNo
2922
+ details
2923
+ minorRoadWideningOrImprovement
2924
+ yesNo
2925
+ details
2926
+ pedestrianCrossings
2927
+ yesNo
2928
+ details
2929
+ cycleTracks
2930
+ yesNo
2931
+ details
2932
+ bridgeBuilding
2933
+ yesNo
2934
+ details
2935
+ outstandingNotices
2936
+ buildingWorks
2937
+ yesNo
2938
+ details
2939
+ environment
2940
+ yesNo
2941
+ details
2942
+ healthAndSafety
2943
+ yesNo
2944
+ details
2945
+ housing
2946
+ yesNo
2947
+ details
2948
+ highways
2949
+ yesNo
2950
+ details
2951
+ publicHealth
2952
+ yesNo
2953
+ details
2954
+ floodAndCoastalErosionRiskManagement
2955
+ yesNo
2956
+ details
2957
+ contraventionOfBuildingRegulations
2958
+ yesNo
2959
+ details
2960
+ noticesOrdersDirectionsAndProceedingsUnderPlanningActs
2961
+ enforcementNotice
2962
+ yesNo
2963
+ details
2964
+ stopNotice
2965
+ yesNo
2966
+ details
2967
+ listedBuildingEnforcementNotice
2968
+ yesNo
2969
+ details
2970
+ breachOfConditionNotice
2971
+ yesNo
2972
+ details
2973
+ planningContraventionNotice
2974
+ yesNo
2975
+ details
2976
+ anotherNoticeRelatingToBreachOfPlanningControl
2977
+ yesNo
2978
+ details
2979
+ listedBuildingRepairsNotice
2980
+ yesNo
2981
+ details
2982
+ inTheCaseOfAListedBuildingDeliberatelyAllowedToFallIntoDisrepairACompulsoryPurchaseOrderWithADirectionForMinimumCompensation
2983
+ yesNo
2984
+ details
2985
+ buildingPreservationNotice
2986
+ yesNo
2987
+ details
2988
+ directionRestrictingPermittedDevelopment
2989
+ yesNo
2990
+ details
2991
+ orderRevokingOrModifyingPlanningPermission
2992
+ yesNo
2993
+ details
2994
+ orderRequiringDiscontinuanceOfUseOrAlterationOrRemovalOfBuildingOrWorks
2995
+ yesNo
2996
+ details
2997
+ treePreservationOrder
2998
+ yesNo
2999
+ details
3000
+ proceedingsToEnforceAPlanningAgreementOrPlanningContribution
3001
+ yesNo
3002
+ details
3003
+ communityInfrastructureLevy
3004
+ cilChargingSchedule
3005
+ yesNo
3006
+ doAnyOfTheFollowingSubsistInRelationToTheProperty
3007
+ liabilityNotice
3008
+ yesNo
3009
+ details
3010
+ noticeOfChargeableDevelopment
3011
+ yesNo
3012
+ details
3013
+ demandNotice
3014
+ yesNo
3015
+ details
3016
+ defaultLiabilityNotice
3017
+ yesNo
3018
+ details
3019
+ assumptionOfLiabilityNotice
3020
+ yesNo
3021
+ details
3022
+ commencementNotice
3023
+ yesNo
3024
+ details
3025
+ demandNoticeBeenSuspended
3026
+ yesNo
3027
+ details
3028
+ localAuthorityReceivedFullOrPartPaymentOfAnyCilLiability
3029
+ yesNo
3030
+ details
3031
+ localAuthorityReceivedAnyAppealAgainstAnyOfTheAbove
3032
+ yesNo
3033
+ details
3034
+ decisionBeenTakenToApplyForALiabilityOrder
3035
+ yesNo
3036
+ details
3037
+ liabilityOrderBeenGranted
3038
+ yesNo
3039
+ details
3040
+ otherEnforcementMeasuresBeenTaken
3041
+ yesNo
3042
+ details
3043
+ conservationArea
3044
+ makingOfTheAreaAConservationAreaBefore31August1974
3045
+ yesNo
3046
+ details
3047
+ unimplementedResolutionToDesignateTheAreaAConservationArea
3048
+ yesNo
3049
+ details
3050
+ compulsoryPurchase
3051
+ yesNo
3052
+ details
3053
+ contaminatedLand
3054
+ contaminatedLandNotice
3055
+ yesNo
3056
+ details
3057
+ inRelationToARegisterMaintainedUnderSection_78R
3058
+ yesNo
3059
+ details
3060
+ decisionToMakeAnEntry
3061
+ yesNo
3062
+ details
3063
+ entry
3064
+ yesNo
3065
+ details
3066
+ radonGas
3067
+ yesNo
3068
+ details
3069
+ assetsOfCommunityValue
3070
+ propertyBeenNominatedAsAnAssetOfCommunityValue
3071
+ listedAsAnAssetOfCommunityValue
3072
+ yesNo
3073
+ details
3074
+ excludedAndPlacedOnTheNominatedButNotListedList
3075
+ yesNo
3076
+ details
3077
+ listingExpired
3078
+ yesNo
3079
+ details
3080
+ localAuthorityReviewingOrProposingToReviewTheListing
3081
+ yesNo
3082
+ details
3083
+ subsistingAppealsAgainstTheListing
3084
+ yesNo
3085
+ details
3086
+ propertyIsListed
3087
+ localAuthorityDecidedToApplyToTheLandRegistry
3088
+ yesNo
3089
+ details
3090
+ theLocalAuthorityReceivedANoticeOfDisposal
3091
+ yesNo
3092
+ details
3093
+ communityInterestGroupRequestedToBeTreatedAsABidder
3094
+ yesNo
3095
+ details
3096
+ titlesToBeSold[
3097
+ titleNumber
3098
+ titleExtents
3099
+ registerExtract
3100
+ ocSummaryData
3101
+ officialCopyDateTime
3102
+ editionDate
3103
+ pricePaidEntry
3104
+ multipleTitleIndicator
3105
+ entryDetails
3106
+ entryNumber
3107
+ entryText
3108
+ registrationDate
3109
+ subRegisterCode
3110
+ scheduleCode
3111
+ infills
3112
+ propertyAddress
3113
+ postcodeZone
3114
+ postcode
3115
+ addressLine
3116
+ line[]
3117
+ registerEntryIndicators
3118
+ agreedNoticeIndicator
3119
+ bankruptcyIndicator
3120
+ cautionIndicator
3121
+ ccbiIndicator
3122
+ chargeeIndicator
3123
+ chargeIndicator
3124
+ chargeRelatedRestrictionIndicator
3125
+ chargeRestrictionIndicator
3126
+ creditorsNoticeIndicator
3127
+ deathOfProprietorIndicator
3128
+ deedOfPostponementIndicator
3129
+ discountChargeIndicator
3130
+ equitableChargeIndicator
3131
+ greenOutEntryIndicator
3132
+ homeRightsChangeOfAddressIndicator
3133
+ homeRightsIndicator
3134
+ leaseHoldTitleIndicator
3135
+ multipleChargeIndicator
3136
+ nonChargeRestrictionIndicator
3137
+ notedChargeIndicator
3138
+ pricePaidIndicator
3139
+ propertyDescriptionNotesIndicator
3140
+ rentChargeIndicator
3141
+ rightOfPreEmptionIndicator
3142
+ scheduleOfLeasesIndicator
3143
+ subChargeIndicator
3144
+ unidentifiedEntryIndicator
3145
+ unilateralNoticeBeneficiaryIndicator
3146
+ unilateralNoticeIndicator
3147
+ vendorsLienIndicator
3148
+ proprietorship
3149
+ currentProprietorshipDate
3150
+ cautionerParty
3151
+ privateIndividual
3152
+ name
3153
+ forenamesName
3154
+ surnameName
3155
+ alias
3156
+ forenamesName
3157
+ surnameName
3158
+ organization
3159
+ name
3160
+ companyRegistrationNumber
3161
+ address
3162
+ postcodeZone
3163
+ postcode
3164
+ addressLine
3165
+ line[]
3166
+ charityDetails
3167
+ charityName
3168
+ charityAddress
3169
+ postcodeZone
3170
+ postcode
3171
+ addressLine
3172
+ line[]
3173
+ charityType
3174
+ value
3175
+ tradingName
3176
+ partyNumber
3177
+ partyDescription
3178
+ registeredProprietorParty
3179
+ privateIndividual
3180
+ name
3181
+ forenamesName
3182
+ surnameName
3183
+ alias
3184
+ forenamesName
3185
+ surnameName
3186
+ organization
3187
+ name
3188
+ companyRegistrationNumber
3189
+ address
3190
+ postcodeZone
3191
+ postcode
3192
+ addressLine
3193
+ line[]
3194
+ charityDetails
3195
+ charityName
3196
+ charityAddress
3197
+ postcodeZone
3198
+ postcode
3199
+ addressLine
3200
+ line[]
3201
+ charityType
3202
+ value
3203
+ tradingName
3204
+ partyNumber
3205
+ partyDescription
3206
+ lease
3207
+ leaseEntry[
3208
+ leaseTerm
3209
+ leaseDate
3210
+ Rent
3211
+ leaseParty[
3212
+ privateIndividual
3213
+ name
3214
+ forenamesName
3215
+ surnameName
3216
+ alias
3217
+ forenamesName
3218
+ surnameName
3219
+ organization
3220
+ name
3221
+ companyRegistrationNumber
3222
+ address
3223
+ postcodeZone
3224
+ postcode
3225
+ addressLine
3226
+ line[]
3227
+ charityDetails
3228
+ charityName
3229
+ charityAddress
3230
+ postcodeZone
3231
+ postcode
3232
+ addressLine
3233
+ line[]
3234
+ charityType
3235
+ value
3236
+ tradingName
3237
+ partyNumber
3238
+ partyDescription
3239
+ ]
3240
+ entryDetails
3241
+ entryNumber
3242
+ entryText
3243
+ registrationDate
3244
+ subRegisterCode
3245
+ scheduleCode
3246
+ infills
3247
+ ]
3248
+ restrictionDetails
3249
+ restrictionEntry
3250
+ chargeRelatedRestriction
3251
+ restrictionTypeCode
3252
+ chargeID
3253
+ entryDetails
3254
+ entryNumber
3255
+ entryText
3256
+ registrationDate
3257
+ subRegisterCode
3258
+ scheduleCode
3259
+ infills
3260
+ chargeRestriction
3261
+ restrictionTypeCode
3262
+ chargeID
3263
+ entryDetails
3264
+ entryNumber
3265
+ entryText
3266
+ registrationDate
3267
+ subRegisterCode
3268
+ scheduleCode
3269
+ infills
3270
+ nonChargeRestriction
3271
+ restrictionTypeCode
3272
+ chargeID
3273
+ entryDetails
3274
+ entryNumber
3275
+ entryText
3276
+ registrationDate
3277
+ subRegisterCode
3278
+ scheduleCode
3279
+ infills
3280
+ charge
3281
+ chargeEntry
3282
+ chargeID
3283
+ chargeDate
3284
+ registeredCharge
3285
+ multipleTitleIndicator
3286
+ entryDetails
3287
+ entryNumber
3288
+ entryText
3289
+ registrationDate
3290
+ subRegisterCode
3291
+ scheduleCode
3292
+ infills
3293
+ chargeProprietor
3294
+ chargeeParty
3295
+ privateIndividual
3296
+ name
3297
+ forenamesName
3298
+ surnameName
3299
+ alias
3300
+ forenamesName
3301
+ surnameName
3302
+ organization
3303
+ name
3304
+ companyRegistrationNumber
3305
+ address
3306
+ postcodeZone
3307
+ postcode
3308
+ addressLine
3309
+ line[]
3310
+ charityDetails
3311
+ charityName
3312
+ charityAddress
3313
+ postcodeZone
3314
+ postcode
3315
+ addressLine
3316
+ line[]
3317
+ charityType
3318
+ value
3319
+ tradingName
3320
+ partyNumber
3321
+ partyDescription
3322
+ entryDetails
3323
+ entryNumber
3324
+ entryText
3325
+ registrationDate
3326
+ subRegisterCode
3327
+ scheduleCode
3328
+ infills
3329
+ subCharge
3330
+ chargeDate
3331
+ registeredCharge
3332
+ multipleTitleIndicator
3333
+ entryDetails
3334
+ entryNumber
3335
+ entryText
3336
+ registrationDate
3337
+ subRegisterCode
3338
+ scheduleCode
3339
+ infills
3340
+ chargeProprietor
3341
+ chargeeParty
3342
+ privateIndividual
3343
+ name
3344
+ forenamesName
3345
+ surnameName
3346
+ alias
3347
+ forenamesName
3348
+ surnameName
3349
+ organization
3350
+ name
3351
+ companyRegistrationNumber
3352
+ address
3353
+ postcodeZone
3354
+ postcode
3355
+ addressLine
3356
+ line[]
3357
+ charityDetails
3358
+ charityName
3359
+ charityAddress
3360
+ postcodeZone
3361
+ postcode
3362
+ addressLine
3363
+ line[]
3364
+ charityType
3365
+ value
3366
+ tradingName
3367
+ partyNumber
3368
+ partyDescription
3369
+ entryDetails
3370
+ entryNumber
3371
+ entryText
3372
+ registrationDate
3373
+ subRegisterCode
3374
+ scheduleCode
3375
+ infills
3376
+ agreedNotice
3377
+ agreedNoticeEntry
3378
+ agreedNoticeType
3379
+ entryDetails
3380
+ entryNumber
3381
+ entryText
3382
+ registrationDate
3383
+ subRegisterCode
3384
+ scheduleCode
3385
+ infills
3386
+ bankruptcy
3387
+ entryDetails
3388
+ entryNumber
3389
+ entryText
3390
+ registrationDate
3391
+ subRegisterCode
3392
+ scheduleCode
3393
+ infills
3394
+ caution
3395
+ entryDetails
3396
+ entryNumber
3397
+ entryText
3398
+ registrationDate
3399
+ subRegisterCode
3400
+ scheduleCode
3401
+ infills
3402
+ deedOfPostponement
3403
+ entryDetails
3404
+ entryNumber
3405
+ entryText
3406
+ registrationDate
3407
+ subRegisterCode
3408
+ scheduleCode
3409
+ infills
3410
+ greenOutEntry
3411
+ entryDetails
3412
+ entryNumber
3413
+ entryText
3414
+ registrationDate
3415
+ subRegisterCode
3416
+ scheduleCode
3417
+ infills
3418
+ homeRights
3419
+ homeRightsEntry
3420
+ changeOfAddressIndicator
3421
+ homeRightsEntryDetails
3422
+ entryNumber
3423
+ entryText
3424
+ registrationDate
3425
+ subRegisterCode
3426
+ scheduleCode
3427
+ infills
3428
+ changeOfAddressEntryDetails
3429
+ entryNumber
3430
+ entryText
3431
+ registrationDate
3432
+ subRegisterCode
3433
+ scheduleCode
3434
+ infills
3435
+ rentCharge
3436
+ entryDetails
3437
+ entryNumber
3438
+ entryText
3439
+ registrationDate
3440
+ subRegisterCode
3441
+ scheduleCode
3442
+ infills
3443
+ vendorsLien
3444
+ entryDetails
3445
+ entryNumber
3446
+ entryText
3447
+ registrationDate
3448
+ subRegisterCode
3449
+ scheduleCode
3450
+ infills
3451
+ rightOfPreEmption
3452
+ entryDetails
3453
+ entryNumber
3454
+ entryText
3455
+ registrationDate
3456
+ subRegisterCode
3457
+ scheduleCode
3458
+ infills
3459
+ documentDetails
3460
+ document
3461
+ documentType
3462
+ documentDate
3463
+ entryNumber
3464
+ planOnlyIndicator
3465
+ filedUnder
3466
+ registerDescription
3467
+ unilateralNoticeDetails
3468
+ unilateralNoticeEntry
3469
+ unilateralNotice
3470
+ entryNumber
3471
+ entryText
3472
+ registrationDate
3473
+ subRegisterCode
3474
+ scheduleCode
3475
+ infills
3476
+ unilateralNoticeBeneficiary
3477
+ entryNumber
3478
+ entryText
3479
+ registrationDate
3480
+ subRegisterCode
3481
+ scheduleCode
3482
+ infills
3483
+ deathOfProprietor
3484
+ entryDetails
3485
+ entryNumber
3486
+ entryText
3487
+ registrationDate
3488
+ subRegisterCode
3489
+ scheduleCode
3490
+ infills
3491
+ discountCharge
3492
+ entryDetails
3493
+ entryNumber
3494
+ entryText
3495
+ registrationDate
3496
+ subRegisterCode
3497
+ scheduleCode
3498
+ infills
3499
+ equitableCharge
3500
+ entryDetails
3501
+ entryNumber
3502
+ entryText
3503
+ registrationDate
3504
+ subRegisterCode
3505
+ scheduleCode
3506
+ infills
3507
+ notedCharge
3508
+ entryDetails
3509
+ entryNumber
3510
+ entryText
3511
+ registrationDate
3512
+ subRegisterCode
3513
+ scheduleCode
3514
+ infills
3515
+ creditorsNotice
3516
+ entryDetails
3517
+ entryNumber
3518
+ entryText
3519
+ registrationDate
3520
+ subRegisterCode
3521
+ scheduleCode
3522
+ infills
3523
+ unidentifiedEntry
3524
+ entryDetails
3525
+ entryNumber
3526
+ entryText
3527
+ registrationDate
3528
+ subRegisterCode
3529
+ scheduleCode
3530
+ infills
3531
+ ccbiEntry
3532
+ entryDetails
3533
+ entryNumber
3534
+ entryText
3535
+ registrationDate
3536
+ subRegisterCode
3537
+ scheduleCode
3538
+ infills
3539
+ ocRegisterData
3540
+ propertyRegister
3541
+ districtDetails
3542
+ entryText
3543
+ registerEntry
3544
+ entryNumber
3545
+ entryDate
3546
+ entryType
3547
+ entryText
3548
+ schedule
3549
+ scheduleType
3550
+ scheduleEntry
3551
+ entryNumber
3552
+ entryDate
3553
+ entryType
3554
+ entryText
3555
+ proprietorshipRegister
3556
+ districtDetails
3557
+ entryText
3558
+ registerEntry
3559
+ entryNumber
3560
+ entryDate
3561
+ entryType
3562
+ entryText
3563
+ schedule
3564
+ scheduleType
3565
+ scheduleEntry
3566
+ entryNumber
3567
+ entryDate
3568
+ entryType
3569
+ entryText
3570
+ chargesRegister
3571
+ districtDetails
3572
+ entryText
3573
+ registerEntry
3574
+ entryNumber
3575
+ entryDate
3576
+ entryType
3577
+ entryText
3578
+ schedule
3579
+ scheduleType
3580
+ scheduleEntry
3581
+ entryNumber
3582
+ entryDate
3583
+ entryType
3584
+ entryText
3585
+ additionalDocuments[
3586
+ documentType
3587
+ documentTypeCode
3588
+ documentDate
3589
+ retrievedOn
3590
+ filedUnder
3591
+ ]
3592
+ ]
3593
+ searches[
3594
+ displayName
3595
+ productCode
3596
+ providerName
3597
+ providerReference
3598
+ status
3599
+ orderDate
3600
+ expectedDeliveryDate
3601
+ searchContentTypes[]
3602
+ reportDate
3603
+ ]
3604
+ documents[
3605
+ displayName
3606
+ fileName
3607
+ mimeType
3608
+ documentType
3609
+ externalIds{*}
3610
+ isDeleted
3611
+ summary
3612
+ ]
3613
+ surveys[
3614
+ outside
3615
+ chimneyStacks
3616
+ condition
3617
+ inspectionLimitations
3618
+ defects
3619
+ advisories
3620
+ notes
3621
+ visibility
3622
+ visibilityRestriction
3623
+ flashings
3624
+ defectsFlag
3625
+ defectsList
3626
+ photos[
3627
+ photoId
3628
+ report
3629
+ ]
3630
+ roofCoverings
3631
+ condition
3632
+ defects
3633
+ advisories
3634
+ notes
3635
+ visibility
3636
+ restriction
3637
+ features
3638
+ mainPitchedCovering
3639
+ mainPitchedFeatures
3640
+ mainFlatCovering
3641
+ mainFlatFeatures
3642
+ additionalPitchedCovering
3643
+ additionalPitchedFeatures
3644
+ additionalDetail
3645
+ additionalFeatures
3646
+ bay
3647
+ bayFeatures
3648
+ dormer
3649
+ dormerFeatures
3650
+ defectsGeneral
3651
+ photos[
3652
+ photoId
3653
+ report
3654
+ ]
3655
+ mainPitchedDefects
3656
+ mainPitchedDefectsDetail
3657
+ mainFlatDefects
3658
+ mainFlatDefectsDetail
3659
+ additionalPitchedDefects
3660
+ additionalPitchedDefectsDetail
3661
+ additionalFlatDefects
3662
+ additionalFlatDefectsDetail
3663
+ bayDefects
3664
+ bayDefectsDetail
3665
+ dormerDefects
3666
+ dormerDefectsDetail
3667
+ rainwaterPipesGutters
3668
+ condition
3669
+ inspectionLimitations
3670
+ defects
3671
+ advisories
3672
+ notes
3673
+ visibility
3674
+ restrictions
3675
+ features
3676
+ gutterDescription
3677
+ downpipeDescription
3678
+ hopperHeadDescription
3679
+ gutterIssues
3680
+ gutterIssueLocation
3681
+ gutterDefect
3682
+ downpipeDefect
3683
+ hopperHeadDefect
3684
+ photos[
3685
+ photoId
3686
+ report
3687
+ ]
3688
+ mainWalls
3689
+ condition
3690
+ inspectionLimitations
3691
+ defects
3692
+ advisories
3693
+ notes
3694
+ visibility
3695
+ restrictions
3696
+ externalElevation
3697
+ construction
3698
+ features
3699
+ dpc
3700
+ structuralMovement
3701
+ movementType
3702
+ movementCause
3703
+ movementStatus
3704
+ otherDefects
3705
+ otherDefectsDescription
3706
+ cladding
3707
+ fireRisk
3708
+ advice
3709
+ extensions
3710
+ movementLocation
3711
+ photos[
3712
+ photoId
3713
+ report
3714
+ ]
3715
+ extension1
3716
+ detail
3717
+ construction
3718
+ dpc
3719
+ defects
3720
+ defectDescription
3721
+ movementType
3722
+ movementCause
3723
+ movementStatus
3724
+ extension2
3725
+ detail
3726
+ construction
3727
+ dpc
3728
+ defects
3729
+ defectDescription
3730
+ movementType
3731
+ movementCause
3732
+ movementStatus
3733
+ extension3
3734
+ detail
3735
+ construction
3736
+ dpc
3737
+ defects
3738
+ defectDescription
3739
+ movementType
3740
+ movementCause
3741
+ movementStatus
3742
+ windows
3743
+ condition
3744
+ inspectionLimitations
3745
+ defects
3746
+ advisories
3747
+ notes
3748
+ visibility
3749
+ visibilityRestrictions
3750
+ glazingType
3751
+ glazingDescription
3752
+ glazingHeight
3753
+ glazingSafety
3754
+ glazingDefects
3755
+ glazingDefectList
3756
+ photos[
3757
+ photoId
3758
+ report
3759
+ ]
3760
+ outsideDoors
3761
+ condition
3762
+ inspectionLimitations
3763
+ defects
3764
+ advisories
3765
+ notes
3766
+ visibility
3767
+ restrictions
3768
+ glazingDescription
3769
+ glazingType
3770
+ glazingHeight
3771
+ glazingSafety
3772
+ glazingDefects
3773
+ glazingDefectDetails
3774
+ photos[
3775
+ photoId
3776
+ report
3777
+ ]
3778
+ conservatoryPorches
3779
+ condition
3780
+ inspectionLimitations
3781
+ defects
3782
+ advisories
3783
+ notes
3784
+ conservatory
3785
+ porch
3786
+ restrictions
3787
+ visibility
3788
+ conservatoryWall
3789
+ conservatoryFrame
3790
+ conservatoryGlazing
3791
+ conservatoryRoof
3792
+ conservatorySeparate
3793
+ conservatoryHeating
3794
+ porchWall
3795
+ porchFrame
3796
+ porchGlazing
3797
+ porchRoof
3798
+ porchPitched
3799
+ porchFlat
3800
+ defectsFlag
3801
+ defectLocation
3802
+ conservatoryEconomic
3803
+ conservatoryStructural
3804
+ conservatoryMovement
3805
+ conservatoryMovementCause
3806
+ conservatoryMovementStatus
3807
+ conservatoryDefects
3808
+ conservatoryDefectDetail
3809
+ porchEconomic
3810
+ porchStructural
3811
+ porchMovement
3812
+ porchMovementCause
3813
+ porchMovementStatus
3814
+ porchDefects
3815
+ porchDefectDetail
3816
+ photos[
3817
+ photoId
3818
+ report
3819
+ ]
3820
+ otherJoinery
3821
+ condition
3822
+ inspectionLimitations
3823
+ defects
3824
+ advisories
3825
+ notes
3826
+ visibility
3827
+ restrictions
3828
+ features
3829
+ fasciaDescription
3830
+ bargeboardsDescription
3831
+ soffitsDescription
3832
+ claddingDescription
3833
+ issues
3834
+ issueLocation
3835
+ issueDetail
3836
+ photos[
3837
+ photoId
3838
+ report
3839
+ ]
3840
+ other
3841
+ condition
3842
+ inspectionLimitations
3843
+ defects
3844
+ advisories
3845
+ notes
3846
+ visibility
3847
+ defectsFlag
3848
+ defectDetail
3849
+ fireSafety
3850
+ photos[
3851
+ photoId
3852
+ report
3853
+ ]
3854
+ inside
3855
+ roofStructure
3856
+ condition
3857
+ inspectionLimitations
3858
+ defects
3859
+ advisories
3860
+ notes
3861
+ visibility
3862
+ restrictions
3863
+ lining
3864
+ insulation
3865
+ firewall
3866
+ features
3867
+ photos
3868
+ photoId
3869
+ report
3870
+ additional1Visibility
3871
+ additional1Restrictions
3872
+ additional1Description
3873
+ additional1Lining
3874
+ additional1Insulation
3875
+ additional1Defects
3876
+ additional1DefectDetail
3877
+ additional2Visibility
3878
+ additional2Restrictions
3879
+ additional2Description
3880
+ additional2Lining
3881
+ additional2Insulation
3882
+ additional2Defects
3883
+ additional2DefectDetail
3884
+ defectDetail
3885
+ ceilings
3886
+ condition
3887
+ inspectionLimitations
3888
+ defects
3889
+ advisories
3890
+ notes
3891
+ visibility
3892
+ restrictions
3893
+ defectDetail
3894
+ integralGarageDefects
3895
+ photos
3896
+ photoId
3897
+ report
3898
+ wallsPartitions
3899
+ condition
3900
+ inspectionLimitations
3901
+ defects
3902
+ advisories
3903
+ notes
3904
+ visibility
3905
+ restrictions
3906
+ construction
3907
+ adequateSupport
3908
+ wallFinish
3909
+ defectsMinor
3910
+ defectsMajor
3911
+ photos
3912
+ photoId
3913
+ report
3914
+ floors
3915
+ condition
3916
+ inspectionLimitations
3917
+ defects
3918
+ advisories
3919
+ notes
3920
+ visibility
3921
+ restrictions
3922
+ generalDefects
3923
+ solidDefects
3924
+ timberDefects
3925
+ photos
3926
+ photoId
3927
+ report
3928
+ fireplaces
3929
+ condition
3930
+ inspectionLimitations
3931
+ defects
3932
+ advisories
3933
+ notes
3934
+ visibility
3935
+ restrictions
3936
+ defectDetail
3937
+ photos
3938
+ photoId
3939
+ report
3940
+ builtinFittings
3941
+ condition
3942
+ inspectionLimitations
3943
+ defects
3944
+ advisories
3945
+ notes
3946
+ visibility
3947
+ restrictions
3948
+ defectDetail
3949
+ advice
3950
+ photos
3951
+ photoId
3952
+ report
3953
+ woodwork
3954
+ condition
3955
+ inspectionLimitations
3956
+ defects
3957
+ advisories
3958
+ notes
3959
+ visibility
3960
+ restrictions
3961
+ doorDescription
3962
+ stairDescription
3963
+ joineryDescription
3964
+ defectsDetail
3965
+ defectsDoorsWindows
3966
+ defectsStairs
3967
+ photos
3968
+ photoId
3969
+ report
3970
+ bathroomFittings
3971
+ condition
3972
+ inspectionLimitations
3973
+ defects
3974
+ advisories
3975
+ notes
3976
+ visibility
3977
+ restrictions
3978
+ defectDetail
3979
+ photos
3980
+ photoId
3981
+ report
3982
+ other
3983
+ condition
3984
+ inspectionLimitations
3985
+ defects
3986
+ advisories
3987
+ notes
3988
+ visibility
3989
+ roofConversion
3990
+ cellar
3991
+ commonAreas
3992
+ alarms
3993
+ defectsRoof
3994
+ defectsBasement
3995
+ defectsOther
3996
+ photos
3997
+ photoId
3998
+ report
3999
+ services
4000
+ electricity
4001
+ condition
4002
+ inspectionLimitations
4003
+ defects
4004
+ advisories
4005
+ notes
4006
+ photos[
4007
+ photoId
4008
+ report
4009
+ ]
4010
+ visibility
4011
+ restrictions
4012
+ meter
4013
+ consumerUnit
4014
+ cutOffDevices
4015
+ wiring
4016
+ additionalFeatures
4017
+ supplementary
4018
+ testCertificate
4019
+ defectsPresent
4020
+ defectDetail
4021
+ gasOil
4022
+ condition
4023
+ inspectionLimitations
4024
+ defects
4025
+ advisories
4026
+ notes
4027
+ photos[
4028
+ photoId
4029
+ report
4030
+ ]
4031
+ visibility
4032
+ restrictions
4033
+ meter
4034
+ privateGas
4035
+ tankLocation
4036
+ tankInside
4037
+ tankOutside
4038
+ tankType
4039
+ testCertificate
4040
+ defectsPresent
4041
+ defectDetail
4042
+ water
4043
+ condition
4044
+ inspectionLimitations
4045
+ defects
4046
+ advisories
4047
+ notes
4048
+ photos[
4049
+ photoId
4050
+ report
4051
+ ]
4052
+ visibility
4053
+ restrictions
4054
+ stopTap
4055
+ supply
4056
+ distribution
4057
+ storageTank
4058
+ defectsPresent
4059
+ defectDetail
4060
+ heating
4061
+ condition
4062
+ inspectionLimitations
4063
+ defects
4064
+ advisories
4065
+ notes
4066
+ photos[
4067
+ photoId
4068
+ report
4069
+ ]
4070
+ visibility
4071
+ restrictions
4072
+ extent
4073
+ source
4074
+ emitter
4075
+ pipework
4076
+ controls
4077
+ otherFeatures
4078
+ testCertificate
4079
+ defectsPresent
4080
+ defectDetail
4081
+ waterHeating
4082
+ condition
4083
+ inspectionLimitations
4084
+ defects
4085
+ advisories
4086
+ notes
4087
+ photos[
4088
+ photoId
4089
+ report
4090
+ ]
4091
+ visibility
4092
+ restrictions
4093
+ primarySource
4094
+ supplementarySource
4095
+ storage
4096
+ pipework
4097
+ defectsPresent
4098
+ defectDetail
4099
+ drainage
4100
+ condition
4101
+ inspectionLimitations
4102
+ defects
4103
+ advisories
4104
+ notes
4105
+ photos[
4106
+ photoId
4107
+ report
4108
+ ]
4109
+ visibility
4110
+ restrictions
4111
+ system
4112
+ privateSystem
4113
+ location
4114
+ runOff
4115
+ features
4116
+ defectsPresent
4117
+ defectDetail
4118
+ commonServices
4119
+ condition
4120
+ inspectionLimitations
4121
+ defects
4122
+ advisories
4123
+ notes
4124
+ photos[
4125
+ photoId
4126
+ report
4127
+ ]
4128
+ visibility
4129
+ type
4130
+ defectsPresent
4131
+ defectDetail
4132
+ grounds
4133
+ garage
4134
+ condition
4135
+ inspectionLimitations
4136
+ defects
4137
+ advisories
4138
+ notes
4139
+ photos
4140
+ photoId
4141
+ report
4142
+ visibility
4143
+ restrictions
4144
+ wallConstruction
4145
+ roofConstruction
4146
+ location
4147
+ structuralMovement
4148
+ movementType
4149
+ movementStatus
4150
+ hasDefects
4151
+ defectDetail
4152
+ permanentOutbuildings
4153
+ condition
4154
+ inspectionLimitations
4155
+ defects
4156
+ advisories
4157
+ notes
4158
+ photos
4159
+ photoId
4160
+ report
4161
+ visibility
4162
+ restrictions
4163
+ type
4164
+ wallConstruction
4165
+ roofConstruction
4166
+ location
4167
+ hasDefects
4168
+ defectDetail
4169
+ other
4170
+ condition
4171
+ inspectionLimitations
4172
+ defects
4173
+ advisories
4174
+ notes
4175
+ photos
4176
+ photoId
4177
+ report
4178
+ visibility
4179
+ restrictions
4180
+ gardens
4181
+ exceed1Acre
4182
+ boundaries
4183
+ fenceDescription
4184
+ fenceIssues
4185
+ fenceDefects
4186
+ wallDescription
4187
+ wallIssues
4188
+ wallDefects
4189
+ hedgeDescription
4190
+ hedgeIssues
4191
+ hedgeDefects
4192
+ otherBoundaryDescription
4193
+ hardscaping
4194
+ drivewayLandscaping
4195
+ driveMaterial
4196
+ driveDefects
4197
+ driveDefectDetail
4198
+ patioMaterial
4199
+ patioDefects
4200
+ patioDefectDetail
4201
+ pathMaterial
4202
+ pathDefects
4203
+ pathDefectDetail
4204
+ deckingMaterial
4205
+ deckingDefects
4206
+ deckingDefectDetail
4207
+ buildingRegs
4208
+ otherFeatures
4209
+ japaneseKnotweed
4210
+ otherDefects
4211
+ otherDefectDetail
4212
+ legalIssues
4213
+ notes
4214
+ regulation
4215
+ guarantees
4216
+ otherMatters
4217
+ rightsOfWay
4218
+ risks
4219
+ buildingRisks
4220
+ groundsRisks
4221
+ peopleRisks
4222
+ otherRisks
4223
+ propertyValuation
4224
+ valuation
4225
+ valuationDiscriminator
4226
+ value
4227
+ valueWords
4228
+ reinstatement
4229
+ reinstatementWords
4230
+ tenure
4231
+ lease
4232
+ areaOfProperty
4233
+ valuationInformation
4234
+ additionalAssumptions
4235
+ considerations
4236
+ declaration
4237
+ surveyorQuals
4238
+ companyAddress
4239
+ phoneNumber
4240
+ faxNumber
4241
+ email
4242
+ website
4243
+ clientName
4244
+ misc
4245
+ photoFront
4246
+ value
4247
+ photoId
4248
+ report
4249
+ areaOfProperty
4250
+ value
4251
+ photoId
4252
+ report
4253
+ reportDate
4254
+ epc
4255
+ agentName
4256
+ access
4257
+ propertyQuestions
4258
+ propertyChanges
4259
+ alterations
4260
+ furnishings
4261
+ floorCoverings
4262
+ propertyType
4263
+ accommodationLocation
4264
+ propertyStyle
4265
+ topography
4266
+ floodingRisk
4267
+ coastalLocation
4268
+ siteRisk
4269
+ highVoltage
4270
+ buildFormat
4271
+ areaDetails
4272
+ groundRentType
4273
+ conservationArea
4274
+ valuationFactor
4275
+ conflict
4276
+ conflictType
4277
+ suspiciousActivity
4278
+ btl
4279
+ photoConsent
4280
+ adjacentCommercial
4281
+ commercialLocation
4282
+ commercialTypeAbove
4283
+ commercialTypeAdjacent
4284
+ separateAccess
4285
+ communal
4286
+ communalFacilities
4287
+ listedBuilding
4288
+ listedClassification
4289
+ exla
4290
+ exNature
4291
+ tenureSource
4292
+ roadType
4293
+ roadMadeUp
4294
+ pedestrian
4295
+ constructionType
4296
+ nonTradType
4297
+ nonTradSystem
4298
+ designatedDefective
4299
+ epcAvailable
4300
+ epcReason
4301
+ epcDiscrepancies
4302
+ epcDiscrepancyDetail
4303
+ ]
4304
+ valuations[
4305
+ valuationId
4306
+ valuationTimestamp
4307
+ capitalValue
4308
+ confidenceLevel
4309
+ confidenceBand
4310
+ rentalValue
4311
+ rentalConfidenceLevel
4312
+ reinstatementCost
4313
+ checkValuationResult
4314
+ instructionType
4315
+ valuationContext
4316
+ valuationType
4317
+ ]
4318
+ valuationComparisonData
4319
+ propertyDetails[
4320
+ propertyListingInfo
4321
+ listingType
4322
+ soldDate
4323
+ soldPrice
4324
+ listedDate
4325
+ listPrice
4326
+ propertyFullDescription
4327
+ uprn
4328
+ propertyType
4329
+ marketingTenure
4330
+ basicDetails
4331
+ bedrooms
4332
+ bathrooms
4333
+ buildInformation
4334
+ internalArea
4335
+ area
4336
+ units
4337
+ yearOfBuild
4338
+ media[
4339
+ mediaType
4340
+ mediaUrl
4341
+ caption
4342
+ ]
4343
+ ]
4344
+ propertyPricing
4345
+ rentalEstimate
4346
+ estimatedAmount
4347
+ paymentFrequency
4348
+ estimatedPrice
4349
+ yield
4350
+ priceEstimationDetails
4351
+ credibilitySources[]
4352
+ pricingMethodology
4353
+ contracts[
4354
+ contract
4355
+ template
4356
+ name
4357
+ url
4358
+ externalIds{*}
4359
+ requiredSignatories[
4360
+ role
4361
+ requiresAll
4362
+ ]
4363
+ terms
4364
+ signatures[
4365
+ name
4366
+ signedOn
4367
+ externalIds{*}
4368
+ ]
4369
+ ]
4370
+ chain
4371
+ onwardPurchase[
4372
+ transactionId
4373
+ externalIds{*}
4374
+ address
4375
+ buildingNumber
4376
+ buildingName
4377
+ subBuilding
4378
+ street
4379
+ line1
4380
+ line2
4381
+ line 3
4382
+ town
4383
+ postcode
4384
+ homeNation
4385
+ uprn
4386
+ sellingAgent
4387
+ ]
4388
+ milestones
4389
+ listed
4390
+ expected
4391
+ completed
4392
+ legalForms
4393
+ started
4394
+ completed
4395
+ soldSubjectToContract
4396
+ completed
4397
+ searches
4398
+ started
4399
+ expected
4400
+ completed
4401
+ enquiries
4402
+ started
4403
+ completed
4404
+ exchangeOfContracts
4405
+ expected
4406
+ completed
4407
+ completion
4408
+ started
4409
+ expected
4410
+ completed
4411
+ offers{*}
4412
+ amount
4413
+ currency
4414
+ status
4415
+ inclusions[]
4416
+ exclusions[]
4417
+ conditions[]
4418
+ externalIds{*}
4419
+ buyerCircumstances
4420
+ intendedUse
4421
+ firstTimeBuyer
4422
+ rightToBuy
4423
+ ltdCompanyPurchase
4424
+ numberOfOwners
4425
+ numberOfExpats
4426
+ giftedEquity
4427
+ numberOfGiftedDeposits
4428
+ requiresMortgage
4429
+ helpToBuyEquityLoan
4430
+ armedForcesHelpToBuy
4431
+ numberOfHelpToBuyIsas
4432
+ bridgingFinanceRepresentation
4433
+ depositAmount
4434
+ loanToValue
4435
+ numberOfBorrowers
4436
+ jointProprietorSoleMortgagor
4437
+ soleProprietorJointMortgagor
4438
+ deedOfPostponement
4439
+ separateRepresentation
4440
+ oldestBorrowerAge
4441
+ mortgageTerm
4442
+ adverseCredit
4443
+ employmentType
4444
+ existingMortgagedProperties
4445
+ annualIncome
4446
+ residencyStatus
4447
+ nominatedLender
4448
+ enquiries{*}
4449
+ subject
4450
+ status
4451
+ messages{*}
4452
+ datetime
4453
+ originatorRole
4454
+ destinationRole
4455
+ messageText
4456
+ externalIds{*}
4457
+ resolutionCondition