Cookies & analytics

    We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.

    SwiftSchema Logo

    SwiftSchema

    Intuitive Schema Generation at Your Fingertips

    AboutLearnContact
      Stack

      Hotel Deals Stack

      Hotel deal/listing pages with CollectionPage of offers, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Hotel deal/discount landing pages
      • Travel deal hubs listing multiple hotel offers
      • Pages where FAQs clarify availability, cancellation, and inclusions

      What's included

      • Collection Page
        Open generator

        Represents the hotel deals page itself.

      • Defines individual hotel offers with pricing and availability.

      • Frequently Asked Questions
        Open generator

        Answers cancellation, inclusions, and blackout date questions.

      • Breadcrumb
        Open generator

        Provides navigation context to the deals page.

      Required properties (stack union)

      Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).

      availability
      description
      itemListElement[].name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      price
      priceCurrency
      url

      Recommended properties (stack union)

      category
      itemListElement[].item
      mainEntity.@id
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      name
      priceValidUntil

      Combined JSON-LD

      Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.

      Validate
      [
        {
          "@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" }
          ]
        }
      ]

      Implementation steps

      1. Start from your live product detail page content; ensure titles, prices, and availability match the page.
      2. Embed one JSON-LD script in the head or just before the closing body tag using the combined example as a template.
      3. Fill shipping details for each region you serve and keep them aligned with on-page shipping tables.
      4. Attach your canonical MerchantReturnPolicy URL and keep the policy text in sync with Merchant Center.
      5. Add 3–6 FAQs that address purchase blockers (shipping, returns, compatibility) and keep answers consistent with visible content.
      6. Validate in the Rich Results Test and revalidate after price/availability/policy changes.

      Common errors and fixes

      FAQs

      Can I list multiple offers?

      Yes. Include one Offer per deal on the page with unique @id values and URLs that match the visible offers.

      Should I include hotel details?

      Link to the hotel booking page in the Offer.url. Keep hotel details on the linked page; this page focuses on the deal listing.

      References