BoatTerminal
BoatTerminal is a direct CivicStructure subtype for boat passenger facilities: ferry terminals, cruise ship berths, riverboat docks. It adds no properties of its own. It is the expected shape for BoatTrip.departureBoatTerminal and arrivalBoatTerminal.
Full example of schema.org/BoatTerminal 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": "BoatTerminal",
"name": "Lake Xoo Passenger Dock",
"address": { "@type": "PostalAddress", "streetAddress": "1 Lake Shore Dr", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"geo": { "@type": "GeoCoordinates", "latitude": 41.4104, "longitude": -75.5789 },
"openingHours": "Mo-Su 07:00-21:00",
"url": "https://xoocode.com/transit/lake-xoo-dock"
}
</script>Minimal valid version
The smallest markup that still produces a valid BoatTerminal 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": "BoatTerminal",
"name": "Lake Xoo Passenger Dock",
"geo": { "@type": "GeoCoordinates", "latitude": 41.4104, "longitude": -75.5789 }
}
</script>Google rich results this unlocks
BoatTerminal 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). BoatTerminal becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common BoatTerminal 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 BoatTerminal for a marina
WrongBoatTerminal for a private-boat marinaRightUse Marina or a bare Place for private-boat mooring; BoatTerminal for passenger facilitiesBoatTerminal is specifically a passenger facility. Marinas serve private boats and fall under a different (or generic) Place type.
Schema properties in this example
About the example data
"Lake Xoo Passenger Dock", a fictional summer-season passenger dock for the Lake Xoo ferry service.
Comments
Loading comments...