@pdtf/schemas 2.3.0 → 3.0.0-10
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/index.js +52 -94
- package/package.json +1 -1
- package/src/examples/v2/exampleTransaction.json +6 -20
- package/src/examples/v3/exampleTransaction.json +904 -0
- package/src/mappings/SendPropertyDetailsRequestSchema.json +1588 -0
- package/src/mappings/adf.js +1 -1
- package/src/schemas/v2/combined.json +13206 -12615
- package/src/schemas/v2/overlays/baspi.json +510 -2331
- package/src/schemas/v2/overlays/con29DW.json +682 -762
- package/src/schemas/v2/overlays/con29R.json +2914 -3073
- package/src/schemas/v2/overlays/fme1.json +48 -233
- package/src/schemas/v2/overlays/llc1.json +12 -33
- package/src/schemas/v2/overlays/lpe1.json +75 -367
- package/src/schemas/v2/overlays/nts.json +17 -103
- package/src/schemas/v2/overlays/piq.json +146 -693
- package/src/schemas/v2/overlays/rds.json +66 -300
- package/src/schemas/v2/overlays/ta10.json +540 -1755
- package/src/schemas/v2/overlays/ta6.json +241 -1193
- package/src/schemas/v2/overlays/ta7.json +106 -440
- package/src/schemas/v2/pdtf-transaction.json +13656 -12911
- package/src/schemas/v2/skeleton.json +1342 -1155
- package/src/schemas/v3/combined.json +38477 -0
- package/src/schemas/v3/overlays/baspi.json +8022 -0
- package/src/schemas/v3/overlays/con29DW.json +705 -0
- package/src/schemas/v3/overlays/con29R.json +2956 -0
- package/src/schemas/v3/overlays/fme1.json +1264 -0
- package/src/schemas/v3/overlays/llc1.json +25 -0
- package/src/schemas/v3/overlays/lpe1.json +2181 -0
- package/src/schemas/v3/overlays/nts.json +1937 -0
- package/src/schemas/v3/overlays/oc1.json +2799 -0
- package/src/schemas/v3/overlays/piq.json +3391 -0
- package/src/schemas/v3/overlays/rds.json +3818 -0
- package/src/schemas/v3/overlays/ta10.json +5306 -0
- package/src/schemas/v3/overlays/ta6.json +4410 -0
- package/src/schemas/v3/overlays/ta7.json +1157 -0
- package/src/schemas/v3/pdtf-transaction.json +34858 -0
- package/src/schemas/v3/skeleton.json +4018 -0
- package/src/tests/{v2 → v3}/transactionSchema.test.js +46 -36
- package/src/tests/{v2 → v3}/verifiedClaimsValidator.test.js +11 -11
- package/src/utils/extractOverlay.js +12 -34
- package/src/utils/hmlrLLC1.json +0 -275
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
+
"$id": "https://trust.propdata.org.uk/schemas/v3/overlays/llc1.json",
|
|
4
|
+
"properties": {
|
|
5
|
+
"propertyPack": {
|
|
6
|
+
"properties": {
|
|
7
|
+
"localSearches": {
|
|
8
|
+
"properties": {
|
|
9
|
+
"localLandCharges": {
|
|
10
|
+
"items": {
|
|
11
|
+
"required": [
|
|
12
|
+
"HMLRReference",
|
|
13
|
+
"RegistrationDate",
|
|
14
|
+
"Category",
|
|
15
|
+
"Location",
|
|
16
|
+
"LocationDominantBuilding"
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|