Xero · Schema

PayItem

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
EarningsRates array
DeductionTypes array
LeaveTypes array
ReimbursementTypes array
View JSON Schema on GitHub

JSON Schema

xero-payitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PayItem",
  "title": "PayItem",
  "type": "object",
  "properties": {
    "EarningsRates": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EarningsRate"
      }
    },
    "DeductionTypes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DeductionType"
      }
    },
    "LeaveTypes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LeaveType"
      }
    },
    "ReimbursementTypes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ReimbursementType"
      }
    }
  }
}