XooCode(){

Playground

Playground is a direct CivicStructure subtype for children's playgrounds: public park playgrounds, school playgrounds, private commercial play areas. It adds no properties of its own.

For indoor commercial play centres with admission fees, dual-type with AmusementPark or EntertainmentBusiness to carry the paid-attraction vocabulary.

Full example of schema.org/Playground json-ld markup

The markup is verified as valid with Rich Results Test from Google.

schema.org/Playground
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Playground",
  "name": "Riverfront Playground",
  "description": "Public children's playground beside the Xoo Code Footbridge, with ADA-accessible equipment, shade structures, and a water play feature.",
  "address": { "@type": "PostalAddress", "streetAddress": "1 Riverfront Park", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
  "geo": { "@type": "GeoCoordinates", "latitude": 41.4272, "longitude": -75.6313 },
  "openingHours": "Mo-Su 06:00-22:00",
  "isAccessibleForFree": true,
  "amenityFeature": [
    { "@type": "LocationFeatureSpecification", "name": "ADA-accessible equipment", "value": true },
    { "@type": "LocationFeatureSpecification", "name": "Shade structures", "value": true },
    { "@type": "LocationFeatureSpecification", "name": "Water play feature", "value": true }
  ]
}
</script>

Minimal valid version

The smallest markup that still produces a valid Playground 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.

schema.org/Playground (minimal)
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Playground",
  "name": "Riverfront Playground",
  "geo": { "@type": "GeoCoordinates", "latitude": 41.4272, "longitude": -75.6313 }
}
</script>

Google rich results this unlocks

Playground is a structural type. It does not produce a rich result on its own.

Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). Playground becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.

Common Playground 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.

  1. 01

    Using Playground for a paid indoor play centre

    Wrong
    Playground for a commercial indoor play business with admission
    Right
    Dual-type with EntertainmentBusiness or AmusementPark to carry priceRange and offers

    Playground implies free public access. Paid commercial play venues need the business vocabulary to express pricing, memberships, and offers.

About the example data

"Riverfront Playground", a fictional public playground at the base of the Xoo Code Footbridge.

Comments

Loading comments...

Leave a comment