Created
May 24, 2016 04:23
-
-
Save jaydonnell/fff70642cbb7ad243701c1249337273e to your computer and use it in GitHub Desktop.
jsonld example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@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