Skip to content

Instantly share code, notes, and snippets.

@jaydonnell
Created May 24, 2016 04:23
Show Gist options
  • Save jaydonnell/fff70642cbb7ad243701c1249337273e to your computer and use it in GitHub Desktop.
Save jaydonnell/fff70642cbb7ad243701c1249337273e to your computer and use it in GitHub Desktop.
jsonld example
{
"@id" : "https://en.wikipedia.org/wiki/Frozen_(2013_film)",
"@type" : [ "http://schema.org/Movie" ],
"http://schema.org/releasedEvent" : [ {
"@value" : "2013-11-27"
}],
"http://schema.org/copyrightYear" : [ {
"@type" : "http://www.w3.org/2001/XMLSchema#integer",
"@value" : "2013"
}],
"http://schema.org/name" : [ {
"@language" : "pt-pt",
"@value" : "Frozen - O Reino do Gelo"
}, {
"@language" : "de",
"@value" : "Die Eiskönigin - Völlig unverfroren"
}, {
"@language" : "en-us",
"@value" : "Frozen"
}],
"http://schema.org/genre" : [ {
"@value" : "Family"
}, {
"@value" : "Adventure"
} ],
"http://schema.org/image" : [ {
"@id" : "https://en.wikipedia.org/wiki/Frozen_(2013_film)#/media/File:Frozen_(2013_film)_poster.jpg"
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment