We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Clinic/doctor pages with NAP, specialties, reviews, FAQs, and breadcrumb context. Useful for medical clinics and physicians.
Clinic identity with address, contact, and specialty.
Provider identity for a lead doctor/physician.
Patient social proof.
Answer insurance, appointments, and services questions.
Navigation context.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "MedicalClinic",
"@id": "https://www.example.com/clinics/central-care#clinic",
"name": "Central Care Clinic",
"url": "https://www.example.com/clinics/central-care",
"image": "https://www.example.com/images/clinics/central-care.webp",
"telephone": "+1-512-555-4545",
"address": {
"@type": "PostalAddress",
"streetAddress": "200 Main St",
"addressLocality": "Austin",
"addressRegion": "TX",
"postalCode": "78701",
"addressCountry": "US"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 30.268,
"longitude": -97.742
},
"medicalSpecialty": "PrimaryCare",
"openingHours": "Mo-Fr 08:00-17:00",
"sameAs": [
"https://www.facebook.com/centralcare",
"https://www.healthgrades.com/group-directory/tx-texas/austin/central-care"
]
},
{
"@context": "https://schema.org",
"@type": "Physician",
"@id": "https://www.example.com/providers/dr-jordan-lee#physician",
"name": "Dr. Jordan Lee",
"url": "https://www.example.com/providers/dr-jordan-lee",
"image": "https://www.example.com/images/providers/jordan-lee.webp",
"medicalSpecialty": "FamilyMedicine",
"affiliation": {
"@type": "MedicalOrganization",
"name": "Central Care Clinic",
"url": "https://www.example.com/clinics/central-care"
}
},
{
"@context": "https://schema.org",
"@type": "Review",
"@id": "https://www.example.com/reviews/central-care-1#review",
"name": "Attentive care and short wait",
"reviewBody": "Check-in was smooth, staff were kind, and Dr. Lee explained everything clearly.",
"datePublished": "2026-02-16",
"reviewRating": {
"@type": "Rating",
"ratingValue": 5,
"bestRating": 5
},
"author": { "@type": "Person", "name": "Morgan P." },
"itemReviewed": { "@id": "https://www.example.com/clinics/central-care#clinic" }
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Do you accept walk-ins?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes, for urgent visits. Appointments are recommended for physicals and chronic care."
}
},
{
"@type": "Question",
"name": "Which insurance plans do you take?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We accept most major plans including Aetna, BCBS, and UnitedHealthcare. Call to verify your specific plan."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Clinics", "item": "https://www.example.com/clinics" },
{ "@type": "ListItem", "position": 3, "name": "Central Care Clinic", "item": "https://www.example.com/clinics/central-care" }
]
}
]Yes. Use the type that matches your page. For a single clinic location, MedicalClinic is appropriate; for networks, use MedicalOrganization.
Keep the physician object focused on the provider; you can include both Physician and MedicalClinic on the same page when appropriate.