Skip to content

Instantly share code, notes, and snippets.

@dlongley
Created February 25, 2013 18:49
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 dlongley/5032202 to your computer and use it in GitHub Desktop.
Save dlongley/5032202 to your computer and use it in GitHub Desktop.
{
"@context": {
"@vocab": "http://schema.org/",
"id": "@id",
"ref": "@id",
"type": "@type"
},
"@graph": [
{
"type": "http://schema.org/Event",
"name": "Foo Fighters at Shoreline Amphetheatre",
"description": "Main show: Foo Fighters. Opening band: Muse",
"performers": [
{
"ref": "#band1"
},
{
"ref": "#band2"
}
]
},
{
"type": "http://schema.org/PerformingGroup",
"id": "#band1",
"name": "Foo Fighters"
},
{
"type": "http://schema.org/PerformingGroup",
"id": "#band2",
"name": "Muse"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment