{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CashValidationResponse", "title": "CashValidationResponse", "type": "object", "properties": { "accountId": { "type": "string", "description": "The Xero identifier for an account", "format": "uuid" }, "statementBalance": { "$ref": "#/components/schemas/StatementBalanceResponse" }, "statementBalanceDate": { "type": "string", "description": "UTC Date when the last bank statement item was entered into Xero. This date is represented in ISO 8601 format.", "format": "date" }, "bankStatement": { "$ref": "#/components/schemas/BankStatementResponse" }, "cashAccount": { "$ref": "#/components/schemas/CashAccountResponse" } }, "additionalProperties": false }