<?xml version="1.0" encoding="windows-1251"?>

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">

<xsd:import namespace="http://myserver/address1"
            schemaLocation="address1.xsd"/>
<xsd:import namespace="http://myserver/address2"
            schemaLocation="address2.xsd"/>

<xsd:complexType name="RootType"
    xmlns:a1="http://myserver/address1"
    xmlns:a2="http://myserver/address2">
    <xsd:sequence>
        <xsd:element name="department" type="a1:DepartmentType"/>
        <xsd:element name="server" type="a2:ServerType"/>
    </xsd:sequence>
</xsd:complexType>

<xsd:element name="root" type="RootType"/>

</xsd:schema>