Created
September 1, 2016 17:57
-
-
Save strategyst/e519c4085f83901e72a8686e57a8b1eb to your computer and use it in GitHub Desktop.
Local business schema using JSON-LD
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": "http://schema.org", | |
"@type": "LocalBusiness", | |
"address": { | |
"@type": "PostalAddress", | |
"addressLocality": "Example Town", | |
"addressRegion": "Essex", | |
"streetAddress": "123 Example Street" | |
}, | |
"description": "A super shop that sells everything at super low prices.", | |
"name": "Super Shop", | |
"telephone": "01234567890" | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment