{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/accounting-notifications-au-local-account-identification-schema.json", "title": "AULocalAccountIdentification", "description": "AULocalAccountIdentification schema from Adyen API", "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, "type": "object" }