Xero · Schema

Setup

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
ConversionDate object
ConversionBalances array Balance supplied for each account that has a value as at the conversion date.
Accounts array
View JSON Schema on GitHub

JSON Schema

xero-setup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Setup",
  "title": "Setup",
  "externalDocs": {
    "url": "https://developer.xero.com/documentation/api-guides/conversions"
  },
  "properties": {
    "ConversionDate": {
      "$ref": "#/components/schemas/ConversionDate"
    },
    "ConversionBalances": {
      "description": "Balance supplied for each account that has a value as at the conversion date.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ConversionBalances"
      }
    },
    "Accounts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Account"
      }
    }
  }
}