Skip to content

Instantly share code, notes, and snippets.

@warnakey
Last active April 15, 2019 17:22
Show Gist options
  • Save warnakey/dad17302572d85b62d1bf7f27ebfcaa0 to your computer and use it in GitHub Desktop.
Save warnakey/dad17302572d85b62d1bf7f27ebfcaa0 to your computer and use it in GitHub Desktop.
LegalService Schema Example in JSON-LD
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "LegalService",
"name": "Example Law Firm",
"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.",
"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",
"priceRange": "$$",
"telephone": "919-555-5555",
"email": "info@examplelaw.com",
"hasMap": "https://www.google.com/maps?cid=34343434851632434807",
"address": {
"@type": "PostalAddress",
"addressLocality": "Raleigh",
"addressRegion": "NC",
"postalCode": "27604",
"streetAddress": "100 Main Street, Suite 201",
"addressCountry": "USA"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "37.745946",
"longitude": "-76.457942"
},
"sameAs": [
"https://www.facebook.com/examplelaw/",
"https://twitter.com/examplelaw",
"https://www.yelp.com/biz/examplelaw"
],
"openingHours": "Mo-Fr 08:30-17:00"
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment