UnsignedNumericRange
An inclusive numeric range between specified minimum and maximum values.
-
Min
Minimum inclusive value of the range. Type
xs:unsignedLong
. -
Max
Maximum inclusive value of the range. Type
xs:unsignedLong
. Element is optional. The range is unbounded if a maximum value is not specified.
Example
<!-- example element definition -->
<xs:element name="AxleCount" type="common:UnsignedNumericRange"/>
<!-- axle count range of three to four axles -->
<AxleCount>
<Min>3</Min>
<Max>4</Max>
</AxleCount>
<!-- axle count range of three and more axles -->
<AxleCount>
<Min>3</Min>
</AxleCount>