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

      Vaccine Clinic Stack

      Vaccine clinic pages with MedicalClinic + Service + Event context, FAQs, and breadcrumbs.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Vaccine clinic landing pages with appointment scheduling
      • Pop-up vaccination events with eligibility details
      • Clinic pages outlining vaccine availability and requirements

      What's included

      • Medical Clinic
        Open generator

        Anchors the clinic providing vaccination services.

      • Describes the vaccination service and provider.

      • Represents a clinic event or appointment window.

      • Frequently Asked Questions
        Open generator

        Answers eligibility, documentation, and timing questions.

      • Breadcrumb
        Open generator

        Provides navigation context for the clinic 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.addressLocality
      address.addressRegion
      address.streetAddress
      areaServed.name
      endDate
      eventAttendanceMode
      eventStatus
      itemListElement[].name
      location.name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      provider.@id
      serviceType
      startDate
      url

      Recommended properties (stack union)

      description
      image
      itemListElement[].item
      location.address.streetAddress
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      medicalSpecialty
      offers.price
      offers.priceCurrency
      organizer.name
      telephone

      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/vaccine#clinic",
          "name": "Northwind Vaccine Clinic",
          "url": "https://www.example.com/clinics/vaccine",
          "telephone": "+1-512-555-0134",
          "image": "https://www.example.com/images/vaccine-clinic.webp",
          "address": {
            "@type": "PostalAddress",
            "streetAddress": "1200 Health Blvd",
            "addressLocality": "Austin",
            "addressRegion": "TX",
            "postalCode": "78701",
            "addressCountry": "US"
          },
          "medicalSpecialty": "Immunization"
        },
        {
          "@context": "https://schema.org",
          "@type": "Service",
          "@id": "https://www.example.com/clinics/vaccine#service",
          "name": "Seasonal Flu Vaccination",
          "serviceType": "VaccinationService",
          "description": "Walk-in and appointment flu shots for adults and children.",
          "provider": { "@id": "https://www.example.com/clinics/vaccine#clinic" },
          "areaServed": { "@type": "AdministrativeArea", "name": "Austin, TX" },
          "offers": {
            "@type": "Offer",
            "price": "25.00",
            "priceCurrency": "USD",
            "availability": "https://schema.org/InStock"
          }
        },
        {
          "@context": "https://schema.org",
          "@type": "Event",
          "@id": "https://www.example.com/clinics/vaccine#event",
          "name": "Flu Shot Clinic",
          "startDate": "2025-10-01T09:00:00-05:00",
          "endDate": "2025-10-01T17:00:00-05:00",
          "eventStatus": "https://schema.org/EventScheduled",
          "eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
          "location": {
            "@type": "Place",
            "name": "Northwind Vaccine Clinic",
            "address": {
              "@type": "PostalAddress",
              "streetAddress": "1200 Health Blvd",
              "addressLocality": "Austin",
              "addressRegion": "TX",
              "postalCode": "78701",
              "addressCountry": "US"
            }
          },
          "organizer": { "@type": "MedicalClinic", "name": "Northwind Vaccine Clinic" }
        },
        {
          "@context": "https://schema.org",
          "@type": "FAQPage",
          "mainEntity": [
            {
              "@type": "Question",
              "name": "Do I need an appointment?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Walk-ins are accepted, but appointments guarantee shorter wait times."
              }
            },
            {
              "@type": "Question",
              "name": "What should I bring?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Bring a photo ID and insurance card if applicable."
              }
            },
            {
              "@type": "Question",
              "name": "Are vaccines available for children?",
              "acceptedAnswer": {
                "@type": "Answer",
                "text": "Yes. Pediatric doses are available for eligible age groups."
              }
            }
          ]
        },
        {
          "@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": "Vaccine Clinic", "item": "https://www.example.com/clinics/vaccine" }
          ]
        }
      ]

      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 list each vaccine type separately?

      If multiple vaccines are offered, add separate Service entries with matching descriptions.

      How do I show recurring clinic dates?

      Use multiple Event entries for each clinic date or summarize with one Event per day.

      References