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

      Childcare / Daycare Stack

      Daycare/childcare center pages with ChildCare + LocalBusiness context, FAQs, and breadcrumb navigation.

      Open generatorValidate in Rich Results Test

      When to use this stack

      • Daycare center landing pages with hours and enrollment
      • Childcare program pages with pricing and schedules
      • Pages where FAQs clarify age ranges and policies

      What's included

      • Child Care
        Open generator

        Represents the childcare facility with NAP and hours.

      • Local Business
        Open generator

        Supports local business context for the childcare provider.

      • Frequently Asked Questions
        Open generator

        Answers questions about age ranges, hours, and enrollment.

      • Breadcrumb
        Open generator

        Provides navigation context to the daycare 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
      itemListElement[].name
      mainEntity[].@type=Question
      mainEntity[].acceptedAnswer.text
      name
      telephone
      url

      Recommended properties (stack union)

      address.addressCountry
      geo.latitude
      geo.longitude
      image
      itemListElement[].item
      mainEntity[].acceptedAnswer.text
      mainEntity[].author.name
      mainEntity[].name
      openingHoursSpecification
      priceRange
      sameAs[]

      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": "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" }
          ]
        }
      ]

      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

      Can I list multiple locations?

      Yes. Use one ChildCare entity per location with unique @id values.

      Do I need both ChildCare and LocalBusiness?

      Yes. ChildCare captures the facility details, while LocalBusiness strengthens local entity signals.

      References