XooCode(){

BusOrCoach

BusOrCoach is a Vehicle subtype for buses and coaches: city buses, tour coaches, school buses, minibuses, shuttle vans. It adds one property: acrissCode (the same rental classification code found on Car). All 39 Vehicle properties apply, including seatingCapacity, fuelType, and vehicleEngine.

For a complete property walkthrough, see the Vehicle example. Replace "@type": "Vehicle" with "@type": "BusOrCoach". Use seatingCapacity for passenger count and vehicleSpecialUsage if the bus is a rental or school vehicle.

Full example of schema.org/BusOrCoach json-ld markup

The markup is verified as valid with Rich Results Test from Google.

Highlight legend:Required by GoogleRecommendedOptional
schema.org/BusOrCoach
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "BusOrCoach",
  "name": "Dunmore Valley Tour Coach",
  "description": "47-seat luxury tour coach for Lackawanna Valley tours. Air conditioning, PA system, wheelchair accessible.",
  "image": "https://thunderdomedunmore.com/transport/tour-coach-16x9.jpg",
  "seatingCapacity": 47,
  "fuelType": "Diesel",
  "vehicleTransmission": "Automatic",
  "brand": { "@type": "Brand", "name": "Prevost" },
  "model": "H3-45",
  "vehicleModelDate": "2023",
  "offers": {
    "@type": "Offer",
    "priceCurrency": "USD",
    "availability": "https://schema.org/InStock",
    "description": "Charter rental: $1,200/day"
  }
}
</script>

Minimal valid version

The smallest markup that still produces a valid BusOrCoach 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/BusOrCoach (minimal)
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "BusOrCoach",
  "name": "Dunmore Valley Tour Coach",
  "seatingCapacity": 47,
  "image": "https://thunderdomedunmore.com/transport/tour-coach-16x9.jpg",
  "description": "47-seat luxury tour coach for Lackawanna Valley tours."
}
</script>

Google rich results this unlocks

Markup matching this example makes your page eligible for the following Google Search rich results. The primary target drives the required / recommended property classification in the advanced code block above.

Common BusOrCoach 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

    Using Vehicle for a bus listing

    Wrong
    "@type": "Vehicle" for a bus or coach
    Right
    "@type": "BusOrCoach"

    BusOrCoach is more specific than Vehicle and signals to search engines that this is a bus, not a car or truck. Use it for any passenger bus or coach listing.

Comments

Loading comments...

Leave a comment