Class Axles
- Applied Stereotypes:
-
XSDcomplexType
A set of the axles of a vehicle. A vehicle must have a front axle and a rear axle except for trailers which may also only have a rear axle. It might have additional axles.
- Used in:
-
Vehicle
|
Properties
|
| |
Name |
Type |
Cardinality |
AppliedStereotypes |
Description |
| |
rearAxle |
Axle |
1..1 |
XSDelement
|
Rear axle. |
| |
additionalAxles |
Axle |
0..* |
XSDunwrapped,
XSDelement
|
A list of optional additional axles. |
| |
frontAxle |
Axle |
0..1 |
XSDelement
|
Front axle. |
|
|
XSD 1.4 Representation
|
<xsd:complexType name="Axles">
<xsd:sequence>
<xsd:element name="FrontAxle" type="Axle" minOccurs="0"/>
<xsd:element name="RearAxle" type="Axle"/>
<xsd:element name="AdditionalAxle" type="Axle" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
|
|
|
Change log from version 1.3
|
- Property 'rearAxle'. Stereotype <<XSDelement>>. Tagged value 'position' removed.
- Property 'additionalAxles'. Stereotype <<XSDunwrapped>>. Tagged value 'xsdElementName' removed.
- Property 'additionalAxles'. Stereotype <<XSDelement>>. Tagged value 'position' removed.
- Property 'frontAxle'. Stereotype <<XSDelement>>. Tagged value 'position' removed.
|
|
Stereotype Details Information
|
-
Class
- XSDcomplexType [modelGroup: "sequence"; mixed: "false"]
-
Property rearAxle
-
Property additionalAxles
-
Property frontAxle
|
To XSD