Xero · Schema

ChargeType

Can be `TIME`, `FIXED` or `NON_CHARGEABLE`, defines how the task will be charged. Use `TIME` when you want to charge per hour and `FIXED` to charge as a fixed amount. If the task will not be charged use `NON_CHARGEABLE`.

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business
View JSON Schema on GitHub

JSON Schema

xero-chargetype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChargeType",
  "title": "ChargeType",
  "description": "Can be `TIME`, `FIXED` or `NON_CHARGEABLE`, defines how the task will be charged. Use `TIME` when you want to charge per hour and `FIXED` to charge as a fixed amount. If the task will not be charged use `NON_CHARGEABLE`.",
  "type": "string",
  "enum": [
    "TIME",
    "FIXED",
    "NON_CHARGEABLE"
  ]
}