Adyen · Schema
AULocalAccountIdentification
AULocalAccountIdentification schema from Adyen API
PaymentsFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| accountNumber | string | The bank account number, without separators or whitespace. |
| bsbCode | string | The 6-digit [Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or whitespace. |
| type | string | **auLocal** |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-au-local-account-identification-schema.json",
"title": "AULocalAccountIdentification",
"description": "AULocalAccountIdentification schema from Adyen API",
"type": "object",
"properties": {
"accountNumber": {
"description": "The bank account number, without separators or whitespace.",
"maxLength": 9,
"minLength": 5,
"type": "string"
},
"bsbCode": {
"description": "The 6-digit [Bank State Branch (BSB) code](https://en.wikipedia.org/wiki/Bank_state_branch), without separators or whitespace.",
"maxLength": 6,
"minLength": 6,
"type": "string"
},
"type": {
"default": "auLocal",
"description": "**auLocal**",
"enum": [
"auLocal"
],
"type": "string"
}
},
"required": [
"type",
"accountNumber",
"bsbCode"
],
"additionalProperties": false
}