<?xml version="1.0" encoding="ISO-8859-1"?><xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xml:lang="fr">

<xs:element name="DOCUMENTATION">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="1" minOccurs="0" ref="TITRE"/>
<xs:element maxOccurs="unbounded" minOccurs="1" ref="SECTION"/>
</xs:sequence>
</xs:complexType>
</xs:element>

<xs:element name="TITRE" type="xs:string"/>

<xs:element name="SECTION">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="1" minOccurs="0" ref="TITRE"/>
<xs:choice maxOccurs="unbounded" minOccurs="1">
<xs:element ref="PARAGRAPHE"/>
<xs:element ref="LISTE"/>
<xs:element ref="IMAGE"/>
</xs:choice>
</xs:sequence>
</xs:complexType>
</xs:element>

<xs:element name="PARAGRAPHE">
<xs:complexType mixed="true">
<xs:choice maxOccurs="unbounded" minOccurs="0">
<xs:element ref="TITRE"/>
<xs:group ref="texte"/>
</xs:choice>
</xs:complexType>
</xs:element>

<xs:element name="LISTE">
<xs:complexType>
<xs:sequence maxOccurs="unbounded" minOccurs="1">
<xs:element ref="EL"/>
</xs:sequence>
</xs:complexType>
</xs:element>

<xs:element name="EL">
<xs:complexType mixed="true">
<xs:choice maxOccurs="unbounded" minOccurs="0">
<xs:element ref="LISTE"/>
<xs:group ref="texte"/>
</xs:choice>
</xs:complexType>
</xs:element>

<xs:element name="IMAGE">
<xs:complexType mixed="true">
<xs:attribute name="fichier" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>

<xs:element name="EMPHASE" type="xs:string"/>

<xs:element name="CODE" type="xs:string"/>

<xs:element name="LIEN">
<xs:complexType mixed="true">
<xs:attribute name="href" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>

<xs:group name="texte">
<xs:choice>
<xs:element ref="EMPHASE"/>
<xs:element ref="CODE"/>
<xs:element ref="LIEN"/>
</xs:choice>
</xs:group>
</xs:schema>