Exercice 3.1

1
<?xml version="1.0" encoding="ISO-8859" ?>
2
<xsd:schema xmlns:xsd='http://www.w3.org/2001/XMLSchema' >
3
4
<xsd:complexType name="contactType">
5
<xsd:sequence>
6
	<xsd:element name="nom"    type="xsd:string"/>
7
	<xsd:element name="prenom" type="xsd:string"/>
8
	<xsd:element name="telephone" type="xsd:string" />
9
	<xsd:element name="email" type="xsd:string" maxoccurs="unbounded"/>
10
</xsd:sequence>
11
</xsd:complexType>
12
13
<xsd:element name="contact"  type="contactType"/>
14
<!--   ...  --!>
15
</xsd:schema>