Avalara · JSON Structure

Excise Tax Determination Response Structure

TaxDeterminationResponse schema from Avalara API

Type: object Properties: 3
Taxes

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

Properties

status transactionLines totalTaxAmount

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-response-structure.json",
  "description": "TaxDeterminationResponse schema from Avalara API",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "Success",
        "Error",
        "Partial"
      ]
    },
    "transactionLines": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TaxDeterminationLine"
      }
    },
    "totalTaxAmount": {
      "type": "double"
    }
  },
  "name": "TaxDeterminationResponse"
}