Avalara · Schema

Location

Taxes

Properties

Name Type Description
pcd integer PCode for jurisdiction
ctry string Country ISO code
st string State abbreviation
cty string County name
zip string ZIP code
geo boolean Whether to geocode the address
addr string Street address for geocoding
View JSON Schema on GitHub

JSON Schema

avalara-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Location",
  "title": "Location",
  "type": "object",
  "properties": {
    "pcd": {
      "type": "integer",
      "description": "PCode for jurisdiction"
    },
    "ctry": {
      "type": "string",
      "description": "Country ISO code"
    },
    "st": {
      "type": "string",
      "description": "State abbreviation"
    },
    "cty": {
      "type": "string",
      "description": "County name"
    },
    "zip": {
      "type": "string",
      "description": "ZIP code"
    },
    "geo": {
      "type": "boolean",
      "description": "Whether to geocode the address"
    },
    "addr": {
      "type": "string",
      "description": "Street address for geocoding"
    }
  }
}