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

      Spa / Wellness Package Stack

      Spa/wellness package pages with LocalBusiness + Offer context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Spa package landing pages with pricing and booking
      • Wellness day-pass offers that include multiple treatments
      • Pages where FAQs explain policies and preparation

      What's included

      • Local Business
        Open generator

        Anchors the spa business with address, contact, and URL details.

      • Describes the spa package offer and booking URL.

      • Frequently Asked Questions
        Open generator

        Answers questions about preparation, cancellations, and inclusions.

      • Breadcrumb
        Open generator

        Provides navigation context for the spa package 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.addressCountry
      address.addressLocality
      address.addressRegion
      address.postalCode
      address.streetAddress
      availability
      itemListElement[].name
      itemOffered.@id
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      price
      priceCurrency
      telephone
      url

      Recommended properties (stack union)

      category
      description
      image
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      openingHoursSpecification
      priceRange
      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": "LocalBusiness",
          "@id": "https://www.example.com/spa/serenity#business",
          "name": "Serenity Spa",
          "url": "https://www.example.com/spa/serenity",
          "telephone": "+1-415-555-0142",
          "image": "https://www.example.com/images/serenity-spa.webp",
          "priceRange": "$$",
          "address": {
            "@type": "PostalAddress",
            "streetAddress": "220 Harbor Ave",
            "addressLocality": "San Francisco",
            "addressRegion": "CA",
            "postalCode": "94107",
            "addressCountry": "US"
          },
          "openingHoursSpecification": [
            {
              "@type": "OpeningHoursSpecification",
              "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
              "opens": "09:00",
              "closes": "19:00"
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "Offer",
          "@id": "https://www.example.com/spa/serenity#offer",
          "name": "Restore & Relax Package",
          "price": "210.00",
          "priceCurrency": "USD",
          "availability": "https://schema.org/InStock",
          "url": "https://www.example.com/spa/serenity#book",
          "itemOffered": { "@id": "https://www.example.com/spa/serenity#business" },
          "category": "SpaPackage",
          "description": "Includes a 60-minute massage, facial, and access to the relaxation lounge."
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "How early should I arrive?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Please arrive 15 minutes early to complete intake and settle in."
              }
            },
            {
              "@type": "Question",
              "name": "What is your cancellation policy?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Cancellations within 24 hours incur a 50% fee; same-day cancellations are charged in full."
              }
            },
            {
              "@type": "Question",
              "name": "What should I bring?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "We provide robes and slippers. Bring a swimsuit if you plan to use the sauna."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Spa", "item": "https://www.example.com/spa" },
            { "@type": "ListItem", "position": 3, "name": "Restore & Relax", "item": "https://www.example.com/spa/serenity" }
          ]
        }
      ]

      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 packages on one page?

      Yes. Use one Offer per package with unique @id values and booking URLs.

      Should I include gift cards?

      Add a separate Offer for gift cards if the page prominently features them.

      References