Skip to content

Commit 43ecc4b

Browse files
author
Github Workflow
committed
JSON Schema Update
1 parent f43fec9 commit 43ecc4b

File tree

1 file changed

+120
-2
lines changed

1 file changed

+120
-2
lines changed

config/v3/kyc_auth_status/receive.json

Lines changed: 120 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@
2828
"type": "object",
2929
"additionalProperties": false,
3030
"properties": {
31+
"available_services": {
32+
"description": "Available services for the next POA attempt.",
33+
"type": "array",
34+
"items": {
35+
"type": "string"
36+
}
37+
},
3138
"last_rejected": {
3239
"description": "Details on the rejected POA attempt.",
3340
"type": "object",
@@ -61,11 +68,63 @@
6168
]
6269
},
6370
"supported_documents": {
64-
"description": "Supported documents per document_type.",
71+
"description": "Supported documents.",
6572
"type": "array",
6673
"items": {
6774
"type": "string"
6875
}
76+
},
77+
"supported_documents_v2": {
78+
"description": "Supported documents per document type.",
79+
"type": "array",
80+
"items": {
81+
"type": "object",
82+
"properties": {
83+
"additional": {
84+
"description": "Additional information required by the document type.",
85+
"type": "object",
86+
"properties": {
87+
"display_name": {
88+
"description": "Additional display name.",
89+
"type": "string"
90+
},
91+
"document_type": {
92+
"description": "Additional document type.",
93+
"type": "string"
94+
}
95+
}
96+
},
97+
"available_services": {
98+
"description": "Services that support this document type and the specific name expected by the service.",
99+
"type": "array",
100+
"items": {
101+
"type": "object",
102+
"required": [
103+
"document_type",
104+
"service"
105+
],
106+
"properties": {
107+
"document_type": {
108+
"description": "The specific document type name expected by the service.",
109+
"type": "string"
110+
},
111+
"service": {
112+
"description": "The name of the service supporting this document type.",
113+
"type": "string"
114+
}
115+
}
116+
}
117+
},
118+
"display_name": {
119+
"description": "Display name of the document type.",
120+
"type": "string"
121+
},
122+
"document_type": {
123+
"description": "The document type.",
124+
"type": "string"
125+
}
126+
}
127+
}
69128
}
70129
}
71130
},
@@ -260,6 +319,13 @@
260319
"type": "object",
261320
"additionalProperties": false,
262321
"properties": {
322+
"available_services": {
323+
"description": "Available services for the next POA attempt.",
324+
"type": "array",
325+
"items": {
326+
"type": "string"
327+
}
328+
},
263329
"last_rejected": {
264330
"description": "Details on the rejected POA attempt.",
265331
"type": "object",
@@ -293,11 +359,63 @@
293359
]
294360
},
295361
"supported_documents": {
296-
"description": "Supported documents per document_type.",
362+
"description": "Supported documents.",
297363
"type": "array",
298364
"items": {
299365
"type": "string"
300366
}
367+
},
368+
"supported_documents_v2": {
369+
"description": "Supported documents per document type.",
370+
"type": "array",
371+
"items": {
372+
"type": "object",
373+
"properties": {
374+
"additional": {
375+
"description": "Additional information required by the document type.",
376+
"type": "object",
377+
"properties": {
378+
"display_name": {
379+
"description": "Additional display name.",
380+
"type": "string"
381+
},
382+
"document_type": {
383+
"description": "Additional document type.",
384+
"type": "string"
385+
}
386+
}
387+
},
388+
"available_services": {
389+
"description": "Services that support this document type and the specific name expected by the service.",
390+
"type": "array",
391+
"items": {
392+
"type": "object",
393+
"required": [
394+
"document_type",
395+
"service"
396+
],
397+
"properties": {
398+
"document_type": {
399+
"description": "The specific document type name expected by the service.",
400+
"type": "string"
401+
},
402+
"service": {
403+
"description": "The name of the service supporting this document type.",
404+
"type": "string"
405+
}
406+
}
407+
}
408+
},
409+
"display_name": {
410+
"description": "Display name of the document type.",
411+
"type": "string"
412+
},
413+
"document_type": {
414+
"description": "The document type.",
415+
"type": "string"
416+
}
417+
}
418+
}
301419
}
302420
}
303421
},

0 commit comments

Comments
 (0)