<?xml version="1.0" encoding="windows-1251"?>

<!-- €¤à¥á -->

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            targetNamespace="http://myserver/address1"
            xmlns:a="http://myserver/address1"
            elementFormDefault="qualified">

<xsd:complexType name="AddressType">
    <xsd:sequence>
        <xsd:element name="city" type="xsd:string"/>
        <xsd:element name="street" type="xsd:string"/>
        <xsd:element name="country" type="xsd:string"/>
    </xsd:sequence>
</xsd:complexType>

<xsd:complexType name="DepartmentType">
    <xsd:sequence>
        <xsd:element name="name" type="xsd:string"/>
        <xsd:element name="address" type="a:AddressType"/>
    </xsd:sequence>
</xsd:complexType>

<xsd:element name="department" type="a:DepartmentType"/>

</xsd:schema>