Definition Type: SimpleType
Name: MemberRelation
Namespace: http://www.eclaimlink.ae/DHD/ValidationSchema
Containing Schema: CommonTypes_20191113.xsd
Documentation:
- The information about the family relationships under the same PayerID (Insurance company).
- This value must be (Principal) if the member does not have any relation with another insured member under the same PayerID.
- This value will have the relation with the insured family member if one exists.
- The field must have one of the values below:
- Principal
- Spouse
- Child
- Parent
- Other
Collapse XSD Schema Diagram:
XSD Diagram of MemberRelation
Collapse XSD Schema Code:
<xs:simpleType name="MemberRelation">
    <xs:annotation>
        <xs:documentation>
        - The information about the family relationships under the same PayerID (Insurance company).
        - This value must be (Principal) if the member does not have any relation with another insured member under the same PayerID.
        - This value will have the relation with the insured family member if one exists.
        - The field must have one of the values below:
        - Principal
        - Spouse
        - Child
        - Parent
        - Other
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:string">
        <xs:enumeration value="Principal" />
        <xs:enumeration value="Spouse" />
        <xs:enumeration value="Parent" />
        <xs:enumeration value="Child" />
        <xs:enumeration value="Other" />
    </xs:restriction>
</xs:simpleType>
Collapse Facets:
Facet Value
Enumeration Principal
Enumeration Spouse
Enumeration Parent
Enumeration Child
Enumeration Other