ChildrensEvent
ChildrensEvent is an Event subtype for events aimed at children: kids' camps, children's theater, youth workshops, storytime sessions. It adds no properties of its own. The @type tells search engines this event targets a younger audience. Use typicalAgeRange (inherited from Event) to specify the age group, e.g. "5-12".
For a complete property walkthrough, see the Event example. Every property shown there applies to ChildrensEvent. Replace "@type": "Event" with "@type": "ChildrensEvent".
Full example of schema.org/ChildrensEvent json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ChildrensEvent",
"name": "Xoo Kids Coding Camp",
"url": "https://xoocode.com/kids/coding-camp-summer-2026",
"description": "A three-day coding camp for kids aged 8-12. Learn basic HTML, build a simple web page, and add your first JSON-LD markup.",
"image": "https://xoocode.com/kids/coding-camp-summer-2026/photo-16x9.jpg",
"startDate": "2026-07-07T09:00:00-04:00",
"endDate": "2026-07-09T15:00:00-04:00",
"typicalAgeRange": "8-12",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"location": {
"@type": "Place",
"name": "Xoo Code Shop Dunmore",
"address": { "@type": "PostalAddress", "streetAddress": "355 Eagle Butte Ave", "addressLocality": "Dunmore", "addressRegion": "AB", "postalCode": "T1B 0K2", "addressCountry": "CA" }
},
"organizer": { "@id": "https://xoocode.com#organization", "@type": "Organization", "name": "Xoo Code Inc." },
"offers": { "@type": "Offer", "price": "75.00", "priceCurrency": "CAD", "availability": "https://schema.org/InStock", "url": "https://xoocode.com/kids/coding-camp-summer-2026/register" },
"maximumAttendeeCapacity": 15,
"isAccessibleForFree": false
}
</script>Minimal valid version
The smallest markup that still produces a valid ChildrensEvent entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ChildrensEvent",
"name": "Xoo Kids Coding Camp",
"startDate": "2026-07-07T09:00:00-04:00",
"eventStatus": "https://schema.org/EventScheduled",
"eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
"location": { "@type": "Place", "name": "Xoo Code Shop Dunmore", "address": { "@type": "PostalAddress", "streetAddress": "355 Eagle Butte Ave", "addressLocality": "Dunmore", "addressRegion": "AB", "addressCountry": "CA" } },
"typicalAgeRange": "8-12",
"image": "https://xoocode.com/kids/coding-camp-summer-2026/photo-16x9.jpg",
"description": "Three-day coding camp for kids aged 8-12."
}
</script>Google rich results this unlocks
Markup matching this example makes your page eligible for the following Google Search rich results. The primary target drives the required / recommended property classification in the advanced code block above.
- Google docsEvent rich resultprimary
Common ChildrensEvent mistakes
Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.
- 01
Using generic Event for a children's event
Wrong"@type": "Event" for a kids' camp or children's workshopRight"@type": "ChildrensEvent"ChildrensEvent signals that this event targets children. Combined with typicalAgeRange, it helps parents find age-appropriate events in search results.
Schema properties in this example
About the example data
A kids' coding camp at the Xoo Code Shop Dunmore where children learn basic HTML and structured data concepts.
Comments
Loading comments...