{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BankAccountLookupResponse", "title": "BankAccountLookupResponse", "type": "object", "properties": { "code": { "type": "string", "description": "Response status code.", "example": "00" }, "description": { "type": "string", "description": "Human-readable description of the response.", "example": "Success" }, "data": { "type": "object", "properties": { "accountNumber": { "type": "string", "description": "The verified bank account number." }, "accountName": { "type": "string", "description": "The name of the account holder as registered with the bank." }, "bankCode": { "type": "string", "description": "The bank code of the financial institution." } } } } }