We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Spa/wellness package pages with LocalBusiness + Offer context, FAQs, and breadcrumb navigation.
Anchors the spa business with address, contact, and URL details.
Describes the spa package offer and booking URL.
Answers questions about preparation, cancellations, and inclusions.
Provides navigation context for the spa package 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": "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" }
]
}
]Yes. Use one Offer per package with unique @id values and booking URLs.
Add a separate Offer for gift cards if the page prominently features them.