<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>
|