Last active
December 23, 2018 16:27
-
-
Save daliborgogic/c97d4840ea9e6807bc9bd53b7a7dfa9f to your computer and use it in GitHub Desktop.
Schema.org
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
<script type="application/ld+json"> | |
{ | |
"@context": "https:\/\/schema.org", | |
"@type":"Person", | |
"url":"https:\/\/johndoe.com\/", | |
"sameAs":[ | |
"https:\/\/www.facebook.com\/johndoe\/", | |
"https:\/\/www.instagram.com\/johndoe\/", | |
"https:\/\/twitter.com\/johndoe\/" | |
], | |
"@id":"#person", | |
"name":"John Doe" | |
} | |
</script> |
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
<script type="application/ld+json"> | |
{ | |
"@context":"https:\/\/schema.org", | |
"@type":"WebSite", | |
"@id":"#website", | |
"url":"https:\/\/johndoe.com\/", | |
"name":"John Doe", | |
"potentialAction":{ | |
"@type":"SearchAction", | |
"target":"https:\/\/johndoe.com\/?s={search_term_string}", | |
"query-input":"required name=search_term_string" | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment