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

      Contest Leaderboard Stack

      Contest or competition leaderboards with ItemList + WebPage context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Leaderboard pages listing top contestants
      • Contest pages with rankings and scoring rules
      • Seasonal competition results and highlights

      What's included

      • Declares the leaderboard page and its descriptive summary.

      • Lists ranked contestants or submissions with positions.

      • Frequently Asked Questions
        Open generator

        Answers scoring, eligibility, and prize questions.

      • Breadcrumb
        Open generator

        Provides navigation context for the leaderboard 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`).

      description
      itemListElement[].name
      itemListElement[].position
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      url

      Recommended properties (stack union)

      dateModified
      inLanguage
      itemListElement[].item
      itemListOrder
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      numberOfItems

      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": "WebPage",
          "@id": "https://www.example.com/contests/fall-fit-challenge/leaderboard#page",
          "name": "Fall Fit Challenge Leaderboard",
          "description": "Top ranked participants for the Fall Fit Challenge.",
          "url": "https://www.example.com/contests/fall-fit-challenge/leaderboard",
          "inLanguage": "en",
          "dateModified": "2025-04-20"
        },
        {
          "@context": "https://schema.org",
          "@type": "ItemList",
          "@id": "https://www.example.com/contests/fall-fit-challenge/leaderboard#list",
          "name": "Leaderboard Rankings",
          "itemListOrder": "https://schema.org/ItemListOrderDescending",
          "numberOfItems": 3,
          "itemListElement": [
            {
              "@type": "ListItem",
              "position": 1,
              "name": "Jordan Lee",
              "item": "https://www.example.com/contests/fall-fit-challenge/participants/jordan-lee"
            },
            {
              "@type": "ListItem",
              "position": 2,
              "name": "Priya Shah",
              "item": "https://www.example.com/contests/fall-fit-challenge/participants/priya-shah"
            },
            {
              "@type": "ListItem",
              "position": 3,
              "name": "Alex Rivera",
              "item": "https://www.example.com/contests/fall-fit-challenge/participants/alex-rivera"
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "How are rankings calculated?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Rankings are based on total points earned from completed workouts and weekly submissions."
              }
            },
            {
              "@type": "Question",
              "name": "When is the leaderboard updated?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Updates post every Monday after weekly check-ins close."
              }
            },
            {
              "@type": "Question",
              "name": "What happens if there is a tie?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Ties are broken by total completed workouts, then earliest submission time."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Contests", "item": "https://www.example.com/contests" },
            { "@type": "ListItem", "position": 3, "name": "Fall Fit Challenge", "item": "https://www.example.com/contests/fall-fit-challenge" },
            { "@type": "ListItem", "position": 4, "name": "Leaderboard", "item": "https://www.example.com/contests/fall-fit-challenge/leaderboard" }
          ]
        }
      ]

      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

      Should I list all participants or just top entries?

      List the same participants that appear on the page. If you show a top 10, reflect only those entries.

      Can I include team rankings?

      Yes. Use separate ItemList sections or separate pages for teams vs individuals.

      References