XooCode(){

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.

schema.org/LakeBodyOfWater
<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.

schema.org/LakeBodyOfWater (minimal)
<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.

  1. 01

    LakeBodyOfWater for a reservoir

    Wrong
    LakeBodyOfWater for a dam-created artificial lake
    Right
    Reservoir for artificial lakes; LakeBodyOfWater for natural ones

    The two subtypes carry different semantics for environmental and cultural indexers.

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

Leave a comment