Avalara · Schema

ExciseAddress

Taxes

Properties

Name Type Description
line1 string
line2 string
city string
region string State or province code
postalCode string
country string ISO 3166 country code
View JSON Schema on GitHub

JSON Schema

avalara-exciseaddress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExciseAddress",
  "title": "ExciseAddress",
  "type": "object",
  "properties": {
    "line1": {
      "type": "string"
    },
    "line2": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "region": {
      "type": "string",
      "description": "State or province code"
    },
    "postalCode": {
      "type": "string"
    },
    "country": {
      "type": "string",
      "description": "ISO 3166 country code"
    }
  }
}