<xs:schema
id="CommonTypes" xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:mstns="http://BizTalkWscfDemoService/CommonTypes.xsd"
xmlns="http://tempuri.org/CommonTypes.xsd" elementFormDefault="qualified"
targetNamespace="http://BizTalkWscfDemoService/CommonTypes.xsd">
<xs:simpleType name="phoneNumber">
<xs:restriction
base="xs:string">
<xs:pattern
value="[0-9 \-]{1,20}"></xs:pattern>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="emailAddress">
<xs:restriction
base="xs:string">
<xs:pattern
value="[0-9A-Za-z'\.\-_]{1,127}@[0-9A-Za-z'\.\-_]{1,127}"></xs:pattern>
</xs:restriction>
</xs:simpleType>
</xs:schema>