Avalara · Schema

ExciseProduct

ExciseProduct schema from Avalara API

Taxes

Properties

Name Type Description
productCode string
productName string
productCategory string
unitOfMeasure string
View JSON Schema on GitHub

JSON Schema

excise-excise-product-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-product-schema.json",
  "title": "ExciseProduct",
  "description": "ExciseProduct schema from Avalara API",
  "type": "object",
  "properties": {
    "productCode": {
      "type": "string"
    },
    "productName": {
      "type": "string"
    },
    "productCategory": {
      "type": "string",
      "enum": [
        "MotorFuel",
        "Diesel",
        "Aviation",
        "Alcohol",
        "Tobacco",
        "NaturalGas",
        "Other"
      ]
    },
    "unitOfMeasure": {
      "type": "string"
    }
  }
}