Created
July 4, 2025 17:18
-
-
Save patrickcoombe/d6bbb58fd2a6d39d1f7975bf93d835a4 to your computer and use it in GitHub Desktop.
Advanced Sporting Event
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 Hawks", | |
"sport": "Basketball", | |
"logo": "https://www.springfieldhawks.com/logo.png", | |
"homeLocation": { | |
"@type": "Place", | |
"name": "Hawks Arena", | |
"address": { | |
"@type": "PostalAddress", | |
"streetAddress": "123 Main St", | |
"extendedAddress": "Building B, Suite 100", | |
"addressLocality": "Springfield", | |
"addressRegion": "IL", | |
"postalCode": "62701", | |
"addressCountry": "US" | |
} | |
}, | |
"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" | |
} | |
], | |
"event": { | |
"@type": "SportsEvent", | |
"name": "Springfield Hawks vs. River City Raptors", | |
"startDate": "2025-08-15T19:00:00-05:00", | |
"location": { | |
"@type": "Place", | |
"name": "Hawks Arena", | |
"address": { | |
"@type": "PostalAddress", | |
"streetAddress": "123 Main St", | |
"extendedAddress": "Building B, Suite 100", | |
"addressLocality": "Springfield", | |
"addressRegion": "IL", | |
"postalCode": "62701", | |
"addressCountry": "US" | |
} | |
}, | |
"competitor": [ | |
{ | |
"@type": "SportsTeam", | |
"name": "Springfield Hawks" | |
}, | |
{ | |
"@type": "SportsTeam", | |
"name": "River City Raptors" | |
} | |
], | |
"referee": { | |
"@type": "Person", | |
"name": "Morgan Lee" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment