Skip to content

Instantly share code, notes, and snippets.

@strategyst
Created September 1, 2016 17:57
Show Gist options
  • Save strategyst/e519c4085f83901e72a8686e57a8b1eb to your computer and use it in GitHub Desktop.
Save strategyst/e519c4085f83901e72a8686e57a8b1eb to your computer and use it in GitHub Desktop.
Local business schema using JSON-LD
<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