Skip to content

Instantly share code, notes, and snippets.

@patrickcoombe
Created July 4, 2025 16:59
Show Gist options
  • Save patrickcoombe/a746a483b6001dc63dc48bdf5909c97d to your computer and use it in GitHub Desktop.
Save patrickcoombe/a746a483b6001dc63dc48bdf5909c97d to your computer and use it in GitHub Desktop.
Sports Team JSON-LD
{
"@context": "https://schema.org",
"@type": "SportsTeam",
"name": "Springfield Falcons",
"sport": "Soccer",
"memberOf": {
"@type": "SportsAssociation",
"name": "Springfield Soccer League"
},
"coach": {
"@type": "Person",
"name": "Alex Jordan"
},
"athlete": [
{
"@type": "Person",
"name": "Chris Lee"
},
{
"@type": "Person",
"name": "Taylor Smith"
}
],
"homeLocation": {
"@type": "Place",
"name": "Falcon Stadium",
"address": {
"@type": "PostalAddress",
"streetAddress": "100 Stadium Drive",
"addressLocality": "Springfield",
"addressRegion": "IL",
"postalCode": "62701",
"addressCountry": "US"
}
},
"url": "https://www.springfieldfalcons.com"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment