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": "#/components/schemas/AULocalAccountIdentification",
"title": "AULocalAccountIdentification",
"additionalProperties": false,
"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"
]
}