Sports Team Roster Stack
Team roster pages with SportsOrganization + Person, FAQs, and breadcrumb navigation.
When to use this stack
- Team roster pages listing players, coaches, and staff
- Athletics program pages with bios and positions
- Pages where FAQs clarify season schedules and eligibility
What is included
Defines the team/club identity and official URL.
Represents roster members with names and roles.
Answers roster and season questions.
Provides navigation context for the roster 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
- itemListElement[].name
- mainEntity[].@type=Question
- mainEntity[].acceptedAnswer.text
- name
- url
Recommended properties
- affiliation.name
- image
- itemListElement[].item
- jobTitle
- logo
- mainEntity[].acceptedAnswer.text
- mainEntity[].author.name
- mainEntity[].name
- sameAs[]
- sport
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": "SportsOrganization",
"@id": "https://www.example.com/teams/raptors#team",
"name": "Raptors FC",
"url": "https://www.example.com/teams/raptors",
"sport": "Soccer",
"logo": "https://www.example.com/images/raptors-logo.png",
"sameAs": [
"https://www.instagram.com/raptorsfc",
"https://www.twitter.com/raptorsfc"
]
},
{
"@context": "https://schema.org",
"@type": "Person",
"@id": "https://www.example.com/teams/raptors/players/aria-chen#person",
"name": "Aria Chen",
"url": "https://www.example.com/teams/raptors/players/aria-chen",
"jobTitle": "Goalkeeper",
"image": "https://www.example.com/images/players/aria-chen.webp",
"affiliation": { "@type": "SportsOrganization", "name": "Raptors FC" }
},
{
"@context": "https://schema.org",
"@type": "Person",
"@id": "https://www.example.com/teams/raptors/players/mateo-ruiz#person",
"name": "Mateo Ruiz",
"url": "https://www.example.com/teams/raptors/players/mateo-ruiz",
"jobTitle": "Forward",
"image": "https://www.example.com/images/players/mateo-ruiz.webp",
"affiliation": { "@type": "SportsOrganization", "name": "Raptors FC" }
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "How often is the roster updated?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We update the roster after each transfer window and before the season opener."
}
},
{
"@type": "Question",
"name": "Where can I find player stats?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Player stats are listed on each profile page and updated weekly during the season."
}
},
{
"@type": "Question",
"name": "Are coaches included on the roster?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. The coaching staff appears at the bottom of the roster page."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Teams", "item": "https://www.example.com/teams" },
{ "@type": "ListItem", "position": 3, "name": "Raptors FC", "item": "https://www.example.com/teams/raptors" }
]
}
]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 include each player as a Person?
Yes. Add one Person per roster member with unique @id and URL values.
Can I link to a separate roster list page?
Yes. Keep the roster schema on the page where the roster appears and link each Person to their profile URL.