<XML Schema อ้างอิงที่สมบูรณ์
ความหมายและการใช้งาน
องค์ประกอบสัญกรณ์อธิบายรูปแบบของข้อมูลที่ไม่ใช่ XML ภายในเอกสาร XML
องค์ประกอบข้อมูล
- Parent elements: สคี
วากยสัมพันธ์
<notation
id=ID
name=NCName
public=anyURI
system=anyURI
any attributes
>
(annotation?)
</notation>
(หรือไม่สัญญาณบอกว่าองค์ประกอบที่สามารถเกิดขึ้นได้เป็นศูนย์หรือเพียงครั้งเดียวภายในองค์ประกอบสัญกรณ์)
คุณลักษณะ | ลักษณะ |
---|---|
id | ไม่จำเป็น ระบุรหัสเฉพาะสำหรับองค์ประกอบ |
name | จำเป็นต้องใช้ ระบุชื่อสำหรับองค์ประกอบ |
public | จำเป็นต้องใช้ ระบุ URI ที่สอดคล้องกับตัวบ่งชี้ที่สาธารณะ |
system | ไม่จำเป็น ระบุ URI ที่สอดคล้องกับตัวบ่งชี้ระบบ |
any attributes | ไม่จำเป็น ระบุคุณลักษณะอื่น ๆ ใด ๆ ที่ไม่ใช่สคี namespace |
ตัวอย่างที่ 1
ตัวอย่างต่อไปนี้แสดงให้เห็นถึง GIF และ JPEG สัญกรณ์โดยใช้โปรแกรมดู, view.exe:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:notation name="gif" public="image/gif" system="view.exe"/>
<xs:notation name="jpeg" public="image/jpeg" system="view.exe"/>
<xs:element name="image">
<xs:complexType>
<xs:simpleContent>
<xs:attribute name="type">
<xs:simpleType>
<xs:restriction base="xs:NOTATION">
<xs:enumeration value="gif"/>
<xs:enumeration value="jpeg"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:schema>
The "image" element in a document could look like this:
<image type="gif"></image>
<XML Schema อ้างอิงที่สมบูรณ์