Xero · Schema

TrackingOption

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
TrackingOptionID string The Xero identifier for a tracking option e.g. ae777a87-5ef3-4fa0-a4f0-d10e1f13073a
Name string The name of the tracking option e.g. Marketing, East (max length = 100)
Status string The status of a tracking option
TrackingCategoryID string Filter by a tracking category e.g. 297c2dc5-cc47-4afd-8ec8-74990b8761e9
View JSON Schema on GitHub

JSON Schema

xero-trackingoption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrackingOption",
  "title": "TrackingOption",
  "externalDocs": {
    "url": "http://developer.xero.com/documentation/api/tracking-categories/"
  },
  "properties": {
    "TrackingOptionID": {
      "description": "The Xero identifier for a tracking option e.g. ae777a87-5ef3-4fa0-a4f0-d10e1f13073a",
      "type": "string",
      "format": "uuid"
    },
    "Name": {
      "description": "The name of the tracking option e.g. Marketing, East (max length = 100)",
      "maxLength": 100,
      "type": "string"
    },
    "Status": {
      "description": "The status of a tracking option",
      "type": "string",
      "enum": [
        "ACTIVE",
        "ARCHIVED",
        "DELETED"
      ]
    },
    "TrackingCategoryID": {
      "description": "Filter by a tracking category e.g. 297c2dc5-cc47-4afd-8ec8-74990b8761e9",
      "type": "string",
      "format": "uuid"
    }
  },
  "type": "object"
}