Schema stack

    Fitness Challenge Stack

    Fitness challenge pages with EventSeries + Offer context, FAQs, and breadcrumb navigation.

    Included schema
    Event Series
    Offer
    Frequently Asked Questions
    Breadcrumb
    Fit

    When to use this stack

    • 30-day fitness or wellness challenge landing pages
    • Virtual or hybrid challenges with paid entry
    • Team or workplace challenges with rules and prizes
    Composition

    What is included

    • Represents the multi-day challenge and its schedule window.

    • Defines the entry fee or participation offer for the challenge.

    • Answers rules, scoring, and prize questions.

    • Provides navigation context for the challenge 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
    • endDate
    • eventAttendanceMode
    • eventStatus
    • itemListElement[].name
    • mainEntity[].@type=Question
    • mainEntity[].acceptedAnswer.text
    • name
    • organizer.name
    • price
    • priceCurrency
    • startDate
    • url

    Recommended properties

    • description
    • itemListElement[].item
    • location.name
    • mainEntity[].acceptedAnswer.text
    • mainEntity[].author.name
    • mainEntity[].name
    • seller.@id
    • url
    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": "EventSeries",
        "@id": "https://www.example.com/challenges/spring-shred#series",
        "name": "Spring Shred 30-Day Challenge",
        "description": "A 30-day strength and cardio challenge with weekly check-ins and leaderboard.",
        "startDate": "2025-05-01",
        "endDate": "2025-05-30",
        "eventStatus": "https://schema.org/EventScheduled",
        "eventAttendanceMode": "https://schema.org/OnlineEventAttendanceMode",
        "organizer": { "@type": "Organization", "name": "Northwind Fitness" },
        "location": {
          "@type": "VirtualLocation",
          "name": "Northwind Fitness App",
          "url": "https://www.example.com/app"
        },
        "url": "https://www.example.com/challenges/spring-shred"
      },
      {
        "@context": "https://schema.org",
        "@type": "Offer",
        "@id": "https://www.example.com/challenges/spring-shred#offer",
        "name": "Challenge Entry Pass",
        "description": "Includes workouts, tracking tools, and weekly coaching check-ins.",
        "price": "29.00",
        "priceCurrency": "USD",
        "availability": "https://schema.org/InStock",
        "url": "https://www.example.com/challenges/spring-shred/join"
      },
      {
        "@context": "https://schema.org",
        "@type": "FAQPage",
        "mainEntity": [
          {
            "@type": "Question",
            "name": "How is the leaderboard scored?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "Points are awarded for completed workouts and weekly check-ins."
            }
          },
          {
            "@type": "Question",
            "name": "Can teams participate?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "Yes. Teams of up to five can register and compete in a separate leaderboard."
            }
          },
          {
            "@type": "Question",
            "name": "Are there prizes?",
            "acceptedAnswer": {
              "@type": "Answer",
              "text": "Top finishers receive gift cards and free coaching sessions."
            }
          }
        ]
      },
      {
        "@context": "https://schema.org",
        "@type": "BreadcrumbList",
        "itemListElement": [
          { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
          { "@type": "ListItem", "position": 2, "name": "Challenges", "item": "https://www.example.com/challenges" },
          { "@type": "ListItem", "position": 3, "name": "Spring Shred", "item": "https://www.example.com/challenges/spring-shred" }
        ]
      }
    ]
    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

    Should I list all weekly workouts in schema?

    Only include sessions that are visible on the page; keep the EventSeries focused on the overall challenge.

    Can I include multiple pricing tiers?

    Yes. Add multiple Offer entries for solo, team, or premium tiers with matching CTA URLs.

    Primary sources

    References