Avalara · Schema

RentalProperty

RentalProperty schema from Avalara API

Taxes

Properties

Name Type Description
propertyId string
propertyName string
address object
listingPlatforms array Platforms where the property is listed (e.g., Airbnb, VRBO)
propertyType string
View JSON Schema on GitHub

JSON Schema

mylodgetax-rental-property-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/mylodgetax-rental-property-schema.json",
  "title": "RentalProperty",
  "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"
      ]
    }
  }
}