MotorizedBicycle
MotorizedBicycle is a Vehicle subtype for e-bikes, mopeds, and motorized bicycles with an attached motor that powers the vehicle or assists with pedaling. It adds no properties of its own. Use the Vehicle properties that apply: vehicleEngine for motor specs, speed for max speed, fuelType ("Electricity" for e-bikes), and weightTotal for the bike's weight.
For a complete property walkthrough, see the Vehicle example. Replace "@type": "Vehicle" with "@type": "MotorizedBicycle". Most car-specific Vehicle properties (numberOfDoors, cargoVolume, driveWheelConfiguration) do not apply. Omit them.
Full example of schema.org/MotorizedBicycle 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": "MotorizedBicycle",
"name": "XooBike Commuter E-Bike",
"description": "Pedal-assist electric bicycle with 80 km range. 250W hub motor, removable battery, integrated lights. Built for Dunmore commuters.",
"image": "https://xoocode.com/shop/xoobike/commuter-16x9.jpg",
"brand": { "@id": "https://xoocode.com#organization" },
"model": "Commuter",
"fuelType": "Electricity",
"speed": { "@type": "QuantitativeValue", "value": "25", "unitCode": "KMH" },
"weightTotal": { "@type": "QuantitativeValue", "value": "22", "unitCode": "KGM" },
"vehicleEngine": {
"@type": "EngineSpecification",
"enginePower": { "@type": "QuantitativeValue", "value": "250", "unitCode": "WTT" }
},
"offers": {
"@type": "Offer",
"price": "12995.00",
"priceCurrency": "DKK",
"availability": "https://schema.org/InStock",
"itemCondition": "https://schema.org/NewCondition",
"url": "https://xoocode.com/shop/xoobike/commuter"
}
}
</script>Minimal valid version
The smallest markup that still produces a valid MotorizedBicycle 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": "MotorizedBicycle",
"name": "XooBike Commuter E-Bike",
"fuelType": "Electricity",
"offers": { "@type": "Offer", "price": "12995.00", "priceCurrency": "DKK", "availability": "https://schema.org/InStock" },
"image": "https://xoocode.com/shop/xoobike/commuter-16x9.jpg",
"description": "Pedal-assist electric bicycle with 80 km range."
}
</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.
- Google docsProduct snippetprimary
Common MotorizedBicycle 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 Vehicle or Motorcycle for an e-bike
Wrong"@type": "Motorcycle" or "@type": "Vehicle" for an e-bikeRight"@type": "MotorizedBicycle"MotorizedBicycle is the correct type for e-bikes and mopeds. Motorcycle is for motorbikes. The distinction matters for vehicle regulations and classification in search results.
Schema properties in this example
Comments
Loading comments...