<xs:complexType name="personType" mixed="true">
<xs:annotation>
<xs:documentation xml:lang="en">A single participant. Extends participantType to include attributes for the age, role, and sex of the participant</xs:documentation>
</xs:annotation>
<xs:complexContent mixed="true">
<xs:extension base="xces:participantType">
<xs:sequence>
<xs:element name="firstLang" type="xs:string" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="sex">
<xs:simpleType>
<xs:restriction base="xs:NMTOKENS">
<xs:enumeration value="m"/>
<xs:enumeration value="f"/>
<xs:enumeration value="u"/>
<xs:enumeration value="M"/>
<xs:enumeration value="F"/>
<xs:enumeration value="U"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType> |