Enumeration VehicleCategory

Categories for entity objects of type vehicle.

Used in:
Vehicle , VehicleCategoryDistributionEntry
Enumeration Literals
  Name Applied Stereotypes Description
  bicycle The vehicle is a bicycle.
  bus The vehicle is a bus.
  car The vehicle is a car.
  motorbike The vehicle is a motor bike.
  semitrailer The vehicle is a semi trailer.
  trailer The vehicle is a trailer.
  train The vehicle is a train.
  tram The vehicle is a tram.
  truck The vehicle is a truck.
  van The vehicle is a van.
XSD 1.3 Representation


<xsd:simpleType name="VehicleCategory">
<xsd:union>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="bicycle"/>
<xsd:enumeration value="bus"/>
<xsd:enumeration value="car"/>
<xsd:enumeration value="motorbike"/>
<xsd:enumeration value="semitrailer"/>
<xsd:enumeration value="trailer"/>
<xsd:enumeration value="train"/>
<xsd:enumeration value="tram"/>
<xsd:enumeration value="truck"/>
<xsd:enumeration value="van"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType>
<xsd:restriction base="parameter"/>
</xsd:simpleType>
</xsd:union>
</xsd:simpleType>

To XSD