Skip to content

Commit

Permalink
Merge pull request #1120 from eddiewebb/issue-1119
Browse files Browse the repository at this point in the history
Fixes json format in issue #1119, creating a valid json example for M…
  • Loading branch information
danbri committed Apr 23, 2016
2 parents 96d8916 + 314e08f commit 3adaba1
Showing 1 changed file with 40 additions and 47 deletions.
87 changes: 40 additions & 47 deletions data/examples.txt
Expand Up @@ -1678,64 +1678,57 @@ JSON:
{
"@context": "http://schema.org",
"@type": "MusicGroup",
"event": [
{
"@type": "Event",
"location": "Memphis, TN, US",
"offers": "ticketmaster.com/foofighters/may20-2011",
"startDate": "2011-05-20",
"url": "foo-fighters-may20-fedexforum"
},
{
"@type": "Event",
"location": "Council Bluffs, IA, US",
"offers": "ticketmaster.com/foofighters/may23-2011",
"startDate": "2011-05-23",
"url": "foo-fighters-may23-midamericacenter"
}
],
"event": [{
"@type": "Event",
"location": "Memphis, TN, US",
"offers": "ticketmaster.com/foofighters/may20-2011",
"startDate": "2011-05-20",
"url": "foo-fighters-may20-fedexforum"
}, {
"@type": "Event",
"location": "Council Bluffs, IA, US",
"offers": "ticketmaster.com/foofighters/may23-2011",
"startDate": "2011-05-23",
"url": "foo-fighters-may23-midamericacenter"
}],
"image": [
"foofighters-1.jpg",
"foofighters-2.jpg",
"foofighters-3.jpg"
],
"interactionStatistic: {
"interactionStatistic": {
"@type": "InteractionCounter",
"interactionType": "http://schema.org/CommentAction",
"userInteractionCount": "18",
"userInteractionCount": "18"
},
"name": "Foo Fighters",
"track": [
{
"@type": "MusicRecording",
"audio": "foo-fighters-rope-play.html",
"duration": "PT4M5S",
"inAlbum": "foo-fighters-wasting-light.html",
"interactionStatistic: {
"@type": "InteractionCounter",
"interactionType": "http://schema.org/ListenAction",
"userInteractionCount": "14300",
}
"track": [{
"@type": "MusicRecording",
"audio": "foo-fighters-rope-play.html",
"duration": "PT4M5S",
"inAlbum": "foo-fighters-wasting-light.html",
"interactionStatistic": {
"@type": "InteractionCounter",
"interactionType": "http://schema.org/ListenAction",
"userInteractionCount": "14300"
},
"name": "Rope",
"offers": "foo-fighters-rope-buy.html",
"url": "foo-fighters-rope.html"
"name": "Rope",
"offers": "foo-fighters-rope-buy.html",
"url": "foo-fighters-rope.html"
}, {
"@type": "MusicRecording",
"audio": "foo-fighters-everlong-play.html",
"duration": "PT6M33S",
"inAlbum": "foo-fighters-color-and-shape.html",
"name": "Everlong",
"interactionStatistic": {
"@type": "InteractionCounter",
"interactionType": "http://schema.org/ListenAction",
"userInteractionCount": "11700"
},
{
"@type": "MusicRecording",
"audio": "foo-fighters-everlong-play.html",
"duration": "PT6M33S",
"inAlbum": "foo-fighters-color-and-shape.html",
"name": "Everlong",
"interactionStatistic: {
"@type": "InteractionCounter",
"interactionType": "http://schema.org/ListenAction",
"userInteractionCount": "11700",
},
"offers": "foo-fighters-everlong-buy.html",
"url": "foo-fighters-everlong.html"
}
],
"offers": "foo-fighters-everlong-buy.html",
"url": "foo-fighters-everlong.html"
}],
"video": {
"@type": "VideoObject",
"description": "Catch this exclusive interview with Dave Grohl and the Foo Fighters about their new album, Rope.",
Expand Down

0 comments on commit 3adaba1

Please sign in to comment.