Aquarium
Aquarium is a direct CivicStructure subtype for public aquariums. It adds no properties of its own. For paid admission flows, dual-type with EntertainmentBusiness or TouristAttraction.
Full example of schema.org/Aquarium 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": "Aquarium",
"name": "Lackawanna Freshwater Aquarium",
"description": "Community aquarium specialising in the freshwater biodiversity of the Pocono Plateau and the greater Susquehanna watershed.",
"address": { "@type": "PostalAddress", "streetAddress": "240 Riverfront Pl", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"telephone": "+1-570-555-0621",
"geo": { "@type": "GeoCoordinates", "latitude": 41.4268, "longitude": -75.6321 },
"openingHours": "Tu-Su 09:30-17:30",
"url": "https://xoocode.com/recreation/lackawanna-aquarium"
}
</script>Minimal valid version
The smallest markup that still produces a valid Aquarium 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": "Aquarium",
"name": "Lackawanna Freshwater Aquarium",
"address": { "@type": "PostalAddress", "streetAddress": "240 Riverfront Pl", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>Google rich results this unlocks
Aquarium 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). Aquarium becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common Aquarium 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 Aquarium for a retail aquarium shop
WrongAquarium on a shop that sells home aquarium suppliesRightPetStore (or a dedicated Store) for retail; Aquarium for the public venueThe Aquarium type is the public venue, not the retail shop selling fish and equipment.
Schema properties in this example
About the example data
"Lackawanna Freshwater Aquarium", a fictional community aquarium specialising in Pocono Plateau freshwater species.
Comments
Loading comments...