simpleType "genderType"
Namespace:
Defined:
globally in myProfile.xsd; see XML source
Used:
Simple Content Model
"f" | "m"
Known Direct Subtypes (1):
genderBlueType
All Direct / Indirect Based Elements (3):
gender, gender (in contact), gender (in myProfile)
Known Usage Locations
Annotation
This element specifies the gender for this entity. An entity can be associated with only one gender. The format of this element is a single, 7-bit ASCII character with one of two possible values: 'm' for male and 'f' for female.
Type Definition Detail
Type Derivation Tree
xsd:string (restriction)
  hs:string (restriction)
      genderType
Derivation:
restriction of hs:string
XML Source (see within schema source)
<xsd:simpleType name="genderType">
<xsd:annotation>
<xsd:documentation>
This element specifies the gender for this entity.
An entity can be associated with only one gender.
The format of this element is a single, 7-bit ASCII character with
one of two possible values: 'm' for male and 'f' for female.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="hs:string">
<xsd:maxLength value="1"/>
<xsd:enumeration value="f"/>
<xsd:enumeration value="m"/>
</xsd:restriction>
</xsd:simpleType>