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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (263) hide show
  1. package/charming-napier-57a77c/LICENSE +21 -0
  2. package/charming-napier-57a77c/README.md +430 -0
  3. package/charming-napier-57a77c/docs/sef25-extensions-ui-spec.md +355 -0
  4. package/charming-napier-57a77c/index.js +654 -0
  5. package/charming-napier-57a77c/package-lock.json +7297 -0
  6. package/charming-napier-57a77c/package.json +41 -0
  7. package/charming-napier-57a77c/src/examples/v1/exampleAddParticipantVouch.json +32 -0
  8. package/charming-napier-57a77c/src/examples/v1/exampleDocumentedVouch.json +40 -0
  9. package/charming-napier-57a77c/src/examples/v1/exampleElectronicRecord.json +30 -0
  10. package/charming-napier-57a77c/src/examples/v1/exampleTransaction.json +878 -0
  11. package/charming-napier-57a77c/src/examples/v1/exampleVouch.json +25 -0
  12. package/charming-napier-57a77c/src/examples/v2/exampleTransaction.json +901 -0
  13. package/charming-napier-57a77c/src/examples/v3/exampleAddParticipantVouch.json +38 -0
  14. package/charming-napier-57a77c/src/examples/v3/exampleCustomOverlay.json +55 -0
  15. package/charming-napier-57a77c/src/examples/v3/exampleCustomOverlay2.json +93 -0
  16. package/charming-napier-57a77c/src/examples/v3/exampleDocumentedVouch.json +47 -0
  17. package/charming-napier-57a77c/src/examples/v3/exampleElectronicRecord.json +36 -0
  18. package/charming-napier-57a77c/src/examples/v3/exampleTransaction.json +1038 -0
  19. package/charming-napier-57a77c/src/examples/v3/exampleVouch.json +32 -0
  20. package/charming-napier-57a77c/src/mappings/SendPropertyDetailsRequestSchema.json +1588 -0
  21. package/charming-napier-57a77c/src/mappings/adf.js +198 -0
  22. package/charming-napier-57a77c/src/schemas/v1/GeoJSON.json +1279 -0
  23. package/charming-napier-57a77c/src/schemas/v1/baspiNotes.html +102 -0
  24. package/charming-napier-57a77c/src/schemas/v1/energy-performance-certificate.json +124 -0
  25. package/charming-napier-57a77c/src/schemas/v1/freehold-information.json +2051 -0
  26. package/charming-napier-57a77c/src/schemas/v1/leasehold-information.json +2064 -0
  27. package/charming-napier-57a77c/src/schemas/v1/legal-information.json +1045 -0
  28. package/charming-napier-57a77c/src/schemas/v1/material-facts.json +2109 -0
  29. package/charming-napier-57a77c/src/schemas/v1/pdtf-transaction-search-results.json +40 -0
  30. package/charming-napier-57a77c/src/schemas/v1/pdtf-transaction.json +191 -0
  31. package/charming-napier-57a77c/src/schemas/v1/searches/drainage-and-water.json +261 -0
  32. package/charming-napier-57a77c/src/schemas/v1/searches/local-land-charges.json +69 -0
  33. package/charming-napier-57a77c/src/schemas/v1/searches/local-searches-required.json +857 -0
  34. package/charming-napier-57a77c/src/schemas/v1/searches.json +237 -0
  35. package/charming-napier-57a77c/src/schemas/v1/title-deed.json +841 -0
  36. package/charming-napier-57a77c/src/schemas/v2/baspiNotes.html +102 -0
  37. package/charming-napier-57a77c/src/schemas/v2/combined.json +37731 -0
  38. package/charming-napier-57a77c/src/schemas/v2/overlays/baspi.json +8132 -0
  39. package/charming-napier-57a77c/src/schemas/v2/overlays/con29DW.json +705 -0
  40. package/charming-napier-57a77c/src/schemas/v2/overlays/con29R.json +2956 -0
  41. package/charming-napier-57a77c/src/schemas/v2/overlays/fme1.json +1259 -0
  42. package/charming-napier-57a77c/src/schemas/v2/overlays/llc1.json +25 -0
  43. package/charming-napier-57a77c/src/schemas/v2/overlays/lpe1.json +2171 -0
  44. package/charming-napier-57a77c/src/schemas/v2/overlays/nts.json +326 -0
  45. package/charming-napier-57a77c/src/schemas/v2/overlays/oc1.json +2799 -0
  46. package/charming-napier-57a77c/src/schemas/v2/overlays/piq.json +3419 -0
  47. package/charming-napier-57a77c/src/schemas/v2/overlays/rds.json +3736 -0
  48. package/charming-napier-57a77c/src/schemas/v2/overlays/ta10.json +5306 -0
  49. package/charming-napier-57a77c/src/schemas/v2/overlays/ta6.json +4533 -0
  50. package/charming-napier-57a77c/src/schemas/v2/overlays/ta7.json +1045 -0
  51. package/charming-napier-57a77c/src/schemas/v2/pdtf-transaction.json +34351 -0
  52. package/charming-napier-57a77c/src/schemas/v2/skeleton.json +3973 -0
  53. package/charming-napier-57a77c/src/schemas/v3/combined.json +48153 -0
  54. package/charming-napier-57a77c/src/schemas/v3/compactSkeleton.txt +4457 -0
  55. package/charming-napier-57a77c/src/schemas/v3/overlays/README.md +299 -0
  56. package/charming-napier-57a77c/src/schemas/v3/overlays/baspi4.json +8027 -0
  57. package/charming-napier-57a77c/src/schemas/v3/overlays/baspi5.json +8177 -0
  58. package/charming-napier-57a77c/src/schemas/v3/overlays/con29DW.json +716 -0
  59. package/charming-napier-57a77c/src/schemas/v3/overlays/con29R.json +2981 -0
  60. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/ac.json +333 -0
  61. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/as.json +74 -0
  62. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/dk.json +32 -0
  63. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/dr.json +73 -0
  64. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/er.json +85 -0
  65. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/fd.json +75 -0
  66. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/hi.json +51 -0
  67. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/hs.json +73 -0
  68. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/ic.json +59 -0
  69. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/jk.json +96 -0
  70. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/la.json +85 -0
  71. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/lc.json +75 -0
  72. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/ma.json +90 -0
  73. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/mc.json +38 -0
  74. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/mi.json +69 -0
  75. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/nd.json +43 -0
  76. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/oa.json +24 -0
  77. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/oc.json +57 -0
  78. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/pc.json +37 -0
  79. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/ph.json +194 -0
  80. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/rw.json +68 -0
  81. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/sb.json +73 -0
  82. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/sc.json +129 -0
  83. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/sd.json +63 -0
  84. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/sf.json +74 -0
  85. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/sl.json +68 -0
  86. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/ta.json +240 -0
  87. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/tf.json +103 -0
  88. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/tr.json +73 -0
  89. package/charming-napier-57a77c/src/schemas/v3/overlays/extensions/wg.json +350 -0
  90. package/charming-napier-57a77c/src/schemas/v3/overlays/fme1.json +1266 -0
  91. package/charming-napier-57a77c/src/schemas/v3/overlays/llc1.json +25 -0
  92. package/charming-napier-57a77c/src/schemas/v3/overlays/lpe1.json +2199 -0
  93. package/charming-napier-57a77c/src/schemas/v3/overlays/nts.json +2157 -0
  94. package/charming-napier-57a77c/src/schemas/v3/overlays/nts2.json +2742 -0
  95. package/charming-napier-57a77c/src/schemas/v3/overlays/ntsl.json +1813 -0
  96. package/charming-napier-57a77c/src/schemas/v3/overlays/ntsl2.json +2217 -0
  97. package/charming-napier-57a77c/src/schemas/v3/overlays/oc1.json +2817 -0
  98. package/charming-napier-57a77c/src/schemas/v3/overlays/piq.json +3321 -0
  99. package/charming-napier-57a77c/src/schemas/v3/overlays/rds.json +3665 -0
  100. package/charming-napier-57a77c/src/schemas/v3/overlays/sef25.json +1639 -0
  101. package/charming-napier-57a77c/src/schemas/v3/overlays/sr24.json +38 -0
  102. package/charming-napier-57a77c/src/schemas/v3/overlays/ta10.json +4654 -0
  103. package/charming-napier-57a77c/src/schemas/v3/overlays/ta6.json +4568 -0
  104. package/charming-napier-57a77c/src/schemas/v3/overlays/ta6ed6.json +6537 -0
  105. package/charming-napier-57a77c/src/schemas/v3/overlays/ta7.json +1537 -0
  106. package/charming-napier-57a77c/src/schemas/v3/overlays/ta7ed5.json +1551 -0
  107. package/charming-napier-57a77c/src/schemas/v3/pdtf-transaction.json +41229 -0
  108. package/charming-napier-57a77c/src/schemas/v3/skeleton.json +5703 -0
  109. package/charming-napier-57a77c/src/schemas/verifiedClaims/README.md +21 -0
  110. package/charming-napier-57a77c/src/schemas/verifiedClaims/pdtf-verified-claims.json +447 -0
  111. package/charming-napier-57a77c/src/tests/v3/buyerCircumstances.test.js +543 -0
  112. package/charming-napier-57a77c/src/tests/v3/caching.test.js +591 -0
  113. package/charming-napier-57a77c/src/tests/v3/enquiries.test.js +1096 -0
  114. package/charming-napier-57a77c/src/tests/v3/extensionOverlays.test.js +1599 -0
  115. package/charming-napier-57a77c/src/tests/v3/offers.test.js +823 -0
  116. package/charming-napier-57a77c/src/tests/v3/patternProperties.test.js +688 -0
  117. package/charming-napier-57a77c/src/tests/v3/ta6ed6.test.js +2374 -0
  118. package/charming-napier-57a77c/src/tests/v3/ta7ed5.test.js +600 -0
  119. package/charming-napier-57a77c/src/tests/v3/transactionSchema.test.js +646 -0
  120. package/charming-napier-57a77c/src/tests/v3/verifiedClaimsValidator.test.js +195 -0
  121. package/charming-napier-57a77c/src/utils/compactSkeleton.js +84 -0
  122. package/charming-napier-57a77c/src/utils/countTokens.js +67 -0
  123. package/charming-napier-57a77c/src/utils/extractExtensionOverlays.js +624 -0
  124. package/charming-napier-57a77c/src/utils/extractOverlay.js +381 -0
  125. package/charming-napier-57a77c/src/utils/extractProperties.js +44 -0
  126. package/charming-napier-57a77c/src/utils/listPathTitles.js +36 -0
  127. package/charming-napier-57a77c/src/utils/minimalSkeleton.js +85 -0
  128. package/charming-napier-57a77c/src/utils/pathList.csv +903 -0
  129. package/charming-napier-57a77c/src/utils/pathSkeleton.js +181 -0
  130. package/keen-dewdney-6ae15b/LICENSE +21 -0
  131. package/keen-dewdney-6ae15b/README.md +334 -0
  132. package/keen-dewdney-6ae15b/index.js +557 -0
  133. package/keen-dewdney-6ae15b/package-lock.json +7296 -0
  134. package/keen-dewdney-6ae15b/package.json +39 -0
  135. package/keen-dewdney-6ae15b/src/examples/v1/exampleAddParticipantVouch.json +32 -0
  136. package/keen-dewdney-6ae15b/src/examples/v1/exampleDocumentedVouch.json +40 -0
  137. package/keen-dewdney-6ae15b/src/examples/v1/exampleElectronicRecord.json +30 -0
  138. package/keen-dewdney-6ae15b/src/examples/v1/exampleTransaction.json +878 -0
  139. package/keen-dewdney-6ae15b/src/examples/v1/exampleVouch.json +25 -0
  140. package/keen-dewdney-6ae15b/src/examples/v2/exampleTransaction.json +901 -0
  141. package/keen-dewdney-6ae15b/src/examples/v3/exampleAddParticipantVouch.json +35 -0
  142. package/keen-dewdney-6ae15b/src/examples/v3/exampleCustomOverlay.json +55 -0
  143. package/keen-dewdney-6ae15b/src/examples/v3/exampleCustomOverlay2.json +93 -0
  144. package/keen-dewdney-6ae15b/src/examples/v3/exampleDocumentedVouch.json +44 -0
  145. package/keen-dewdney-6ae15b/src/examples/v3/exampleElectronicRecord.json +33 -0
  146. package/keen-dewdney-6ae15b/src/examples/v3/exampleTransaction.json +1034 -0
  147. package/keen-dewdney-6ae15b/src/examples/v3/exampleVouch.json +29 -0
  148. package/keen-dewdney-6ae15b/src/mappings/SendPropertyDetailsRequestSchema.json +1588 -0
  149. package/keen-dewdney-6ae15b/src/mappings/adf.js +198 -0
  150. package/keen-dewdney-6ae15b/src/schemas/v1/GeoJSON.json +1279 -0
  151. package/keen-dewdney-6ae15b/src/schemas/v1/baspiNotes.html +102 -0
  152. package/keen-dewdney-6ae15b/src/schemas/v1/energy-performance-certificate.json +124 -0
  153. package/keen-dewdney-6ae15b/src/schemas/v1/freehold-information.json +2051 -0
  154. package/keen-dewdney-6ae15b/src/schemas/v1/leasehold-information.json +2064 -0
  155. package/keen-dewdney-6ae15b/src/schemas/v1/legal-information.json +1045 -0
  156. package/keen-dewdney-6ae15b/src/schemas/v1/material-facts.json +2109 -0
  157. package/keen-dewdney-6ae15b/src/schemas/v1/pdtf-transaction-search-results.json +40 -0
  158. package/keen-dewdney-6ae15b/src/schemas/v1/pdtf-transaction.json +191 -0
  159. package/keen-dewdney-6ae15b/src/schemas/v1/searches/drainage-and-water.json +261 -0
  160. package/keen-dewdney-6ae15b/src/schemas/v1/searches/local-land-charges.json +69 -0
  161. package/keen-dewdney-6ae15b/src/schemas/v1/searches/local-searches-required.json +857 -0
  162. package/keen-dewdney-6ae15b/src/schemas/v1/searches.json +237 -0
  163. package/keen-dewdney-6ae15b/src/schemas/v1/title-deed.json +841 -0
  164. package/keen-dewdney-6ae15b/src/schemas/v2/baspiNotes.html +102 -0
  165. package/keen-dewdney-6ae15b/src/schemas/v2/combined.json +37731 -0
  166. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/baspi.json +8132 -0
  167. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/con29DW.json +705 -0
  168. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/con29R.json +2956 -0
  169. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/fme1.json +1259 -0
  170. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/llc1.json +25 -0
  171. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/lpe1.json +2171 -0
  172. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/nts.json +326 -0
  173. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/oc1.json +2799 -0
  174. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/piq.json +3419 -0
  175. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/rds.json +3736 -0
  176. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/ta10.json +5306 -0
  177. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/ta6.json +4533 -0
  178. package/keen-dewdney-6ae15b/src/schemas/v2/overlays/ta7.json +1045 -0
  179. package/keen-dewdney-6ae15b/src/schemas/v2/pdtf-transaction.json +34351 -0
  180. package/keen-dewdney-6ae15b/src/schemas/v2/skeleton.json +3973 -0
  181. package/keen-dewdney-6ae15b/src/schemas/v3/combined.json +41720 -0
  182. package/keen-dewdney-6ae15b/src/schemas/v3/compactSkeleton.txt +3325 -0
  183. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/README.md +299 -0
  184. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/baspi4.json +7872 -0
  185. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/baspi5.json +8019 -0
  186. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/con29DW.json +716 -0
  187. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/con29R.json +2981 -0
  188. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/as.json +72 -0
  189. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/dr.json +73 -0
  190. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/er.json +83 -0
  191. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/fd.json +72 -0
  192. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/hi.json +48 -0
  193. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/hs.json +71 -0
  194. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/jk.json +76 -0
  195. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/la.json +83 -0
  196. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/ma.json +87 -0
  197. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/mc.json +36 -0
  198. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/oa.json +22 -0
  199. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/oc.json +55 -0
  200. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/sb.json +71 -0
  201. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/sf.json +72 -0
  202. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/sl.json +66 -0
  203. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/extensions/tf.json +100 -0
  204. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/fme1.json +1264 -0
  205. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/llc1.json +25 -0
  206. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/lpe1.json +2226 -0
  207. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/nts.json +2090 -0
  208. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/nts2.json +2678 -0
  209. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/ntsl.json +1746 -0
  210. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/ntsl2.json +2153 -0
  211. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/oc1.json +2817 -0
  212. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/piq.json +3276 -0
  213. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/rds.json +3552 -0
  214. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/sr24.json +38 -0
  215. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/ta10.json +4642 -0
  216. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/ta6.json +4501 -0
  217. package/keen-dewdney-6ae15b/src/schemas/v3/overlays/ta7.json +1435 -0
  218. package/keen-dewdney-6ae15b/src/schemas/v3/pdtf-transaction.json +37225 -0
  219. package/keen-dewdney-6ae15b/src/schemas/v3/skeleton.json +4323 -0
  220. package/keen-dewdney-6ae15b/src/schemas/verifiedClaims/README.md +12 -0
  221. package/keen-dewdney-6ae15b/src/schemas/verifiedClaims/pdtf-verified-claims.json +431 -0
  222. package/keen-dewdney-6ae15b/src/tests/v3/caching.test.js +591 -0
  223. package/keen-dewdney-6ae15b/src/tests/v3/extensionOverlays.test.js +525 -0
  224. package/keen-dewdney-6ae15b/src/tests/v3/transactionSchema.test.js +574 -0
  225. package/keen-dewdney-6ae15b/src/tests/v3/verifiedClaimsValidator.test.js +128 -0
  226. package/keen-dewdney-6ae15b/src/utils/compactSkeleton.js +84 -0
  227. package/keen-dewdney-6ae15b/src/utils/countTokens.js +67 -0
  228. package/keen-dewdney-6ae15b/src/utils/extractExtensionOverlays.js +362 -0
  229. package/keen-dewdney-6ae15b/src/utils/extractOverlay.js +290 -0
  230. package/keen-dewdney-6ae15b/src/utils/extractProperties.js +44 -0
  231. package/keen-dewdney-6ae15b/src/utils/listPathTitles.js +36 -0
  232. package/keen-dewdney-6ae15b/src/utils/minimalSkeleton.js +85 -0
  233. package/keen-dewdney-6ae15b/src/utils/pathList.csv +903 -0
  234. package/keen-dewdney-6ae15b/src/utils/pathSkeleton.js +181 -0
  235. package/package.json +1 -1
  236. package/src/schemas/v3/combined.json +8 -15
  237. package/src/schemas/v3/overlays/baspi4.json +12 -7
  238. package/src/schemas/v3/overlays/baspi5.json +12 -7
  239. package/src/schemas/v3/overlays/extensions/ac.json +2 -1
  240. package/src/schemas/v3/overlays/extensions/dk.json +3 -2
  241. package/src/schemas/v3/overlays/extensions/ic.json +2 -1
  242. package/src/schemas/v3/overlays/extensions/lc.json +3 -2
  243. package/src/schemas/v3/overlays/extensions/mi.json +2 -1
  244. package/src/schemas/v3/overlays/extensions/nd.json +3 -2
  245. package/src/schemas/v3/overlays/extensions/pc.json +3 -2
  246. package/src/schemas/v3/overlays/extensions/ph.json +2 -1
  247. package/src/schemas/v3/overlays/extensions/rw.json +4 -3
  248. package/src/schemas/v3/overlays/extensions/sc.json +8 -4
  249. package/src/schemas/v3/overlays/extensions/sd.json +3 -2
  250. package/src/schemas/v3/overlays/extensions/tr.json +3 -2
  251. package/src/schemas/v3/overlays/extensions/wg.json +2 -1
  252. package/src/schemas/v3/overlays/lpe1.json +1 -1
  253. package/src/schemas/v3/overlays/nts.json +3 -1
  254. package/src/schemas/v3/overlays/nts2.json +3 -1
  255. package/src/schemas/v3/overlays/ntsl.json +3 -1
  256. package/src/schemas/v3/overlays/ntsl2.json +3 -1
  257. package/src/schemas/v3/overlays/piq.json +7 -5
  258. package/src/schemas/v3/overlays/rds.json +9 -6
  259. package/src/schemas/v3/overlays/ta10.json +0 -9
  260. package/src/schemas/v3/overlays/ta6.json +8 -4
  261. package/src/schemas/v3/overlays/ta6ed6.json +4 -2
  262. package/src/schemas/v3/pdtf-transaction.json +15 -18
  263. package/src/utils/extractExtensionOverlays.js +10 -1
