Skip to content

Instantly share code, notes, and snippets.

@jasonclark
Created January 26, 2015 02:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonclark/6d6613358f43653fec89 to your computer and use it in GitHub Desktop.
Save jasonclark/6d6613358f43653fec89 to your computer and use it in GitHub Desktop.
JSON-LD for Web page with additional types using schema.org
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebPage",
"name": "Title of web page",
"description": "Description of web page",
"additionalType": [
{
"@id": "http://dbpedia.org/page/Navajo"
},
{
"@id": "http://dbpedia.org/page/Arapaho"
}
],
"license": "http://creativecommons.org/licenses/by-nc-sa/3.0/us/deed.en_US"
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment