Avalara · Schema

ExciseTransaction

Taxes

Properties

Name Type Description
transactionId string
invoiceNumber string
transactionDate string
transactionType string
status string
totalAmount number
totalTax number
View JSON Schema on GitHub

JSON Schema

avalara-excisetransaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExciseTransaction",
  "title": "ExciseTransaction",
  "type": "object",
  "properties": {
    "transactionId": {
      "type": "string"
    },
    "invoiceNumber": {
      "type": "string"
    },
    "transactionDate": {
      "type": "string",
      "format": "date"
    },
    "transactionType": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Pending",
        "Committed",
        "Voided"
      ]
    },
    "totalAmount": {
      "type": "number",
      "format": "double"
    },
    "totalTax": {
      "type": "number",
      "format": "double"
    }
  }
}