Contest Leaderboard Stack
Contest or competition leaderboards with ItemList + WebPage context, FAQs, and breadcrumb navigation.
When to use this stack
- Leaderboard pages listing top contestants
- Contest pages with rankings and scoring rules
- Seasonal competition results and highlights
What is included
Declares the leaderboard page and its descriptive summary.
Lists ranked contestants or submissions with positions.
Answers scoring, eligibility, and prize questions.
Provides navigation context for the leaderboard 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
- description
- itemListElement[].name
- itemListElement[].position
- mainEntity[].@type=Question
- mainEntity[].acceptedAnswer.text
- name
- url
Recommended properties
- dateModified
- inLanguage
- itemListElement[].item
- itemListOrder
- mainEntity[].acceptedAnswer.text
- mainEntity[].author.name
- mainEntity[].name
- numberOfItems
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": "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" }
]
}
]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
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.