Avalara · Schema

ExciseLicense

Taxes

Properties

Name Type Description
licenseId string
licenseNumber string
licenseType string
issuingJurisdiction string
effectiveDate string
expirationDate string
status string
View JSON Schema on GitHub

JSON Schema

avalara-exciselicense-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExciseLicense",
  "title": "ExciseLicense",
  "type": "object",
  "properties": {
    "licenseId": {
      "type": "string"
    },
    "licenseNumber": {
      "type": "string"
    },
    "licenseType": {
      "type": "string"
    },
    "issuingJurisdiction": {
      "type": "string"
    },
    "effectiveDate": {
      "type": "string",
      "format": "date"
    },
    "expirationDate": {
      "type": "string",
      "format": "date"
    },
    "status": {
      "type": "string",
      "enum": [
        "Active",
        "Expired",
        "Suspended",
        "Revoked"
      ]
    }
  }
}