<xs:schema id="Company" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mstns="http://BizTalkWscfDemoService/Company.xsd" xmlns="http://BizTalkWscfDemoService/Company.xsd" elementFormDefault="qualified" targetNamespace="http://BizTalkWscfDemoService/Company.xsd" xmlns:common="http://BizTalkWscfDemoService/CommonTypes.xsd" xmlns:person="http://BizTalkWscfDemoService/Person.xsd">
<xs:import schemaLocation="CommonTypes.xsd" namespace="http://BizTalkWscfDemoService/CommonTypes.xsd"></xs:import>
<xs:import schemaLocation="Person.xsd" namespace="http://BizTalkWscfDemoService/Person.xsd"></xs:import>
<xs:complexType name="company">
<xs:sequence>
<xs:element name="name" type="xs:string"></xs:element>
<xs:element name="address" type="xs:string"></xs:element>
<xs:element name="phone" type="common:phoneNumber"></xs:element>
<xs:element name="email" type="common:emailAddress"></xs:element>
<xs:element name="contactPerson" type="person:person"></xs:element>
</xs:sequence>
</xs:complexType>
</xs:schema>