Fitness Class Schedule Stack
Fitness/bootcamp class schedule pages with Event listings, LocalBusiness context, FAQs, and breadcrumb navigation.
When to use this stack
- Gym or studio class schedule pages listing multiple upcoming classes
- Bootcamp/fitness event pages where location and schedule need structure
- Pages where FAQs clarify membership, drop-ins, and cancellations
What is included
Anchors the gym/studio location and NAP details.
Represents the list of upcoming classes/events.
Describes each class/event with time and location.
Answers drop-in, membership, and cancellation questions.
Provides navigation context to the schedule page.
Properties across the bundle
Nested properties keep their parent path, such as offers.priceCurrency. Only publish values that match visible page content.
Required properties
- address.addressCountry
- address.addressLocality
- address.addressRegion
- address.postalCode
- address.streetAddress
- itemListElement[].@type=ListItem
- itemListElement[].item.@id
- itemListElement[].name
- location.address.addressCountry
- location.name
- mainEntity[].@type=Question
- mainEntity[].acceptedAnswer.text
- name
- startDate
- telephone
- url
Recommended properties
- eventAttendanceMode
- geo.latitude
- geo.longitude
- image
- itemListElement[].item
- itemListElement[].item.location.name
- itemListElement[].item.name
- itemListElement[].item.startDate
- itemListElement[].position
- location.address.addressLocality
- location.address.addressRegion
- location.address.postalCode
- mainEntity[].acceptedAnswer.text
- mainEntity[].author.name
- mainEntity[].name
- offers.price
- offers.priceCurrency
- priceRange
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": "LocalBusiness",
"@id": "https://www.example.com/locations/downtown-gym#location",
"name": "Example Fitness — Downtown",
"url": "https://www.example.com/locations/downtown-gym",
"telephone": "+1-415-555-0100",
"address": {
"@type": "PostalAddress",
"streetAddress": "200 Market St",
"addressLocality": "San Francisco",
"addressRegion": "CA",
"postalCode": "94105",
"addressCountry": "US"
}
},
{
"@context": "https://schema.org",
"@type": "ItemList",
"@id": "https://www.example.com/classes#list",
"name": "This Week's Classes",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": { "@id": "https://www.example.com/classes/hiit-monday-7am#event" }
},
{
"@type": "ListItem",
"position": 2,
"item": { "@id": "https://www.example.com/classes/yoga-tuesday-6pm#event" }
}
]
},
{
"@context": "https://schema.org",
"@type": "Event",
"@id": "https://www.example.com/classes/hiit-monday-7am#event",
"name": "HIIT — Monday 7:00am",
"startDate": "2025-03-03T07:00:00-08:00",
"location": {
"@type": "Place",
"name": "Example Fitness — Downtown",
"address": {
"@type": "PostalAddress",
"addressCountry": "US",
"addressLocality": "San Francisco",
"addressRegion": "CA",
"postalCode": "94105"
}
},
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"offers": {
"@type": "Offer",
"price": "20.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/classes/hiit-monday-7am#book"
}
},
{
"@context": "https://schema.org",
"@type": "Event",
"@id": "https://www.example.com/classes/yoga-tuesday-6pm#event",
"name": "Vinyasa Yoga — Tuesday 6:00pm",
"startDate": "2025-03-04T18:00:00-08:00",
"location": {
"@type": "Place",
"name": "Example Fitness — Downtown",
"address": {
"@type": "PostalAddress",
"addressCountry": "US",
"addressLocality": "San Francisco",
"addressRegion": "CA",
"postalCode": "94105"
}
},
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"offers": {
"@type": "Offer",
"price": "18.00",
"priceCurrency": "USD",
"availability": "https://schema.org/InStock",
"url": "https://www.example.com/classes/yoga-tuesday-6pm#book"
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Do you allow drop-ins?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Drop-ins are welcome if the class shows availability. Reserve online to guarantee a spot."
}
},
{
"@type": "Question",
"name": "Is there a membership required?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No membership required. Members get discounted pricing at checkout."
}
},
{
"@type": "Question",
"name": "What is the cancellation policy?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Cancel up to 2 hours before class for a full refund. Late cancellations may be charged."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Classes", "item": "https://www.example.com/classes" },
{ "@type": "ListItem", "position": 3, "name": "Downtown Schedule", "item": "https://www.example.com/classes/downtown" }
]
}
]Implement and verify
- 01
Start with the live page
Confirm titles, prices, availability, policies, and visible FAQ content before generating markup.
- 02
Add one JSON-LD script
Use the combined example as a template in the document head or before the closing body tag.
- 03
Complete regional details
Fill shipping destinations and timing for every region the page actually serves.
- 04
Link the return policy
Use a stable MerchantReturnPolicy URL and keep its terms synchronized with the page.
- 05
Match visible answers
Add only FAQs that users can read on the same page, with identical answers.
- 06
Validate after changes
Run Rich Results Test after implementation and whenever price, availability, or policy data changes.
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.
Stack FAQs
Do I need LocalBusiness if classes are virtual?
For virtual-only, use a VirtualLocation in the Event and keep LocalBusiness if you still show a primary studio location.
How many events should I list?
Include one Event per class visible on the page. Keep times, locations, and pricing aligned with the UI.