How to use schema.org for website development company

Below is an example of a common JSON-LD syntax which can be used to define a local website development company.

<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"address": {
"@type": "PostalAddress",
"addressLocality": "Phoenix",
"addressRegion": "AZ",
"postalCode":"85001",
"streetAddress": "123 Main Street"
},
"description": "ABC is an award winning web design and web applications company",
"name": "ABC Company",
"telephone": "555–555–5555",
"geo": {
"@type": "GeoCoordinates",
"latitude": "40.75",
"longitude": "73.98"
},
"sameAs" : [ "http://www.facebook.com/...",
"http://www.twitter.com/...",
"http://plus.google.com/..."]
}
</script>
 
Back
Top