Documentation for ATIS-Draft-03-00-79

Simple Type: SubscribeType

[Table of contents]

Super-types: None
Sub-types: None
Name SubscribeType
Used by (from the same schema document) Complex Type SubscribeForm
Content
  • Union of following types:
    • Locally defined type:
      • Base XSD Type: unsignedInt
      • 1 <= value <= 4
    • Locally defined type:
      • Base XSD Type: string
      • value comes from list: {'new'|'update replace'|'cancel'|'cancelAllPrior'}
Application Data new (1) update replace (2) cancel (3) cancelAllPrior (4)
Diagram
Schema Component Representation
<xs:simpleType name="SubscribeType">
<xs:union>
<xs:simpleType>
<xs:restriction base=" xs:unsignedInt ">
<xs:minInclusive value="1"/>
<xs:maxInclusive value="4"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType>
<xs:restriction base=" xs:string ">
<xs:enumeration value="new"/>
<xs:enumeration value="update replace"/>
<xs:enumeration value="cancel"/>
<xs:enumeration value="cancelAllPrior"/>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>