Created
January 26, 2015 02:20
-
-
Save jasonclark/6d6613358f43653fec89 to your computer and use it in GitHub Desktop.
JSON-LD for Web page with additional types using schema.org
This file contains 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
<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