We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Patient pre-visit checklist pages with MedicalClinic context, HowTo steps, FAQs, and breadcrumbs.
Anchors the clinic identity and contact details.
Structures the pre-visit checklist as step-by-step guidance.
Answers insurance, arrival time, and paperwork questions.
Provides navigation context for the pre-visit checklist page.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@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" }
]
}
]If fasting or prep instructions appear on the page, include them as a dedicated HowTo step.
If the checklist applies to multiple clinics, either include one MedicalClinic per location or keep it scoped to the page location.