<?xml version="1.0" encoding="utf-8" ?>
<xsd:schema id="Customer"
targetNamespace="http://schemas.devleap.com/Customer"
elementFormDefault="qualified"
xmlns="http://schemas.devleap.com/Customer"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="customers">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="customer" minOccurs="0" maxOccurs="unbounded">
<xsd:complexType>
<xsd:attribute name="name" type="xsd:string" use="required" />
<xsd:attribute name="city" type="xsd:string" use="required" />
<xsd:attribute name="country">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Italy" />
<xsd:enumeration value="USA" />
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
