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

      Clinical Appointment Scheduler Stack

      Clinical appointment scheduling pages with Service + WebApplication + Event context, FAQs, and breadcrumbs.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Patient appointment scheduling pages with time slots
      • Clinic booking flows for in-person visits
      • Pages where FAQs clarify insurance, preparation, and rescheduling

      What's included

      • Captures the clinical service or visit type being booked.

      • Web Application
        Open generator

        Defines the scheduling application used for booking.

      • Represents a bookable appointment slot or clinic visit.

      • Frequently Asked Questions
        Open generator

        Answers booking, insurance, and preparation questions.

      • Breadcrumb
        Open generator

        Provides navigation context for the appointment 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`).

      applicationCategory
      areaServed.name
      endDate
      eventAttendanceMode
      eventStatus
      itemListElement[].name
      location.name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      operatingSystem
      provider.name
      startDate
      url

      Recommended properties (stack union)

      description
      itemListElement[].item
      location.address.streetAddress
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      offers.price
      offers.priceCurrency
      offers.url
      organizer.name
      serviceType
      softwareVersion

      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": "Service",
          "@id": "https://www.example.com/patients/appointments/primary-care#service",
          "name": "Primary Care Visit",
          "serviceType": "PrimaryCare",
          "provider": { "@type": "MedicalClinic", "name": "Northwind Health Clinic" },
          "areaServed": { "@type": "AdministrativeArea", "name": "Austin, TX" },
          "offers": {
            "@type": "Offer",
            "price": "150.00",
            "priceCurrency": "USD",
            "url": "https://www.example.com/patients/appointments/primary-care"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "WebApplication",
          "@id": "https://www.example.com/patients/appointments/primary-care#app",
          "name": "Clinic Appointment Scheduler",
          "description": "Book an in-person primary care visit with our clinic.",
          "applicationCategory": "HealthApplication",
          "operatingSystem": "Any",
          "url": "https://www.example.com/patients/appointments/primary-care",
          "offers": {
            "@type": "Offer",
            "url": "https://www.example.com/patients/appointments/primary-care"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "Event",
          "@id": "https://www.example.com/patients/appointments/primary-care#slot-1",
          "name": "Primary Care Appointment Slot",
          "startDate": "2025-04-05T09:00:00-05:00",
          "endDate": "2025-04-05T09:30:00-05:00",
          "eventStatus": "https://schema.org/EventScheduled",
          "eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
          "location": {
            "@type": "Place",
            "name": "Northwind Health Clinic",
            "address": {
              "@type": "PostalAddress",
              "streetAddress": "800 Medical Parkway",
              "addressLocality": "Austin",
              "addressRegion": "TX",
              "postalCode": "78701",
              "addressCountry": "US"
            }
          },
          "organizer": { "@type": "MedicalClinic", "name": "Northwind Health Clinic" }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Do I need insurance to book?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "No. You can book as self-pay or enter insurance details during checkout."
              }
            },
            {
              "@type": "Question",
              "name": "Can I reschedule my appointment?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Reschedule up to 24 hours in advance using the confirmation link."
              }
            },
            {
              "@type": "Question",
              "name": "What should I bring?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Bring a photo ID, insurance card, and a list of current medications."
              }
            }
          ]
        },
        {
          "@context": "https://schema.org",
          "@type": "BreadcrumbList",
          "itemListElement": [
            { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
            { "@type": "ListItem", "position": 2, "name": "Patients", "item": "https://www.example.com/patients" },
            { "@type": "ListItem", "position": 3, "name": "Appointments", "item": "https://www.example.com/patients/appointments" },
            { "@type": "ListItem", "position": 4, "name": "Primary Care", "item": "https://www.example.com/patients/appointments/primary-care" }
          ]
        }
      ]

      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 every available time slot?

      Include Event entries for the slots visible on the page or summarize with one Event per day.

      How do I represent telehealth visits?

      Use OnlineEventAttendanceMode for virtual visits and link to the telehealth instructions.

      References