@pdtf/schemas 3.4.1-8 → 3.5.0
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 +8 -1
- package/package.json +1 -1
- package/src/examples/v3/exampleDocumentedVouch.json +1 -0
- package/src/examples/v3/exampleVouch.json +1 -0
- package/src/schemas/v3/combined.json +1497 -4
- package/src/schemas/v3/compactSkeleton.txt +0 -15
- package/src/schemas/v3/pdtf-transaction.json +2609 -4
- package/src/schemas/v3/skeleton.json +0 -22
- package/src/schemas/verifiedClaims/pdtf-verified-claims.json +5 -0
- package/src/utils/extractOverlay.js +1 -1
- package/src/schemas/v3/property-transaction-milestones.json +0 -91
|
@@ -32,28 +32,6 @@
|
|
|
32
32
|
"role": "variant",
|
|
33
33
|
"externalIds": {},
|
|
34
34
|
"participantStatus": "string",
|
|
35
|
-
"verification": {
|
|
36
|
-
"identity": {
|
|
37
|
-
"result": "string",
|
|
38
|
-
"reports": [
|
|
39
|
-
{
|
|
40
|
-
"reportName": "string",
|
|
41
|
-
"result": "string",
|
|
42
|
-
"details": "string"
|
|
43
|
-
}
|
|
44
|
-
]
|
|
45
|
-
},
|
|
46
|
-
"antiMoneyLaundering": {
|
|
47
|
-
"result": "string",
|
|
48
|
-
"reports": [
|
|
49
|
-
{
|
|
50
|
-
"reportName": "string",
|
|
51
|
-
"result": "string",
|
|
52
|
-
"details": "string"
|
|
53
|
-
}
|
|
54
|
-
]
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
35
|
"sellersCapacity": {
|
|
58
36
|
"capacity": "variant",
|
|
59
37
|
"sellersCapacityDetails": "string",
|
|
@@ -374,6 +374,11 @@
|
|
|
374
374
|
"description": "The semantic version of the schema used to validate the claims",
|
|
375
375
|
"type": "string"
|
|
376
376
|
},
|
|
377
|
+
"timestamp": {
|
|
378
|
+
"type": "integer",
|
|
379
|
+
"minimum": 0,
|
|
380
|
+
"description": "Unix timestamp in milliseconds when the verified claims were created"
|
|
381
|
+
},
|
|
377
382
|
"verification": {
|
|
378
383
|
"type": "object",
|
|
379
384
|
"properties": {
|
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
3
|
-
"title": "Transaction Milestones",
|
|
4
|
-
"description": "Schema for tracking transaction milestones throughout the conveyancing process",
|
|
5
|
-
"type": "object",
|
|
6
|
-
"properties": {
|
|
7
|
-
"listed": {
|
|
8
|
-
"type": "object",
|
|
9
|
-
"properties": {
|
|
10
|
-
"completed": {
|
|
11
|
-
"type": "string",
|
|
12
|
-
"format": "date-time"
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"legalForms": {
|
|
17
|
-
"type": "object",
|
|
18
|
-
"properties": {
|
|
19
|
-
"completed": {
|
|
20
|
-
"type": "string",
|
|
21
|
-
"format": "date-time"
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
},
|
|
25
|
-
"soldSubjectToContract": {
|
|
26
|
-
"type": "object",
|
|
27
|
-
"properties": {
|
|
28
|
-
"completed": {
|
|
29
|
-
"type": "string",
|
|
30
|
-
"format": "date-time"
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"searches": {
|
|
35
|
-
"type": "object",
|
|
36
|
-
"properties": {
|
|
37
|
-
"ordered": {
|
|
38
|
-
"type": "string",
|
|
39
|
-
"format": "date-time"
|
|
40
|
-
},
|
|
41
|
-
"expected": {
|
|
42
|
-
"type": "string",
|
|
43
|
-
"format": "date-time"
|
|
44
|
-
},
|
|
45
|
-
"completed": {
|
|
46
|
-
"type": "string",
|
|
47
|
-
"format": "date-time"
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
"enquiries": {
|
|
52
|
-
"type": "object",
|
|
53
|
-
"properties": {
|
|
54
|
-
"completed": {
|
|
55
|
-
"type": "string",
|
|
56
|
-
"format": "date-time"
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
"exchangeOfContracts": {
|
|
61
|
-
"type": "object",
|
|
62
|
-
"properties": {
|
|
63
|
-
"expected": {
|
|
64
|
-
"type": "string",
|
|
65
|
-
"format": "date-time"
|
|
66
|
-
},
|
|
67
|
-
"completed": {
|
|
68
|
-
"type": "string",
|
|
69
|
-
"format": "date-time"
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
},
|
|
73
|
-
"completion": {
|
|
74
|
-
"type": "object",
|
|
75
|
-
"properties": {
|
|
76
|
-
"started": {
|
|
77
|
-
"type": "string",
|
|
78
|
-
"format": "date-time"
|
|
79
|
-
},
|
|
80
|
-
"expected": {
|
|
81
|
-
"type": "string",
|
|
82
|
-
"format": "date-time"
|
|
83
|
-
},
|
|
84
|
-
"completed": {
|
|
85
|
-
"type": "string",
|
|
86
|
-
"format": "date-time"
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
}
|