Adyen · JSON Structure

Configuration Verification Error Structure

VerificationError schema from Adyen API

Type: object Properties: 6
PaymentsFinancial ServicesFintech

VerificationError is a JSON Structure definition published by Adyen, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

capabilities code message remediatingActions subErrors type

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/configuration-verification-error-structure.json",
  "description": "VerificationError schema from Adyen API",
  "type": "object",
  "properties": {
    "capabilities": {
      "description": "Contains the capabilities that the verification error applies to.",
      "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 verification error code.",
      "type": "string"
    },
    "message": {
      "description": "A description of the error.",
      "type": "string"
    },
    "remediatingActions": {
      "description": "Contains the actions that you can take to resolve the verification error.",
      "items": {
        "$ref": "#/components/schemas/RemediatingAction"
      },
      "type": "array"
    },
    "subErrors": {
      "description": "Contains more granular information about the verification error.",
      "items": {
        "$ref": "#/components/schemas/VerificationError-recursive"
      },
      "type": "array"
    },
    "type": {
      "description": "The type of error.\n\n Possible values: **invalidInput**, **dataMissing**.",
      "enum": [
        "dataMissing",
        "invalidInput",
        "pendingStatus"
      ],
      "type": "string"
    }
  },
  "name": "VerificationError"
}