namespace | http://www.ATIS-Draft-03-00-79 | ||
type | union of (restriction of xs:unsignedInt, restriction of xs:string) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="SetAction"> <xs:annotation> <xs:appinfo> currentValue (0) -- used to state what the current value is unknownValue (1) -- used when the value is improper to use delete (2) -- delete the passed tag and its value replace (3) -- replace the value of the passed tag with this data save (4) -- save this value and associate with the tag </xs:appinfo> </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="currentValue"/> <xs:enumeration value="unknownValue"/> <xs:enumeration value="delete"/> <xs:enumeration value="replace"/> <xs:enumeration value="save"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |