Properties
| Name | Type | Description |
|---|---|---|
| line1 | string | |
| line2 | string | |
| line3 | string | |
| city | string | |
| region | string | |
| postalCode | string | |
| country | string | |
| textCase | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/avatax-rest-address-validation-info-schema.json",
"title": "AddressValidationInfo",
"description": "AddressValidationInfo schema from Avalara API",
"type": "object",
"properties": {
"line1": {
"type": "string"
},
"line2": {
"type": "string"
},
"line3": {
"type": "string"
},
"city": {
"type": "string"
},
"region": {
"type": "string"
},
"postalCode": {
"type": "string"
},
"country": {
"type": "string"
},
"textCase": {
"type": "string",
"enum": [
"Default",
"Upper",
"Mixed"
]
}
}
}