Adyen · Schema

KYCLegalArrangementEntityCheckResult

KYCLegalArrangementEntityCheckResult schema from Adyen API

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 entity belongs.
legalArrangementEntityCode string The unique ID of the legal arrangement entity to which the check applies.
View JSON Schema on GitHub

JSON Schema

notifications-kyc-legal-arrangement-entity-check-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/notifications-kyc-legal-arrangement-entity-check-result-schema.json",
  "title": "KYCLegalArrangementEntityCheckResult",
  "description": "KYCLegalArrangementEntityCheckResult schema from Adyen API",
  "type": "object",
  "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 entity belongs.",
      "type": "string"
    },
    "legalArrangementEntityCode": {
      "description": "The unique ID of the legal arrangement entity to which the check applies.",
      "type": "string"
    }
  }
}