Adyen · Schema

CapabilityProblem

CapabilityProblem schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
entity object The ID and the type of entity that has verification errors.
verificationErrors array List of verification errors.
View JSON Schema on GitHub

JSON Schema

management-webhooks-capability-problem-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/management-webhooks-capability-problem-schema.json",
  "title": "CapabilityProblem",
  "description": "CapabilityProblem schema from Adyen API",
  "type": "object",
  "properties": {
    "entity": {
      "description": "The ID and the type of entity that has verification errors.",
      "$ref": "#/components/schemas/CapabilityProblemEntity"
    },
    "verificationErrors": {
      "description": "List of verification errors.",
      "items": {
        "$ref": "#/components/schemas/VerificationError"
      },
      "type": "array"
    }
  }
}