Properties
| Name | Type | Description |
|---|---|---|
| checks | array | A list of the checks and their statuses. |
| legalArrangementCode | string | The unique ID of the legal arrangement to which the shareholder belongs, if applicable. |
| legalArrangementEntityCode | string | The unique ID of the legal arrangement entity to which the shareholder belongs, if applicable. |
| shareholderCode | string | The code of the shareholder to which the check applies. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/KYCShareholderCheckResult",
"title": "KYCShareholderCheckResult",
"properties": {
"checks": {
"description": "A list of the checks and their statuses.",
"items": {
"$ref": "#/components/schemas/KYCCheckStatusData"
},
"type": "array"
},
"legalArrangementCode": {
"x-addedInVersion": "6",
"description": "The unique ID of the legal arrangement to which the shareholder belongs, if applicable.",
"type": "string"
},
"legalArrangementEntityCode": {
"x-addedInVersion": "6",
"description": "The unique ID of the legal arrangement entity to which the shareholder belongs, if applicable.",
"type": "string"
},
"shareholderCode": {
"description": "The code of the shareholder to which the check applies.",
"type": "string"
}
},
"type": "object"
}