Avalara · JSON Structure

Mylodgetax Lodging Tax Rate Response Structure

LodgingTaxRateResponse schema from Avalara API

Type: object Properties: 2
Taxes

LodgingTaxRateResponse is a JSON Structure definition published by Avalara, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

totalRate rates

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-structure/mylodgetax-lodging-tax-rate-response-structure.json",
  "description": "LodgingTaxRateResponse schema from Avalara API",
  "type": "object",
  "properties": {
    "totalRate": {
      "type": "double",
      "description": "Total combined lodging tax rate"
    },
    "rates": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "jurisdiction": {
            "type": "string"
          },
          "jurisdictionType": {
            "type": "string",
            "enum": [
              "State",
              "County",
              "City",
              "District"
            ]
          },
          "taxName": {
            "type": "string"
          },
          "rate": {
            "type": "double"
          }
        }
      }
    }
  },
  "name": "LodgingTaxRateResponse"
}