Xero · Schema

TrialBalanceResponse

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
startDate string Start date of the report
endDate string End date of the report
accounts array Refer to the accounts section below
View JSON Schema on GitHub

JSON Schema

xero-trialbalanceresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrialBalanceResponse",
  "title": "TrialBalanceResponse",
  "type": "object",
  "properties": {
    "startDate": {
      "type": "string",
      "format": "date",
      "description": "Start date of the report"
    },
    "endDate": {
      "type": "string",
      "format": "date",
      "description": "End date of the report"
    },
    "accounts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TrialBalanceAccount"
      },
      "description": "Refer to the accounts section below"
    }
  },
  "additionalProperties": false
}