Skip to content

Instantly share code, notes, and snippets.

@patrickcoombe
Created July 3, 2025 17:28
Show Gist options
  • Save patrickcoombe/2d110c1a9232eda3e489a43fcdc61d7e to your computer and use it in GitHub Desktop.
Save patrickcoombe/2d110c1a9232eda3e489a43fcdc61d7e to your computer and use it in GitHub Desktop.
Physicians Office JSON-LD example
<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