<xsd:group name="BidMidAsk.model">
<xsd:annotation>
<xsd:documentation xml:lang="en">The bid, mid, or ask values relevant for a quote</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="bid" type="xsd:decimal" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">A price "bid" by a buyer for an asset, i.e. the price a buyer is willing to pay.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="mid" type="xsd:decimal" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">A price midway between the bid and the ask price.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="ask" type="xsd:decimal" minOccurs="0">
<xsd:annotation>
<xsd:documentation xml:lang="en">A price "asked" by a seller for an asset, i.e. the price at which a seller is willing to sell.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:group>
|