documentos XML pueden tener una referencia a una DTD o a un esquema XML.
Un documento XML simple
Mira este documento XML simple llamado "note.xml" :
<?xml version="1.0"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
Un archivo DTD
El siguiente ejemplo es un archivo DTD llamada "note.dtd" que define los elementos del documento XML anterior ("note.xml") :
<!ELEMENT note (to, from, heading, body)>
<!ELEMENT to (#PCDATA)>
<!ELEMENT from (#PCDATA)>
<!ELEMENT heading (#PCDATA)>
<!ELEMENT body (#PCDATA)>
La primera línea define el elemento nota a tener cuatro elementos hijo: "to, from, heading, body" .
Línea 2-5 define el que, a partir, rumbo, elementos del cuerpo como de tipo "#PCDATA" .
Un esquema XML
El siguiente ejemplo es un archivo de esquema XML denominado "note.xsd" que define los elementos del documento XML anterior ("note.xml") :
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.w3ii.com"
xmlns="http://www.w3ii.com"
elementFormDefault="qualified">
<xs:element name="note">
<xs:complexType>
<xs:sequence>
<xs:element name="to" type="xs:string"/>
<xs:element name="from" type="xs:string"/>
<xs:element name="heading" type="xs:string"/>
<xs:element name="body" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
El elemento de nota es un complex type , ya que contiene otros elementos. Los otros elementos (to, from, heading, body) son simple types , ya que no contienen otros elementos. Va a aprender más acerca de los tipos simples y complejos en los siguientes capítulos.
Una referencia a una DTD
Este documento XML tiene una referencia a una DTD:
<?xml version="1.0"?>
<!DOCTYPE note SYSTEM
"http://www.w3ii.com/xml/note.dtd">
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
Una referencia a un esquema XML
Este documento XML tiene una referencia a un esquema XML:
<?xml version="1.0"?>
<note
xmlns="http://www.w3ii.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3ii.com note.xsd">
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>