Skip to content

Instantly share code, notes, and snippets.

@hideokamoto
Last active August 29, 2015 14:14
Show Gist options
  • Save hideokamoto/fd0f3dcfcda81b365195 to your computer and use it in GitHub Desktop.
Save hideokamoto/fd0f3dcfcda81b365195 to your computer and use it in GitHub Desktop.
schema.orgのtype:PostalAddressを使ったサンプル
{
"@context": "http://schema.org",
"@type": "Event",
"name": "イベント名",
"location": {
"@type": "Place",
"name":"竹生島神社",
"address": {
"@type": "PostalAddress",
"postalCode":"526-0124",
"addressRegion":"滋賀県",
"addressLocality":"長浜市",
"streetAddress":"早崎町",
"telephone":"0749-72-3221"
},
"url": "http://example.com/Place"
},
"offers": {
"@type": "AggregateOffer",
"lowPrice": "0円",
"url":"http://example.com/buyTicket"
},
"startDate": "2016-04-21T20:00",
"url": "http://example.com/event"
}
{
"@context": "http://schema.org/",
"@type": "PostalAddress",
"name": "竹生島神社",
"postalCode":"526-0124",
"addressRegion":"滋賀県",
"addressLocality":"長浜市",
"streetAddress":"早崎町",
"telephone":"0749-72-3221"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment