Schema stack

    Hotel Fee & Amenities Policy Stack

    Hotel fee and amenities policy pages with offers, FAQs, and breadcrumb navigation.

    Included schema
    Web Page
    Offer
    Frequently Asked Questions
    Breadcrumb
    Fit

    When to use this stack

    • Resort fee and amenity disclosure pages
    • Hotel policy pages covering parking, incidentals, and add-on fees
    • FAQ-driven pages clarifying what is included or extra
    Composition

    What is included

    • Defines the policy page that lists hotel fees and amenities.

    • Captures paid amenities or fees tied to the stay.

    • Answers fee inclusion, payment timing, and amenity access questions.

    • Provides navigation context for the policy page.

    Data contract

    Properties across the bundle

    Nested properties keep their parent path, such as offers.priceCurrency. Only publish values that match visible page content.

    Required properties

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

    Recommended properties

    • category
    • dateModified
    • description
    • inLanguage
    • itemListElement[].item
    • mainEntity[].acceptedAnswer.text
    • mainEntity[].author.name
    • mainEntity[].name
    • priceSpecification.price
    • priceSpecification.priceCurrency
    Copy-ready example

    Combined JSON-LD

    Paste this as one script tag, then replace every example value with data from the live page.

    [
      {
        "@context": "https://schema.org",
        "@type": "WebPage",
        "@id": "https://www.example.com/hotels/oak-hotel/fees#page",
        "name": "Hotel Fees & Amenities - Oak Hotel",
        "description": "Details on resort fees, parking, and included amenities at the Oak Hotel.",
        "url": "https://www.example.com/hotels/oak-hotel/fees",
        "inLanguage": "en",
        "dateModified": "2025-05-12"
      },
      {
        "@context": "https://schema.org",
        "@type": "Offer",
        "@id": "https://www.example.com/hotels/oak-hotel/fees#resort-fee",
        "name": "Daily Resort Fee",
        "description": "Includes pool access, fitness center, and in-room Wi-Fi.",
        "price": "35.00",
        "priceCurrency": "USD",
        "availability": "https://schema.org/InStock",
        "url": "https://www.example.com/hotels/oak-hotel/fees#resort-fee",
        "priceSpecification": {
          "@type": "UnitPriceSpecification",
          "price": "35.00",
          "priceCurrency": "USD",
          "unitText": "per night"
        }
      },
      {
        "@context": "https://schema.org",
        "@type": "Offer",
        "@id": "https://www.example.com/hotels/oak-hotel/fees#parking",
        "name": "Self-Parking Fee",
        "description": "Covered self-parking in the onsite garage.",
        "price": "28.00",
        "priceCurrency": "USD",
        "availability": "https://schema.org/InStock",
        "url": "https://www.example.com/hotels/oak-hotel/fees#parking",
        "priceSpecification": {
          "@type": "UnitPriceSpecification",
          "price": "28.00",
          "priceCurrency": "USD",
          "unitText": "per night"
        }
      },
      {
        "@context": "https://schema.org",
        "@type": "FAQPage",
        "mainEntity": [
          {
            "@type": "Question",
            "name": "Are taxes included in the resort fee?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "Taxes are added at checkout and shown on the booking confirmation."
            }
          },
          {
            "@type": "Question",
            "name": "Is Wi-Fi included with the stay?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "Standard Wi-Fi is included in the daily resort fee."
            }
          },
          {
            "@type": "Question",
            "name": "When is the parking fee charged?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "Parking fees are charged nightly at checkout unless you prepay online."
            }
          }
        ]
      },
      {
        "@context": "https://schema.org",
        "@type": "BreadcrumbList",
        "itemListElement": [
          { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
          { "@type": "ListItem", "position": 2, "name": "Hotels", "item": "https://www.example.com/hotels" },
          { "@type": "ListItem", "position": 3, "name": "Oak Hotel", "item": "https://www.example.com/hotels/oak-hotel" },
          { "@type": "ListItem", "position": 4, "name": "Fees & Amenities", "item": "https://www.example.com/hotels/oak-hotel/fees" }
        ]
      }
    ]
    Workflow

    Implement and verify

    1. 01

      Start with the live page

      Confirm titles, prices, availability, policies, and visible FAQ content before generating markup.

    2. 02

      Add one JSON-LD script

      Use the combined example as a template in the document head or before the closing body tag.

    3. 03

      Complete regional details

      Fill shipping destinations and timing for every region the page actually serves.

    4. 04

      Link the return policy

      Use a stable MerchantReturnPolicy URL and keep its terms synchronized with the page.

    5. 05

      Match visible answers

      Add only FAQs that users can read on the same page, with identical answers.

    6. 06

      Validate after changes

      Run Rich Results Test after implementation and whenever price, availability, or policy data changes.

    Quality check

    Common errors and fixes

    • Missing currency or availability

      Use ISO currency codes and complete schema.org availability URLs in Offer data.

    • Incomplete shipping details

      Include shippingDestination.addressCountry and deliveryTime.transitTime with units.

    • Return policy is not connected

      Reference MerchantReturnPolicy from the Offer and provide a stable public policy URL.

    • FAQ answers differ from the page

      Keep structured FAQ answers identical to visible answers.

    Questions

    Stack FAQs

    Do I need multiple Offer entries for different fees?

    Yes. Use one Offer per fee or add-on so each price and description is clear.

    How should I handle seasonal fees?

    If fees change seasonally, create separate Offers or note the date range with priceValidUntil.

    Primary sources

    References