Pond
Pond is a direct BodyOfWater subtype for ponds: small natural or artificial standing-water bodies. It adds no properties of its own.
Full example of schema.org/Pond 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": "Pond",
"name": "Xoo Code Pond",
"description": "Small ornamental pond outside the Xoo Code Dunmore headquarters, stocked with koi.",
"geo": { "@type": "GeoCoordinates", "latitude": 41.4267, "longitude": -75.6325 },
"containedInPlace": { "@type": "Place", "name": "Xoo Code plaza" }
}
</script>Minimal valid version
The smallest markup that still produces a valid Pond 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": "Pond",
"name": "Xoo Code Pond",
"geo": { "@type": "GeoCoordinates", "latitude": 41.4267, "longitude": -75.6325 }
}
</script>Google rich results this unlocks
Pond 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). Pond becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common Pond 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
Pond for a large lake
WrongPond for a sizeable natural lakeRightLakeBodyOfWater for lakes; Pond for small water bodiesSize is the distinguishing feature. There is no hard boundary, but a lake-scale feature should use LakeBodyOfWater.
Schema properties in this example
Also mentioned in 1 other example
Pond also appears in BodyOfWater. See the full Pond schema page for every reference.
About the example data
Fictional "Xoo Code Pond", a small ornamental pond on the Xoo Code plaza.
Comments
Loading comments...