Created
February 26, 2019 15:05
-
-
Save the-timallen/cdb8284eaa039f53cd267d1cb02cea17 to your computer and use it in GitHub Desktop.
Tips for Structured Data on E-commerce sites
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", | |
"@graph": [ | |
{ | |
"@type": "Organization", | |
"name": "Distilled", | |
"url": "https://www.distilled.net/", | |
"sameAs": [ | |
"http://www.facebook.com/distilled", | |
"http://twitter.com/distilled" | |
] | |
}, | |
{ | |
"@type": "WebSite", | |
"url": "https://www.distilled.net/", | |
"potentialAction": { | |
"@type": "SearchAction", | |
"target": "https://www.distilled.net/search?text={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