@pdtf/schemas 3.2.0-5 → 3.2.1-2
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 +1 -0
- package/package.json +1 -1
- package/src/examples/v3/exampleAddParticipantVouch.json +3 -0
- package/src/examples/v3/exampleDocumentedVouch.json +3 -0
- package/src/examples/v3/exampleElectronicRecord.json +3 -0
- package/src/examples/v3/exampleTransaction.json +7 -1
- package/src/examples/v3/exampleVouch.json +3 -0
- package/src/schemas/v3/combined.json +429 -7
- package/src/schemas/v3/overlays/nts-sef.json +2122 -0
- package/src/schemas/v3/overlays/sr24.json +4 -0
- package/src/schemas/v3/overlays/ta10.json +2 -1
- package/src/schemas/v3/pdtf-transaction.json +57 -2
- package/src/schemas/v3/skeleton.json +6 -0
- package/src/schemas/verifiedClaims/pdtf-verified-claims.json +12 -0
- package/src/utils/extractOverlay.js +1 -0
package/index.js
CHANGED
|
@@ -41,6 +41,7 @@ const overlaysMap = {
|
|
|
41
41
|
fme1ed2: require("./src/schemas/v3/overlays/fme1.json"),
|
|
42
42
|
llc1v2: require("./src/schemas/v3/overlays/llc1.json"),
|
|
43
43
|
nts2023: require("./src/schemas/v3/overlays/nts.json"),
|
|
44
|
+
sef24: require("./src/schemas/v3/overlays/nts-sef.json"),
|
|
44
45
|
ntsl2023: require("./src/schemas/v3/overlays/ntsl.json"),
|
|
45
46
|
con29R2019: require("./src/schemas/v3/overlays/con29R.json"),
|
|
46
47
|
con29DW: require("./src/schemas/v3/overlays/con29DW.json"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://trust.propdata.org.uk/schemas/v3/pdtf-transaction.json",
|
|
3
|
-
"transactionId": "
|
|
3
|
+
"transactionId": "LnRdGiBUkLbnuNJ89p4CEj",
|
|
4
4
|
"status": "For sale",
|
|
5
5
|
"participants": [
|
|
6
6
|
{
|
|
@@ -164,6 +164,12 @@
|
|
|
164
164
|
},
|
|
165
165
|
"buildingSafety": { "yesNo": "No" },
|
|
166
166
|
"accessibilityAndAdaptations": ["Level access"],
|
|
167
|
+
"loft": {
|
|
168
|
+
"loftAccess": "Yes",
|
|
169
|
+
"details": "There's a hatch you need to jump up and grab and pull yourself in",
|
|
170
|
+
"loftBoarded": "No",
|
|
171
|
+
"loftInsulated": "Yes"
|
|
172
|
+
},
|
|
167
173
|
"sprayFoamInsulation": {
|
|
168
174
|
"hasSprayFoamInstalled": "No"
|
|
169
175
|
}
|