Xero · Schema

EarningsOrder

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
id string Xero unique identifier for an earning rate
name string Name of the earning order
statutoryDeductionCategory object
liabilityAccountId string Xero identifier for Liability Account
currentRecord boolean Identifier of a record is active or not.
View JSON Schema on GitHub

JSON Schema

xero-earningsorder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EarningsOrder",
  "title": "EarningsOrder",
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "id": {
      "description": "Xero unique identifier for an earning rate",
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "description": "Name of the earning order",
      "type": "string"
    },
    "statutoryDeductionCategory": {
      "$ref": "#/components/schemas/StatutoryDeductionCategory"
    },
    "liabilityAccountId": {
      "description": "Xero identifier for Liability Account",
      "type": "string",
      "format": "uuid"
    },
    "currentRecord": {
      "description": "Identifier of a record is active or not.",
      "type": "boolean",
      "default": true
    }
  }
}