Avalara · Schema

TransactionAddressModel

Taxes

Properties

Name Type Description
id integer
line1 string
city string
region string
postalCode string
country string
latitude number
longitude number
View JSON Schema on GitHub

JSON Schema

avalara-transactionaddressmodel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransactionAddressModel",
  "title": "TransactionAddressModel",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "line1": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "region": {
      "type": "string"
    },
    "postalCode": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "latitude": {
      "type": "number",
      "format": "double"
    },
    "longitude": {
      "type": "number",
      "format": "double"
    }
  }
}