namespace | http://www.TCIP-Adopted-03-00-01 | ||
type | union of (restriction of xs:unsignedInt, restriction of xs:string, restriction of xs:unsignedInt, SP-OneWay) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="SP-OneWay"> <xs:annotation> <xs:appinfo> one to two (1) -- from node 1 to node 2 two to one (2) -- from node 2 to node 1 bidirectional (3) -- not really one-way at all clockwise (4) -- useful for traffic circles counterclockwise (5) -- useful for traffic circles </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="1"/> <xs:maxInclusive value="5"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="one to two"/> <xs:enumeration value="two to one"/> <xs:enumeration value="bidirectional"/> <xs:enumeration value="clockwise"/> <xs:enumeration value="counterclockwise"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="128"/> <xs:maxInclusive value="255"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="local:SP-OneWay"/> </xs:simpleType> </xs:union> </xs:simpleType> |