Last active
April 22, 2021 18:59
-
-
Save warnakey/88b5d1310e6148fca7a067b726460db8 to your computer and use it in GitHub Desktop.
Dentist Schema with Multiple Locations
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": "Dentist", | |
"url": "https://www.example.com/", | |
"priceRange": "$", | |
"brand": { | |
"name": "Example Dentist" | |
}, | |
"name": "Example Dentist", | |
"image": "https://example.com/logo.png", | |
"sameAs": [ | |
"https://twitter.com/example", | |
"https://www.facebook.com/example/", | |
"https://www.instagram.com/example/", | |
"https://www.linkedin.com/company/example" | |
], | |
"potentialAction": { | |
"@type": "ReserveAction", | |
"target": { | |
"@type": "EntryPoint", | |
"urlTemplate": "https://www.example.com/schedule-appointment/", | |
"inLanguage": "en-US", | |
"actionPlatform": ["http:\/\/schema.org\/DesktopWebPlatform", "http:\/\/schema.org\/IOSPlatform", "http:\/\/schema.org\/AndroidPlatform"] | |
}, | |
"result": { | |
"@type": "Reservation", | |
"name": "Book Online" | |
} | |
}, | |
"telephone": "+15555555555", | |
"openingHours":[ | |
"Mo-Th 08:00-17:00", | |
"Fr 08:00-13:00" | |
], | |
"contactPoint": [{ | |
"@type": "ContactPoint", | |
"telephone": "+15555555555", | |
"contactType": "reservations" | |
}, { | |
"@type": "ContactPoint", | |
"telephone": "+15555555555", | |
"contactType": "customer service" | |
}], | |
"address": | |
[ | |
{ | |
"@type": "PostalAddress", | |
"streetAddress": "100 Example Drive", | |
"addressLocality": "Cary", | |
"addressRegion": "NC", | |
"postalCode": "27513", | |
"addressCountry": "USA", | |
"telephone": "+15555555555" | |
}, | |
{ | |
"@type": "PostalAddress", | |
"streetAddress": "5041 Example Road, Suite 200", | |
"addressLocality": "Raleigh", | |
"addressRegion": "NC", | |
"postalCode": "27609", | |
"addressCountry": "USA", | |
"telephone": "+15555555555" | |
}, | |
{ | |
"@type": "PostalAddress", | |
"streetAddress": "510 Example Street, Suite 100", | |
"addressLocality": "Garner", | |
"addressRegion": "NC", | |
"postalCode": "27529", | |
"addressCountry": "USA", | |
"telephone": "+15555555555" | |
} | |
] | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment