Base structure for a participant. |

| QName | Type | Fixed | Default | Use | Inheritable | Annotation | |
|---|---|---|---|---|---|---|---|
| assists-cumulative | xs:string | optional |
|
||||
| class | xs:string | optional |
|
||||
| field-location | xs:string | optional |
|
||||
| goals-cumulative | xs:string | optional |
|
||||
| id | xs:ID | optional |
|
||||
| idref | xs:IDREF | required |
|
||||
| lineup-slot | xs:integer | optional | |||||
| role | QCodeType | optional |
|
||||
| score-credit | restriction of xs:integer | optional |
|
||||
| stone-color | xs:string | optional | |||||
| stone-id | xs:string | optional | |||||
| stone-number | xs:integer | optional | |||||
| style | xs:string | optional |
|
||||
| team-idref | xs:IDREF | optional |
|
||||
| yards-gained | xs:integer | optional |
<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> |