Definition Type: SimpleType
Name: PersonEmiratesIDNumber
Namespace: http://www.eclaimlink.ae/DHD/ValidationSchema
Containing Schema: CommonTypes_20191113.xsd
Documentation:
- The unique number the government assigns to a citizen.
- When an EmiratesIDNumber is not available :
- 000-0000-0000000-0 National without card
- 111-1111-1111111-1 Expatriate resident without a card
- 222-2222-2222222-2 Non national, non-expat resident without a card
- 999-9999-9999999-9 Unknown status, without a card.
Collapse XSD Schema Diagram:
XSD Diagram of PersonEmiratesIDNumber
Collapse XSD Schema Code:
<xs:simpleType name="PersonEmiratesIDNumber">
    <xs:annotation>
        <xs:documentation>
        - The unique number the government assigns to a citizen.
        - When an EmiratesIDNumber is not available :
        - 000-0000-0000000-0 National without card
        - 111-1111-1111111-1 Expatriate resident without a card
        - 222-2222-2222222-2 Non national, non-expat resident without a card
        - 999-9999-9999999-9 Unknown status, without a card.
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:string">
        <xs:minLength value="1" />
        <xs:maxLength value="50" />
        <xs:pattern value="[0-9]{3}-[0-9]{4}-[0-9]{7}-[0-9]{1}" />
    </xs:restriction>
</xs:simpleType>
Collapse Facets:
Facet Value
MaxLength 50
MinLength 1
Pattern [0-9]{3}-[0-9]{4}-[0-9]{7}-[0-9]{1}