Lugares
XML Lugares
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE lugares SYSTEM "01.dtd">
<lugares xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="01.xsd">
En el
<lugar>polo norte</lugar>
hace mucho frío. Pero, en el
<lugar>desierto del Sahara</lugar>
hace mucho calor.
</lugares>
DTD Lugares
<!ELEMENT lugares (#PCDATA | lugar)*>
<!ATTLIST lugares xmlns:xsi CDATA #IMPLIED
xsi:noNamespaceSchemaLocation CDATA #IMPLIED>
<!ELEMENT lugar (#PCDATA)>
XSD Lugares
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="lugares">
<xs:complexType mixed="true">
<xs:choice maxOccurs="unbounded">
<xs:element name="lugar" type="xs:string" />
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>