**************************************- Gender can be Both ==> Both genders are accepted Family ==> Can be mixed, but for a given family Female ==> For Females only Male ==> For Males only Unknown ==> Any gender restrcition, if applicable, is unknown If omitted, Gender = Unknown **************************************-  | 
                           
| Attributes | PersonType/@Gender, RoomType/@Gender | 
<xs:simpleType name="GenderCodeType"> <xs:annotation> <xs:documentation>**************************************- Gender can be Both ==> Both genders are accepted Family ==> Can be mixed, but for a given family Female ==> For Females only Male ==> For Males only Unknown ==> Any gender restrcition, if applicable, is unknown If omitted, Gender = Unknown **************************************-</xs:documentation> </xs:annotation> <xs:restriction base="xs:string"> <xs:enumeration value="Both"/> <xs:enumeration value="Family"/> <xs:enumeration value="Female"/> <xs:enumeration value="Male"/> <xs:enumeration value="Unknown"/> </xs:restriction> </xs:simpleType>  |