jsonld@web
jsonld@web:/individual-physician$  cat ./individual-physician.jsonld
rich results · passed @type · example

> Individual Physician JSON-LD Example - JSONLD.COM

IndividualPhysician JSON-LD schema for a single doctor -- name, specialty, contact info, and practice location. Copy-paste markup for rich snippets.

published
modified
size
0.7K
path
/individual-physician/

Last updated July 4, 2025 by Patrick Coombe

I'm going to keep this one short. Individual Physician is gaining in popularity, i.e. I am seeing it more and more.

Use the IndividualPhysician JSON-LD type when structuring data for a single doctor on a website, such as their name, specialty, contact info, or practice location, this can definitely help achieve rich snippets. It's ideal for personal (doctor) profiles or medical practice pages focused on one doctor.

Here is some sample code:

individual-physician.jsonld · 559B test
{
  "@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"
}