Avalara · JSON Structure

Excise Excise Transaction Structure

ExciseTransaction schema from Avalara API

Type: object Properties: 7
Taxes

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

Properties

transactionId invoiceNumber transactionDate transactionType status totalAmount 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-excise-transaction-structure.json",
  "description": "ExciseTransaction schema from Avalara API",
  "type": "object",
  "properties": {
    "transactionId": {
      "type": "string"
    },
    "invoiceNumber": {
      "type": "string"
    },
    "transactionDate": {
      "type": "date"
    },
    "transactionType": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Pending",
        "Committed",
        "Voided"
      ]
    },
    "totalAmount": {
      "type": "double"
    },
    "totalTax": {
      "type": "double"
    }
  },
  "name": "ExciseTransaction"
}