@@ -0,0 +1,2051 @@
1
+ {
2
+ "title": "FME1",
3
+ "$schema": "http://json-schema.org/draft-07/schema#",
4
+ "$id": "https://trust.propdata.org.uk/schemas/v2/freehold-information.json",
5
+ "type": "object",
6
+ "description": "Freehold Management Enquiries - Second Edition 2021",
7
+ "required": [
8
+ "contactDetails",
9
+ "transferAndRegistration",
10
+ "serviceCharge",
11
+ "insurance",
12
+ "disputes",
13
+ "requiredDocuments",
14
+ "confirmation"
15
+ ],
16
+ "properties": {
17
+ "contactDetails": {
18
+ "fme1Ref": "1",
19
+ "title": "Contact Details",
20
+ "description": "Complete the details for the relevant parties",
21
+ "type": "object",
22
+ "required": [
23
+ "noticeOfTransferAndCharge",
24
+ "collectsServiceCharges",
25
+ "dealsWithDayToDayMaintenanceOfManagedArea",
26
+ "organisesManagedAreaInsurance"
27
+ ],
28
+ "properties": {
29
+ "rentchargeOwner": {
30
+ "baspiRef": "A1.5.4",
31
+ "fme1Ref": "1.1",
32
+ "title": "Rentcharge Owner",
33
+ "type": "object",
34
+ "properties": {
35
+ "contact": {
36
+ "type": "object",
37
+ "properties": {
38
+ "nameOrOrganisation": {
39
+ "title": "Name or organisation",
40
+ "type": "string",
41
+ "minLength": 1
42
+ },
43
+ "address": {
44
+ "title": "Address",
45
+ "type": "object",
46
+ "properties": {
47
+ "line1": {
48
+ "title": "Address line 1",
49
+ "type": "string",
50
+ "minLength": 1
51
+ },
52
+ "line2": {
53
+ "title": "Address line 2",
54
+ "type": "string"
55
+ },
56
+ "line3": {
57
+ "title": "Address line 3",
58
+ "type": "string"
59
+ },
60
+ "town": {
61
+ "title": "Town",
62
+ "type": "string"
63
+ },
64
+ "postcode": {
65
+ "title": "Postcode",
66
+ "type": "string",
67
+ "minLength": 1
68
+ }
69
+ },
70
+ "required": ["line1", "postcode"]
71
+ },
72
+ "telephone": {
73
+ "title": "Telephone",
74
+ "type": "string",
75
+ "minLength": 1
76
+ },
77
+ "emailAddress": {
78
+ "title": "Email address",
79
+ "type": "string",
80
+ "format": "email"
81
+ }
82
+ },
83
+ "required": [
84
+ "nameOrOrganisation",
85
+ "addressLine1",
86
+ "postcode",
87
+ "telephone",
88
+ "emailAddress"
89
+ ]
90
+ },
91
+ "bankDetails": {
92
+ "type": "object",
93
+ "properties": {
94
+ "accountName": {
95
+ "title": "Account name",
96
+ "type": "string",
97
+ "minLength": 1
98
+ },
99
+ "sortCode": {
100
+ "title": "Sort code",
101
+ "type": "string",
102
+ "minLength": 1
103
+ },
104
+ "accountNumber": {
105
+ "title": "Account number",
106
+ "type": "integer"
107
+ },
108
+ "reference": {
109
+ "title": "Reference to quote",
110
+ "type": "string",
111
+ "minLength": 1
112
+ },
113
+ "feeType": {
114
+ "title": "Type of fee",
115
+ "type": "string",
116
+ "enum": [
117
+ "Ground rent",
118
+ "Service charges",
119
+ "Administration fees",
120
+ "All"
121
+ ]
122
+ }
123
+ }
124
+ }
125
+ }
126
+ },
127
+ "managementCompany": {
128
+ "fme1Ref": "1.2",
129
+ "title": "Management Company",
130
+ "type": "object",
131
+ "properties": {
132
+ "contact": {
133
+ "ta7Ref": "4.1b",
134
+ "type": "object",
135
+ "properties": {
136
+ "nameOrOrganisation": {
137
+ "title": "Name or organisation",
138
+ "type": "string",
139
+ "minLength": 1
140
+ },
141
+ "address": {
142
+ "title": "Address",
143
+ "type": "object",
144
+ "properties": {
145
+ "line1": {
146
+ "title": "Address line 1",
147
+ "type": "string",
148
+ "minLength": 1
149
+ },
150
+ "line2": {
151
+ "title": "Address line 2",
152
+ "type": "string"
153
+ },
154
+ "line3": {
155
+ "title": "Address line 3",
156
+ "type": "string"
157
+ },
158
+ "town": {
159
+ "title": "Town",
160
+ "type": "string"
161
+ },
162
+ "postcode": {
163
+ "title": "Postcode",
164
+ "type": "string",
165
+ "minLength": 1
166
+ }
167
+ },
168
+ "required": ["line1", "postcode"]
169
+ },
170
+ "telephone": {
171
+ "title": "Telephone",
172
+ "type": "string",
173
+ "minLength": 1
174
+ },
175
+ "emailAddress": {
176
+ "title": "Email address",
177
+ "type": "string",
178
+ "format": "email"
179
+ }
180
+ },
181
+ "required": [
182
+ "nameOrOrganisation",
183
+ "addressLine1",
184
+ "postcode",
185
+ "telephone",
186
+ "emailAddress"
187
+ ]
188
+ },
189
+ "bankDetails": {
190
+ "type": "object",
191
+ "properties": {
192
+ "accountName": {
193
+ "title": "Account name",
194
+ "type": "string",
195
+ "minLength": 1
196
+ },
197
+ "sortCode": {
198
+ "title": "Sort code",
199
+ "type": "string",
200
+ "minLength": 1
201
+ },
202
+ "accountNumber": {
203
+ "title": "Account number",
204
+ "type": "integer"
205
+ },
206
+ "reference": {
207
+ "title": "Reference to quote",
208
+ "type": "string",
209
+ "minLength": 1
210
+ },
211
+ "feeType": {
212
+ "title": "Type of fee",
213
+ "type": "string",
214
+ "enum": [
215
+ "Ground rent",
216
+ "Service charges",
217
+ "Administration fees",
218
+ "All"
219
+ ]
220
+ }
221
+ }
222
+ }
223
+ }
224
+ },
225
+ "managingAgent": {
226
+ "baspiRef": "A1.5.5",
227
+ "fme1Ref": "1.3",
228
+ "title": "Managing Agent",
229
+ "type": "object",
230
+ "properties": {
231
+ "contact": {
232
+ "ta7Ref": "4.1c",
233
+ "type": "object",
234
+ "properties": {
235
+ "nameOrOrganisation": {
236
+ "title": "Name or organisation",
237
+ "type": "string",
238
+ "minLength": 1
239
+ },
240
+ "address": {
241
+ "title": "Address",
242
+ "type": "object",
243
+ "properties": {
244
+ "line1": {
245
+ "title": "Address line 1",
246
+ "type": "string",
247
+ "minLength": 1
248
+ },
249
+ "line2": {
250
+ "title": "Address line 2",
251
+ "type": "string"
252
+ },
253
+ "line3": {
254
+ "title": "Address line 3",
255
+ "type": "string"
256
+ },
257
+ "town": {
258
+ "title": "Town",
259
+ "type": "string"
260
+ },
261
+ "postcode": {
262
+ "title": "Postcode",
263
+ "type": "string",
264
+ "minLength": 1
265
+ }
266
+ },
267
+ "required": ["line1", "postcode"]
268
+ },
269
+ "telephone": {
270
+ "title": "Telephone",
271
+ "type": "string",
272
+ "minLength": 1
273
+ },
274
+ "emailAddress": {
275
+ "title": "Email address",
276
+ "type": "string",
277
+ "format": "email"
278
+ }
279
+ },
280
+ "required": [
281
+ "nameOrOrganisation",
282
+ "addressLine1",
283
+ "postcode",
284
+ "telephone",
285
+ "emailAddress"
286
+ ]
287
+ },
288
+ "appointedBy": {
289
+ "title": "Appointed by",
290
+ "type": "string",
291
+ "enum": ["Management Company", "Landlord", "Other"]
292
+ },
293
+ "bankDetails": {
294
+ "type": "object",
295
+ "properties": {
296
+ "accountName": {
297
+ "title": "Account name",
298
+ "type": "string",
299
+ "minLength": 1
300
+ },
301
+ "sortCode": {
302
+ "title": "Sort code",
303
+ "type": "string",
304
+ "minLength": 1
305
+ },
306
+ "accountNumber": {
307
+ "title": "Account number",
308
+ "type": "integer"
309
+ },
310
+ "reference": {
311
+ "title": "Reference to quote",
312
+ "type": "string",
313
+ "minLength": 1
314
+ },
315
+ "feeType": {
316
+ "title": "Type of fee",
317
+ "type": "string",
318
+ "enum": [
319
+ "Ground rent",
320
+ "Service charges",
321
+ "Administration fees",
322
+ "All"
323
+ ]
324
+ }
325
+ }
326
+ }
327
+ }
328
+ },
329
+ "legalRepresentative": {
330
+ "fme1Ref": "1.4",
331
+ "title": "Legal Representative of one of the above",
332
+ "type": "object",
333
+ "properties": {
334
+ "contact": {
335
+ "type": "object",
336
+ "properties": {
337
+ "nameOrOrganisation": {
338
+ "title": "Name or organisation",
339
+ "type": "string",
340
+ "minLength": 1
341
+ },
342
+ "address": {
343
+ "title": "Address",
344
+ "type": "object",
345
+ "properties": {
346
+ "line1": {
347
+ "title": "Address line 1",
348
+ "type": "string",
349
+ "minLength": 1
350
+ },
351
+ "line2": {
352
+ "title": "Address line 2",
353
+ "type": "string"
354
+ },
355
+ "line3": {
356
+ "title": "Address line 3",
357
+ "type": "string"
358
+ },
359
+ "town": {
360
+ "title": "Town",
361
+ "type": "string"
362
+ },
363
+ "postcode": {
364
+ "title": "Postcode",
365
+ "type": "string",
366
+ "minLength": 1
367
+ }
368
+ },
369
+ "required": ["line1", "postcode"]
370
+ },
371
+ "telephone": {
372
+ "title": "Telephone",
373
+ "type": "string",
374
+ "minLength": 1
375
+ },
376
+ "emailAddress": {
377
+ "title": "Email address",
378
+ "type": "string",
379
+ "format": "email"
380
+ }
381
+ },
382
+ "required": [
383
+ "nameOrOrganisation",
384
+ "addressLine1",
385
+ "postcode",
386
+ "telephone",
387
+ "emailAddress"
388
+ ]
389
+ },
390
+ "appointedBy": {
391
+ "title": "Appointed by",
392
+ "type": "string",
393
+ "enum": [
394
+ "Management Company",
395
+ "Landlord",
396
+ "Managing Agent",
397
+ "Residents'/Tenants' Association",
398
+ "Other"
399
+ ]
400
+ }
401
+ }
402
+ },
403
+ "noticeOfTransferAndCharge": {
404
+ "fme1Ref": "1.5",
405
+ "title": "Who accepts service of the Notice of Transfer & Charge?",
406
+ "description": "Tick the box beside each party and state the total fee including VAT for notice of transfer and charge. Tick 'Notice via email' column to confirm whether you will accept notice via email.",
407
+ "type": "object",
408
+ "properties": {
409
+ "rentchargeOwner": {
410
+ "title": "Rentcharge Owner",
411
+ "type": "object",
412
+ "properties": {
413
+ "isApplicableParty": {
414
+ "type": "boolean"
415
+ }
416
+ },
417
+ "required": ["isApplicableParty"],
418
+ "discriminator": {
419
+ "propertyName": "isApplicableParty"
420
+ },
421
+ "oneOf": [
422
+ {
423
+ "properties": {
424
+ "isApplicableParty": {
425
+ "const": false
426
+ }
427
+ }
428
+ },
429
+ {
430
+ "properties": {
431
+ "isApplicableParty": {
432
+ "const": true
433
+ },
434
+ "fee": {
435
+ "title": "Total Fee including VAT",
436
+ "type": "number"
437
+ },
438
+ "noticeViaEmail": {
439
+ "type": "boolean"
440
+ }
441
+ },
442
+ "required": ["feeIncludingVAT", "noticeViaEmail"]
443
+ }
444
+ ]
445
+ },
446
+ "managementCompany": {
447
+ "title": "Management Company",
448
+ "type": "object",
449
+ "properties": {
450
+ "isApplicableParty": {
451
+ "type": "boolean"
452
+ }
453
+ },
454
+ "required": ["isApplicableParty"],
455
+ "discriminator": {
456
+ "propertyName": "isApplicableParty"
457
+ },
458
+ "oneOf": [
459
+ {
460
+ "properties": {
461
+ "isApplicableParty": {
462
+ "const": false
463
+ }
464
+ }
465
+ },
466
+ {
467
+ "properties": {
468
+ "isApplicableParty": {
469
+ "const": true
470
+ },
471
+ "fee": {
472
+ "title": "Total Fee including VAT",
473
+ "type": "number"
474
+ },
475
+ "noticeViaEmail": {
476
+ "type": "boolean"
477
+ }
478
+ },
479
+ "required": ["feeIncludingVAT", "noticeViaEmail"]
480
+ }
481
+ ]
482
+ },
483
+ "managingAgent": {
484
+ "title": "Managing Agent",
485
+ "type": "object",
486
+ "properties": {
487
+ "isApplicableParty": {
488
+ "type": "boolean"
489
+ }
490
+ },
491
+ "required": ["isApplicableParty"],
492
+ "discriminator": {
493
+ "propertyName": "isApplicableParty"
494
+ },
495
+ "oneOf": [
496
+ {
497
+ "properties": {
498
+ "isApplicableParty": {
499
+ "const": false
500
+ }
501
+ }
502
+ },
503
+ {
504
+ "properties": {
505
+ "isApplicableParty": {
506
+ "const": true
507
+ },
508
+ "fee": {
509
+ "title": "Total Fee including VAT",
510
+ "type": "number"
511
+ },
512
+ "noticeViaEmail": {
513
+ "type": "boolean"
514
+ }
515
+ },
516
+ "required": ["feeIncludingVAT", "noticeViaEmail"]
517
+ }
518
+ ]
519
+ },
520
+ "legalRepresentative": {
521
+ "title": "Legal Representative",
522
+ "type": "object",
523
+ "properties": {
524
+ "isApplicableParty": {
525
+ "type": "boolean"
526
+ }
527
+ },
528
+ "required": ["isApplicableParty"],
529
+ "discriminator": {
530
+ "propertyName": "isApplicableParty"
531
+ },
532
+ "oneOf": [
533
+ {
534
+ "properties": {
535
+ "isApplicableParty": {
536
+ "const": false
537
+ }
538
+ }
539
+ },
540
+ {
541
+ "properties": {
542
+ "isApplicableParty": {
543
+ "const": true
544
+ },
545
+ "fee": {
546
+ "title": "Total Fee including VAT",
547
+ "type": "number"
548
+ },
549
+ "noticeViaEmail": {
550
+ "type": "boolean"
551
+ }
552
+ },
553
+ "required": ["feeIncludingVAT", "noticeViaEmail"]
554
+ }
555
+ ]
556
+ },
557
+ "other": {
558
+ "type": "object",
559
+ "properties": {
560
+ "isApplicableParty": {
561
+ "type": "boolean"
562
+ }
563
+ },
564
+ "required": ["isApplicableParty"],
565
+ "discriminator": {
566
+ "propertyName": "isApplicableParty"
567
+ },
568
+ "oneOf": [
569
+ {
570
+ "properties": {
571
+ "isApplicableParty": {
572
+ "const": false
573
+ }
574
+ }
575
+ },
576
+ {
577
+ "properties": {
578
+ "isApplicableParty": {
579
+ "const": true
580
+ },
581
+ "fee": {
582
+ "title": "Total Fee including VAT",
583
+ "type": "number"
584
+ },
585
+ "noticeViaEmail": {
586
+ "type": "boolean"
587
+ }
588
+ },
589
+ "contact": {
590
+ "type": "object",
591
+ "properties": {
592
+ "nameOrOrganisation": {
593
+ "title": "Name or organisation",
594
+ "type": "string",
595
+ "minLength": 1
596
+ },
597
+ "address": {
598
+ "title": "Address",
599
+ "type": "object",
600
+ "properties": {
601
+ "line1": {
602
+ "title": "Address line 1",
603
+ "type": "string",
604
+ "minLength": 1
605
+ },
606
+ "line2": {
607
+ "title": "Address line 2",
608
+ "type": "string"
609
+ },
610
+ "line3": {
611
+ "title": "Address line 3",
612
+ "type": "string"
613
+ },
614
+ "town": {
615
+ "title": "Town",
616
+ "type": "string"
617
+ },
618
+ "postcode": {
619
+ "title": "Postcode",
620
+ "type": "string",
621
+ "minLength": 1
622
+ }
623
+ },
624
+ "required": ["line1", "postcode"]
625
+ },
626
+ "telephone": {
627
+ "title": "Telephone",
628
+ "type": "string",
629
+ "minLength": 1
630
+ },
631
+ "emailAddress": {
632
+ "title": "Email address",
633
+ "type": "string",
634
+ "format": "email"
635
+ }
636
+ },
637
+ "required": [
638
+ "nameOrOrganisation",
639
+ "addressLine1",
640
+ "postcode",
641
+ "telephone",
642
+ "emailAddress"
643
+ ]
644
+ },
645
+ "capacity": {
646
+ "title": "Capacity (e.g. Management Company's lawyer)",
647
+ "type": "string",
648
+ "minLength": 1
649
+ },
650
+ "required": [
651
+ "feeIncludingVAT",
652
+ "noticeViaEmail",
653
+ "contact",
654
+ "capacity"
655
+ ]
656
+ }
657
+ ]
658
+ },
659
+ "otherDetailsRequired": {
660
+ "fme1Ref": "1.5.1",
661
+ "title": "Are details other than the incoming owner's name, address and lender name required?",
662
+ "type": "object",
663
+ "properties": {
664
+ "isOtherDetailsRequired": {
665
+ "title": "",
666
+ "type": "string",
667
+ "enum": ["Yes", "No"]
668
+ }
669
+ },
670
+ "discriminator": {
671
+ "propertyName": "isOtherDetailsRequired"
672
+ },
673
+ "oneOf": [
674
+ {
675
+ "properties": {
676
+ "isOtherDetailsRequired": {
677
+ "const": "No"
678
+ }
679
+ }
680
+ },
681
+ {
682
+ "properties": {
683
+ "isOtherDetailsRequired": {
684
+ "const": "Yes"
685
+ },
686
+ "details": {
687
+ "title": "If Yes, please detail required additional information to be included with the notice of disposition",
688
+ "type": "string",
689
+ "minLength": 1
690
+ }
691
+ },
692
+ "required": ["details"]
693
+ }
694
+ ]
695
+ }
696
+ }
697
+ },
698
+ "collectsServiceCharges": {
699
+ "fme1Ref": "1.6",
700
+ "title": "Who collects, or will collect, the Service charge?",
701
+ "type": "string",
702
+ "enum": [
703
+ "Rentcharge Owner",
704
+ "Management Company",
705
+ "Managing Agent",
706
+ "N/A"
707
+ ]
708
+ },
709
+ "dealsWithDayToDayMaintenanceOfManagedArea": {
710
+ "fme1Ref": "1.7",
711
+ "title": "Who deals with, or will deal with, the day to day maintenance of the Managed Area?",
712
+ "type": "string",
713
+ "enum": [
714
+ "Rentcharge Owner",
715
+ "Management Company",
716
+ "Managing Agent",
717
+ "N/A"
718
+ ]
719
+ },
720
+ "organisesManagedAreaInsurance": {
721
+ "fme1Ref": "1.8",
722
+ "title": "Who organises and administers the insurance for the Managed Areas?",
723
+ "type": "string",
724
+ "enum": [
725
+ "Rentcharge Owner",
726
+ "Management Company",
727
+ "Managing Agent",
728
+ "N/A"
729
+ ]
730
+ }
731
+ }
732
+ },
733
+ "transferAndRegistration": {
734
+ "fme1Ref": "2",
735
+ "title": "Transfer and Registration",
736
+ "type": "object",
737
+ "required": [
738
+ "deedOfCovenantRequired",
739
+ "awareOfConsents",
740
+ "requirementsToBeMemberOfManagementCompany",
741
+ "procedureForObtainingCertificate"
742
+ ],
743
+ "properties": {
744
+ "deedOfCovenantRequired": {
745
+ "fme1Ref": "2.1",
746
+ "title": "Is a Deed of Covenant Required?",
747
+ "type": "object",
748
+ "properties": {
749
+ "yesNoNotKnown": {
750
+ "type": "string",
751
+ "title": "",
752
+ "enum": ["Yes", "No", "Not Known"]
753
+ }
754
+ },
755
+ "required": ["yesNoNotKnown"],
756
+ "discriminator": {
757
+ "propertyName": "yesNoNotKnown"
758
+ },
759
+ "oneOf": [
760
+ {
761
+ "properties": {
762
+ "yesNoNotKnown": {
763
+ "enum": ["No", "Not Known"]
764
+ }
765
+ }
766
+ },
767
+ {
768
+ "properties": {
769
+ "yesNoNotKnown": {
770
+ "enum": ["Yes"]
771
+ },
772
+ "costsApplicableToTheDeed": {
773
+ "fme1Ref": "2.1.1",
774
+ "title": "Confirm the costs applicable to the Deed including VAT",
775
+ "type": "number"
776
+ },
777
+ "personWhoDealsWithTheDeedOfCovenant": {
778
+ "fme1Ref": "2.1.2",
779
+ "title": "Provide details of the person who deals with the Deed of Covenant",
780
+ "type": "string",
781
+ "minLength": 1
782
+ }
783
+ },
784
+ "required": [
785
+ "costsApplicableToTheDeed",
786
+ "personWhoDealsWithTheDeedOfCovenant"
787
+ ]
788
+ }
789
+ ]
790
+ },
791
+ "awareOfConsents": {
792
+ "fme1Ref": "2.2",
793
+ "title": "Are you aware of consent having been given to any alterations or additions to the Property?",
794
+ "type": "object",
795
+ "properties": {
796
+ "yesNo": {
797
+ "type": "string",
798
+ "enum": ["Yes", "No"]
799
+ }
800
+ },
801
+ "required": ["yesNo"],
802
+ "discriminator": {
803
+ "propertyName": "yesNo"
804
+ },
805
+ "oneOf": [
806
+ {
807
+ "properties": {
808
+ "yesNo": {
809
+ "enum": ["No"]
810
+ }
811
+ }
812
+ },
813
+ {
814
+ "properties": {
815
+ "yesNo": {
816
+ "enum": ["Yes"]
817
+ },
818
+ "details": {
819
+ "fme1Ref": "2.2.1",
820
+ "title": "Provide details and copies of any consent",
821
+ "type": "string",
822
+ "minLength": 1
823
+ }
824
+ },
825
+ "required": ["details"]
826
+ }
827
+ ]
828
+ },
829
+ "requirementsToBeMemberOfManagementCompany": {
830
+ "fme1Ref": "2.3",
831
+ "title": "Is the incoming Owner required to take a share in, or become a member of, the Management Company?",
832
+ "type": "object",
833
+ "properties": {
834
+ "yesNo": {
835
+ "type": "string",
836
+ "title": "",
837
+ "enum": ["Yes", "No"]
838
+ }
839
+ },
840
+ "required": ["yesNo"],
841
+ "discriminator": {
842
+ "propertyName": "yesNo"
843
+ },
844
+ "oneOf": [
845
+ {
846
+ "properties": {
847
+ "yesNo": {
848
+ "enum": ["No"]
849
+ }
850
+ }
851
+ },
852
+ {
853
+ "properties": {
854
+ "yesNo": {
855
+ "enum": ["Yes"]
856
+ },
857
+ "details": {
858
+ "fme1Ref": "2.3.1",
859
+ "title": "Provide details of the procedure and fees",
860
+ "type": "string",
861
+ "minLength": 1
862
+ }
863
+ },
864
+ "required": ["details"]
865
+ }
866
+ ]
867
+ },
868
+ "procedureForObtainingCertificate": {
869
+ "fme1Ref": "2.4",
870
+ "title": "What is the procedure and cost for obtaining a certificate in accordance with a restriction in the Proprietorship Register at the Land Registry, if applicable?",
871
+ "type": "string"
872
+ }
873
+ }
874
+ },
875
+ "serviceCharge": {
876
+ "fme1Ref": "3",
877
+ "title": "Service Charge",
878
+ "type": "object",
879
+ "required": [
880
+ "serviceChargePayable",
881
+ "serviceChargePaidUpToDate",
882
+ "lastDemandPeriod",
883
+ "propertiesContribute",
884
+ "doAllPropertiesContribute",
885
+ "excessPaymentAnticipated",
886
+ "hasInabilityToCollectAffectedMaintenance",
887
+ "reserveFund",
888
+ "lastDecoratedPeriod",
889
+ "worksProposed",
890
+ "increaseInServiceChargeAnticipated",
891
+ "outstandingServiceChargeConsultation",
892
+ "japaneseKnotweedAffectingManagedAreas",
893
+ "transferFees"
894
+ ],
895
+ "properties": {
896
+ "serviceChargePayable": {
897
+ "fme1Ref": "3.1",
898
+ "title": "What is the annual Service charge payable by this Property?",
899
+ "description": "This should include any sums payable for the maintenance of the managed area",
900
+ "type": "object",
901
+ "properties": {
902
+ "amount": {
903
+ "type": "number",
904
+ "title": "Amount"
905
+ },
906
+ "hasFixedRentcharge": {
907
+ "type": "string",
908
+ "title": "If there is also a ‘fixed’ Rentcharge, please confirm the amount and explain why."
909
+ }
910
+ }
911
+ },
912
+ "serviceChargePaidUpToDate": {
913
+ "fme1Ref": "3.2",
914
+ "type": "object",
915
+ "title": "Is the Service charge paid up-to-date?",
916
+ "properties": {
917
+ "yesNo": {
918
+ "type": "string",
919
+ "title": "",
920
+ "enum": ["Yes", "No"]
921
+ }
922
+ },
923
+ "required": ["yesNo"],
924
+ "discriminator": { "propertyName": "yesNo" },
925
+ "oneOf": [
926
+ {
927
+ "properties": {
928
+ "yesNo": {
929
+ "enum": ["Yes"]
930
+ }
931
+ }
932
+ },
933
+ {
934
+ "properties": {
935
+ "yesNo": {
936
+ "enum": ["No"]
937
+ },
938
+ "details": {
939
+ "fme1Ref": "3.2.1",
940
+ "title": "Supply details of the arrears",
941
+ "type": "string",
942
+ "minLength": 1
943
+ }
944
+ },
945
+ "required": ["details"]
946
+ }
947
+ ]
948
+ },
949
+ "lastDemandPeriod": {
950
+ "fme1Ref": "3.3",
951
+ "title": "What period is covered by the last demand?",
952
+ "type": "object",
953
+ "properties": {
954
+ "from": {
955
+ "title": "From",
956
+ "type": "string",
957
+ "format": "date"
958
+ },
959
+ "to": {
960
+ "title": "To",
961
+ "type": "string",
962
+ "format": "date"
963
+ }
964
+ }
965
+ },
966
+ "propertiesContribute": {
967
+ "fme1Ref": "3.4",
968
+ "title": "How many properties contribute toward the maintenance of the Managed Area?",
969
+ "description": "Stipulate the number of each applicable type of property",
970
+ "type": "object",
971
+ "properties": {
972
+ "residentialFreehold": {
973
+ "title": "",
974
+ "type": "number"
975
+ },
976
+ "residentialLeasehold": {
977
+ "title": "",
978
+ "type": "number"
979
+ },
980
+ "commercial": {
981
+ "title": "",
982
+ "type": "number"
983
+ }
984
+ },
985
+ "required": [
986
+ "residentialFreehold",
987
+ "residentialLeasehold",
988
+ "commercial"
989
+ ]
990
+ },
991
+ "doAllPropertiesContribute": {
992
+ "fme1Ref": "3.4.1",
993
+ "title": "Do all properties in the Managed Area contribute to the Service Charge?",
994
+ "type": "object",
995
+ "properties": {
996
+ "yesNo": {
997
+ "type": "string",
998
+ "title": "",
999
+ "enum": ["Yes", "No"]
1000
+ }
1001
+ },
1002
+ "discriminator": { "propertyName": "yesNo" },
1003
+ "oneOf": [
1004
+ {
1005
+ "properties": {
1006
+ "yesNo": {
1007
+ "enum": ["Yes"]
1008
+ }
1009
+ }
1010
+ },
1011
+ {
1012
+ "properties": {
1013
+ "yesNo": {
1014
+ "enum": ["No"]
1015
+ },
1016
+ "details": {
1017
+ "fme1Ref": "3.4.1.1",
1018
+ "title": "If No, provide details as to why not",
1019
+ "type": "string"
1020
+ }
1021
+ }
1022
+ }
1023
+ ]
1024
+ },
1025
+ "excessPaymentAnticipated": {
1026
+ "fme1Ref": "3.5",
1027
+ "type": "object",
1028
+ "title": "Is any excess payment anticipated from the Property at the end of the financial year?",
1029
+ "properties": {
1030
+ "yesNo": {
1031
+ "type": "string",
1032
+ "title": "",
1033
+ "enum": ["Yes", "No"]
1034
+ }
1035
+ },
1036
+ "required": ["yesNo"],
1037
+ "discriminator": { "propertyName": "yesNo" },
1038
+ "oneOf": [
1039
+ {
1040
+ "properties": {
1041
+ "yesNo": {
1042
+ "enum": ["No"]
1043
+ }
1044
+ }
1045
+ },
1046
+ {
1047
+ "properties": {
1048
+ "yesNo": {
1049
+ "enum": ["Yes"]
1050
+ },
1051
+ "details": {
1052
+ "fme1Ref": "3.5.1",
1053
+ "title": "Provide details",
1054
+ "type": "string",
1055
+ "minLength": 1
1056
+ }
1057
+ },
1058
+ "required": ["details"]
1059
+ }
1060
+ ]
1061
+ },
1062
+ "hasInabilityToCollectAffectedMaintenance": {
1063
+ "fme1Ref": "3.6",
1064
+ "type": "object",
1065
+ "title": "In the last 12 months, has any inability to collect payments, from any party, affected (or is it likely to affect), the maintenance of the Managed Area?",
1066
+ "properties": {
1067
+ "yesNo": {
1068
+ "type": "string",
1069
+ "title": "",
1070
+ "enum": ["Yes", "No"]
1071
+ }
1072
+ },
1073
+ "required": ["yesNo"],
1074
+ "discriminator": { "propertyName": "yesNo" },
1075
+ "oneOf": [
1076
+ {
1077
+ "properties": {
1078
+ "yesNo": {
1079
+ "enum": ["No"]
1080
+ }
1081
+ }
1082
+ },
1083
+ {
1084
+ "properties": {
1085
+ "yesNo": {
1086
+ "enum": ["Yes"]
1087
+ },
1088
+ "details": {
1089
+ "fme1Ref": "3.6.1",
1090
+ "title": "Provide details",
1091
+ "type": "string",
1092
+ "minLength": 1
1093
+ }
1094
+ },
1095
+ "required": ["details"]
1096
+ }
1097
+ ]
1098
+ },
1099
+ "reserveFund": {
1100
+ "fme1Ref": "3.7",
1101
+ "type": "object",
1102
+ "title": "Does a Reserve Fund apply to the Managed Area?",
1103
+ "properties": {
1104
+ "yesNo": {
1105
+ "type": "string",
1106
+ "title": "",
1107
+ "enum": ["Yes", "No"]
1108
+ }
1109
+ },
1110
+ "required": ["yesNo"],
1111
+ "discriminator": { "propertyName": "yesNo" },
1112
+ "oneOf": [
1113
+ {
1114
+ "properties": {
1115
+ "yesNo": {
1116
+ "enum": ["No"]
1117
+ }
1118
+ }
1119
+ },
1120
+ {
1121
+ "properties": {
1122
+ "yesNo": {
1123
+ "enum": ["Yes"]
1124
+ },
1125
+ "amount": {
1126
+ "fme1Ref": "3.7.1",
1127
+ "title": "Confirm the amount collected held in the Reserve Fund",
1128
+ "type": "object",
1129
+ "properties": {
1130
+ "fromTheOwners": {
1131
+ "fme1Ref": "3.7.1a",
1132
+ "title": "From the Owners",
1133
+ "type": "number"
1134
+ },
1135
+ "forTheManagedAreas": {
1136
+ "fme1Ref": "3.7.1b",
1137
+ "title": "For the entirety of the Managed Areas.",
1138
+ "type": "number"
1139
+ }
1140
+ }
1141
+ },
1142
+ "sufficentToCoverKnownExpenditure": {
1143
+ "fme1Ref": "3.7.2",
1144
+ "title": "Is the amount expected to be sufficient to cover the known expenditure?",
1145
+ "type": "object",
1146
+ "properties": {
1147
+ "yesNo": {
1148
+ "type": "string",
1149
+ "title": "",
1150
+ "enum": ["Yes", "No"]
1151
+ }
1152
+ },
1153
+ "required": ["yesNo"],
1154
+ "discriminator": { "propertyName": "yesNo" },
1155
+ "oneOf": [
1156
+ {
1157
+ "properties": {
1158
+ "yesNo": {
1159
+ "enum": ["Yes"]
1160
+ }
1161
+ }
1162
+ },
1163
+ {
1164
+ "properties": {
1165
+ "yesNo": {
1166
+ "enum": ["No"]
1167
+ },
1168
+ "details": {
1169
+ "fme1Ref": "3.7.3",
1170
+ "title": "Supply details",
1171
+ "type": "string",
1172
+ "minLength": 1
1173
+ }
1174
+ },
1175
+ "required": ["details"]
1176
+ }
1177
+ ]
1178
+ }
1179
+ },
1180
+ "required": ["amount"]
1181
+ }
1182
+ ]
1183
+ },
1184
+ "lastDecoratedPeriod": {
1185
+ "fme1Ref": "3.8",
1186
+ "title": "If parts of the Managed Areas require regular decoration confirm the date when the Managed Areas were last decorated, internally and externally.",
1187
+ "type": "object",
1188
+ "properties": {
1189
+ "internally": {
1190
+ "title": "Internally",
1191
+ "type": "object",
1192
+ "properties": {
1193
+ "from": {
1194
+ "title": "To",
1195
+ "type": "string",
1196
+ "format": "date"
1197
+ },
1198
+ "to": {
1199
+ "title": "To",
1200
+ "type": "string",
1201
+ "format": "date"
1202
+ }
1203
+ }
1204
+ },
1205
+ "externally": {
1206
+ "title": "Externally",
1207
+ "type": "object",
1208
+ "properties": {
1209
+ "from": {
1210
+ "title": "To",
1211
+ "type": "string",
1212
+ "format": "date"
1213
+ },
1214
+ "to": {
1215
+ "title": "To",
1216
+ "type": "string",
1217
+ "format": "date"
1218
+ }
1219
+ }
1220
+ }
1221
+ }
1222
+ },
1223
+ "worksProposed": {
1224
+ "fme1Ref": "3.9",
1225
+ "type": "object",
1226
+ "title": "Within the next 2 years, are any works proposed to the Managed Areas anticipated to require an additional contribution greater than £250 from the Owner?",
1227
+ "properties": {
1228
+ "yesNo": {
1229
+ "type": "string",
1230
+ "title": "",
1231
+ "enum": ["Completed but unpaid", "Due", "Anticipated", "N/A"]
1232
+ }
1233
+ },
1234
+ "required": ["yesNo"],
1235
+ "discriminator": { "propertyName": "yesNo" },
1236
+ "oneOf": [
1237
+ {
1238
+ "properties": {
1239
+ "yesNo": {
1240
+ "enum": ["N/A"]
1241
+ }
1242
+ }
1243
+ },
1244
+ {
1245
+ "properties": {
1246
+ "yesNo": {
1247
+ "enum": ["Completed but unpaid", "Due", "Anticipated"]
1248
+ },
1249
+ "details": {
1250
+ "fme1Ref": "3.9.1",
1251
+ "title": "If so, provide details of the works and the contribution anticipated from the Owner.",
1252
+ "type": "string",
1253
+ "minLength": 1
1254
+ }
1255
+ },
1256
+ "required": ["details"]
1257
+ }
1258
+ ]
1259
+ },
1260
+ "increaseInServiceChargeAnticipated": {
1261
+ "fme1Ref": "3.10",
1262
+ "title": "Is any increase in the Service Charge over 10% or £100, whichever is the greater, anticipated in the next 2 years?",
1263
+ "type": "object",
1264
+ "properties": {
1265
+ "yesNo": {
1266
+ "type": "string",
1267
+ "title": "",
1268
+ "enum": ["Yes", "No"]
1269
+ }
1270
+ },
1271
+ "required": ["yesNo"],
1272
+ "discriminator": { "propertyName": "yesNo" },
1273
+ "oneOf": [
1274
+ {
1275
+ "properties": {
1276
+ "yesNo": {
1277
+ "enum": ["No"]
1278
+ }
1279
+ }
1280
+ },
1281
+ {
1282
+ "properties": {
1283
+ "yesNo": {
1284
+ "enum": ["Yes"]
1285
+ },
1286
+ "details": {
1287
+ "fme1Ref": "3.10.1",
1288
+ "title": "Provide details",
1289
+ "type": "string",
1290
+ "minLength": 1
1291
+ }
1292
+ },
1293
+ "required": ["details"]
1294
+ }
1295
+ ]
1296
+ },
1297
+ "outstandingServiceChargeConsultation": {
1298
+ "fme1Ref": "3.11",
1299
+ "title": "Where you operate Service charge consultation, are there any outstanding Service charge consultation procedures?",
1300
+ "type": "object",
1301
+ "properties": {
1302
+ "yesNo": {
1303
+ "type": "string",
1304
+ "title": "",
1305
+ "enum": ["Yes", "No"]
1306
+ }
1307
+ },
1308
+ "required": ["yesNo"],
1309
+ "discriminator": { "propertyName": "yesNo" },
1310
+ "oneOf": [
1311
+ {
1312
+ "properties": {
1313
+ "yesNo": {
1314
+ "enum": ["No"]
1315
+ }
1316
+ }
1317
+ },
1318
+ {
1319
+ "properties": {
1320
+ "yesNo": {
1321
+ "enum": ["Yes"]
1322
+ },
1323
+ "details": {
1324
+ "fme1Ref": "3.11.1",
1325
+ "title": "Provide details",
1326
+ "type": "string",
1327
+ "minLength": 1
1328
+ }
1329
+ },
1330
+ "required": ["details"]
1331
+ }
1332
+ ]
1333
+ },
1334
+ "japaneseKnotweedAffectingManagedAreas": {
1335
+ "fme1Ref": "3.12",
1336
+ "title": "Are the Managed Areas known to be affected by Japanese knotweed or other invasive species?",
1337
+ "type": "object",
1338
+ "properties": {
1339
+ "yesNo": {
1340
+ "type": "string",
1341
+ "title": "",
1342
+ "enum": ["Yes", "No"]
1343
+ }
1344
+ },
1345
+ "required": ["yesNo"],
1346
+ "discriminator": { "propertyName": "yesNo" },
1347
+ "oneOf": [
1348
+ {
1349
+ "properties": {
1350
+ "yesNo": {
1351
+ "enum": ["No"]
1352
+ }
1353
+ }
1354
+ },
1355
+ {
1356
+ "properties": {
1357
+ "yesNo": {
1358
+ "enum": ["Yes"]
1359
+ },
1360
+ "details": {
1361
+ "fme1Ref": "3.12.1",
1362
+ "title": "Provide details and a copy of any invasive species management plan in place.",
1363
+ "type": "string",
1364
+ "minLength": 1
1365
+ }
1366
+ },
1367
+ "required": ["details"]
1368
+ }
1369
+ ]
1370
+ },
1371
+ "transferFees": {
1372
+ "fme1Ref": "3.13",
1373
+ "title": "Are there any transfer fees, deferred charges or similar fees, expressed as a percentage of the Property's value payable on an event such as resale or subletting?",
1374
+ "type": "object",
1375
+ "properties": {
1376
+ "yesNo": {
1377
+ "type": "string",
1378
+ "title": "",
1379
+ "enum": ["Yes", "No"]
1380
+ }
1381
+ },
1382
+ "required": ["yesNo"],
1383
+ "discriminator": { "propertyName": "yesNo" },
1384
+ "oneOf": [
1385
+ {
1386
+ "properties": {
1387
+ "yesNo": {
1388
+ "enum": ["No"]
1389
+ }
1390
+ }
1391
+ },
1392
+ {
1393
+ "properties": {
1394
+ "yesNo": {
1395
+ "enum": ["Yes"]
1396
+ },
1397
+ "details": {
1398
+ "fme1Ref": "3.13.1",
1399
+ "title": "Provide details.",
1400
+ "type": "string",
1401
+ "minLength": 1
1402
+ }
1403
+ },
1404
+ "required": ["details"]
1405
+ }
1406
+ ]
1407
+ }
1408
+ }
1409
+ },
1410
+ "insurance": {
1411
+ "fme1Ref": "4",
1412
+ "title": "Insurance",
1413
+ "type": "object",
1414
+ "required": ["managedAreaInsured"],
1415
+ "properties": {
1416
+ "managedAreaInsured": {
1417
+ "fme1Ref": "4.1",
1418
+ "title": "Are the Managed Areas insured?",
1419
+ "type": "object",
1420
+ "properties": {
1421
+ "yesNo": {
1422
+ "type": "string",
1423
+ "title": "",
1424
+ "enum": ["Yes", "No"]
1425
+ }
1426
+ },
1427
+ "required": ["yesNo"],
1428
+ "discriminator": { "propertyName": "yesNo" },
1429
+ "oneOf": [
1430
+ {
1431
+ "properties": {
1432
+ "yesNo": {
1433
+ "enum": ["No"]
1434
+ }
1435
+ }
1436
+ },
1437
+ {
1438
+ "properties": {
1439
+ "yesNo": {
1440
+ "enum": ["Yes"]
1441
+ },
1442
+ "premiumsPaidUpToDate": {
1443
+ "fme1Ref": "4.1.1",
1444
+ "type": "object",
1445
+ "title": "Are the buildings insurance premium contributions payable by the Owner paid up to date for the Managed Areas?",
1446
+ "properties": {
1447
+ "yesNo": {
1448
+ "type": "string",
1449
+ "title": "",
1450
+ "enum": ["Yes", "No"]
1451
+ }
1452
+ },
1453
+ "required": ["yesNo"],
1454
+ "discriminator": {
1455
+ "propertyName": "yesNo"
1456
+ },
1457
+ "oneOf": [
1458
+ {
1459
+ "properties": {
1460
+ "yesNo": {
1461
+ "enum": ["Yes"]
1462
+ }
1463
+ }
1464
+ },
1465
+ {
1466
+ "properties": {
1467
+ "yesNo": {
1468
+ "enum": ["No"]
1469
+ },
1470
+ "details": {
1471
+ "fme1Ref": "4.1.1.1",
1472
+ "title": "Provide details of the arrears",
1473
+ "type": "string",
1474
+ "minLength": 1
1475
+ }
1476
+ },
1477
+ "required": ["details"]
1478
+ }
1479
+ ]
1480
+ },
1481
+ "lastDemandPeriod": {
1482
+ "fme1Ref": "4.2",
1483
+ "title": "What period is covered by the last demand?",
1484
+ "type": "object",
1485
+ "properties": {
1486
+ "from": {
1487
+ "type": "string",
1488
+ "format": "date"
1489
+ },
1490
+ "to": {
1491
+ "type": "string",
1492
+ "format": "date"
1493
+ }
1494
+ }
1495
+ },
1496
+ "claimsMade": {
1497
+ "fme1Ref": "4.3",
1498
+ "type": "object",
1499
+ "title": "Have any claims been made against the policy during the last 3 years?",
1500
+ "properties": {
1501
+ "yesNo": {
1502
+ "type": "string",
1503
+ "title": "",
1504
+ "enum": ["Yes", "No"]
1505
+ }
1506
+ },
1507
+ "required": ["yesNo"],
1508
+ "discriminator": {
1509
+ "propertyName": "yesNo"
1510
+ },
1511
+ "oneOf": [
1512
+ {
1513
+ "properties": {
1514
+ "yesNo": {
1515
+ "enum": ["No"]
1516
+ }
1517
+ }
1518
+ },
1519
+ {
1520
+ "properties": {
1521
+ "yesNo": {
1522
+ "enum": ["Yes"]
1523
+ },
1524
+ "details": {
1525
+ "fme1Ref": "4.3.1",
1526
+ "title": "Provide details",
1527
+ "type": "string",
1528
+ "minLength": 1
1529
+ }
1530
+ },
1531
+ "required": ["details"]
1532
+ }
1533
+ ]
1534
+ },
1535
+ "claimsAnticipated": {
1536
+ "fme1Ref": "4.4",
1537
+ "type": "object",
1538
+ "title": "Are any claims anticipated?",
1539
+ "properties": {
1540
+ "yesNo": {
1541
+ "type": "string",
1542
+ "title": "",
1543
+ "enum": ["Yes", "No"]
1544
+ }
1545
+ },
1546
+ "required": ["yesNo"],
1547
+ "discriminator": {
1548
+ "propertyName": "yesNo"
1549
+ },
1550
+ "oneOf": [
1551
+ {
1552
+ "properties": {
1553
+ "yesNo": {
1554
+ "enum": ["No"]
1555
+ }
1556
+ }
1557
+ },
1558
+ {
1559
+ "properties": {
1560
+ "yesNo": {
1561
+ "enum": ["Yes"]
1562
+ },
1563
+ "details": {
1564
+ "fme1Ref": "4.4.1",
1565
+ "title": "Provide details",
1566
+ "type": "string",
1567
+ "minLength": 1
1568
+ }
1569
+ },
1570
+ "required": ["details"]
1571
+ }
1572
+ ]
1573
+ },
1574
+ "premiumIncludedInServiceCharge": {
1575
+ "fme1Ref": "4.5",
1576
+ "type": "object",
1577
+ "title": "Is the insurance premium included in the service charge?",
1578
+ "properties": {
1579
+ "yesNo": {
1580
+ "type": "string",
1581
+ "title": "",
1582
+ "enum": ["Yes", "No"]
1583
+ }
1584
+ },
1585
+ "required": ["yesNo"],
1586
+ "discriminator": {
1587
+ "propertyName": "yesNo"
1588
+ },
1589
+ "oneOf": [
1590
+ {
1591
+ "properties": {
1592
+ "yesNo": {
1593
+ "enum": ["Yes"]
1594
+ }
1595
+ }
1596
+ },
1597
+ {
1598
+ "properties": {
1599
+ "yesNo": {
1600
+ "enum": ["No"]
1601
+ },
1602
+ "details": {
1603
+ "fme1Ref": "4.6",
1604
+ "title": "Confirm the annual amount payable for the Property",
1605
+ "type": "number"
1606
+ }
1607
+ },
1608
+ "required": ["details"]
1609
+ }
1610
+ ]
1611
+ },
1612
+ "standardTermsAvailable": {
1613
+ "fme1Ref": "4.7",
1614
+ "type": "object",
1615
+ "title": "Are you aware of any reason why comprehensive insurance will not be available on standard terms in future?",
1616
+ "properties": {
1617
+ "yesNo": {
1618
+ "type": "string",
1619
+ "title": "",
1620
+ "enum": ["Yes", "No"]
1621
+ }
1622
+ },
1623
+ "required": ["yesNo"],
1624
+ "discriminator": {
1625
+ "propertyName": "yesNo"
1626
+ },
1627
+ "oneOf": [
1628
+ {
1629
+ "properties": {
1630
+ "yesNo": {
1631
+ "enum": ["No"]
1632
+ }
1633
+ }
1634
+ },
1635
+ {
1636
+ "properties": {
1637
+ "yesNo": {
1638
+ "enum": ["Yes"]
1639
+ },
1640
+ "details": {
1641
+ "fme1Ref": "4.7.1",
1642
+ "title": "Provide details",
1643
+ "type": "string",
1644
+ "minLength": 1
1645
+ }
1646
+ },
1647
+ "required": ["details"]
1648
+ }
1649
+ ]
1650
+ },
1651
+ "nonComplianceWithConditions": {
1652
+ "fme1Ref": "4.8",
1653
+ "type": "object",
1654
+ "title": "Are you aware of any non-compliance with the insurance conditions that would render the policy void?",
1655
+ "properties": {
1656
+ "yesNo": {
1657
+ "type": "string",
1658
+ "title": "",
1659
+ "enum": ["Yes", "No"]
1660
+ }
1661
+ },
1662
+ "required": ["yesNo"],
1663
+ "discriminator": {
1664
+ "propertyName": "yesNo"
1665
+ },
1666
+ "oneOf": [
1667
+ {
1668
+ "properties": {
1669
+ "yesNo": {
1670
+ "enum": ["No"]
1671
+ }
1672
+ }
1673
+ },
1674
+ {
1675
+ "properties": {
1676
+ "yesNo": {
1677
+ "enum": ["Yes"]
1678
+ },
1679
+ "details": {
1680
+ "fme1Ref": "4.8.1",
1681
+ "title": "Provide details",
1682
+ "type": "string",
1683
+ "minLength": 1
1684
+ }
1685
+ },
1686
+ "required": ["details"]
1687
+ }
1688
+ ]
1689
+ }
1690
+ },
1691
+ "required": [
1692
+ "premiumsPaidUpToDate",
1693
+ "lastDemandPeriod",
1694
+ "insuranceExpiryDate",
1695
+ "claimsMade",
1696
+ "claimsAnticipated",
1697
+ "premiumIncludedInServiceCharge",
1698
+ "standardTermsAvailable",
1699
+ "nonComplianceWithConditions"
1700
+ ]
1701
+ }
1702
+ ]
1703
+ }
1704
+ }
1705
+ },
1706
+ "disputes": {
1707
+ "fme1Ref": "5",
1708
+ "title": "Disputes",
1709
+ "type": "object",
1710
+ "required": ["unresolvedDisputes", "breachOfTermsOfTransfer"],
1711
+ "properties": {
1712
+ "unresolvedDisputes": {
1713
+ "fme1Ref": "5.1",
1714
+ "type": "object",
1715
+ "title": "Are there any documented unresolved disputes with the Owners of any of the properties in the Managed Area?",
1716
+ "properties": {
1717
+ "yesNo": {
1718
+ "type": "string",
1719
+ "title": "",
1720
+ "enum": ["Yes", "No"]
1721
+ }
1722
+ },
1723
+ "required": ["yesNo"],
1724
+ "discriminator": {
1725
+ "propertyName": "yesNo"
1726
+ },
1727
+ "oneOf": [
1728
+ {
1729
+ "properties": {
1730
+ "yesNo": {
1731
+ "enum": ["No"]
1732
+ }
1733
+ }
1734
+ },
1735
+ {
1736
+ "properties": {
1737
+ "yesNo": {
1738
+ "enum": ["Yes"]
1739
+ },
1740
+ "details": {
1741
+ "fme1Ref": "5.1.1",
1742
+ "title": "To the extent permitted by the UK General Data Protection Regulations, please supply details",
1743
+ "type": "string",
1744
+ "minLength": 1
1745
+ }
1746
+ },
1747
+ "required": ["details"]
1748
+ }
1749
+ ]
1750
+ },
1751
+ "breachOfTermsOfTransfer": {
1752
+ "fme1Ref": "5.2",
1753
+ "type": "object",
1754
+ "title": "Are you aware of any breach of the terms of the Transfer of this Property?",
1755
+ "properties": {
1756
+ "yesNo": {
1757
+ "type": "string",
1758
+ "title": "",
1759
+ "enum": ["Yes", "No"]
1760
+ }
1761
+ },
1762
+ "required": ["yesNo"],
1763
+ "discriminator": {
1764
+ "propertyName": "yesNo"
1765
+ },
1766
+ "oneOf": [
1767
+ {
1768
+ "properties": {
1769
+ "yesNo": {
1770
+ "enum": ["No"]
1771
+ }
1772
+ }
1773
+ },
1774
+ {
1775
+ "properties": {
1776
+ "yesNo": {
1777
+ "enum": ["Yes"]
1778
+ },
1779
+ "details": {
1780
+ "fme1Ref": "5.2.1",
1781
+ "title": "Provide details",
1782
+ "type": "string",
1783
+ "minLength": 1
1784
+ }
1785
+ },
1786
+ "required": ["details"]
1787
+ }
1788
+ ]
1789
+ }
1790
+ }
1791
+ },
1792
+ "requiredDocuments": {
1793
+ "fme1Ref": "6",
1794
+ "title": "Required Documents",
1795
+ "description": "Please provide the following applicable documents:",
1796
+ "type": "object",
1797
+ "required": [
1798
+ "serviceChargeAccounts",
1799
+ "managedAreasInsurancePolicy",
1800
+ "serviceChargeEstimatesCurrent",
1801
+ "serviceChargeEstimatesPrevious",
1802
+ "proposedWorksNotices",
1803
+ "additionalRegulationsNotInTransfer",
1804
+ "deedOfCovenant",
1805
+ "certificateOfCompliance",
1806
+ "permissionToAlter",
1807
+ "noticesServedOnOwner",
1808
+ "asbestosSurvey",
1809
+ "managedAreaFireRiskAssessment",
1810
+ "memorandumAndArticles",
1811
+ "managementCompanyAGMMinutes",
1812
+ "feesForAdminServices"
1813
+ ],
1814
+ "properties": {
1815
+ "serviceChargeAccounts": {
1816
+ "fme1Ref": "6.1",
1817
+ "title": "The last 3 years published Service Charge accounts.",
1818
+ "type": "string",
1819
+ "enum": ["Enclosed", "To follow", "N/A"]
1820
+ },
1821
+ "managedAreasInsurancePolicy": {
1822
+ "fme1Ref": "6.2",
1823
+ "title": "Managed Areas insurance policy and schedule.",
1824
+ "type": "string",
1825
+ "enum": ["Enclosed", "To follow", "N/A"]
1826
+ },
1827
+ "serviceChargeEstimatesCurrent": {
1828
+ "fme1Ref": "6.3",
1829
+ "title": "Service charge estimate for the current year and details of the anticipated payments on account for the Property.",
1830
+ "type": "string",
1831
+ "enum": ["Enclosed", "To follow", "N/A"]
1832
+ },
1833
+ "serviceChargeEstimatesPrevious": {
1834
+ "fme1Ref": "6.4",
1835
+ "title": "Service charge estimate for the previous year for which accounts have not yet been prepared for the Property.",
1836
+ "type": "string",
1837
+ "enum": ["Enclosed", "To follow", "N/A"]
1838
+ },
1839
+ "proposedWorksNotices": {
1840
+ "fme1Ref": "6.5",
1841
+ "title": "Copies of any notices served on the Owners in respect of any proposed works or any works which have not yet been paid for.",
1842
+ "type": "string",
1843
+ "enum": ["Enclosed", "To follow", "N/A"]
1844
+ },
1845
+ "additionalRegulationsNotInTransfer": {
1846
+ "fme1Ref": "6.6",
1847
+ "title": "Any additional regulations or rules affecting the Property which are not contained in the transfer.",
1848
+ "type": "string",
1849
+ "enum": ["Enclosed", "To follow", "N/A"]
1850
+ },
1851
+ "deedOfCovenant": {
1852
+ "fme1Ref": "6.7",
1853
+ "title": "Any required Deed of Covenant.",
1854
+ "type": "string",
1855
+ "enum": ["Enclosed", "To follow", "Buyer's lawyer to draft", "N/A"]
1856
+ },
1857
+ "certificateOfCompliance": {
1858
+ "fme1Ref": "6.8",
1859
+ "title": "Any Certificate of Compliance required by a Restriction on the registered title.",
1860
+ "type": "string",
1861
+ "enum": ["Enclosed", "To follow", "Buyer's lawyer to draft", "N/A"]
1862
+ },
1863
+ "permissionToAlter": {
1864
+ "fme1Ref": "6.9",
1865
+ "title": "Copy of any permission to alter the Property which has been issued.",
1866
+ "type": "string",
1867
+ "enum": ["Enclosed", "To follow", "N/A"]
1868
+ },
1869
+ "noticesServedOnOwner": {
1870
+ "fme1Ref": "6.10",
1871
+ "title": "Copy of any known notices served on the Owner and documentation arising from them.",
1872
+ "type": "string",
1873
+ "enum": ["Enclosed", "To follow", "N/A"]
1874
+ },
1875
+ "asbestosSurvey": {
1876
+ "fme1Ref": "6.11",
1877
+ "title": "Asbestos Survey for buildings part of the Managed Area built or converted before 2001.",
1878
+ "type": "string",
1879
+ "enum": ["Enclosed", "To follow", "N/A"]
1880
+ },
1881
+ "managedAreaFireRiskAssessment": {
1882
+ "fme1Ref": "6.12",
1883
+ "title": "Fire Risk Assessment for communal areas in buildings forming part of the Managed Area.",
1884
+ "type": "string",
1885
+ "enum": ["Enclosed", "To follow", "N/A"]
1886
+ },
1887
+ "memorandumAndArticles": {
1888
+ "fme1Ref": "6.13",
1889
+ "title": "Memorandum and Articles of Association of the Management Company.",
1890
+ "type": "string",
1891
+ "enum": ["Enclosed", "To follow", "N/A"]
1892
+ },
1893
+ "managementCompanyAGMMinutes": {
1894
+ "fme1Ref": "6.14",
1895
+ "title": "Minutes from the last AGM for the Management Company.",
1896
+ "type": "string",
1897
+ "enum": ["Enclosed", "To follow", "N/A"]
1898
+ },
1899
+ "feesForAdminServices": {
1900
+ "fme1Ref": "6.15",
1901
+ "title": "Menu of fees for your administrative services.",
1902
+ "type": "string",
1903
+ "enum": ["Enclosed", "To follow", "N/A"]
1904
+ }
1905
+ }
1906
+ },
1907
+ "confirmation": {
1908
+ "title": "Confirmation",
1909
+ "description": "By checking the box you are .",
1910
+ "type": "object",
1911
+ "required": ["response"],
1912
+ "properties": {
1913
+ "response": {
1914
+ "title": "Declaration",
1915
+ "description": "I/we confirm that I am the person authorised to provide the information which I have completed in it on behalf of those parties which I have selected from the list, and that a buyer may rely on the information which I have supplied without applying to any other party except where I have left a section blank because I do not have the authority to provide the information",
1916
+ "type": "boolean"
1917
+ },
1918
+ "capacity": {
1919
+ "title": "Please tick as applicable below, to confirm the capacity in which the answers are given.",
1920
+ "type": "string",
1921
+ "enum": [
1922
+ "Rentcharge Owner",
1923
+ "Management Company",
1924
+ "Managing Agent",
1925
+ "Residents' Association"
1926
+ ]
1927
+ }
1928
+ }
1929
+ }
1930
+ },
1931
+ "$defs": {
1932
+ "address": {
1933
+ "type": "object",
1934
+ "properties": {
1935
+ "line1": {
1936
+ "title": "Address line 1",
1937
+ "type": "string",
1938
+ "minLength": 1
1939
+ },
1940
+ "line2": {
1941
+ "title": "Address line 2",
1942
+ "type": "string"
1943
+ },
1944
+ "line3": {
1945
+ "title": "Address line 3",
1946
+ "type": "string"
1947
+ },
1948
+ "town": {
1949
+ "title": "Town",
1950
+ "type": "string"
1951
+ },
1952
+ "postcode": {
1953
+ "title": "Postcode",
1954
+ "type": "string",
1955
+ "minLength": 1
1956
+ }
1957
+ },
1958
+ "required": ["line1", "postcode"]
1959
+ },
1960
+ "contact": {
1961
+ "type": "object",
1962
+ "properties": {
1963
+ "nameOrOrganisation": {
1964
+ "title": "Name or organisation",
1965
+ "type": "string",
1966
+ "minLength": 1
1967
+ },
1968
+ "address": {
1969
+ "title": "Address",
1970
+ "type": "object",
1971
+ "properties": {
1972
+ "line1": {
1973
+ "title": "Address line 1",
1974
+ "type": "string",
1975
+ "minLength": 1
1976
+ },
1977
+ "line2": {
1978
+ "title": "Address line 2",
1979
+ "type": "string"
1980
+ },
1981
+ "line3": {
1982
+ "title": "Address line 3",
1983
+ "type": "string"
1984
+ },
1985
+ "town": {
1986
+ "title": "Town",
1987
+ "type": "string"
1988
+ },
1989
+ "postcode": {
1990
+ "title": "Postcode",
1991
+ "type": "string",
1992
+ "minLength": 1
1993
+ }
1994
+ },
1995
+ "required": ["line1", "postcode"]
1996
+ },
1997
+ "telephone": {
1998
+ "title": "Telephone",
1999
+ "type": "string",
2000
+ "minLength": 1
2001
+ },
2002
+ "emailAddress": {
2003
+ "title": "Email address",
2004
+ "type": "string",
2005
+ "format": "email"
2006
+ }
2007
+ },
2008
+ "required": [
2009
+ "nameOrOrganisation",
2010
+ "addressLine1",
2011
+ "postcode",
2012
+ "telephone",
2013
+ "emailAddress"
2014
+ ]
2015
+ },
2016
+ "bankDetails": {
2017
+ "type": "object",
2018
+ "properties": {
2019
+ "accountName": {
2020
+ "title": "Account name",
2021
+ "type": "string",
2022
+ "minLength": 1
2023
+ },
2024
+ "sortCode": {
2025
+ "title": "Sort code",
2026
+ "type": "string",
2027
+ "minLength": 1
2028
+ },
2029
+ "accountNumber": {
2030
+ "title": "Account number",
2031
+ "type": "integer"
2032
+ },
2033
+ "reference": {
2034
+ "title": "Reference to quote",
2035
+ "type": "string",
2036
+ "minLength": 1
2037
+ },
2038
+ "feeType": {
2039
+ "title": "Type of fee",
2040
+ "type": "string",
2041
+ "enum": [
2042
+ "Ground rent",
2043
+ "Service charges",
2044
+ "Administration fees",
2045
+ "All"
2046
+ ]
2047
+ }
2048
+ }
2049
+ }
2050
+ }
2051
+ }