namespace | http://www.ite.org/tmdd | ||
type | union of (restriction of xs:int, restriction of xs:string) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="Node-type"> <xs:annotation> <xs:documentation> <objectClass>Node</objectClass> <definition>The designation of the Node type (Freeway, Arterial, Etc.).</definition> </xs:documentation> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:int"> <xs:minInclusive value="1"/> <xs:maxInclusive value="10"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="freeway interchange"/> <xs:enumeration value="arterial with secondary cross street"/> <xs:enumeration value="arterial with crossing arterial"/> <xs:enumeration value="frontage road with arterial"/> <xs:enumeration value="railroad crossing"/> <xs:enumeration value="transit crossing"/> <xs:enumeration value="bus route node"/> <xs:enumeration value="train route node"/> <xs:enumeration value="wharf ferry node"/> <xs:enumeration value="transfer point"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |