Xero · Schema
TaxComponent
AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business
Properties
| Name | Type | Description |
|---|---|---|
| Name | string | Name of Tax Component |
| Rate | number | Tax Rate (up to 4dp) |
| IsCompound | boolean | Boolean to describe if Tax rate is compounded. |
| IsNonRecoverable | boolean | Boolean to describe if tax rate is non-recoverable. Non-recoverable rates are only applicable to Canadian organisations |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TaxComponent",
"title": "TaxComponent",
"externalDocs": {
"url": "http://developer.xero.com/documentation/api/tax-rates/"
},
"properties": {
"Name": {
"description": "Name of Tax Component",
"type": "string"
},
"Rate": {
"description": "Tax Rate (up to 4dp)",
"type": "number",
"format": "double",
"x-is-money": true
},
"IsCompound": {
"description": "Boolean to describe if Tax rate is compounded.",
"type": "boolean"
},
"IsNonRecoverable": {
"description": "Boolean to describe if tax rate is non-recoverable. Non-recoverable rates are only applicable to Canadian organisations",
"type": "boolean"
}
},
"type": "object"
}