namespace | http://www.ite.org/tmdd | ||
type | union of (restriction of xs:unsignedInt, restriction of xs:string) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="Lane-current-state"> <xs:annotation> <xs:documentation> <objectClass>LCS</objectClass> <definition/> </xs:documentation> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="1"/> <xs:maxInclusive value="6"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="open"/> <xs:enumeration value="closed"/> <xs:enumeration value="opening"/> <xs:enumeration value="closing"/> <xs:enumeration value="unknown"/> <xs:enumeration value="turning lane"/> <!-- Green Arrow Displayed --> <!-- Red X Displayed --> <!-- Yellow Arrow --> <!--Yellow X Displayed --> <!-- White Arrow Displayed --> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |