Skip to content

Instantly share code, notes, and snippets.

@warnakey
Last active April 15, 2019 17:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save warnakey/1afe584490393e5443c486bb19c194dc to your computer and use it in GitHub Desktop.
Save warnakey/1afe584490393e5443c486bb19c194dc to your computer and use it in GitHub Desktop.
Organization Schema Example in JSON-LD
<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