Xero · Schema

StatutoryDeductionLine

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Properties

Name Type Description
statutoryDeductionTypeID string Xero identifier for payroll statutory deduction type
amount number The amount of the statutory deduction line
fixedAmount number Fixed Amount
manualAdjustment boolean Identifies if the tax line is a manual adjustment
View JSON Schema on GitHub

JSON Schema

xero-statutorydeductionline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatutoryDeductionLine",
  "title": "StatutoryDeductionLine",
  "type": "object",
  "properties": {
    "statutoryDeductionTypeID": {
      "description": "Xero identifier for payroll statutory deduction type",
      "type": "string",
      "format": "uuid"
    },
    "amount": {
      "description": "The amount of the statutory deduction line",
      "type": "number",
      "format": "double",
      "x-is-money": true
    },
    "fixedAmount": {
      "description": "Fixed Amount",
      "type": "number",
      "format": "double",
      "x-is-money": true
    },
    "manualAdjustment": {
      "description": "Identifies if the tax line is a manual adjustment",
      "type": "boolean"
    }
  }
}