Properties
| Name | Type | Description |
|---|---|---|
| documents | array | List of document IDs to which the verification errors related to the capabilities correspond to. |
| id | string | The ID of the entity. |
| type | string | Type of entity. Possible values: **LegalEntity**, **BankAccount**, **Document**. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CapabilityProblemEntity-recursive",
"title": "CapabilityProblemEntity-recursive",
"properties": {
"documents": {
"description": "List of document IDs to which the verification errors related to the capabilities correspond to.",
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"description": "The ID of the entity.",
"type": "string"
},
"type": {
"description": "Type of entity. \n\nPossible values: **LegalEntity**, **BankAccount**, **Document**.",
"enum": [
"BankAccount",
"Document",
"LegalEntity"
],
"type": "string"
}
},
"required": [],
"type": "object"
}