Derniers tutoriels de développement web
 

XML Schema Element


<XML Schema Complete Reference

Définition et utilisation

L'élément de appinfo spécifie des informations à utiliser par l'application. Cet élément doit aller dans un élément d'annotation.

Informations sur l'élément

  • Parent elements: annotation

Syntaxe

<appinfo
source=anyURL
>

Any well-formed XML content

</appinfo>

Attribut La description
source Optionnel. Une référence URI qui spécifie la source de l'information d'application

Exemple 1

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:annotation>
  <xs:appinfo>w3ii Note</xs:appinfo>
  <xs:documentation xml:lang="en">
  This Schema defines a w3ii note!
  </xs:documentation>
</xs:annotation>

.
.
.

</xs:schema>

<XML Schema Complete Reference