Skip to content

Instantly share code, notes, and snippets.

@jessotron
Created September 25, 2015 01:47
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jessotron/29b29eca39cfada60c86 to your computer and use it in GitHub Desktop.
Save jessotron/29b29eca39cfada60c86 to your computer and use it in GitHub Desktop.
Sample Event Schema Markup
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "MusicEvent",
"name": "AC/DC",
"image": "http://s1.ticketm.net/tm/en-us/dbimages/199365a.jpg",
"startDate": "2015-09-25T19:45:00-07:00",
"url": "http://www.ticketmaster.com/acdc-san-francisco-california-09-25-2015/event/1C004E43C5D25EDC?artistid=1170951&majorcatid=10001&minorcatid=200",
"location" : {
"@type": "Place",
"name": "AT&T Park",
"sameAs": "http://www.ticketmaster.com/AT-T-Park-tickets-San-Francisco/venue/229585",
"address" : {
"@type": "PostalAddress",
"streetAddress": "24 Willie Mays Plaza",
"addressLocality":"San Francisco",
"addressRegion":"CA",
"postalCode":"94107",
"addressCountry":"US"
}
},
"offers" : {
"@type" : "Offer",
"url":"http://www.ticketmaster.com/acdc-san-francisco-california-09-25-2015/event/1C004E43C5D25EDC?artistid=1170951&majorcatid=10001&minorcatid=200"
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment