Avalara · Schema

ExciseTaxDetail

ExciseTaxDetail schema from Avalara API

Taxes

Properties

Name Type Description
taxType string Type of excise tax
jurisdiction string Taxing jurisdiction
taxRate number
taxAmount number
taxableAmount number
exemptAmount number
rateType string
View JSON Schema on GitHub

JSON Schema

excise-excise-tax-detail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/excise-excise-tax-detail-schema.json",
  "title": "ExciseTaxDetail",
  "description": "ExciseTaxDetail schema from Avalara API",
  "type": "object",
  "properties": {
    "taxType": {
      "type": "string",
      "description": "Type of excise tax"
    },
    "jurisdiction": {
      "type": "string",
      "description": "Taxing jurisdiction"
    },
    "taxRate": {
      "type": "number",
      "format": "double"
    },
    "taxAmount": {
      "type": "number",
      "format": "double"
    },
    "taxableAmount": {
      "type": "number",
      "format": "double"
    },
    "exemptAmount": {
      "type": "number",
      "format": "double"
    },
    "rateType": {
      "type": "string",
      "enum": [
        "PerUnit",
        "Percentage"
      ]
    }
  }
}