@pdtf/schemas 3.6.0-40 → 3.6.0-43
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/README.md +1 -1
- package/index.js +4 -0
- package/package.json +1 -1
- package/src/schemas/v3/combined.json +159 -21
- package/src/schemas/v3/overlays/extensions/ac.json +288 -0
- package/src/schemas/v3/overlays/extensions/lc.json +12 -1
- package/src/schemas/v3/overlays/extensions/sc.json +24 -2
- package/src/schemas/v3/overlays/extensions/ta.json +240 -0
- package/src/schemas/v3/overlays/sef25.json +650 -27
- package/src/schemas/v3/overlays/ta6ed6.json +55 -20
- package/src/schemas/v3/overlays/ta7ed5.json +17 -5
- package/src/tests/v3/extensionOverlays.test.js +135 -1
- package/src/tests/v3/ta6ed6.test.js +58 -1
- package/src/tests/v3/ta7ed5.test.js +34 -1
- package/src/utils/extractExtensionOverlays.js +43 -0
- package/src/utils/extractOverlay.js +22 -20
- package/.claude/settings.local.json +0 -61
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ The Property Data Trust Framework (PDTF) Schemas provide standardized JSON Schem
|
|
|
7
7
|
|
|
8
8
|
## Project Goals & Status
|
|
9
9
|
|
|
10
|
-
**Current Version:** 3.5.0 (3.6.0-
|
|
10
|
+
**Current Version:** 3.5.0 (3.6.0-41 available as a pre-release on branch/package-tag `next`)
|
|
11
11
|
|
|
12
12
|
This schema framework aims to support the [Home Buying and Selling Group](https://homebuyingandsellinggroup.co.uk) 'Property Pack' initiative, encompassing all requirements starting with the Buyers and Sellers Property Information set ([BASPI v4.0](https://homebuyingandsellinggroup.co.uk/baspi/)).
|
|
13
13
|
|
package/index.js
CHANGED
|
@@ -66,6 +66,10 @@ const extensionOverlays = {
|
|
|
66
66
|
nd: require("./src/schemas/v3/overlays/extensions/nd.json"),
|
|
67
67
|
mi: require("./src/schemas/v3/overlays/extensions/mi.json"),
|
|
68
68
|
tr: require("./src/schemas/v3/overlays/extensions/tr.json"),
|
|
69
|
+
ac: require("./src/schemas/v3/overlays/extensions/ac.json"),
|
|
70
|
+
|
|
71
|
+
// Compatibility Extensions
|
|
72
|
+
ta: require("./src/schemas/v3/overlays/extensions/ta.json"),
|
|
69
73
|
};
|
|
70
74
|
|
|
71
75
|
const overlaysMap = {
|