Xero · Schema
BenefitLine
AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business
Properties
| Name | Type | Description |
|---|---|---|
| benefitTypeID | string | Xero identifier for payroll benefit type |
| displayName | string | Benefit display name |
| amount | number | The amount of the benefit line. |
| fixedAmount | number | Benefit fixed amount |
| percentage | number | Benefit rate percentage |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BenefitLine",
"title": "BenefitLine",
"type": "object",
"properties": {
"benefitTypeID": {
"description": "Xero identifier for payroll benefit type",
"type": "string",
"format": "uuid"
},
"displayName": {
"description": "Benefit display name",
"type": "string"
},
"amount": {
"description": "The amount of the benefit line.",
"type": "number",
"format": "double"
},
"fixedAmount": {
"description": "Benefit fixed amount",
"type": "number",
"format": "double"
},
"percentage": {
"description": "Benefit rate percentage",
"type": "number",
"format": "double"
}
}
}