Enumeration VehicleCategory

Categories for entity objects of type vehicle.

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

Migration Information from XSD 0.9.1
Derived From:
Enum_Vehicle_category
Property Name XSD Type XSD 0.9.1 Name Migration
car Attribute car
van Attribute van
truck Attribute truck
trailer Attribute trailer
semitrailer Attribute semitrailer
bus Attribute bus
motorbike Attribute motorbike
bicycle Attribute bicycle
train Attribute train
tram Attribute tram

XSD 1.0 Representation


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

To XSD To XSLT