<xs:complexType name="OrderStatus">
<xs:sequence>
<xs:element name="Code">
<xs:annotation>
<xs:documentation source="http://www.openapplications.org/oagis">Indicates the Status Code of the Order.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="Open" />
<xs:enumeration value="Closed" />
<xs:enumeration value="Cancelled" />
<xs:enumeration value="Blocked" />
<xs:enumeration value="Hold" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Description" type="Description" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation source="http://www.openapplications.org/oagis">Describes the OrderStatus.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AcknowledgementDetail" type="Status" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation source="http://www.openapplications.org/oagis">Provides Acknowledgement information for the Order.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="UserArea" minOccurs="0" />
</xs:sequence>
<xs:attribute name="entryDateTime" type="DateTime" />
</xs:complexType>
|