Definition Type: SimpleType
Name: PersonSalary
Namespace: http://www.eclaimlink.ae/DHD/ValidationSchema
Containing Schema: CommonTypes_20191113.xsd
Documentation:
- The salary bracket of the insured member.
- the field must have one of the four values below:
1 = salary less than 4,000 AED per month
2 = salary between 4,001 and 12,000 AED per month
3 = salary greater than 12,000 AED per month
4 = No salary. This will be used for dependants or children that do not acquire a salary.
5 = no salary. Commission only
Collapse XSD Schema Diagram:
XSD Diagram of PersonSalary
Collapse XSD Schema Code:
<xs:simpleType name="PersonSalary">
    <xs:annotation>
        <xs:documentation>
        - The salary bracket of the insured member.
        - the field must have one of the four values below:
        1 = salary less than 4,000 AED per month
        2 = salary between 4,001 and 12,000 AED per month
        3 = salary greater than 12,000 AED per month
        4 = No salary. This will be used for dependants or children that do not acquire a salary.
        5 = no salary. Commission only
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:integer">
        <xs:enumeration value="1" />
        <xs:enumeration value="2" />
        <xs:enumeration value="3" />
        <xs:enumeration value="4" />
        <xs:enumeration value="5" />
    </xs:restriction>
</xs:simpleType>
Collapse Facets:
Facet Value
Enumeration 1
Enumeration 2
Enumeration 3
Enumeration 4
Enumeration 5