We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
Daycare/childcare center pages with ChildCare + LocalBusiness context, FAQs, and breadcrumb navigation.
Represents the childcare facility with NAP and hours.
Supports local business context for the childcare provider.
Answers questions about age ranges, hours, and enrollment.
Provides navigation context to the daycare 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": "ChildCare",
"@id": "https://www.example.com/childcare/greenwood#center",
"name": "Greenwood Daycare",
"url": "https://www.example.com/childcare/greenwood",
"telephone": "+1-206-555-0174",
"image": "https://www.example.com/images/greenwood-daycare.webp",
"address": {
"@type": "PostalAddress",
"streetAddress": "450 Pine St",
"addressLocality": "Seattle",
"addressRegion": "WA",
"postalCode": "98101",
"addressCountry": "US"
},
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
"opens": "07:30",
"closes": "18:00"
}
]
},
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"@id": "https://www.example.com/childcare/greenwood#business",
"name": "Greenwood Daycare",
"url": "https://www.example.com/childcare/greenwood",
"telephone": "+1-206-555-0174",
"address": {
"@type": "PostalAddress",
"addressCountry": "US"
}
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What ages do you accept?",
"acceptedAnswer": {
"@type": "Answer",
"text": "We accept children from 6 months to 5 years old."
}
},
{
"@type": "Question",
"name": "Do you provide meals?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Breakfast, lunch, and snacks are included."
}
},
{
"@type": "Question",
"name": "How do I schedule a tour?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Tours can be scheduled online or by calling the center."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Childcare", "item": "https://www.example.com/childcare" },
{ "@type": "ListItem", "position": 3, "name": "Greenwood", "item": "https://www.example.com/childcare/greenwood" }
]
}
]Yes. Use one ChildCare entity per location with unique @id values.
Yes. ChildCare captures the facility details, while LocalBusiness strengthens local entity signals.