LakeBodyOfWater
LakeBodyOfWater is a direct BodyOfWater subtype for natural lakes. For artificial lakes created by dams, prefer Reservoir.
Full example of schema.org/LakeBodyOfWater 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": "LakeBodyOfWater",
"name": "Lake Xoo",
"description": "Fictional inland lake near Dunmore, PA. Approximately 4.2 square kilometres, natural origin.",
"geo": { "@type": "GeoCoordinates", "latitude": 41.4101, "longitude": -75.5795 },
"containedInPlace": { "@type": "AdministrativeArea", "name": "Lackawanna County, Pennsylvania" },
"image": "https://xoocode.com/places/lake-xoo.jpg"
}
</script>Minimal valid version
The smallest markup that still produces a valid LakeBodyOfWater 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": "LakeBodyOfWater",
"name": "Lake Xoo",
"geo": { "@type": "GeoCoordinates", "latitude": 41.4101, "longitude": -75.5795 }
}
</script>Google rich results this unlocks
LakeBodyOfWater 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). LakeBodyOfWater becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common LakeBodyOfWater 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
LakeBodyOfWater for a reservoir
WrongLakeBodyOfWater for a dam-created artificial lakeRightReservoir for artificial lakes; LakeBodyOfWater for natural onesThe two subtypes carry different semantics for environmental and cultural indexers.
Schema properties in this example
Also mentioned in 2 other examples
LakeBodyOfWater also appears in BodyOfWater, and Reservoir. See the full LakeBodyOfWater schema page for every reference.
About the example data
Fictional "Lake Xoo", a medium-sized inland lake used throughout the Xoo Code universe.
Comments
Loading comments...