Adyen · Schema

BankAccount

BankAccount schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
iban string The [International Bank Account Number](https://en.wikipedia.org/wiki/International_Bank_Account_Number) (IBAN).
View JSON Schema on GitHub

JSON Schema

notification-webhooks-bank-account-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/notification-webhooks-bank-account-schema.json",
  "title": "BankAccount",
  "description": "BankAccount schema from Adyen API",
  "properties": {
    "iban": {
      "description": "The [International Bank Account Number](https://en.wikipedia.org/wiki/International_Bank_Account_Number) (IBAN).",
      "type": "string"
    }
  },
  "required": [
    "iban"
  ],
  "type": "object"
}