@pdtf/schemas 3.4.1-4 → 3.4.1-5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdtf/schemas",
3
- "version": "3.4.1-4",
3
+ "version": "3.4.1-5",
4
4
  "description": "Property Data Trust Framework Schemas and Utilities",
5
5
  "main": "index.js",
6
6
  "directories": {
@@ -190,6 +190,65 @@
190
190
  "participantStatus": {
191
191
  "type": "string",
192
192
  "enum": ["Proposed", "Invited", "Active", "Removed"]
193
+ },
194
+ "verification": {
195
+ "type": "object",
196
+ "properties": {
197
+ "identity": {
198
+ "type": "object",
199
+ "properties": {
200
+ "result": {
201
+ "type": "string",
202
+ "enum": ["pass", "fail", "consider"]
203
+ },
204
+ "reports": {
205
+ "type": "array",
206
+ "items": {
207
+ "type": "object",
208
+ "properties": {
209
+ "reportName": {
210
+ "type": "string"
211
+ },
212
+ "result": {
213
+ "type": "string",
214
+ "enum": ["pass", "fail", "consider"]
215
+ },
216
+ "details": {
217
+ "type": "string"
218
+ }
219
+ }
220
+ }
221
+ }
222
+ }
223
+ },
224
+ "antiMoneyLaundering": {
225
+ "type": "object",
226
+ "properties": {
227
+ "result": {
228
+ "type": "string",
229
+ "enum": ["pass", "fail", "consider"]
230
+ },
231
+ "reports": {
232
+ "type": "array",
233
+ "items": {
234
+ "type": "object",
235
+ "properties": {
236
+ "reportName": {
237
+ "type": "string"
238
+ },
239
+ "result": {
240
+ "type": "string",
241
+ "enum": ["pass", "fail", "consider"]
242
+ },
243
+ "details": {
244
+ "type": "string"
245
+ }
246
+ }
247
+ }
248
+ }
249
+ }
250
+ }
251
+ }
193
252
  }
194
253
  },
195
254
  "discriminator": {
@@ -318,7 +318,10 @@
318
318
  }
319
319
  }
320
320
  }
321
- }
321
+ },
322
+ "required": [
323
+ "estateRentcharges"
324
+ ]
322
325
  },
323
326
  {
324
327
  "properties": {
@@ -191,6 +191,81 @@
191
191
  "Active",
192
192
  "Removed"
193
193
  ]
194
+ },
195
+ "verification": {
196
+ "type": "object",
197
+ "properties": {
198
+ "identity": {
199
+ "type": "object",
200
+ "properties": {
201
+ "result": {
202
+ "type": "string",
203
+ "enum": [
204
+ "pass",
205
+ "fail",
206
+ "consider"
207
+ ]
208
+ },
209
+ "reports": {
210
+ "type": "array",
211
+ "items": {
212
+ "type": "object",
213
+ "properties": {
214
+ "reportName": {
215
+ "type": "string"
216
+ },
217
+ "result": {
218
+ "type": "string",
219
+ "enum": [
220
+ "pass",
221
+ "fail",
222
+ "consider"
223
+ ]
224
+ },
225
+ "details": {
226
+ "type": "string"
227
+ }
228
+ }
229
+ }
230
+ }
231
+ }
232
+ },
233
+ "antiMoneyLaundering": {
234
+ "type": "object",
235
+ "properties": {
236
+ "result": {
237
+ "type": "string",
238
+ "enum": [
239
+ "pass",
240
+ "fail",
241
+ "consider"
242
+ ]
243
+ },
244
+ "reports": {
245
+ "type": "array",
246
+ "items": {
247
+ "type": "object",
248
+ "properties": {
249
+ "reportName": {
250
+ "type": "string"
251
+ },
252
+ "result": {
253
+ "type": "string",
254
+ "enum": [
255
+ "pass",
256
+ "fail",
257
+ "consider"
258
+ ]
259
+ },
260
+ "details": {
261
+ "type": "string"
262
+ }
263
+ }
264
+ }
265
+ }
266
+ }
267
+ }
268
+ }
194
269
  }
195
270
  },
196
271
  "oneOf": [
@@ -31,6 +31,24 @@
31
31
  "role": {},
32
32
  "externalIds": {},
33
33
  "participantStatus": {},
34
+ "verification": {
35
+ "identity": {
36
+ "result": {},
37
+ "reports": {
38
+ "reportName": {},
39
+ "result": {},
40
+ "details": {}
41
+ }
42
+ },
43
+ "antiMoneyLaundering": {
44
+ "result": {},
45
+ "reports": {
46
+ "reportName": {},
47
+ "result": {},
48
+ "details": {}
49
+ }
50
+ }
51
+ },
34
52
  "sellersCapacity": {
35
53
  "capacity": {},
36
54
  "sellersCapacityDetails": {},