<xs:complexType name="baseParticipantComplexType">
<xs:annotation>
<xs:documentation>Base structure for a participant.</xs:documentation>
</xs:annotation>
<xs:attributeGroup ref="commonAttributes" />
<xs:attributeGroup ref="participantAttributes" />
<xs:attribute name="field-location" use="optional" type="xs:string">
<xs:annotation>
<xs:documentation>Recommended x,y 0-100.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="goals-cumulative" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Total number goals at time of goal scored.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="assists-cumulative" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Total number assists at time of assist scored.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="lineup-slot" use="optional" type="xs:integer" />
<xs:attribute name="yards-gained" use="optional" type="xs:integer" />
<xs:attribute name="score-credit" use="optional">
<xs:annotation>
<xs:documentation>Whether the participant in the play can be given credit for the goal or score.</xs:documentation>
</xs:annotation>
<xs:simpleType id="scoreCredit">
<xs:restriction base="xs:integer">
<xs:enumeration id="scoreCredit1" value="1" />
<xs:enumeration id="scoreCredit0" value="0" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
|