namespace | http://www.ATIS-Draft-03-00-79 | ||
type | union of (restriction of xs:int, restriction of xs:string) | ||
used by |
|
||
annotation |
|
||
source | <xs:simpleType name="ExpireAction-item"> <xs:annotation> <xs:appinfo> renew (0) -- presumes new updated well be available -- after the expire time , and data user -- should obtains it to freshen his data. discard (1) -- once the expire time has been reached -- do not depend on the prior data for -- any use destroy (2) -- once the expire time has been reached -- all copies of this message should be -- deleted and no further record kept keep (3) -- once the expire time has been reached -- the data may still be used (with some -- presumed decrease in value and quality) noSend (4) -- the data may not be re-sent to others -- regardless of the expire time noSendOn (5) -- the data may not be re-sent to others -- after the expire time has been reached </xs:appinfo> </xs:annotation> <xs:union> <xs:simpleType> <xs:restriction base="xs:int"> <xs:minInclusive value="0"/> <xs:maxInclusive value="5"/> </xs:restriction> </xs:simpleType> <xs:simpleType> <xs:restriction base="xs:string"> <xs:enumeration value="renew"/> <xs:enumeration value="discard"/> <xs:enumeration value="destroy"/> <xs:enumeration value="keep"/> <xs:enumeration value="noSend"/> <xs:enumeration value="noSendOn"/> </xs:restriction> </xs:simpleType> </xs:union> </xs:simpleType> |