<xs:simpleType name="PersonNationality">
<xs:annotation>
<xs:documentation>
- The current nationality of the person, as defined by the passport.
- Restrictions: Only values from the reference list of nationalities are allowed.
- The latest List of Nationalities can be downloaded from https://eclaimlink.ae/CodingSets.aspx by the registered users
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:minLength value="1" />
<xs:maxLength value="25" />
</xs:restriction>
</xs:simpleType>
|