We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Healthcare network or multi-clinic pages with org, clinic, physician, reviews, FAQs, and breadcrumb context.
Network identity with name, URL, and logo.
Clinic location with NAP and hours.
Representative provider tied to the clinic.
Patient testimonial/social proof.
Answers insurance, appointments, and services questions.
Provides 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": "MedicalOrganization",
"@id": "https://www.example.com/health/network#org",
"name": "BrightHealth Network",
"url": "https://www.example.com/health/network",
"logo": "https://www.example.com/images/brighthealth-logo.png",
"sameAs": [
"https://www.linkedin.com/company/brighthealth"
]
},
{
"@context": "https://schema.org",
"@type": "MedicalClinic",
"@id": "https://www.example.com/health/network/downtown#clinic",
"name": "BrightHealth Clinic — Downtown",
"url": "https://www.example.com/health/network/downtown",
"telephone": "+1-206-555-0199",
"address": {
"@type": "PostalAddress",
"streetAddress": "400 Pine St",
"addressLocality": "Seattle",
"addressRegion": "WA",
"postalCode": "98101",
"addressCountry": "US"
},
"openingHours": "Mo-Fr 08:00-18:00",
"medicalSpecialty": "PrimaryCare"
},
{
"@context": "https://schema.org",
"@type": "Physician",
"@id": "https://www.example.com/providers/dr-smith#physician",
"name": "Dr. Casey Smith",
"url": "https://www.example.com/providers/dr-smith",
"medicalSpecialty": "FamilyMedicine",
"affiliation": { "@id": "https://www.example.com/health/network/downtown#clinic" }
},
{
"@context": "https://schema.org",
"@type": "Review",
"@id": "https://www.example.com/reviews/brighthealth-1#review",
"name": "Friendly staff and quick visit",
"reviewBody": "Check-in was fast and Dr. Smith was thorough and kind.",
"datePublished": "2026-02-27",
"reviewRating": { "@type": "Rating", "ratingValue": 5, "bestRating": 5 },
"author": { "@type": "Person", "name": "Taylor A." },
"itemReviewed": { "@id": "https://www.example.com/health/network/downtown#clinic" }
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{ "@type": "Question", "name": "Do you accept my insurance?", "acceptedAnswer": { "@type": "Answer", "text": "We accept most major plans. Call us to verify your specific plan." } },
{ "@type": "Question", "name": "Can I book online?", "acceptedAnswer": { "@type": "Answer", "text": "Yes. Use the Book Online link on each clinic page or call during business hours." } }
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Health Network", "item": "https://www.example.com/health" },
{ "@type": "ListItem", "position": 3, "name": "BrightHealth Network", "item": "https://www.example.com/health/network" }
]
}
]Yes. Include multiple MedicalClinic objects if shown on the page. Keep @id/URLs unique per clinic.
Include them if provider profiles are visible on the page; otherwise omit.