เอกสาร XML สามารถมีการอ้างอิงถึง DTD หรือแบบแผนการ XML
เอกสาร XML ที่เรียบง่าย
ดูเอกสาร XML นี้ง่ายเรียกว่า "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>
ไฟล์ DTD
ตัวอย่างต่อไปนี้เป็นไฟล์ DTD ที่เรียกว่า "note.dtd" ที่กำหนดองค์ประกอบของเอกสาร XML ข้างต้น ("note.xml") :
<!ELEMENT note (to, from, heading, body)>
<!ELEMENT to (#PCDATA)>
<!ELEMENT from (#PCDATA)>
<!ELEMENT heading (#PCDATA)>
<!ELEMENT body (#PCDATA)>
บรรทัดแรกกำหนดองค์ประกอบโน้ตจะมีสี่องค์ประกอบเด็ก: "to, from, heading, body"
สาย 2-5 กำหนดไปจากหัวองค์ประกอบร่างกายจะเป็นประเภท "#PCDATA"
คี XML
ตัวอย่างต่อไปนี้เป็นไฟล์ XML สคีเรียกว่า "note.xsd" ที่กำหนดองค์ประกอบของเอกสาร XML ข้างต้น ("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>
องค์ประกอบที่บันทึกเป็น complex type เพราะมันมีองค์ประกอบอื่น ๆ องค์ประกอบอื่น ๆ (to, from, heading, body) เป็น simple types เพราะพวกเขาไม่ได้มีองค์ประกอบอื่น ๆ คุณจะได้เรียนรู้เพิ่มเติมเกี่ยวกับประเภทที่ง่ายและซับซ้อนในบทต่อไป
อ้างอิงถึงเป็น DTD
เอกสาร XML นี้มีการอ้างอิงถึง DTD A:
<?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>
การอ้างอิงไปยัง XML Schema
เอกสาร XML นี้มีการอ้างอิงไปยัง XML Schema:
<?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>