Vaccine Clinic Stack
Vaccine clinic pages with MedicalClinic + Service + Event context, FAQs, and breadcrumbs.
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 is included
Anchors the clinic providing vaccination services.
Describes the vaccination service and provider.
Represents a clinic event or appointment window.
Answers eligibility, documentation, and timing questions.
Provides navigation context for the clinic page.
Properties across the bundle
Nested properties keep their parent path, such as offers.priceCurrency. Only publish values that match visible page content.
Required properties
- 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
- 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 this as one script tag, then replace every example value with data from the live page.
[
{
"@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" }
]
}
]Implement and verify
- 01
Start with the live page
Confirm titles, prices, availability, policies, and visible FAQ content before generating markup.
- 02
Add one JSON-LD script
Use the combined example as a template in the document head or before the closing body tag.
- 03
Complete regional details
Fill shipping destinations and timing for every region the page actually serves.
- 04
Link the return policy
Use a stable MerchantReturnPolicy URL and keep its terms synchronized with the page.
- 05
Match visible answers
Add only FAQs that users can read on the same page, with identical answers.
- 06
Validate after changes
Run Rich Results Test after implementation and whenever price, availability, or policy data changes.
Common errors and fixes
- Missing currency or availability
Use ISO currency codes and complete schema.org availability URLs in Offer data.
- Incomplete shipping details
Include shippingDestination.addressCountry and deliveryTime.transitTime with units.
- Return policy is not connected
Reference MerchantReturnPolicy from the Offer and provide a stable public policy URL.
- FAQ answers differ from the page
Keep structured FAQ answers identical to visible answers.
Stack 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.