Last active
April 15, 2019 17:22
-
-
Save warnakey/1afe584490393e5443c486bb19c194dc to your computer and use it in GitHub Desktop.
Organization Schema Example in 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": "Organization", | |
"name": "Example Law Firm", | |
"alternateName": "Example Law", | |
"url": "https://www.examplelaw.com/", | |
"logo": "https://www.examplelaw.com/wp-content/themes/examplelaw/assets/logo.png", | |
"image": "https://www.examplelaw.com/wp-content/themes/examplelaw/assets/logo.png", | |
"description": "Example Law Firm, a divorce lawyer firm, is one of North Carolina’s most accomplished firms practicing exclusively in the area of family law and domestic relations litigation.", | |
"contactPoint": [ | |
{ | |
"@type": "ContactPoint", | |
"telephone": "+19195555555", | |
"contactType": "customer service", | |
"areaServed": [ | |
"US" | |
], | |
"availableLanguage": [ | |
"English" | |
] | |
} | |
], | |
"address": { | |
"@type": "PostalAddress", | |
"addressLocality": "Raleigh", | |
"addressRegion": "NC", | |
"postalCode": "27604", | |
"streetAddress": "100 Main Street, Suite 201", | |
"addressCountry": "USA" | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment