Last active
August 29, 2015 14:14
-
-
Save hideokamoto/4ea15b885bd722f3374e to your computer and use it in GitHub Desktop.
schema.orgの@type:Eventのマークアップサンプル
This file contains 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": "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