@pdtf/schemas 3.6.0-3 → 3.6.0-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.6.0-3",
3
+ "version": "3.6.0-5",
4
4
  "description": "Property Data Trust Framework Schemas and Utilities",
5
5
  "main": "index.js",
6
6
  "directories": {
@@ -197,6 +197,17 @@
197
197
  "identity": {
198
198
  "type": "object",
199
199
  "properties": {
200
+ "status": {
201
+ "type": "string",
202
+ "enum": [
203
+ "Requested",
204
+ "In progress",
205
+ "User tasks complete",
206
+ "Report available",
207
+ "Complete",
208
+ "Cancelled"
209
+ ]
210
+ },
200
211
  "result": {
201
212
  "type": "string",
202
213
  "enum": ["pass", "fail", "consider"]
@@ -224,6 +235,55 @@
224
235
  "antiMoneyLaundering": {
225
236
  "type": "object",
226
237
  "properties": {
238
+ "status": {
239
+ "type": "string",
240
+ "enum": [
241
+ "Requested",
242
+ "In progress",
243
+ "User tasks complete",
244
+ "Report available",
245
+ "Complete",
246
+ "Cancelled"
247
+ ]
248
+ },
249
+ "result": {
250
+ "type": "string",
251
+ "enum": ["pass", "fail", "consider"]
252
+ },
253
+ "reports": {
254
+ "type": "array",
255
+ "items": {
256
+ "type": "object",
257
+ "properties": {
258
+ "reportName": {
259
+ "type": "string"
260
+ },
261
+ "result": {
262
+ "type": "string",
263
+ "enum": ["pass", "fail", "consider"]
264
+ },
265
+ "details": {
266
+ "type": "string"
267
+ }
268
+ }
269
+ }
270
+ }
271
+ }
272
+ },
273
+ "sourceOfFunds": {
274
+ "type": "object",
275
+ "properties": {
276
+ "status": {
277
+ "type": "string",
278
+ "enum": [
279
+ "Requested",
280
+ "In progress",
281
+ "User tasks complete",
282
+ "Report available",
283
+ "Complete",
284
+ "Cancelled"
285
+ ]
286
+ },
227
287
  "result": {
228
288
  "type": "string",
229
289
  "enum": ["pass", "fail", "consider"]
@@ -310,6 +370,9 @@
310
370
  "Personal Representative for a Deceased Owner",
311
371
  "Under Power of Attorney",
312
372
  "Mortgagee in Possession",
373
+ "Company Director",
374
+ "Company Secretary",
375
+ "Trustee",
313
376
  "Assistant",
314
377
  "Other"
315
378
  ]
@@ -347,6 +410,9 @@
347
410
  "enum": [
348
411
  "Personal Representative for a Deceased Owner",
349
412
  "Under Power of Attorney",
413
+ "Company Director",
414
+ "Company Secretary",
415
+ "Trustee",
350
416
  "Assistant",
351
417
  "Other"
352
418
  ]
@@ -39867,6 +39933,10 @@
39867
39933
  },
39868
39934
  "isDeleted": {
39869
39935
  "type": "boolean"
39936
+ },
39937
+ "summary": {
39938
+ "title": "Structured summary of the document",
39939
+ "type": "object"
39870
39940
  }
39871
39941
  }
39872
39942
  }
@@ -41880,7 +41950,10 @@
41880
41950
  },
41881
41951
  "inclusions": { "type": "array", "items": { "type": "string" } },
41882
41952
  "exclusions": { "type": "array", "items": { "type": "string" } },
41883
- "conditions": { "type": "array", "items": { "type": "string" } }
41953
+ "conditions": { "type": "array", "items": { "type": "string" } },
41954
+ "externalIds": {
41955
+ "type": "object"
41956
+ }
41884
41957
  },
41885
41958
  "required": ["amount", "currency", "status"]
41886
41959
  }
@@ -41964,6 +42037,9 @@
41964
42037
  ]
41965
42038
  }
41966
42039
  }
42040
+ },
42041
+ "externalIds": {
42042
+ "type": "object"
41967
42043
  }
41968
42044
  },
41969
42045
  "required": ["subject", "status", "messages"],
@@ -30,6 +30,7 @@
30
30
  participantStatus
31
31
  verification
32
32
  identity
33
+ status
33
34
  result
34
35
  reports[
35
36
  reportName
@@ -37,6 +38,15 @@
37
38
  details
38
39
  ]
39
40
  antiMoneyLaundering
41
+ status
42
+ result
43
+ reports[
44
+ reportName
45
+ result
46
+ details
47
+ ]
48
+ sourceOfFunds
49
+ status
40
50
  result
41
51
  reports[
42
52
  reportName
@@ -3286,6 +3296,7 @@
3286
3296
  documentType
3287
3297
  externalIds
3288
3298
  isDeleted
3299
+ summary
3289
3300
  ]
3290
3301
  surveys[
3291
3302
  outside
@@ -4092,6 +4103,7 @@
4092
4103
  inclusions[]
4093
4104
  exclusions[]
4094
4105
  conditions[]
4106
+ externalIds
4095
4107
  enquiries{*}
4096
4108
  subject
4097
4109
  status
@@ -4100,4 +4112,5 @@
4100
4112
  originatorRole
4101
4113
  destinationRole
4102
4114
  messageText
4115
+ externalIds
4103
4116
  resolutionCondition
@@ -75,6 +75,9 @@
75
75
  "enum": [
76
76
  "Personal Representative for a Deceased Owner",
77
77
  "Under Power of Attorney",
78
+ "Company Director",
79
+ "Company Secretary",
80
+ "Trustee",
78
81
  "Assistant",
79
82
  "Other"
80
83
  ]
@@ -75,6 +75,9 @@
75
75
  "enum": [
76
76
  "Personal Representative for a Deceased Owner",
77
77
  "Under Power of Attorney",
78
+ "Company Director",
79
+ "Company Secretary",
80
+ "Trustee",
78
81
  "Assistant",
79
82
  "Other"
80
83
  ]
@@ -65,6 +65,9 @@
65
65
  "enum": [
66
66
  "Personal Representative for a Deceased Owner",
67
67
  "Under Power of Attorney",
68
+ "Company Director",
69
+ "Company Secretary",
70
+ "Trustee",
68
71
  "Assistant",
69
72
  "Other"
70
73
  ]
@@ -34,6 +34,9 @@
34
34
  "enum": [
35
35
  "Personal Representative for a Deceased Owner",
36
36
  "Under Power of Attorney",
37
+ "Company Director",
38
+ "Company Secretary",
39
+ "Trustee",
37
40
  "Assistant",
38
41
  "Other"
39
42
  ]
@@ -198,6 +198,17 @@
198
198
  "identity": {
199
199
  "type": "object",
200
200
  "properties": {
201
+ "status": {
202
+ "type": "string",
203
+ "enum": [
204
+ "Requested",
205
+ "In progress",
206
+ "User tasks complete",
207
+ "Report available",
208
+ "Complete",
209
+ "Cancelled"
210
+ ]
211
+ },
201
212
  "result": {
202
213
  "type": "string",
203
214
  "enum": [
@@ -233,6 +244,63 @@
233
244
  "antiMoneyLaundering": {
234
245
  "type": "object",
235
246
  "properties": {
247
+ "status": {
248
+ "type": "string",
249
+ "enum": [
250
+ "Requested",
251
+ "In progress",
252
+ "User tasks complete",
253
+ "Report available",
254
+ "Complete",
255
+ "Cancelled"
256
+ ]
257
+ },
258
+ "result": {
259
+ "type": "string",
260
+ "enum": [
261
+ "pass",
262
+ "fail",
263
+ "consider"
264
+ ]
265
+ },
266
+ "reports": {
267
+ "type": "array",
268
+ "items": {
269
+ "type": "object",
270
+ "properties": {
271
+ "reportName": {
272
+ "type": "string"
273
+ },
274
+ "result": {
275
+ "type": "string",
276
+ "enum": [
277
+ "pass",
278
+ "fail",
279
+ "consider"
280
+ ]
281
+ },
282
+ "details": {
283
+ "type": "string"
284
+ }
285
+ }
286
+ }
287
+ }
288
+ }
289
+ },
290
+ "sourceOfFunds": {
291
+ "type": "object",
292
+ "properties": {
293
+ "status": {
294
+ "type": "string",
295
+ "enum": [
296
+ "Requested",
297
+ "In progress",
298
+ "User tasks complete",
299
+ "Report available",
300
+ "Complete",
301
+ "Cancelled"
302
+ ]
303
+ },
236
304
  "result": {
237
305
  "type": "string",
238
306
  "enum": [
@@ -320,6 +388,9 @@
320
388
  "Personal Representative for a Deceased Owner",
321
389
  "Under Power of Attorney",
322
390
  "Mortgagee in Possession",
391
+ "Company Director",
392
+ "Company Secretary",
393
+ "Trustee",
323
394
  "Assistant",
324
395
  "Other"
325
396
  ]
@@ -355,6 +426,9 @@
355
426
  "enum": [
356
427
  "Personal Representative for a Deceased Owner",
357
428
  "Under Power of Attorney",
429
+ "Company Director",
430
+ "Company Secretary",
431
+ "Trustee",
358
432
  "Assistant",
359
433
  "Other"
360
434
  ]
@@ -34227,6 +34301,10 @@
34227
34301
  },
34228
34302
  "isDeleted": {
34229
34303
  "type": "boolean"
34304
+ },
34305
+ "summary": {
34306
+ "title": "Structured summary of the document",
34307
+ "type": "object"
34230
34308
  }
34231
34309
  }
34232
34310
  }
@@ -37418,6 +37496,9 @@
37418
37496
  "items": {
37419
37497
  "type": "string"
37420
37498
  }
37499
+ },
37500
+ "externalIds": {
37501
+ "type": "object"
37421
37502
  }
37422
37503
  },
37423
37504
  "required": [
@@ -37506,6 +37587,9 @@
37506
37587
  ]
37507
37588
  }
37508
37589
  }
37590
+ },
37591
+ "externalIds": {
37592
+ "type": "object"
37509
37593
  }
37510
37594
  },
37511
37595
  "required": [
@@ -34,6 +34,7 @@
34
34
  "participantStatus": "string",
35
35
  "verification": {
36
36
  "identity": {
37
+ "status": "string",
37
38
  "result": "string",
38
39
  "reports": [
39
40
  {
@@ -44,6 +45,18 @@
44
45
  ]
45
46
  },
46
47
  "antiMoneyLaundering": {
48
+ "status": "string",
49
+ "result": "string",
50
+ "reports": [
51
+ {
52
+ "reportName": "string",
53
+ "result": "string",
54
+ "details": "string"
55
+ }
56
+ ]
57
+ },
58
+ "sourceOfFunds": {
59
+ "status": "string",
47
60
  "result": "string",
48
61
  "reports": [
49
62
  {
@@ -4267,7 +4280,8 @@
4267
4280
  "mimeType": "string",
4268
4281
  "documentType": "string",
4269
4282
  "externalIds": {},
4270
- "isDeleted": "boolean"
4283
+ "isDeleted": "boolean",
4284
+ "summary": {}
4271
4285
  }
4272
4286
  ],
4273
4287
  "surveys": [
@@ -5210,7 +5224,8 @@
5210
5224
  ],
5211
5225
  "conditions": [
5212
5226
  "string"
5213
- ]
5227
+ ],
5228
+ "externalIds": {}
5214
5229
  }
5215
5230
  },
5216
5231
  "enquiries": {
@@ -5225,6 +5240,7 @@
5225
5240
  "messageText": "string"
5226
5241
  }
5227
5242
  },
5243
+ "externalIds": {},
5228
5244
  "resolutionCondition": "string"
5229
5245
  }
5230
5246
  }