Xero · Schema
StatutoryDeduction
AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The Xero identifier for earnings order |
| name | string | Name of the earnings order |
| statutoryDeductionCategory | object | |
| liabilityAccountId | string | Xero identifier for Liability Account |
| currentRecord | boolean | Identifier of a record is active or not. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StatutoryDeduction",
"title": "StatutoryDeduction",
"type": "object",
"properties": {
"id": {
"description": "The Xero identifier for earnings order",
"type": "string",
"format": "uuid"
},
"name": {
"description": "Name of the earnings 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"
}
}
}