XooCode(){

VacationRental

VacationRental is a direct LodgingBusiness subtype for short-term rentals of single properties: Airbnb-style listings, cottage rentals, cabin rentals, condo rentals. Use numberOfRooms for the property's room count and amenityFeature for hot tubs, kitchens, pools.

Full example of schema.org/VacationRental json-ld markup

The markup is verified as valid with Rich Results Test from Google.

schema.org/VacationRental
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "VacationRental",
  "name": "Lake Xoo Cabin",
  "description": "Two-bedroom lakeside cabin on the north shore of Lake Xoo. Sleeps six, with a dock and fire pit.",
  "address": { "@type": "PostalAddress", "streetAddress": "1820 Lake Shore Dr", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
  "telephone": "+1-570-555-2331",
  "geo": { "@type": "GeoCoordinates", "latitude": 41.4122, "longitude": -75.5775 },
  "checkinTime": "16:00",
  "checkoutTime": "10:00",
  "numberOfRooms": 5,
  "petsAllowed": true,
  "priceRange": "$$$",
  "amenityFeature": [
    { "@type": "LocationFeatureSpecification", "name": "Full kitchen", "value": true },
    { "@type": "LocationFeatureSpecification", "name": "Private dock", "value": true },
    { "@type": "LocationFeatureSpecification", "name": "Fire pit", "value": true }
  ],
  "url": "https://xoocode.com/shops/lake-xoo-cabin"
}
</script>

Minimal valid version

The smallest markup that still produces a valid VacationRental entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.

schema.org/VacationRental (minimal)
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "VacationRental",
  "name": "Lake Xoo Cabin",
  "address": { "@type": "PostalAddress", "streetAddress": "1820 Lake Shore Dr", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>

Google rich results this unlocks

VacationRental is a structural type. It does not produce a rich result on its own.

Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). VacationRental becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.

Common VacationRental mistakes

Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.

  1. 01

    Using Apartment for a VacationRental

    Wrong
    Apartment (Accommodation subtype) for a whole-unit rental listing
    Right
    VacationRental for short-term rentals as a business; Apartment for the residential unit itself

    VacationRental is a LodgingBusiness with checkin/checkout; Apartment is an Accommodation without business semantics. Travel aggregators read VacationRental.

  2. 02

    VacationRental without amenityFeature

    Wrong
    VacationRental with only room count
    Right
    Populate amenityFeature with kitchen, Wi-Fi, parking, hot tub, etc.

    Vacation rental searches are amenity-driven. Missing features loses a primary filter.

About the example data

"Lake Xoo Cabin", a fictional two-bedroom lakeside vacation rental.

Comments

Loading comments...

Leave a comment