namespace | http://www.IM-Draft-03-00-44a | ||||
type | union of (restriction of xs:unsignedInt, restriction of xs:string) | ||||
used by |
|
||||
annotation |
|
||||
source | <xs:simpleType name="PreemptGrant"> <xs:annotation> <xs:appinfo> freeText (0) grant (1) deny (2) grantWithFreeText (3) denyWithfreeText (4) </xs:appinfo> <xs:documentation> values to 127 reserved for std use values 128 to 255 reserved for local use use odd values for grants and event values for deny </xs:documentation> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="4"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="freeText"/> <xs:enumeration value="grant"/> <xs:enumeration value="deny"/> <xs:enumeration value="grantWithFreeText"/> <xs:enumeration value="denyWithfreeText"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |