Xero · Schema

ConversionDate

The date when the organisation starts using Xero

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
Month integer The month the organisation starts using Xero. Value is an integer between 1 and 12
Year integer The year the organisation starts using Xero. Value is an integer greater than 2006
View JSON Schema on GitHub

JSON Schema

xero-conversiondate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConversionDate",
  "title": "ConversionDate",
  "description": "The date when the organisation starts using Xero",
  "type": "object",
  "properties": {
    "Month": {
      "description": "The month the organisation starts using Xero. Value is an integer between 1 and 12",
      "type": "integer",
      "example": 1
    },
    "Year": {
      "description": "The year the organisation starts using Xero. Value is an integer greater than 2006",
      "type": "integer",
      "example": 2020
    }
  }
}