Adyen · Schema

CapabilityProblemEntity

PaymentsFinancial ServicesFintech

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.
owner object Contains details about the owner of the entity that has an error.
type string Type of entity. Possible values: **LegalEntity**, **BankAccount**, **Document**.
View JSON Schema on GitHub

JSON Schema

adyen-capabilityproblementity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CapabilityProblemEntity",
  "title": "CapabilityProblemEntity",
  "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"
    },
    "owner": {
      "description": "Contains details about the owner of the entity that has an error.",
      "$ref": "#/components/schemas/CapabilityProblemEntity-recursive"
    },
    "type": {
      "description": "Type of entity. \n\nPossible values: **LegalEntity**, **BankAccount**, **Document**.",
      "enum": [
        "BankAccount",
        "Document",
        "LegalEntity"
      ],
      "type": "string"
    }
  },
  "type": "object"
}