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="IssueVerb"> <xs:annotation> <xs:appinfo> na (0) -- not applicable create (1) -- the issued material is new update (2) -- the issued material updates -- an earlier message and replaces it delete (3) -- the issued material (sent previously) -- should now be deleted (it is not longer vaild) </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:unsignedInt"> <xs:minInclusive value="0"/> <xs:maxInclusive value="3"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="na"/> <xs:enumeration value="create"/> <xs:enumeration value="update"/> <xs:enumeration value="delete"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |