Adyen · Schema

VerificationError-recursive

VerificationError-recursive schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
capabilities array Contains key-value pairs that specify the actions that the legal entity can do in your platform. The key is a capability required for your integration. For example, **issueCard** for Issuing.The value
code string The general error code.
message string The general error message.
type string The type of error.
remediatingActions array An object containing possible solutions to fix a verification error.
View JSON Schema on GitHub

JSON Schema

legal-entity-verification-error-recursive-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/legal-entity-verification-error-recursive-schema.json",
  "title": "VerificationError-recursive",
  "description": "VerificationError-recursive schema from Adyen API",
  "type": "object",
  "properties": {
    "capabilities": {
      "description": "Contains key-value pairs that specify the actions that the legal entity can do in your platform. The key is a capability required for your integration. For example, **issueCard** for Issuing.The value is an object containing the settings for the capability.",
      "items": {
        "enum": [
          "acceptExternalFunding",
          "acceptPspFunding",
          "acceptTransactionInRestrictedCountries",
          "acceptTransactionInRestrictedCountriesCommercial",
          "acceptTransactionInRestrictedCountriesConsumer",
          "acceptTransactionInRestrictedIndustries",
          "acceptTransactionInRestrictedIndustriesCommercial",
          "acceptTransactionInRestrictedIndustriesConsumer",
          "acquiring",
          "atmWithdrawal",
          "atmWithdrawalCommercial",
          "atmWithdrawalConsumer",
          "atmWithdrawalInRestrictedCountries",
          "atmWithdrawalInRestrictedCountriesCommercial",
          "atmWithdrawalInRestrictedCountriesConsumer",
          "authorisedPaymentInstrumentUser",
          "getGrantOffers",
          "issueBankAccount",
          "issueCard",
          "issueCardCommercial",
          "issueCardConsumer",
          "localAcceptance",
          "payout",
          "payoutToTransferInstrument",
          "processing",
          "receiveFromBalanceAccount",
          "receiveFromPlatformPayments",
          "receiveFromThirdParty",
          "receiveFromTransferInstrument",
          "receiveGrants",
          "receivePayments",
          "sendToBalanceAccount",
          "sendToThirdParty",
          "sendToTransferInstrument",
          "thirdPartyFunding",
          "useCard",
          "useCardCommercial",
          "useCardConsumer",
          "useCardInRestrictedCountries",
          "useCardInRestrictedCountriesCommercial",
          "useCardInRestrictedCountriesConsumer",
          "useCardInRestrictedIndustries",
          "useCardInRestrictedIndustriesCommercial",
          "useCardInRestrictedIndustriesConsumer",
          "withdrawFromAtm",
          "withdrawFromAtmCommercial",
          "withdrawFromAtmConsumer",
          "withdrawFromAtmInRestrictedCountries",
          "withdrawFromAtmInRestrictedCountriesCommercial",
          "withdrawFromAtmInRestrictedCountriesConsumer"
        ],
        "type": "string"
      },
      "type": "array"
    },
    "code": {
      "description": "The general error code.",
      "type": "string"
    },
    "message": {
      "description": "The general error message.",
      "type": "string"
    },
    "type": {
      "description": "The type of error.",
      "enum": [
        "dataMissing",
        "dataReview",
        "invalidInput",
        "pendingStatus",
        "rejected"
      ],
      "type": "string"
    },
    "remediatingActions": {
      "description": "An object containing possible solutions to fix a verification error.",
      "items": {
        "$ref": "#/components/schemas/RemediatingAction"
      },
      "type": "array"
    }
  },
  "required": []
}