Avalara · Schema

ExciseLocation

Taxes

Properties

Name Type Description
locationId string
locationName string
locationType string
address object
irsTerminalCode string
View JSON Schema on GitHub

JSON Schema

avalara-exciselocation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExciseLocation",
  "title": "ExciseLocation",
  "type": "object",
  "properties": {
    "locationId": {
      "type": "string"
    },
    "locationName": {
      "type": "string"
    },
    "locationType": {
      "type": "string",
      "enum": [
        "Terminal",
        "Warehouse",
        "BulkPlant",
        "Retail",
        "Blender",
        "Refinery"
      ]
    },
    "address": {
      "$ref": "#/components/schemas/ExciseAddress"
    },
    "irsTerminalCode": {
      "type": "string"
    }
  }
}