Xero · Schema

BalanceSheetAccountDetail

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
code string Accounting code
accountID string ID of the account
name string Account name
reportingCode string Reporting code
total number Total movement on this account
View JSON Schema on GitHub

JSON Schema

xero-balancesheetaccountdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BalanceSheetAccountDetail",
  "title": "BalanceSheetAccountDetail",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Accounting code"
    },
    "accountID": {
      "type": "string",
      "description": "ID of the account",
      "format": "uuid"
    },
    "name": {
      "type": "string",
      "description": "Account name"
    },
    "reportingCode": {
      "type": "string",
      "description": "Reporting code"
    },
    "total": {
      "type": "number",
      "description": "Total movement on this account",
      "format": "double",
      "x-is-money": true
    }
  },
  "additionalProperties": false
}