Adyen · Schema

BankIdentification

PaymentsFinancial ServicesFintech

Properties

Name Type Description
country string
identification string
identificationType string
View JSON Schema on GitHub

JSON Schema

adyen-bankidentification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BankIdentification",
  "title": "BankIdentification",
  "properties": {
    "country": {
      "type": "string"
    },
    "identification": {
      "type": "string"
    },
    "identificationType": {
      "enum": [
        "iban",
        "routingNumber"
      ],
      "type": "string"
    }
  },
  "type": "object"
}