Avalara · JSON Structure

Excise Tax Determination Line Structure

TaxDeterminationLine schema from Avalara API

Type: object Properties: 4
Taxes

TaxDeterminationLine is a JSON Structure definition published by Avalara, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

lineNumber productCode taxes totalTax

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-structure/excise-tax-determination-line-structure.json",
  "description": "TaxDeterminationLine schema from Avalara API",
  "type": "object",
  "properties": {
    "lineNumber": {
      "type": "string"
    },
    "productCode": {
      "type": "string"
    },
    "taxes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ExciseTaxDetail"
      }
    },
    "totalTax": {
      "type": "double"
    }
  },
  "name": "TaxDeterminationLine"
}