We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Hotel deal/listing pages with CollectionPage of offers, FAQs, and breadcrumb navigation.
Represents the hotel deals page itself.
Defines individual hotel offers with pricing and availability.
Answers cancellation, inclusions, and blackout date questions.
Provides navigation context to the deals page.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "CollectionPage",
"@id": "https://www.example.com/deals/hotels#page",
"name": "Hotel Deals — Spring Getaways",
"description": "Discounted hotel rates for spring travel across top destinations.",
"url": "https://www.example.com/deals/hotels",
"mainEntity": {
"@type": "Offer",
"@id": "https://www.example.com/deals/hotels#offer-1"
}
},
{
"@context": "https://schema.org",
"@type": "Offer",
"@id": "https://www.example.com/deals/hotels#offer-1",
"name": "20% off — Beachside Hotel",
"category": "HotelDeal",
"price": "199.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/hotels/beachside#book",
"priceValidUntil": "2025-06-30"
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Are taxes and fees included?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Displayed rates exclude taxes and resort fees unless specified on the checkout page."
}
},
{
"@type": "Question",
"name": "What is the cancellation policy?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Most deals allow free cancellation up to 48 hours before arrival. Check the offer details at booking."
}
},
{
"@type": "Question",
"name": "Are blackout dates applied?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Blackout dates may apply during peak periods. See the offer page for exact dates."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Deals", "item": "https://www.example.com/deals" },
{ "@type": "ListItem", "position": 3, "name": "Hotel Deals", "item": "https://www.example.com/deals/hotels" }
]
}
]Yes. Include one Offer per deal on the page with unique @id values and URLs that match the visible offers.
Link to the hotel booking page in the Offer.url. Keep hotel details on the linked page; this page focuses on the deal listing.