Definition Type: SimpleType
Name: PersonContactNumber
Namespace: http://www.eclaimlink.ae/DHD/ValidationSchema
Containing Schema: CommonTypes_20191113.xsd
Documentation:
- This is the primary mobile contact number of the insured member.
- use the standard format (Country code) (Area Code) ( Number)
- If the insured member is a minor, the number should be that of a parent/guardian.
- If the insured member does not have or does not disclose a mobile number, then the mobile number should be that of their emergency contact.
Collapse XSD Schema Diagram:
XSD Diagram of PersonContactNumber
Collapse XSD Schema Code:
<xs:simpleType name="PersonContactNumber">
    <xs:annotation>
        <xs:documentation>
        - This is the primary mobile contact number of the insured member.
        - use the standard format (Country code) (Area Code) ( Number)
        - If the insured member is a minor, the number should be that of a parent/guardian.
        - If the insured member does not have or does not disclose a mobile number, then the mobile number should be that of their emergency contact.
      </xs:documentation>
    </xs:annotation>
    <xs:restriction base="xs:string">
        <xs:pattern value="[0-9]{3}-[0-9]{1,2}-[0-9]{6,8}" />
    </xs:restriction>
</xs:simpleType>
Collapse Facets:
Facet Value
Pattern [0-9]{3}-[0-9]{1,2}-[0-9]{6,8}