Sage · Schema

TaxRate

AccountingBusiness ManagementCloud SoftwareERPPayrollHR

Properties

Name Type Description
id string
displayed_as string
name string
percentage number
is_combined_tax_rate boolean
View JSON Schema on GitHub

JSON Schema

sage-taxrate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaxRate",
  "title": "TaxRate",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "displayed_as": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "percentage": {
      "type": "number"
    },
    "is_combined_tax_rate": {
      "type": "boolean"
    }
  }
}