Xero · Schema

CashValidationResponse

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
accountId string The Xero identifier for an account
statementBalance object
statementBalanceDate string UTC Date when the last bank statement item was entered into Xero. This date is represented in ISO 8601 format.
bankStatement object
cashAccount object
View JSON Schema on GitHub

JSON Schema

xero-cashvalidationresponse-schema.json Raw ↑
{
  "$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
}