Schémas et instances


Une instance ne référence pas forcément un schéma

Une instance peut référencer son schéma par l'attribut xsi:schemaLocation

Un validateur est libre d'utiliser cette information on non

Exemple :

<purchaseReport
  xmlns="http://www.example.com/Report"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://www.example.com/Report
                      http://www.example.com/Report.xsd"
  period="P3M" periodEnding="1999-12-31">
 <!-- etc. -->
</purchaseReport>