Adyen · Schema

KYCLegalArrangementCheckResult

PaymentsFinancial ServicesFintech

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 check applies.
View JSON Schema on GitHub

JSON Schema

adyen-kyclegalarrangementcheckresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KYCLegalArrangementCheckResult",
  "title": "KYCLegalArrangementCheckResult",
  "properties": {
    "checks": {
      "description": "A list of the checks and their statuses.",
      "items": {
        "$ref": "#/components/schemas/KYCCheckStatusData"
      },
      "type": "array"
    },
    "legalArrangementCode": {
      "description": "The unique ID of the legal arrangement to which the check applies.",
      "type": "string"
    }
  },
  "type": "object"
}