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

      Telehealth Visit Stack

      Telehealth visit pages with MedicalClinic + Service + FAQ context and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Telehealth visit landing pages for clinics
      • Virtual care pages that need provider + service clarity
      • Pages with FAQs on eligibility, scheduling, and insurance

      What's included

      • Medical Clinic
        Open generator

        Anchors the clinic’s identity, NAP, and URL.

      • Describes the telehealth service, provider, and area served.

      • Frequently Asked Questions
        Open generator

        Answers eligibility, scheduling, and insurance questions.

      • Breadcrumb
        Open generator

        Provides navigation context for the telehealth page.

      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
      areaServed.name
      itemListElement[].name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      offers.price
      offers.priceCurrency
      provider.@id
      serviceType
      telephone
      url

      Recommended properties (stack union)

      address.addressLocality
      address.addressRegion
      address.postalCode
      address.streetAddress
      description
      itemListElement[].item
      logo
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      offers.availability
      offers.url

      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": "MedicalClinic",
          "@id": "https://www.example.com/telehealth#clinic",
          "name": "Evergreen Health Clinic",
          "url": "https://www.example.com/telehealth",
          "telephone": "+1-312-555-0100",
          "address": {
            "@type": "PostalAddress",
            "addressCountry": "US",
            "streetAddress": "123 Main St",
            "addressLocality": "Chicago",
            "addressRegion": "IL",
            "postalCode": "60601"
          },
          "logo": "https://www.example.com/assets/logo.svg"
        },
        {
          "@context": "https://schema.org",
          "@type": "Service",
          "@id": "https://www.example.com/telehealth#service",
          "name": "Telehealth Visit",
          "serviceType": "Telemedicine",
          "description": "Virtual primary care visits with licensed clinicians. Same-day appointments available.",
          "provider": { "@id": "https://www.example.com/telehealth#clinic" },
          "areaServed": { "@type": "AdministrativeArea", "name": "United States" },
          "offers": {
            "@type": "Offer",
            "price": "79.00",
            "priceCurrency": "USD",
            "availability": "https://schema.org/InStock",
            "url": "https://www.example.com/telehealth#book"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Do you accept insurance?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. We accept major insurers and provide a cash option. Eligibility is confirmed during booking."
              }
            },
            {
              "@type": "Question",
              "name": "Are visits same-day?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Most patients can book same-day appointments. Availability is shown in the scheduler."
              }
            },
            {
              "@type": "Question",
              "name": "What conditions do you treat?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Primary care, urgent care, mental health consults, and prescription refills where appropriate."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Telehealth", "item": "https://www.example.com/telehealth" },
            { "@type": "ListItem", "position": 3, "name": "Book a Visit", "item": "https://www.example.com/telehealth/book" }
          ]
        }
      ]

      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 show multiple visit types?

      Yes. If you list multiple visit types, include one Service per type with distinct @id values and tie them to the same MedicalClinic.

      What if price varies by insurance?

      If exact pricing isn’t displayed, omit price fields and keep offers.url/availability aligned to the CTA for the quoted flow.

      References