Xero · Schema

StartBalance

The starting balance of the statement

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
amount number decimal(19,4) unsigned Opening/closing balance amount.
creditDebitIndicator object
View JSON Schema on GitHub

JSON Schema

xero-startbalance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StartBalance",
  "title": "StartBalance",
  "description": "The starting balance of the statement",
  "type": "object",
  "properties": {
    "amount": {
      "type": "number",
      "format": "double",
      "x-is-money": true,
      "example": "9.0000",
      "description": "decimal(19,4) unsigned Opening/closing balance amount."
    },
    "creditDebitIndicator": {
      "$ref": "#/components/schemas/CreditDebitIndicator"
    }
  }
}