Documentation for ATIS-Draft-03-00-79

Simple Type: SetAction

[Table of contents]

Super-types: None
Sub-types: None
Name SetAction
Used by (from the same schema document) Complex Type SettingEntries
Content
  • Union of following types:
    • Locally defined type:
      • Base XSD Type: unsignedInt
      • 0 <= value <= 4
    • Locally defined type:
      • Base XSD Type: string
      • value comes from list: {'currentValue'|'unknownValue'|'delete'|'replace'|'save'}
Application Data 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
Diagram
Schema Component Representation
<xs:simpleType name="SetAction">
<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>