> Concert - JSONLD.COM
JSON-LD event markup intended for concerts, this is useful for websites with 1 performer or band.
- published
- modified
- size
- 0.6K
- path
- /event/concert/
Last updated October 2, 2019 by Patrick Coombe
This code was taken directly from Google's own documentation for event markup. It is titled "concert: simple version" and it is intended for concerts with 1 performer or band.
[{
"@context" : "https://schema.org",
"@type" : "MusicEvent",
"name" : "B.B. King",
"startDate" : "2014-04-12T19:30",
"location" : {
"@type" : "Place",
"name" : "Lupo's Heartbreak Hotel",
"address" : "79 Washington St., Providence, RI"
},
"offers" : {
"@type" : "Offer",
"url" : "https://www.etix.com/ticket/1771656"
}
},{
"@context" : "http://schema.org",
"@type" : "MusicEvent",
"name" : "B.B. King",
"startDate" : "2014-04-13T20:00",
"location" : {
"@type" : "Place",
"name" : "Lynn Auditorium",
"address" : "Lynn, MA, 01901"
},
"offers" : {
"@type" : "Offer",
"url" : "http://frontgatetickets.com/venue.php?id=11766"
}
}]
