<xs:complexType name="wagering-stats">
<xs:annotation>
<xs:documentation>An element to house lines and odds for wagering. | Includes moneylines, spreads, etc.</xs:documentation>
</xs:annotation>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="wagering-moneyline" type="wagering-moneyline" />
<xs:element name="wagering-total-score" type="wagering-total-score" />
<xs:element name="wagering-runline" type="wagering-runline" />
<xs:element name="wagering-odds" type="wagering-odds" />
<xs:element name="wagering-straight-spread" type="wagering-straight-spread" />
</xs:choice>
<xs:attributeGroup ref="commonAttributes" />
<xs:attribute name="comment" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>A generic comment for the wagering stats.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
|