{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/communications-location-schema.json", "title": "Location", "description": "Location schema from Avalara API", "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" } } }