namespace | http://www.LRMS-Adopted-02-00-00 | ||
type | union of (restriction of xs:unsignedInt, restriction of xs:string) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="LRPosOffsetDir"> <xs:annotation> <xs:appinfo> right (0) -- Positive direction for lateral offset is right left (1) -- Positive direction for lateral offset is left </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="1"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="right"/> <xs:enumeration value="left"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |