TaxiStand
TaxiStand is a direct CivicStructure subtype for taxi pickup locations: airport taxi ranks, hotel taxi stands, dedicated curbside taxi zones. It adds no properties of its own.
Full example of schema.org/TaxiStand 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": "TaxiStand",
"name": "Thunderdome Taxi Stand",
"description": "Dedicated curbside taxi rank outside The Thunderdome's main entrance, staffed on event nights.",
"address": { "@type": "PostalAddress", "streetAddress": "188 Arena Dr", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"geo": { "@type": "GeoCoordinates", "latitude": 41.4216, "longitude": -75.6188 },
"openingHours": "Tu-Su 18:00-00:30"
}
</script>Minimal valid version
The smallest markup that still produces a valid TaxiStand 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": "TaxiStand",
"name": "Thunderdome Taxi Stand",
"geo": { "@type": "GeoCoordinates", "latitude": 41.4216, "longitude": -75.6188 }
}
</script>Google rich results this unlocks
TaxiStand 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). TaxiStand becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common TaxiStand 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 TaxiStand for a taxi operator
WrongTaxiStand for the taxi company itselfRightTaxiService (Service subtype) for the operator; TaxiStand for the curbside pickup locationTaxiStand is a physical place; TaxiService is the intangible business. Distinguish them.
Schema properties in this example
About the example data
The taxi stand outside The Thunderdome's main entrance, operated by Lackawanna Taxi.
Comments
Loading comments...