namespace | http://www.ite.org/tmdd | ||
type | union of (restriction of xs:int, restriction of xs:string) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="Link-type"> <xs:annotation> <xs:documentation> <objectClass>Link</objectClass> <definition>The designation of the Link type (Freeway, Arterial, Surface, Rail, Ferry, other modes).</definition> </xs:documentation> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:int"> <xs:minInclusive value="1"/> <xs:maxInclusive value="14"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="freeway"/> <xs:enumeration value="arterial"/> <xs:enumeration value="collector"/> <xs:enumeration value="local"/> <xs:enumeration value="service road"/> <xs:enumeration value="tunnel"/> <xs:enumeration value="detour"/> <xs:enumeration value="dedicated link"/> <xs:enumeration value="military road"/> <xs:enumeration value="railroad link"/> <xs:enumeration value="air link"/> <xs:enumeration value="ferry"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |