Xero · Schema

EndBalance

The StartBalance plus all the Statement Line Amounts should be equal to the EndBalance Amount.

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
amount number
creditDebitIndicator object
View JSON Schema on GitHub

JSON Schema

xero-endbalance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EndBalance",
  "title": "EndBalance",
  "description": "The StartBalance plus all the Statement Line Amounts should be equal to the EndBalance Amount.",
  "type": "object",
  "properties": {
    "amount": {
      "type": "number",
      "format": "double",
      "x-is-money": true,
      "example": "10.1340"
    },
    "creditDebitIndicator": {
      "$ref": "#/components/schemas/CreditDebitIndicator"
    }
  }
}