{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-webhooks-capability-problem-entity-schema.json", "title": "CapabilityProblemEntity", "description": "CapabilityProblemEntity schema from Adyen API", "type": "object", "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" } } }