Připojení schéma k dokumentu

Nepoužíváme vlastní jmenný prostor

Příklad 1. XML dokument

<dokument 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:noNamespaceSchemaLocation="dokument.xsd">

  ...

</dokument>

Příklad 2. XML schéma – dokument.xsd

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

 <xs:element name="dokument">

 ...