Adyen · Schema

VerificationDeadline

VerificationDeadline schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
capabilities array The list of capabilities that will be disallowed if information is not reviewed by the time of the deadline
entityIds array The unique identifiers of the bank account(s) that the deadline applies to
expiresAt string The date that verification is due by before capabilities are disallowed.
View JSON Schema on GitHub

JSON Schema

legal-entity-verification-deadline-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-deadline-schema.json",
  "title": "VerificationDeadline",
  "description": "VerificationDeadline schema from Adyen API",
  "type": "object",
  "properties": {
    "capabilities": {
      "description": "The list of capabilities that will be disallowed if information is not reviewed by the time of the deadline",
      "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"
      },
      "readOnly": true,
      "type": "array"
    },
    "entityIds": {
      "description": "The unique identifiers of the bank account(s) that the deadline applies to",
      "items": {
        "type": "string"
      },
      "readOnly": true,
      "type": "array"
    },
    "expiresAt": {
      "description": "The date that verification is due by before capabilities are disallowed.",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    }
  },
  "required": [
    "expiresAt",
    "capabilities"
  ]
}