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