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="LinkType"> <xs:annotation> <xs:appinfo> freeway (1) arterial (2) collector (3) local (4) service road (7) </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="1"/> <xs:maxInclusive value="7"/> </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:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |