@pdtf/schemas 3.6.0-dev.6 → 3.6.0-dev.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/busy-spence-79c6bf/CLAUDE.md +101 -0
  2. package/busy-spence-79c6bf/LICENSE +21 -0
  3. package/busy-spence-79c6bf/README.md +435 -0
  4. package/busy-spence-79c6bf/docs/branch-release-workflow.md +138 -0
  5. package/busy-spence-79c6bf/docs/sef25-extensions-ui-spec.md +355 -0
  6. package/busy-spence-79c6bf/index.js +654 -0
  7. package/busy-spence-79c6bf/package-lock.json +7299 -0
  8. package/busy-spence-79c6bf/package.json +44 -0
  9. package/busy-spence-79c6bf/scripts/ta6ed6-titles.js +403 -0
  10. package/busy-spence-79c6bf/scripts/ta7ed5-titles.js +183 -0
  11. package/busy-spence-79c6bf/src/examples/v1/exampleAddParticipantVouch.json +32 -0
  12. package/busy-spence-79c6bf/src/examples/v1/exampleDocumentedVouch.json +40 -0
  13. package/busy-spence-79c6bf/src/examples/v1/exampleElectronicRecord.json +30 -0
  14. package/busy-spence-79c6bf/src/examples/v1/exampleTransaction.json +878 -0
  15. package/busy-spence-79c6bf/src/examples/v1/exampleVouch.json +25 -0
  16. package/busy-spence-79c6bf/src/examples/v2/exampleTransaction.json +901 -0
  17. package/busy-spence-79c6bf/src/examples/v3/exampleAddParticipantVouch.json +38 -0
  18. package/busy-spence-79c6bf/src/examples/v3/exampleCustomOverlay.json +55 -0
  19. package/busy-spence-79c6bf/src/examples/v3/exampleCustomOverlay2.json +93 -0
  20. package/busy-spence-79c6bf/src/examples/v3/exampleDocumentedVouch.json +47 -0
  21. package/busy-spence-79c6bf/src/examples/v3/exampleElectronicRecord.json +36 -0
  22. package/busy-spence-79c6bf/src/examples/v3/exampleTransaction.json +1038 -0
  23. package/busy-spence-79c6bf/src/examples/v3/exampleVouch.json +32 -0
  24. package/busy-spence-79c6bf/src/mappings/SendPropertyDetailsRequestSchema.json +1588 -0
  25. package/busy-spence-79c6bf/src/mappings/adf.js +198 -0
  26. package/busy-spence-79c6bf/src/schemas/v1/GeoJSON.json +1279 -0
  27. package/busy-spence-79c6bf/src/schemas/v1/baspiNotes.html +102 -0
  28. package/busy-spence-79c6bf/src/schemas/v1/energy-performance-certificate.json +124 -0
  29. package/busy-spence-79c6bf/src/schemas/v1/freehold-information.json +2051 -0
  30. package/busy-spence-79c6bf/src/schemas/v1/leasehold-information.json +2064 -0
  31. package/busy-spence-79c6bf/src/schemas/v1/legal-information.json +1045 -0
  32. package/busy-spence-79c6bf/src/schemas/v1/material-facts.json +2109 -0
  33. package/busy-spence-79c6bf/src/schemas/v1/pdtf-transaction-search-results.json +40 -0
  34. package/busy-spence-79c6bf/src/schemas/v1/pdtf-transaction.json +191 -0
  35. package/busy-spence-79c6bf/src/schemas/v1/searches/drainage-and-water.json +261 -0
  36. package/busy-spence-79c6bf/src/schemas/v1/searches/local-land-charges.json +69 -0
  37. package/busy-spence-79c6bf/src/schemas/v1/searches/local-searches-required.json +857 -0
  38. package/busy-spence-79c6bf/src/schemas/v1/searches.json +237 -0
  39. package/busy-spence-79c6bf/src/schemas/v1/title-deed.json +841 -0
  40. package/busy-spence-79c6bf/src/schemas/v2/baspiNotes.html +102 -0
  41. package/busy-spence-79c6bf/src/schemas/v2/combined.json +37731 -0
  42. package/busy-spence-79c6bf/src/schemas/v2/overlays/baspi.json +8132 -0
  43. package/busy-spence-79c6bf/src/schemas/v2/overlays/con29DW.json +705 -0
  44. package/busy-spence-79c6bf/src/schemas/v2/overlays/con29R.json +2956 -0
  45. package/busy-spence-79c6bf/src/schemas/v2/overlays/fme1.json +1259 -0
  46. package/busy-spence-79c6bf/src/schemas/v2/overlays/llc1.json +25 -0
  47. package/busy-spence-79c6bf/src/schemas/v2/overlays/lpe1.json +2171 -0
  48. package/busy-spence-79c6bf/src/schemas/v2/overlays/nts.json +326 -0
  49. package/busy-spence-79c6bf/src/schemas/v2/overlays/oc1.json +2799 -0
  50. package/busy-spence-79c6bf/src/schemas/v2/overlays/piq.json +3419 -0
  51. package/busy-spence-79c6bf/src/schemas/v2/overlays/rds.json +3736 -0
  52. package/busy-spence-79c6bf/src/schemas/v2/overlays/ta10.json +5306 -0
  53. package/busy-spence-79c6bf/src/schemas/v2/overlays/ta6.json +4533 -0
  54. package/busy-spence-79c6bf/src/schemas/v2/overlays/ta7.json +1045 -0
  55. package/busy-spence-79c6bf/src/schemas/v2/pdtf-transaction.json +34351 -0
  56. package/busy-spence-79c6bf/src/schemas/v2/skeleton.json +3973 -0
  57. package/busy-spence-79c6bf/src/schemas/v3/combined.json +48643 -0
  58. package/busy-spence-79c6bf/src/schemas/v3/compactSkeleton.txt +4519 -0
  59. package/busy-spence-79c6bf/src/schemas/v3/overlays/README.md +299 -0
  60. package/busy-spence-79c6bf/src/schemas/v3/overlays/baspi4.json +8030 -0
  61. package/busy-spence-79c6bf/src/schemas/v3/overlays/baspi5.json +8180 -0
  62. package/busy-spence-79c6bf/src/schemas/v3/overlays/con29DW.json +716 -0
  63. package/busy-spence-79c6bf/src/schemas/v3/overlays/con29R.json +2981 -0
  64. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ac.json +334 -0
  65. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/as.json +74 -0
  66. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/dk.json +33 -0
  67. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/dr.json +73 -0
  68. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/er.json +85 -0
  69. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/fd.json +75 -0
  70. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/hi.json +51 -0
  71. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/hs.json +73 -0
  72. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ic.json +94 -0
  73. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/jk.json +96 -0
  74. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/la.json +85 -0
  75. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/lc.json +76 -0
  76. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ma.json +90 -0
  77. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/mc.json +38 -0
  78. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/mi.json +70 -0
  79. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/nd.json +44 -0
  80. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/oa.json +24 -0
  81. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/oc.json +57 -0
  82. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/pc.json +38 -0
  83. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ph.json +195 -0
  84. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/rw.json +69 -0
  85. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sb.json +73 -0
  86. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sc.json +133 -0
  87. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sd.json +64 -0
  88. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sf.json +74 -0
  89. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/sl.json +68 -0
  90. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/ta.json +204 -0
  91. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/tf.json +103 -0
  92. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/tr.json +74 -0
  93. package/busy-spence-79c6bf/src/schemas/v3/overlays/extensions/wg.json +351 -0
  94. package/busy-spence-79c6bf/src/schemas/v3/overlays/fme1.json +1266 -0
  95. package/busy-spence-79c6bf/src/schemas/v3/overlays/llc1.json +25 -0
  96. package/busy-spence-79c6bf/src/schemas/v3/overlays/lpe1.json +2199 -0
  97. package/busy-spence-79c6bf/src/schemas/v3/overlays/nts.json +2159 -0
  98. package/busy-spence-79c6bf/src/schemas/v3/overlays/nts2.json +2744 -0
  99. package/busy-spence-79c6bf/src/schemas/v3/overlays/ntsl.json +1815 -0
  100. package/busy-spence-79c6bf/src/schemas/v3/overlays/ntsl2.json +2219 -0
  101. package/busy-spence-79c6bf/src/schemas/v3/overlays/oc1.json +2817 -0
  102. package/busy-spence-79c6bf/src/schemas/v3/overlays/piq.json +3324 -0
  103. package/busy-spence-79c6bf/src/schemas/v3/overlays/rds.json +3668 -0
  104. package/busy-spence-79c6bf/src/schemas/v3/overlays/sef25.json +1653 -0
  105. package/busy-spence-79c6bf/src/schemas/v3/overlays/sr24.json +38 -0
  106. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta10.json +4645 -0
  107. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta6.json +4572 -0
  108. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta6ed6.json +6665 -0
  109. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta7.json +1537 -0
  110. package/busy-spence-79c6bf/src/schemas/v3/overlays/ta7ed5.json +1585 -0
  111. package/busy-spence-79c6bf/src/schemas/v3/pdtf-transaction.json +41570 -0
  112. package/busy-spence-79c6bf/src/schemas/v3/skeleton.json +5767 -0
  113. package/busy-spence-79c6bf/src/schemas/verifiedClaims/README.md +21 -0
  114. package/busy-spence-79c6bf/src/schemas/verifiedClaims/pdtf-verified-claims.json +447 -0
  115. package/busy-spence-79c6bf/src/utils/compactSkeleton.js +84 -0
  116. package/busy-spence-79c6bf/src/utils/countTokens.js +67 -0
  117. package/busy-spence-79c6bf/src/utils/extractExtensionOverlays.js +633 -0
  118. package/busy-spence-79c6bf/src/utils/extractOverlay.js +381 -0
  119. package/busy-spence-79c6bf/src/utils/extractProperties.js +44 -0
  120. package/busy-spence-79c6bf/src/utils/listPathTitles.js +36 -0
  121. package/busy-spence-79c6bf/src/utils/minimalSkeleton.js +85 -0
  122. package/busy-spence-79c6bf/src/utils/pathList.csv +903 -0
  123. package/busy-spence-79c6bf/src/utils/pathSkeleton.js +181 -0
  124. package/busy-spence-79c6bf/ta6ed6-titles-plan.md +118 -0
  125. package/busy-spence-79c6bf/ta7ed5-titles-spec.md +89 -0
  126. package/package.json +1 -1
  127. package/src/schemas/v3/combined.json +228 -50
  128. package/src/schemas/v3/overlays/llc1.json +1 -2
  129. package/src/schemas/v3/overlays/ta6ed6.json +204 -75
  130. package/src/schemas/v3/overlays/ta7ed5.json +54 -20
  131. package/src/schemas/v3/pdtf-transaction.json +7 -7
