Vehicle Model

Description

This entity models a particular vehicle model, including all properties which are common to multiple vehicle instances belonging to such model.

Data Model

  • id : Entity's unique identifier.

  • type : Entity type. It must be equal to VehicleModel.

  • name : Name given to this vehicle model.

  • description : Vehicle model description.

  • vehicleType : Type of vehicle from the point of view of its structural characteristics.

    • See definition at Vehicle.
    • Mandatory
  • brandName : Vehicle's brand name.

  • modelName : Vehicle's model name.

  • manufacturerName : Vehicle's manufacturer name.

  • vehicleModelDate : The release date of a vehicle model (often used to differentiate versions of the same make and model).

  • cargoVolume : The available volume for cargo or luggage. For automobiles, this is usually the trunk volume.

    • Normative References: https://schema.org/cargoVolume
    • Default Unit: Liters
    • Optional
    • Note: If only a single value is provided (type Number) it will refer to the maximum volume.
  • fuelType : The type of fuel suitable for the engine or engines of the vehicle.

    • Normative References: https://schema.org/fuelType
    • Allowed values: one Of (gasoline, petrol(unleaded), petrol(leaded), petrol, diesel, electric, hydrogen, lpg, autogas, cng, biodiesel ethanol, hybrid electric/petrol, hybrid electric/diesel, other)
    • Optional
  • fuelConsumption : The amount of fuel consumed for traveling a particular distance or temporal duration with the given vehicle (e.g. liters per 100 km).

  • height : Vehicle's height.

  • width : Vehicle's width.

  • depth : Vehicle's depth.

  • weight : Vehicle's weight.

  • vehicleEngine : Information about the engine or engines of the vehicle.

  • url : URL which provides a description of this vehicle model.

  • image: Image which depicts this vehicle model.

  • dateModified : Last update timestamp of this entity.

  • dateCreated : Creation timestamp of this entity.

Examples

{
  "id": "vehiclemodel:econic",
  "type": "VehicleModel",
  "brandName": "Mercedes Benz",
  "modelName": "Econic",
  "vehicleType": "lorry",
  "cargoVolume": 1000,
  "fuelType": "diesel"
}

Test it with a real service

Open issues

  • Model fuelConsumption depending on the situation (urban or road)