<xs:complexType name="baseActionComplexType">
<xs:sequence>
<xs:element name="action" type="baseActionComplexType" minOccurs="0" maxOccurs="unbounded">
<!-- An action can have any number of sub-actions -->
<xs:annotation>
<xs:documentation>Any number of action inside the actions holder.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="participant" type="baseParticipantComplexType" minOccurs="0" maxOccurs="unbounded" />
<!-- Used for human participants, animals, equipment whatever -->
</xs:sequence>
<xs:attributeGroup ref="actionAttributes" />
<!-- The action can have a number of attributes -->
</xs:complexType>
|