Created
July 3, 2025 17:28
-
-
Save patrickcoombe/2d110c1a9232eda3e489a43fcdc61d7e to your computer and use it in GitHub Desktop.
Physicians Office JSON-LD example
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": "https://schema.org", | |
"@type": "PhysiciansOffice", | |
"name": "Smith Medical Clinic", | |
"address": { | |
"@type": "PostalAddress", | |
"streetAddress": "123 Health St", | |
"addressLocality": "Boston", | |
"addressRegion": "MA", | |
"postalCode": "02108", | |
"addressCountry": "US" | |
}, | |
"telephone": "+1-617-555-0100", | |
"url": "https://www.smithclinic.com", | |
"employee": { | |
"@type": "IndividualPhysician", | |
"name": "Dr. Jane Smith", | |
"specialty": "Cardiology" | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment