Avalara · JSON Structure

Mylodgetax Rental Property Structure

RentalProperty schema from Avalara API

Type: object Properties: 5
Taxes

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

Properties

propertyId propertyName address listingPlatforms propertyType

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-rental-property-structure.json",
  "description": "RentalProperty schema from Avalara API",
  "type": "object",
  "properties": {
    "propertyId": {
      "type": "string"
    },
    "propertyName": {
      "type": "string"
    },
    "address": {
      "type": "object",
      "properties": {
        "line1": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "region": {
          "type": "string"
        },
        "postalCode": {
          "type": "string"
        },
        "country": {
          "type": "string"
        }
      }
    },
    "listingPlatforms": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Platforms where the property is listed (e.g., Airbnb, VRBO)"
    },
    "propertyType": {
      "type": "string",
      "enum": [
        "House",
        "Apartment",
        "Condo",
        "Room",
        "Other"
      ]
    }
  },
  "name": "RentalProperty"
}