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

      Restaurant Reservation Stack

      Reservation pages with FoodEstablishmentReservation + Restaurant context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Restaurant reservation pages with booking details
      • Dining pages that need reservation confirmation context
      • Pages where FAQs clarify policies and dining requirements

      What's included

      • Food Establishment Reservation
        Open generator

        Captures the reservation details and booking context.

      • Restaurant
        Open generator

        Represents the restaurant entity with location and contact details.

      • Frequently Asked Questions
        Open generator

        Answers questions about cancellations, seating, and dietary needs.

      • Breadcrumb
        Open generator

        Provides navigation context to the reservation 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`).

      address.addressLocality
      address.addressRegion
      address.streetAddress
      itemListElement[].name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      partySize
      reservationFor.@id
      reservationId
      reservationStatus
      startTime
      telephone
      url

      Recommended properties (stack union)

      bookingTime
      endTime
      image
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      modifiedTime
      priceRange
      servesCuisine
      underName.name

      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": "Restaurant",
          "@id": "https://www.example.com/restaurants/lucent#restaurant",
          "name": "Lucent Bistro",
          "url": "https://www.example.com/restaurants/lucent",
          "telephone": "+1-212-555-0179",
          "image": "https://www.example.com/images/lucent-bistro.webp",
          "servesCuisine": ["French", "Modern American"],
          "priceRange": "$$$",
          "address": {
            "@type": "PostalAddress",
            "streetAddress": "250 Madison Ave",
            "addressLocality": "New York",
            "addressRegion": "NY",
            "postalCode": "10016",
            "addressCountry": "US"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "FoodEstablishmentReservation",
          "@id": "https://www.example.com/restaurants/lucent#reservation",
          "reservationId": "RES-2025-0418-8821",
          "reservationStatus": "https://schema.org/ReservationConfirmed",
          "startTime": "2025-04-18T19:30:00-04:00",
          "endTime": "2025-04-18T21:30:00-04:00",
          "partySize": 4,
          "reservationFor": { "@id": "https://www.example.com/restaurants/lucent#restaurant" },
          "underName": {
            "@type": "Person",
            "name": "Taylor Brooks"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "What is your cancellation policy?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Cancellations are free up to 24 hours before your reservation."
              }
            },
            {
              "@type": "Question",
              "name": "Do you accommodate dietary restrictions?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Please include dietary notes in your reservation or contact us directly."
              }
            },
            {
              "@type": "Question",
              "name": "Is there a dress code?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Smart casual is recommended. Jackets are optional."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Restaurants", "item": "https://www.example.com/restaurants" },
            { "@type": "ListItem", "position": 3, "name": "Lucent Bistro", "item": "https://www.example.com/restaurants/lucent" }
          ]
        }
      ]

      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 include multiple reservation slots?

      Yes. Use one FoodEstablishmentReservation per reservation if multiple are listed on the page.

      What if a reservation is pending?

      Use reservationStatus with ReservationPending and include bookingTime if shown.

      References