@@ -0,0 +1,857 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://trust.propdata.org.uk/schemas/v1/searches/local-searches-required.json",
4
+ "type": "object",
5
+ "title": "Local Search Enquiries",
6
+ "description": "The results of a standard CON29R search",
7
+ "properties": {
8
+ "planningAndBuildingRegulations": {
9
+ "type": "object",
10
+ "con29RRef": "Part 1",
11
+ "title": "Planning and Building Regulations",
12
+ "properties": {
13
+ "decisionsAndPendingApplications": {
14
+ "con29RRef": "1.1",
15
+ "title": "Planning and building decisions and pending applications",
16
+ "description": "Which of the following relating to the property have been granted, issued or refused or (where applicable) are the subject of pending applications or agreements?",
17
+ "type": "object",
18
+ "properties": {
19
+ "planningPermission": {
20
+ "con29RRef": "1.1(a)",
21
+ "title": "A planning permission",
22
+ "$ref": "#/$defs/planningApplicationList"
23
+ },
24
+ "listedBuildingConsent": {
25
+ "con29RRef": "1.1(b)",
26
+ "title": "A listed building consent",
27
+ "$ref": "#/$defs/planningApplicationList"
28
+ },
29
+ "conservationAreaConsent": {
30
+ "con29RRef": "1.1(c)",
31
+ "title": "A conservation area consent",
32
+ "$ref": "#/$defs/planningApplicationList"
33
+ },
34
+ "lawfulnessOfExistingUse": {
35
+ "con29RRef": "1.1(d)",
36
+ "title": "A certificate of lawfulness of existing use or development",
37
+ "$ref": "#/$defs/planningApplicationList"
38
+ },
39
+ "certificateOfLawfulnessOfProposedUse": {
40
+ "con29RRef": "1.1(e)",
41
+ "title": "A certificate of lawfulness of proposed use or development",
42
+ "$ref": "#/$defs/planningApplicationList"
43
+ },
44
+ "lawfulnessOfProposedListedWorks": {
45
+ "con29RRef": "1.1(f)",
46
+ "title": "A certificate of lawfulness of proposed works for listed buildings",
47
+ "$ref": "#/$defs/planningApplicationList"
48
+ },
49
+ "heritagePartnershipAgreement": {
50
+ "con29RRef": "1.1(g)",
51
+ "title": "A heritage partnership agreement",
52
+ "$ref": "#/$defs/planningApplicationList"
53
+ },
54
+ "listedBuildingConsentOrder": {
55
+ "con29RRef": "1.1(h)",
56
+ "title": "A listed building consent order",
57
+ "$ref": "#/$defs/planningApplicationList"
58
+ },
59
+ "localListedBuildingConsentOrder": {
60
+ "con29RRef": "1.1(i)",
61
+ "title": "A local listed building consent order",
62
+ "$ref": "#/$defs/planningApplicationList"
63
+ },
64
+ "buildingRegulationsApproval": {
65
+ "con29RRef": "1.1(j)",
66
+ "title": "Building regulations approval",
67
+ "$ref": "#/$defs/planningApplicationList"
68
+ },
69
+ "buildingRegulationsCompletion": {
70
+ "con29RRef": "1.1(k)",
71
+ "title": "A building regulation completion certificate",
72
+ "$ref": "#/$defs/planningApplicationList"
73
+ },
74
+ "buildingRegulationsSelfCertification": {
75
+ "con29RRef": "1.1(l)",
76
+ "title": "Any building regulations certificate or notice issued in respect of work carried out under a competent person self-certification scheme",
77
+ "$ref": "#/$defs/planningApplicationList"
78
+ },
79
+ "planningStartDate": {
80
+ "title": "The earliest date from which planning applications would have been included in this list",
81
+ "type": "string",
82
+ "format": "date"
83
+ },
84
+ "buildingControlStartDate": {
85
+ "title": "The earliest date from which building control decisions would have been included in this list",
86
+ "type": "string",
87
+ "format": "date"
88
+ }
89
+ }
90
+ },
91
+ "designationsAndProposals": {
92
+ "con29RRef": "1.2",
93
+ "title": "Planning designations and proposals",
94
+ "description": "What designations of land use for the property, or the area, and what specific proposals for the property, are contained in any existing or proposed development plan?",
95
+ "type": "object",
96
+ "properties": {
97
+ "plans": {
98
+ "type": "array",
99
+ "items": {
100
+ "type": "object",
101
+ "title": "Local plan",
102
+ "properties": {
103
+ "name": {
104
+ "type": "string",
105
+ "title": "What is the name of the plan?",
106
+ "minLength": 1
107
+ },
108
+ "status": {
109
+ "type": "string",
110
+ "title": "What is the current status of the plan?",
111
+ "minLength": 1
112
+ },
113
+ "statusDate": {
114
+ "type": "string",
115
+ "title": "When did the plan move to this status?",
116
+ "minLength": 1
117
+ },
118
+ "designations": {
119
+ "type": "array",
120
+ "items": {
121
+ "type": "object",
122
+ "title": "Local plan designation",
123
+ "properties": {
124
+ "designationType": {
125
+ "type": "string",
126
+ "title": "What type of designation is this?",
127
+ "minLength": 1
128
+ },
129
+ "description": {
130
+ "type": "string",
131
+ "title": "What is the description given for this designation?",
132
+ "minLength": 1
133
+ }
134
+ }
135
+ }
136
+ }
137
+ }
138
+ }
139
+ }
140
+ }
141
+ }
142
+ }
143
+ },
144
+ "roadsAndPublicRightsOfWay": {
145
+ "con29RRef": "Part 2",
146
+ "title": "Roads and Public Rights of Way",
147
+ "type": "object",
148
+ "properties": {
149
+ "roadsFootwaysAndFootpaths": {
150
+ "type": "object",
151
+ "con29RRef": "2.1",
152
+ "title": "Which of the roads, footways, and footpaths named in the application for this search are:",
153
+ "properties": {
154
+ "highwaysMaintainableAtPublicExpense": {
155
+ "con29RRef": "2.1(a)",
156
+ "title": "Highways maintainable at public expense",
157
+ "type": "array",
158
+ "items": {
159
+ "$ref": "#/$defs/road"
160
+ }
161
+ },
162
+ "subjectToAdoption": {
163
+ "con29RRef": "2.1(b)",
164
+ "title": "Subject to adoption and supported by a bond or waiver",
165
+ "type": "array",
166
+ "items": {
167
+ "$ref": "#/$defs/road"
168
+ }
169
+ },
170
+ "toBeMadeUpWithReclaim": {
171
+ "con29RRef": "2.1(c)",
172
+ "title": "To be made up by a local authority who will reclaim the cost from frontagers",
173
+ "type": "array",
174
+ "items": {
175
+ "$ref": "#/$defs/road"
176
+ }
177
+ },
178
+ "toBeMadeUpWithoutReclaim": {
179
+ "con29RRef": "2.1(d)",
180
+ "title": "To be adopted by a local authority without reclaiming the cost from the frontagers",
181
+ "type": "array",
182
+ "items": {
183
+ "$ref": "#/$defs/road"
184
+ }
185
+ }
186
+ }
187
+ },
188
+ "publicRightsOfWay": {
189
+ "title": "Public rights of way",
190
+ "type": "object",
191
+ "properties": {
192
+ "shownOnDefinitiveMap": {
193
+ "con29RRef": "2.2",
194
+ "title": "Is any public right of way which abuts on, or crosses the property, shown on a definitive map or revised definitive map?",
195
+ "$ref": "#/$defs/yesNoDetailIfYes"
196
+ },
197
+ "pendingApplicationsToRecord": {
198
+ "con29RRef": "2.3",
199
+ "title": "Are there any pending applications to record a public right of way that abuts, or crosses the property, on the Register?",
200
+ "$ref": "#/$defs/yesNoDetailIfYes"
201
+ },
202
+ "legalOrdersToStop": {
203
+ "con29RRef": "2.4",
204
+ "title": "Are there any legal orders to stop up, divert, alter, or create a public right of way which abuts, or crosses the property not yet implemented or shown on a definitive map?",
205
+ "description": "If so, please attach a plan showing the approximate route",
206
+ "$ref": "#/$defs/yesNoDetailIfYes"
207
+ }
208
+ }
209
+ }
210
+ }
211
+ },
212
+ "otherMatters": {
213
+ "con29RRef": "Part 3",
214
+ "title": "Other Matters",
215
+ "description": "Apart from matters entered on the registers of local land charges, do any of the following matters apply to the property?",
216
+ "type": "object",
217
+ "properties": {
218
+ "landRequiredForPublicPurposes": {
219
+ "con29RRef": "3.1",
220
+ "title": "Land required for public purposes",
221
+ "description": "Is the property included in land required for public purposes?",
222
+ "$ref": "#/$defs/yesNoDetailIfYes"
223
+ },
224
+ "landToBeAcquiredForRoadWorks": {
225
+ "con29RRef": "3.2",
226
+ "title": "Land to be acquired for road works",
227
+ "description": "Is the property included in land to be acquired for road works?",
228
+ "$ref": "#/$defs/yesNoDetailIfYes"
229
+ },
230
+ "drainageMatters": {
231
+ "con29RRef": "3.3",
232
+ "title": "Drainage matters",
233
+ "type": "object",
234
+ "properties": {
235
+ "propertyServedByASustainableUrbanDrainage": {
236
+ "con29RRef": "3.3(a)",
237
+ "title": "Is the property served by a sustainable urban drainage?",
238
+ "$ref": "#/$defs/yesNoDetailIfYes"
239
+ },
240
+ "suDsFeaturesWithinTheBoundaryOfTheProperty": {
241
+ "con29RRef": "3.3(b)",
242
+ "title": "Are there SuDS features within the boundary of the property? If yes, is the owner responsible for maintenance?",
243
+ "$ref": "#/$defs/yesNoDetailIfYes"
244
+ },
245
+ "ifPropertyBenefitsFromASuDsForWhichThereIsAChargeWhoBillsThePropertyForSurfaceWaterDrainageCharge": {
246
+ "con29RRef": "3.3(c)",
247
+ "title": "If the property benefits from a SuDS for which there is a charge, who bills the property for surface water drainage charge?",
248
+ "$ref": "#/$defs/yesNoDetailIfYes"
249
+ }
250
+ }
251
+ },
252
+ "nearbyRoadSchemes": {
253
+ "con29RRef": "3.4",
254
+ "title": "Nearby road schemes",
255
+ "description": "Is the property (or will it be) within 200 meters of any of the following?",
256
+ "type": "object",
257
+ "properties": {
258
+ "centreLineOfANewTrunkRoadOrSpecialRoadSpecifiedInAnyOrderDraftOrderOrScheme": {
259
+ "con29RRef": "3.4(a)",
260
+ "title": "the centre line of a new trunk road or special road specified in any order, draft order or scheme;",
261
+ "$ref": "#/$defs/yesNoDetailIfYes"
262
+ },
263
+ "centreLineOfAProposedAlterationOrImprovementToAnExistingRoad": {
264
+ "con29RRef": "3.4(b)",
265
+ "title": "the centre line of a proposed alteration or improvement to an existing road involving construction of a subway, underpass, flyover, footbridge, elevated road or dual carriageway;",
266
+ "$ref": "#/$defs/yesNoDetailIfYes"
267
+ },
268
+ "outerLimitsOfConstructionWorksForAProposedAlterationOrImprovementToAnExistingRoad": {
269
+ "con29RRef": "3.4(c)",
270
+ "title": "the outer limits of construction works for a proposed alteration or improvement to an existing road, involving:-",
271
+ "type": "object",
272
+ "properties": {
273
+ "constructionOfARoundaboutOtherThanAMiniRoundabout": {
274
+ "con29RRef": "3.4(c)(i)",
275
+ "title": "construction of a roundabout (other than a mini roundabout); or",
276
+ "$ref": "#/$defs/yesNoDetailIfYes"
277
+ },
278
+ "wideningByConstructionOfOneOrMoreAdditionalTrafficLanes": {
279
+ "con29RRef": "3.4(c)(ii)",
280
+ "title": "widening by construction of one or more additional traffic lanes;",
281
+ "$ref": "#/$defs/yesNoDetailIfYes"
282
+ }
283
+ }
284
+ },
285
+ "outerLimitsOf": {
286
+ "con29RRef": "3.4(d)",
287
+ "title": "the outer limits of:",
288
+ "type": "object",
289
+ "properties": {
290
+ "constructionOfANewRoadToBeBuiltByALocalAuthority": {
291
+ "con29RRef": "3.4(d)(1)",
292
+ "title": "construction of a new road to be built by a local authority;",
293
+ "$ref": "#/$defs/yesNoDetailIfYes"
294
+ },
295
+ "approvedAlterationOrImprovementToAnExistingRoad": {
296
+ "con29RRef": "3.4(d)(ii)",
297
+ "title": "an approved alteration or improvement to an existing road involving construction of a subway, underpass, flyover, footbridge, elevated road or dual carriageway;",
298
+ "$ref": "#/$defs/yesNoDetailIfYes"
299
+ },
300
+ "constructionOfARoundaboutOtherThanAMiniRoundaboutOrWideningByConstructionOfOneOrMoreAdditionalTrafficLanes": {
301
+ "con29RRef": "3.4(d)(iii)",
302
+ "title": "construction of a roundabout (other than a mini roundabout) or widening by construction of one or more additional traffic lanes;",
303
+ "$ref": "#/$defs/yesNoDetailIfYes"
304
+ }
305
+ }
306
+ },
307
+ "centreLineOfTheProposedRouteOfANewRoad": {
308
+ "con29RRef": "3.4(e)",
309
+ "title": "the centre line of the proposed route of a new road under proposals published for public consultation;",
310
+ "$ref": "#/$defs/yesNoDetailIfYes"
311
+ },
312
+ "outerLimitsOfConstructionUnderProposalsUnderPublicConsultation": {
313
+ "con29RRef": "3.4(f)",
314
+ "title": "the outer limits of (under proposals published for public consultation)",
315
+ "type": "object",
316
+ "properties": {
317
+ "constructionOfAProposedAlterationOrImprovementToAnExistingRoad": {
318
+ "con29RRef": "3.4(f)(i)",
319
+ "title": "construction of a proposed alteration or improvement to an existing road involving construction of a subway, underpass, flyover, footbridge, elevated road or dual carriageway;",
320
+ "$ref": "#/$defs/yesNoDetailIfYes"
321
+ },
322
+ "constructionOfARoundaboutOtherThanAMiniRoundabout": {
323
+ "con29RRef": "3.4(f)(ii)",
324
+ "title": "construction of a roundabout (other than a mini roundabout);",
325
+ "$ref": "#/$defs/yesNoDetailIfYes"
326
+ },
327
+ "wideningByConstructionOfOneOrMoreAdditionalTrafficLanes": {
328
+ "con29RRef": "3.4(f)(iii)",
329
+ "title": "widening by construction of one or more additional traffic lanes",
330
+ "$ref": "#/$defs/yesNoDetailIfYes"
331
+ }
332
+ }
333
+ }
334
+ }
335
+ },
336
+ "nearbyRailwaySchemes": {
337
+ "con29RRef": "3.5",
338
+ "title": "Nearby railway schemes",
339
+ "type": "object",
340
+ "properties": {
341
+ "propertyWithin200MetersOfTheCentreLineOfAProposedRailwayTramwayLightRailwayOrMonorail": {
342
+ "con29RRef": "3.5(a)",
343
+ "title": "Is the property (or will it be) within 200 meters of the centre line of a proposed railway, tramway, light railway or monorail?",
344
+ "$ref": "#/$defs/yesNoDetailIfYes"
345
+ },
346
+ "proposalsForARailwayTramwayLightRailwayOrMonorail": {
347
+ "con29RRef": "3.5(b)",
348
+ "title": "Are there are any proposals for a railway, tramway, light railway or monorail within the Local Authority's boundary?",
349
+ "$ref": "#/$defs/yesNoDetailIfYes"
350
+ }
351
+ }
352
+ },
353
+ "trafficSchemes": {
354
+ "con29RRef": "3.6",
355
+ "title": "Traffic schemes",
356
+ "description": "Has a local authority approved but not yet implemented any of the following for the roads, footways and footpaths which are named in Box B and C and are within 200 metres of the boundaries of the property?",
357
+ "type": "object",
358
+ "properties": {
359
+ "permanentStoppingUpOrDiversion": {
360
+ "con29RRef": "3.6(a)",
361
+ "title": "permanent stopping up or diversion;",
362
+ "$ref": "#/$defs/yesNoDetailIfYes"
363
+ },
364
+ "waitingOrLoadingRestrictions": {
365
+ "con29RRef": "3.6(b)",
366
+ "title": "waiting or loading restrictions;",
367
+ "$ref": "#/$defs/yesNoDetailIfYes"
368
+ },
369
+ "oneWayDriving": {
370
+ "con29RRef": "3.6(c)",
371
+ "title": "one way driving;",
372
+ "$ref": "#/$defs/yesNoDetailIfYes"
373
+ },
374
+ "prohibitionOfDriving": {
375
+ "con29RRef": "3.6(d)",
376
+ "title": "prohibition of driving;",
377
+ "$ref": "#/$defs/yesNoDetailIfYes"
378
+ },
379
+ "pedestrianisation": {
380
+ "con29RRef": "3.6(e)",
381
+ "title": "pedestrianisation;",
382
+ "$ref": "#/$defs/yesNoDetailIfYes"
383
+ },
384
+ "vehicleWidthOrWeightRestriction": {
385
+ "con29RRef": "3.6(f)",
386
+ "title": "vehicle width or weight restriction;",
387
+ "$ref": "#/$defs/yesNoDetailIfYes"
388
+ },
389
+ "trafficCalmingWorks": {
390
+ "con29RRef": "3.6(g)",
391
+ "title": "traffic calming works including road humps;",
392
+ "$ref": "#/$defs/yesNoDetailIfYes"
393
+ },
394
+ "residentsParkingControls": {
395
+ "con29RRef": "3.6(h)",
396
+ "title": "residents parking controls;",
397
+ "$ref": "#/$defs/yesNoDetailIfYes"
398
+ },
399
+ "minorRoadWideningOrImprovement": {
400
+ "con29RRef": "3.6(i)",
401
+ "title": "minor road widening or improvement;",
402
+ "$ref": "#/$defs/yesNoDetailIfYes"
403
+ },
404
+ "pedestrianCrossings": {
405
+ "con29RRef": "3.6(j)",
406
+ "title": "pedestrian crossings;",
407
+ "$ref": "#/$defs/yesNoDetailIfYes"
408
+ },
409
+ "cycleTracks": {
410
+ "con29RRef": "3.6(k)",
411
+ "title": "cycle tracks;",
412
+ "$ref": "#/$defs/yesNoDetailIfYes"
413
+ },
414
+ "bridgeBuilding": {
415
+ "con29RRef": "3.6(l)",
416
+ "title": "bridge building",
417
+ "$ref": "#/$defs/yesNoDetailIfYes"
418
+ }
419
+ }
420
+ },
421
+ "outstandingNotices": {
422
+ "con29RRef": "3.7",
423
+ "title": "Outstanding notices",
424
+ "description": "Do any statutory notices which relate to the following matters subsist in relation to the property other than those revealed in a response to any other enquiry in this form?",
425
+ "type": "object",
426
+ "properties": {
427
+ "buildingWorks": {
428
+ "con29RRef": "3.7(a)",
429
+ "title": "building works;",
430
+ "$ref": "#/$defs/yesNoDetailIfYes"
431
+ },
432
+ "environment": {
433
+ "con29RRef": "3.7(b)",
434
+ "title": "environment;",
435
+ "$ref": "#/$defs/yesNoDetailIfYes"
436
+ },
437
+ "healthAndSafety": {
438
+ "con29RRef": "3.7(c)",
439
+ "title": "health and safety;",
440
+ "$ref": "#/$defs/yesNoDetailIfYes"
441
+ },
442
+ "housing": {
443
+ "con29RRef": "3.7(d)",
444
+ "title": "housing;",
445
+ "$ref": "#/$defs/yesNoDetailIfYes"
446
+ },
447
+ "highways": {
448
+ "con29RRef": "3.7(e)",
449
+ "title": "highways;",
450
+ "$ref": "#/$defs/yesNoDetailIfYes"
451
+ },
452
+ "publicHealth": {
453
+ "con29RRef": "3.7(f)",
454
+ "title": "public health;",
455
+ "$ref": "#/$defs/yesNoDetailIfYes"
456
+ },
457
+ "floodAndCostalErosionRiskManagement": {
458
+ "con29RRef": "3.7(g)",
459
+ "title": "flood and costal erosion risk management",
460
+ "$ref": "#/$defs/yesNoDetailIfYes"
461
+ }
462
+ }
463
+ },
464
+ "contraventionOfBuildingRegulations": {
465
+ "con29RRef": "3.8",
466
+ "title": "Contravention of building regulations",
467
+ "description": "Has a local authority authorised in relation to the property any proceedings for the contravention of any provision contained in building regulations?",
468
+ "$ref": "#/$defs/yesNoDetailIfYes"
469
+ },
470
+ "noticesOrdersDirectionsAndProceedingsUnderPlanningActs": {
471
+ "con29RRef": "3.9",
472
+ "title": "Notices, orders, directions and proceedings under Planning Acts",
473
+ "description": "Do any of the following subsist in relation to the property, or has a local authority decided to issue, serve, make or commence any of the following?",
474
+ "type": "object",
475
+ "properties": {
476
+ "enforcementNotice": {
477
+ "con29RRef": "3.9(a)",
478
+ "title": "an enforcement notice;",
479
+ "$ref": "#/$defs/yesNoDetailIfYes"
480
+ },
481
+ "stopNotice": {
482
+ "con29RRef": "3.9(b)",
483
+ "title": "a stop notice;",
484
+ "$ref": "#/$defs/yesNoDetailIfYes"
485
+ },
486
+ "listedBuildingEnforcementNotice": {
487
+ "con29RRef": "3.9(c)",
488
+ "title": "a listed building enforcement notice;",
489
+ "$ref": "#/$defs/yesNoDetailIfYes"
490
+ },
491
+ "breachOfConditionNotice": {
492
+ "con29RRef": "3.9(d)",
493
+ "title": "a breach of condition notice;",
494
+ "$ref": "#/$defs/yesNoDetailIfYes"
495
+ },
496
+ "planningContraventionNotice": {
497
+ "con29RRef": "3.9(e)",
498
+ "title": "a planning contravention notice;",
499
+ "$ref": "#/$defs/yesNoDetailIfYes"
500
+ },
501
+ "anotherNoticeRelatingToBreachOfPlanningControl": {
502
+ "con29RRef": "3.9(f)",
503
+ "title": "another notice relating to breach of planning control;",
504
+ "$ref": "#/$defs/yesNoDetailIfYes"
505
+ },
506
+ "listedBuildingRepairsNotice": {
507
+ "con29RRef": "3.9(g)",
508
+ "title": "a listed building repairs notice;",
509
+ "$ref": "#/$defs/yesNoDetailIfYes"
510
+ },
511
+ "inTheCaseOfAListedBuildingDeliberatelyAllowedToFallIntoDisrepairACompulsoryPurchaseOrderWithADirectionForMinimumCompensation": {
512
+ "con29RRef": "3.9(h)",
513
+ "title": "in the case of a listed building deliberately allowed to fall into disrepair, a compulsory purchase order with a direction for minimum compensation;",
514
+ "$ref": "#/$defs/yesNoDetailIfYes"
515
+ },
516
+ "buildingPreservationNotice": {
517
+ "con29RRef": "3.9(i)",
518
+ "title": "a building preservation notice;",
519
+ "$ref": "#/$defs/yesNoDetailIfYes"
520
+ },
521
+ "directionRestrictingPermittedDevelopment": {
522
+ "con29RRef": "3.9(j)",
523
+ "title": "a direction restricting permitted development;",
524
+ "$ref": "#/$defs/yesNoDetailIfYes"
525
+ },
526
+ "orderRevokingOrModifyingPlanningPermission": {
527
+ "con29RRef": "3.9(k)",
528
+ "title": "an order revoking or modifying planning permission;",
529
+ "$ref": "#/$defs/yesNoDetailIfYes"
530
+ },
531
+ "orderRequiringDiscontinuanceOfUseOrAlterationOrRemovalOfBuildingOrWorks": {
532
+ "con29RRef": "3.9(l)",
533
+ "title": "an order requiring discontinuance of use or alteration or removal of building or works;",
534
+ "$ref": "#/$defs/yesNoDetailIfYes"
535
+ },
536
+ "treePreservationOrder": {
537
+ "con29RRef": "3.9(m)",
538
+ "title": "a tree preservation order;",
539
+ "$ref": "#/$defs/yesNoDetailIfYes"
540
+ },
541
+ "proceedingsToEnforceAPlanningAgreementOrPlanningContribution": {
542
+ "con29RRef": "3.9(n)",
543
+ "title": "proceedings to enforce a planning agreement or planning contribution",
544
+ "$ref": "#/$defs/yesNoDetailIfYes"
545
+ }
546
+ }
547
+ },
548
+ "communityInfrastructureLevy": {
549
+ "con29RRef": "3.10",
550
+ "title": "Community infrastructure levy (CIL)",
551
+ "type": "object",
552
+ "properties": {
553
+ "cilChargingSchedule": {
554
+ "con29RRef": "3.10(a)",
555
+ "title": "Is there a CIL charging schedule?",
556
+ "$ref": "#/$defs/yesNo"
557
+ },
558
+ "doAnyOfTheFollowingSubsistInRelationToTheProperty": {
559
+ "con29RRef": "3.10(b)",
560
+ "title": "If, yes, do any of the following subsist in relation to the property, or has a local authority decided to issue, serve, make or commence any of the following:-",
561
+ "type": "object",
562
+ "properties": {
563
+ "liabilityNotice": {
564
+ "con29RRef": "3.10(b)(i)",
565
+ "title": "a liability notice?",
566
+ "$ref": "#/$defs/yesNoDetailIfYes"
567
+ },
568
+ "noticeOfChargeableDevelopment": {
569
+ "con29RRef": "3.10(b)(ii)",
570
+ "title": "a notice of chargeable development?",
571
+ "$ref": "#/$defs/yesNoDetailIfYes"
572
+ },
573
+ "demandNotice": {
574
+ "con29RRef": "3.10(b)(iii)",
575
+ "title": "a demand notice?",
576
+ "$ref": "#/$defs/yesNoDetailIfYes"
577
+ },
578
+ "defaultLiabilityNotice": {
579
+ "con29RRef": "3.10(b)(iv)",
580
+ "title": "a default liability notice?",
581
+ "$ref": "#/$defs/yesNoDetailIfYes"
582
+ },
583
+ "assumptionOfLiabilityNotice": {
584
+ "con29RRef": "3.10(b)(v)",
585
+ "title": "an assumption of liability notice?",
586
+ "$ref": "#/$defs/yesNoDetailIfYes"
587
+ },
588
+ "commencementNotice": {
589
+ "con29RRef": "3.10(b)(vi)",
590
+ "title": "a commencement notice?",
591
+ "$ref": "#/$defs/yesNoDetailIfYes"
592
+ }
593
+ }
594
+ },
595
+ "demandNoticeBeenSuspended": {
596
+ "con29RRef": "3.10(c)",
597
+ "title": "Has any demand notice been suspended?",
598
+ "$ref": "#/$defs/yesNoDetailIfYes"
599
+ },
600
+ "localAuthorityReceivedFullOrPartPaymentOfAnyCilLiability": {
601
+ "con29RRef": "3.10(d)",
602
+ "title": "Has the Local Authority received full or part payment of any CIL liability?",
603
+ "$ref": "#/$defs/yesNoDetailIfYes"
604
+ },
605
+ "localAuthorityReceivedAnyAppealAgainstAnyOfTheAbove": {
606
+ "con29RRef": "3.10(e)",
607
+ "title": "Has the Local Authority received any appeal against any of the above?",
608
+ "$ref": "#/$defs/yesNoDetailIfYes"
609
+ },
610
+ "decisionBeenTakenToApplyForALiabilityOrder": {
611
+ "con29RRef": "3.10(f)",
612
+ "title": "Has a decision been taken to apply for a liability order?",
613
+ "$ref": "#/$defs/yesNoDetailIfYes"
614
+ },
615
+ "liabilityOrderBeenGranted": {
616
+ "con29RRef": "3.10(g)",
617
+ "title": "Has a liability order been granted?",
618
+ "$ref": "#/$defs/yesNoDetailIfYes"
619
+ },
620
+ "otherEnforcementMeasuresBeenTaken": {
621
+ "con29RRef": "3.10(h)",
622
+ "title": "Have any other enforcement measures been taken?",
623
+ "$ref": "#/$defs/yesNoDetailIfYes"
624
+ }
625
+ }
626
+ },
627
+ "conservationArea": {
628
+ "con29RRef": "3.11",
629
+ "title": "Conservation area",
630
+ "description": "Do any of the following apply to the property?",
631
+ "type": "object",
632
+ "properties": {
633
+ "makingOfTheAreaAConservationAreaBefore31August1974": {
634
+ "con29RRef": "3.11(a)",
635
+ "title": "the making of the area a conservation area before 31 August 1974;",
636
+ "$ref": "#/$defs/yesNoDetailIfYes"
637
+ },
638
+ "unimplementedResolutionToDesignateTheAreaAConservationArea": {
639
+ "con29RRef": "3.11(b)",
640
+ "title": "an unimplemented resolution to designate the area a conservation area",
641
+ "$ref": "#/$defs/yesNoDetailIfYes"
642
+ }
643
+ }
644
+ },
645
+ "compulsoryPurchase": {
646
+ "con29RRef": "3.12",
647
+ "title": "Compulsory purchase",
648
+ "description": "Has any enforceable order or decision been made to compulsorily purchase or acquire the property?",
649
+ "$ref": "#/$defs/yesNoDetailIfYes"
650
+ },
651
+ "contaminatedLand": {
652
+ "con29RRef": "3.13",
653
+ "title": "Contaminated land",
654
+ "description": "Do any of the following apply (including any relating land adjacent to or adjoining the property which has been identified as contaminated land because it is in such a condition that harm or pollution of controlled waters might be caused on the property)?",
655
+ "type": "object",
656
+ "properties": {
657
+ "contaminatedLandNotice": {
658
+ "con29RRef": "3.13(a)",
659
+ "title": "contaminated land notice;",
660
+ "$ref": "#/$defs/yesNoDetailIfYes"
661
+ },
662
+ "inRelationToARegisterMaintainedUnderSection_78R": {
663
+ "con29RRef": "3.13(b)",
664
+ "title": "in relation to a register maintained under section 78R of the Environmental Protection Act 1990",
665
+ "$ref": "#/$defs/yesNoDetailIfYes"
666
+ },
667
+ "decisionToMakeAnEntry": {
668
+ "con29RRef": "3.13(b)(i)",
669
+ "title": "a decision to make an entry",
670
+ "$ref": "#/$defs/yesNoDetailIfYes"
671
+ },
672
+ "entry": {
673
+ "con29RRef": "3.13(b)(ii)",
674
+ "title": "an entry",
675
+ "$ref": "#/$defs/yesNoDetailIfYes"
676
+ }
677
+ },
678
+ "consultationWithTheOwnerOrOccupierOfThePropertyConductedUnderSection78G3": {
679
+ "con29RRef": "3.13(c)",
680
+ "title": "consultation with the owner or occupier of the property conducted under section 78G(3) of the Environmental Protection Act 1990 before the service of a remediation notice",
681
+ "$ref": "#/$defs/yesNoDetailIfYes"
682
+ }
683
+ },
684
+ "radonGas": {
685
+ "con29RRef": "3.14",
686
+ "title": "Radon gas",
687
+ "description": "Do records indicate that the property is in a 'Radon Affected Area' as identified by the Public Health England or Public Health Wales?",
688
+ "$ref": "#/$defs/yesNoDetailIfYes"
689
+ },
690
+ "assetsOfCommunityValue": {
691
+ "con29RRef": "3.15",
692
+ "title": "Assets of Community Value",
693
+ "type": "object",
694
+ "properties": {
695
+ "propertyBeenNominatedAsAnAssetOfCommunityValue": {
696
+ "con29RRef": "3.15(a)",
697
+ "title": "Has the property been nominated as an asset of community value? If so:- ",
698
+ "type": "object",
699
+ "properties": {
700
+ "listedAsAnAssetOfCommunityValue": {
701
+ "con29RRef": "3.15(a)(i)",
702
+ "title": "Is it listed as an asset of community value?",
703
+ "$ref": "#/$defs/yesNoDetailIfYes"
704
+ },
705
+ "excludedAndPlacedOnTheNominatedButNotListedList": {
706
+ "con29RRef": "3.15(a)(ii)",
707
+ "title": "Was it excluded and placed on the 'nominated but not listed' list?",
708
+ "$ref": "#/$defs/yesNoDetailIfYes"
709
+ },
710
+ "listingExpired": {
711
+ "con29RRef": "3.15(a)(iii)",
712
+ "title": "Has the listing expired?",
713
+ "$ref": "#/$defs/yesNoDetailIfYes"
714
+ },
715
+ "localAuthorityReviewingOrProposingToReviewTheListing": {
716
+ "con29RRef": "3.15(a)(iv)",
717
+ "title": "Is the Local Authority reviewing or proposing to review the listing?",
718
+ "$ref": "#/$defs/yesNoDetailIfYes"
719
+ },
720
+ "subsistingAppealsAgainstTheListing": {
721
+ "con29RRef": "3.15(a)(v)",
722
+ "title": "Are there any subsisting appeals against the listing?",
723
+ "$ref": "#/$defs/yesNoDetailIfYes"
724
+ }
725
+ }
726
+ },
727
+ "propertyIsListed": {
728
+ "con29RRef": "3.15(b)",
729
+ "title": "If the property is listed:",
730
+ "type": "object",
731
+ "properties": {
732
+ "localAuthorityDecidedToApplyToTheLandRegistry": {
733
+ "con29RRef": "3.15(b)(i)",
734
+ "title": "Has the Local Authority decided to apply to the Land Registry for an entry or cancellation of a restriction in respect of listed land affecting the property?",
735
+ "$ref": "#/$defs/yesNoDetailIfYes"
736
+ },
737
+ "lheLocalAuthorityReceivedANoticeOfDisposal": {
738
+ "con29RRef": "3.15(b)(ii)",
739
+ "title": "Has the Local Authority received a notice of disposal?",
740
+ "$ref": "#/$defs/yesNoDetailIfYes"
741
+ },
742
+ "communityInterestGroupRequestedToBeTreatedAsABidder": {
743
+ "con29RRef": "3.15(b)(iii)",
744
+ "title": "Has any community interest group requested to be treated as a bidder?",
745
+ "$ref": "#/$defs/yesNoDetailIfYes"
746
+ }
747
+ }
748
+ }
749
+ }
750
+ }
751
+ }
752
+ }
753
+ },
754
+ "$defs": {
755
+ "yesNo": {
756
+ "type": "object",
757
+ "properties": {
758
+ "yesNo": {
759
+ "type": "string",
760
+ "title": "",
761
+ "enum": ["Yes", "No"]
762
+ }
763
+ },
764
+ "required": ["yesNo"]
765
+ },
766
+ "yesNoDetailIfYes": {
767
+ "type": "object",
768
+ "properties": {
769
+ "yesNo": {
770
+ "type": "string",
771
+ "title": "",
772
+ "enum": ["Yes", "No"]
773
+ }
774
+ },
775
+ "required": ["yesNo"],
776
+ "discriminator": { "propertyName": "yesNo" },
777
+ "oneOf": [
778
+ {
779
+ "properties": {
780
+ "yesNo": {
781
+ "enum": ["No"]
782
+ }
783
+ }
784
+ },
785
+ {
786
+ "properties": {
787
+ "yesNo": {
788
+ "enum": ["Yes"]
789
+ },
790
+ "details": {
791
+ "title": "Details",
792
+ "type": "string",
793
+ "minLength": 1
794
+ }
795
+ },
796
+ "required": ["details"]
797
+ }
798
+ ]
799
+ },
800
+ "planningApplicationList": {
801
+ "type": "array",
802
+ "title": "Planning applications list",
803
+ "items": {
804
+ "type": "object",
805
+ "title": "Planning application",
806
+ "properties": {
807
+ "refNumber": {
808
+ "type": "string",
809
+ "title": "Reference number for the planning application; optional for proposals"
810
+ },
811
+ "isProposal": {
812
+ "title": "Is this a proposal?",
813
+ "type": "string",
814
+ "enum": ["Yes", "No"]
815
+ },
816
+ "applicationDate": {
817
+ "title": "On what date was the application made?",
818
+ "type": "string",
819
+ "format": "date"
820
+ },
821
+ "decision": {
822
+ "title": "What decision was made?",
823
+ "type": "string",
824
+ "minLength": 1
825
+ },
826
+ "decisionDate": {
827
+ "title": "When was the decision made?",
828
+ "type": "string",
829
+ "format": "date"
830
+ },
831
+ "applicationType": {
832
+ "title": "What type of application was this?",
833
+ "type": "string",
834
+ "minLength": 1
835
+ }
836
+ },
837
+ "required": ["isProposal", "applicationDate", "applicationType"]
838
+ }
839
+ },
840
+ "road": {
841
+ "type": "object",
842
+ "title": "What is the status of the road or footpath?",
843
+ "properties": {
844
+ "name": {
845
+ "type": "string",
846
+ "title": "What is the name of the road or footpath?",
847
+ "minLength": 1
848
+ },
849
+ "status": {
850
+ "type": "string",
851
+ "title": "Where does the responsibility for maintenance lie?",
852
+ "enum": ["public", "private", "section 38", "unchecked"]
853
+ }
854
+ }
855
+ }
856
+ }
857
+ }