<xsd:simpleType name="GenderCodeEnumType">
<xsd:annotation>
<xsd:documentation>A code indicating the gender of a person. This set of enumerations is parrallel to those specified within ISO 5218 - Representation of Human Sexes (0 - Not Known; 1 - Male; 2 - Female; 9 - Not specified). However, the text values have been substituted for the numeric codes for greater clarity.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:normalizedString">
<xsd:enumeration value="NotKnown" />
<xsd:enumeration value="Male" />
<xsd:enumeration value="Female" />
<xsd:enumeration value="NotSpecified" />
</xsd:restriction>
</xsd:simpleType>
|