NZLocalAccountIdentification schema from Adyen API
PaymentsFinancial ServicesFintech
Properties
Name
Type
Description
accountNumber
string
The 15-16 digit bank account number. The first 2 digits are the bank number, the next 4 digits are the branch number, the next 7 digits are the account number, and the final 2-3 digits are the suffix.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/transfers-nz-local-account-identification-schema.json",
"title": "NZLocalAccountIdentification",
"description": "NZLocalAccountIdentification schema from Adyen API",
"type": "object",
"properties": {
"accountNumber": {
"description": "The 15-16 digit bank account number. The first 2 digits are the bank number, the next 4 digits are the branch number, the next 7 digits are the account number, and the final 2-3 digits are the suffix.",
"maxLength": 16,
"minLength": 15,
"type": "string"
},
"type": {
"default": "nzLocal",
"description": "**nzLocal**",
"enum": [
"nzLocal"
],
"type": "string"
}
},
"required": [
"type",
"accountNumber"
],
"additionalProperties": false
}