<xs:complexType name="basePersonMetadataComplexType">
<xs:annotation>
<xs:documentation>Metadata that describes a person. | Generally does not change over the course of a sports-events. Extends the baseEntityMetadata type</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="baseEntityMetadataComplexType">
<xs:attribute name="date-of-birth" type="TruncatedDateTimeType" use="optional">
<xs:annotation>
<xs:documentation>The day on which a person was born, normalized to ISO 8601
extended format: YYYY-MM-DDTHH:MM:SS+HH:MM. Use YYYY-MM-DD when no time
is available. Can also be YYYY-MM or just YYYY if year and/or month not available.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="date-of-death" type="TruncatedDateTimeType" use="optional">
<xs:annotation>
<xs:documentation>The day on which a person died, normalized to ISO 8601
extended format: YYYY-MM-DDTHH:MM:SS+HH:MM. Use YYYY-MM-DD when no time is available.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="height" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Height of the person. Generally in cm.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="weight" type="xs:nonNegativeInteger" use="optional">
<xs:annotation>
<xs:documentation>Weight of a person. Generally in kg.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="position-regular" type="QCodeType" use="optional">
<xs:annotation>
<xs:documentation>The code for the typical position of the person.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="position-event" type="QCodeType" use="optional">
<xs:annotation>
<xs:documentation>The code for the position held by the person at this particular sports-event.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="position-depth" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>A ranking amongst players on the team who share the same position.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="health" type="QCodeType" use="optional">
<xs:annotation>
<xs:documentation>An indication of the health of the person.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="gender" use="optional">
<xs:annotation>
<xs:documentation>Male or female.</xs:documentation>
</xs:annotation>
<xs:simpleType id="gender">
<xs:restriction base="xs:string">
<xs:enumeration id="genderMale" value="male" />
<xs:enumeration id="genderFemale" value="female" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>
|