Properties
| Name | Type | Description |
|---|---|---|
| kycCheckCode | integer | The code of the check. For possible values, refer to [Verification codes](https://docs.adyen.com/marketplaces-and-platforms/classic/verification-process/verification-codes). |
| kycCheckDescription | string | A description of the check. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/KYCCheckSummary",
"title": "KYCCheckSummary",
"properties": {
"kycCheckCode": {
"x-addedInVersion": "5",
"description": "The code of the check. For possible values, refer to [Verification codes](https://docs.adyen.com/marketplaces-and-platforms/classic/verification-process/verification-codes).",
"format": "int32",
"type": "integer"
},
"kycCheckDescription": {
"x-addedInVersion": "5",
"description": "A description of the check.",
"type": "string"
}
},
"type": "object"
}