<xs:complexType name="baseGenericEntityStatsComplexType">
<xs:annotation>
<xs:documentation>Statistics that apply to a team as a whole or a player. | Not all stats are used in every sport.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="base3StatsComplexType">
<xs:sequence>
<xs:element name="sub-score" type="subScoreComplexType" minOccurs="0" maxOccurs="unbounded" />
<!-- <xs:element name="sub-score-attempts" type="subScoreAttemptsComplexType" minOccurs="0" maxOccurs="unbounded"/>-->
<xs:element name="event-record" type="eventRecordComplexType" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="events-played" type="xs:nonNegativeInteger" use="optional">
<xs:annotation>
<xs:documentation>The number of sports-events in which this team or player has already participated.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="time-played-total" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Value for the amount of time played by the team or player over the course of a particular time-span, such as a season.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
|