Motel
Motel is a direct LodgingBusiness subtype for motels, motor lodges, and roadside-accessible room-by-room accommodations. For full-service urban properties, prefer Hotel.
Full example of schema.org/Motel json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Motel",
"name": "Pocono Highway Motel",
"description": "Classic 28-room single-story motel on the Pocono Highway. Parking outside every door.",
"address": { "@type": "PostalAddress", "streetAddress": "5100 Pocono Highway", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"telephone": "+1-570-555-2321",
"checkinTime": "15:00",
"checkoutTime": "11:00",
"numberOfRooms": 28,
"petsAllowed": true,
"priceRange": "$$",
"url": "https://xoocode.com/shops/pocono-highway-motel"
}
</script>Minimal valid version
The smallest markup that still produces a valid Motel 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.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Motel",
"name": "Pocono Highway Motel",
"address": { "@type": "PostalAddress", "streetAddress": "5100 Pocono Highway", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>Google rich results this unlocks
Motel 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). Motel becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common Motel 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.
- 01
Using Hotel for a motel
WrongHotel for a roadside motor lodgeRightMotel for roadside property-style lodging; Hotel for full-service with interior corridorsTravel aggregators filter differently. Motel and Hotel serve different buyer intents and price tiers.
Schema properties in this example
About the example data
"Pocono Highway Motel", a fictional roadside motel.
Comments
Loading comments...