Skip to content

Instantly share code, notes, and snippets.

@hideokamoto
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hideokamoto/4ea15b885bd722f3374e to your computer and use it in GitHub Desktop.
Save hideokamoto/4ea15b885bd722f3374e to your computer and use it in GitHub Desktop.
schema.orgの@type:Eventのマークアップサンプル
{
"@context": "http://schema.org",
"@type": "Event",
"name": "イベント名",
"location": {
"@type": "Place",
"name":"会場名",
"address": "会場住所",
"url": "http://example.com/Place"
},
"offers": {
"@type": "AggregateOffer",
"lowPrice": "1000円",
"offerCount": "100枚",
"url":"http://example.com/buyTicket"
},
"startDate": "2016-04-21T20:00",
"url": "http://example.com/event"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment