Created
July 3, 2025 17:25
-
-
Save patrickcoombe/651518415a288ee20b067114893cc184 to your computer and use it in GitHub Desktop.
Individual Physician
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
{ | |
"@context": "https://schema.org", | |
"@type": "IndividualPhysician", | |
"name": "Dr. Jane Smith", | |
"identifier": "NPI:1234567890", | |
"practicesAt": { | |
"@type": "PhysiciansOffice", | |
"name": "Smith Medical Clinic", | |
"address": { | |
"@type": "PostalAddress", | |
"streetAddress": "123 Health St", | |
"addressLocality": "Boston", | |
"addressRegion": "MA", | |
"postalCode": "02108", | |
"addressCountry": "US" | |
}, | |
"telephone": "+1-555-555-0100" | |
}, | |
"specialty": "Cardiology", | |
"url": "https://www.example.com/dr-jane-smith" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment