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. |
JSON Schema
{
"$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
}
}
}