<xsd:simpleType name="OrderStatusEnum">
<xsd:annotation>
<xsd:documentation xml:lang="en">Status of order.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:token">
<xsd:enumeration value="Cancelled">
<xsd:annotation>
<xsd:documentation xml:lang="en">Order was cancelled/retracted by the submitter.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Rejected">
<xsd:annotation>
<xsd:documentation xml:lang="en">Order was rejected by the recipient.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Accepted">
<xsd:annotation>
<xsd:documentation xml:lang="en">Order has been accepted but not yet acted on.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Working">
<xsd:annotation>
<xsd:documentation xml:lang="en">Order has been partly filled (executed).</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Filled">
<xsd:annotation>
<xsd:documentation xml:lang="en">Order has been completely filled.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Completed">
<xsd:annotation>
<xsd:documentation xml:lang="en">Order has been completely filled, and all fills have been fully reported/processed as required.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
|