<Lengkap XML Schema Referensi
Definisi dan Penggunaan
Unsur notasi menjelaskan format data non-XML dalam dokumen XML.
Informasi elemen
- Parent elements: skema
Sintaksis
<notation
id=ID
name=NCName
public=anyURI
system=anyURI
any attributes
>
(annotation?)
</notation>
(The? Tanda menyatakan bahwa elemen dapat terjadi nol atau satu kali dalam elemen notasi)
Atribut | Deskripsi |
---|---|
id | Pilihan. Menentukan ID unik untuk elemen |
name | Wajib. Menentukan nama untuk elemen |
public | Wajib. Menentukan URI sesuai dengan identifier publik |
system | Pilihan. Menentukan URI sesuai dengan sistem pengenal |
any attributes | Pilihan. Menentukan atribut lain dengan non-skema namespace |
contoh 1
Contoh berikut menunjukkan gif dan notasi jpeg menggunakan aplikasi penampil, 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>
<Lengkap XML Schema Referensi