Cookies & analytics

    We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.

    SwiftSchema Logo

    SwiftSchema

    Intuitive Schema Generation at Your Fingertips

    AboutLearnContact
      Stack

      Healthcare Network Stack

      Healthcare network or multi-clinic pages with org, clinic, physician, reviews, FAQs, and breadcrumb context.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Network or campus pages listing clinics and physicians
      • Pages needing clear NAP, provider info, and patient FAQs
      • Healthcare hubs where social proof and navigation matter

      What's included

      Required properties (stack union)

      Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).

      address.addressCountry
      address.addressLocality
      address.addressRegion
      address.streetAddress
      affiliation.@id
      author.name
      itemListElement[].name
      itemReviewed.@id
      logo
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      medicalSpecialty
      name
      reviewBody
      reviewRating.ratingValue
      telephone
      url

      Recommended properties (stack union)

      address.addressCountry
      address.addressLocality
      address.addressRegion
      datePublished
      geo.latitude
      geo.longitude
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      medicalSpecialty
      name
      openingHours
      reviewRating.bestRating
      sameAs[]

      Combined JSON-LD

      Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.

      Validate
      [
        {
          "@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" }
          ]
        }
      ]

      Implementation steps

      1. Start from your live product detail page content; ensure titles, prices, and availability match the page.
      2. Embed one JSON-LD script in the head or just before the closing body tag using the combined example as a template.
      3. Fill shipping details for each region you serve and keep them aligned with on-page shipping tables.
      4. Attach your canonical MerchantReturnPolicy URL and keep the policy text in sync with Merchant Center.
      5. Add 3–6 FAQs that address purchase blockers (shipping, returns, compatibility) and keep answers consistent with visible content.
      6. Validate in the Rich Results Test and revalidate after price/availability/policy changes.

      Common errors and fixes

      FAQs

      Can I list multiple clinics?

      Yes. Include multiple MedicalClinic objects if shown on the page. Keep @id/URLs unique per clinic.

      Do I need Physician objects?

      Include them if provider profiles are visible on the page; otherwise omit.

      References