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

      Patient Pre-Visit Checklist Stack

      Patient pre-visit checklist pages with MedicalClinic context, HowTo steps, FAQs, and breadcrumbs.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Clinic pre-visit checklist pages for new patients
      • Appointment preparation instructions for in-person visits
      • Patient intake pages explaining forms and arrival timing

      What's included

      • Medical Clinic
        Open generator

        Anchors the clinic identity and contact details.

      • Structures the pre-visit checklist as step-by-step guidance.

      • Frequently Asked Questions
        Open generator

        Answers insurance, arrival time, and paperwork questions.

      • Breadcrumb
        Open generator

        Provides navigation context for the pre-visit checklist 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
      address.addressLocality
      address.addressRegion
      address.postalCode
      address.streetAddress
      itemListElement[].name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      step[].text
      telephone
      url

      Recommended properties (stack union)

      description
      geo.latitude
      geo.longitude
      image
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      openingHours
      supply
      tool
      totalTime

      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/clinics/northwind#clinic",
          "name": "Northwind Family Clinic",
          "url": "https://www.example.com/clinics/northwind",
          "telephone": "+1-512-555-0134",
          "image": "https://www.example.com/images/clinic-exterior.webp",
          "address": {
            "@type": "PostalAddress",
            "streetAddress": "88 Congress Ave",
            "addressLocality": "Austin",
            "addressRegion": "TX",
            "postalCode": "78701",
            "addressCountry": "US"
          },
          "openingHours": "Mo-Fr 08:00-17:00"
        },
        {
          "@context": "https://schema.org",
          "@type": "HowTo",
          "@id": "https://www.example.com/clinics/northwind/previsit#howto",
          "name": "Patient Pre-Visit Checklist",
          "description": "Prepare for your appointment by completing these steps before arrival.",
          "totalTime": "PT30M",
          "step": [
            {
              "@type": "HowToStep",
              "name": "Complete intake forms",
              "text": "Fill out medical history and consent forms online before your visit."
            },
            {
              "@type": "HowToStep",
              "name": "Bring identification and insurance",
              "text": "Bring a photo ID and your current insurance card."
            },
            {
              "@type": "HowToStep",
              "name": "Arrive early",
              "text": "Arrive 15 minutes early to check in and verify paperwork."
            },
            {
              "@type": "HowToStep",
              "name": "Prepare medication list",
              "text": "Bring a list of current medications, dosages, and allergies."
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Do I need to bring my insurance card?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Bring your insurance card and a photo ID for verification."
              }
            },
            {
              "@type": "Question",
              "name": "Can I complete forms online?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Forms are available in the patient portal after booking."
              }
            },
            {
              "@type": "Question",
              "name": "What if I need to reschedule?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Contact the clinic at least 24 hours before your appointment to reschedule."
              }
            }
          ]
        },
        {
          "@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": "Northwind Family Clinic", "item": "https://www.example.com/clinics/northwind" },
            { "@type": "ListItem", "position": 4, "name": "Pre-Visit Checklist", "item": "https://www.example.com/clinics/northwind/previsit" }
          ]
        }
      ]

      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

      Should I include fasting instructions?

      If fasting or prep instructions appear on the page, include them as a dedicated HowTo step.

      Do I need multiple clinics on one page?

      If the checklist applies to multiple clinics, either include one MedicalClinic per location or keep it scoped to the page location.

      References