<xschema:notation>
</xschema:notation>
L'élément notation possède les attributs suivants :
Attribut. | Obligatoire. | Sémantique. |
id | Non. | Identifiant de la notation. |
name | Oui. | Nom de la notation. |
public | Non. | Type Mime du contenu. |
system | Non. | Module complémentaire au processeur Xml. |
<-- Definition des notations globales. -->
<xschema:notation name="ImageGif" public="image/gif" system="file:://programs/upsvwr.exe"/>
<xschema:notation name="ImagePng" public="image/png" system="file:://programs/upsvwr.exe"/>
<-- Definition d'un enumere pour les sortes d'image. -->
<xschema:simpleType name="SorteImage">
<xschema:restriction base="xschema:string">
<xschema:enumeration value="Gif"/>
<xschema:enumeration value="Png"/>
</xschema:restriction>
</xschema:simpleType>
<-- Definition d'un type dont le contenu est une image en hexadecimal. -->
<xschema:complexType name="Image">
<xschema:simpleContent>
<xschema:extension base="xschema:hexBinary">
<xschema:attribute name="SorteImage" type="SorteImage">
</xschema:extension>
</xschema:simpleContent>
</xschema:complexType>