Created
July 4, 2025 16:59
-
-
Save patrickcoombe/a746a483b6001dc63dc48bdf5909c97d to your computer and use it in GitHub Desktop.
Sports Team JSON-LD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@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