Skip to content

Instantly share code, notes, and snippets.

@patrickcoombe
Created July 4, 2025 17:12
Show Gist options
  • Save patrickcoombe/413a2b5993d6107b87955a7cb1cebd93 to your computer and use it in GitHub Desktop.
Save patrickcoombe/413a2b5993d6107b87955a7cb1cebd93 to your computer and use it in GitHub Desktop.
Sports Team Sports Organization and Sport Association Rolled into 1 JSON-LD Example
{
"@context": "https://schema.org",
"@type": "SportsTeam",
"name": "Springfield Hawks",
"sport": "Basketball",
"memberOf": [
{
"@type": "SportsOrganization",
"name": "Springfield Basketball League"
},
{
"@type": "SportsAssociation",
"name": "National Amateur Basketball Association"
}
],
"coach": {
"@type": "Person",
"name": "Jamie Rivera"
},
"athlete": [
{
"@type": "Person",
"name": "Alex Kim"
},
{
"@type": "Person",
"name": "Jordan Smith"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment