@pdtf/schemas 3.4.1-6 → 3.4.1-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.
- package/.claude/settings.local.json +6 -1
- package/index.js +190 -12
- package/package.json +2 -1
- package/src/schemas/v3/combined.json +11 -0
- package/src/schemas/v3/compactSkeleton.txt +3340 -0
- package/src/schemas/v3/overlays/ntsl2.json +11 -0
- package/src/schemas/v3/skeleton.json +3208 -3036
- package/src/tests/v3/caching.test.js +274 -0
- package/src/tests/v3/transactionSchema.test.js +60 -14
- package/src/utils/compactSkeleton.js +84 -0
- package/src/utils/countTokens.js +67 -0
- package/src/utils/extractOverlay.js +96 -5
- package/src/utils/minimalSkeleton.js +85 -0
- package/src/utils/pathSkeleton.js +181 -0
|
@@ -252,6 +252,12 @@
|
|
|
252
252
|
},
|
|
253
253
|
"parking": {
|
|
254
254
|
"ntsl2Ref": "B4",
|
|
255
|
+
"required": [
|
|
256
|
+
"parkingArrangements",
|
|
257
|
+
"disabledParking",
|
|
258
|
+
"controlledParking",
|
|
259
|
+
"electricVehicleChargingPoint"
|
|
260
|
+
],
|
|
255
261
|
"properties": {
|
|
256
262
|
"parkingArrangements": {
|
|
257
263
|
"ntsl2Ref": "B4.1",
|
|
@@ -320,6 +326,11 @@
|
|
|
320
326
|
},
|
|
321
327
|
"listingAndConservation": {
|
|
322
328
|
"ntsl2Ref": "C2.1",
|
|
329
|
+
"required": [
|
|
330
|
+
"isListed",
|
|
331
|
+
"isConservationArea",
|
|
332
|
+
"hasTreePreservationOrder"
|
|
333
|
+
],
|
|
323
334
|
"properties": {
|
|
324
335
|
"isListed": {
|
|
325
336
|
"ntsl2Ref": "C2.1.1",
|