Adyen · Schema

IbanAccountIdentification

PaymentsFinancial ServicesFintech

Properties

Name Type Description
iban string The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.
type string **iban**
View JSON Schema on GitHub

JSON Schema

adyen-ibanaccountidentification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IbanAccountIdentification",
  "title": "IbanAccountIdentification",
  "additionalProperties": false,
  "properties": {
    "iban": {
      "description": "The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.",
      "type": "string"
    },
    "type": {
      "default": "iban",
      "description": "**iban**",
      "enum": [
        "iban"
      ],
      "type": "string"
    }
  },
  "required": [
    "type",
    "iban"
  ]
}