<Lengkap XML Schema Referensi
Definisi dan Penggunaan
Unsur pembatasan mendefinisikan pembatasan definisi simpleType, simpleContent, atau complexContent.
Informasi elemen
- Parent elements: simpleType, simpleContent, complexContent
Sintaksis
<restriction
id=ID
base=QName
any attributes
>
Content for simpleType:
(annotation?,(simpleType?,(minExclusive|minInclusive|
maxExclusive|maxInclusive|totalDigits|fractionDigits|
length|minLength|maxLength|enumeration|whiteSpace|pattern)*))
Content for simpleContent:
(annotation?,(simpleType?,(minExclusive |minInclusive|
maxExclusive|maxInclusive|totalDigits|fractionDigits|
length|minLength|maxLength|enumeration|whiteSpace|pattern)*)?,
((attribute|attributeGroup)*,anyAttribute?))
Content for complexContent:
(annotation?,(group|all|choice|sequence)?,
((attribute|attributeGroup)*,anyAttribute?))
</restriction>
(The? Tanda menyatakan bahwa elemen dapat terjadi nol atau satu kali dalam elemen pembatasan)
Atribut | Deskripsi |
---|---|
id | Pilihan. Menentukan ID unik untuk elemen |
base | Wajib. Menentukan nama tipe built-in data, elemen simpleType, atau elemen complexType didefinisikan dalam skema ini atau skema lain |
any attributes | Pilihan. Menentukan atribut lain dengan non-skema namespace |
contoh 1
Contoh ini mendefinisikan sebuah elemen yang disebut "age" dengan pembatasan. Nilai usia tidak dapat lebih rendah dari 0 atau lebih besar dari 100:
<xs:element name="age">
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="100"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
contoh 2
Contoh ini juga mendefinisikan sebuah elemen yang disebut "initials" . The "initials" elemen adalah tipe sederhana dengan pembatasan. Satu-satunya nilai yang dapat diterima adalah TIGA dari huruf kecil atau huruf huruf dari ke z:
<xs:element name="initials">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[a-zA-Z][a-zA-Z][a-zA-Z]"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
contoh 3
Contoh ini mendefinisikan sebuah elemen yang disebut "password" . The "password" elemen adalah tipe sederhana dengan pembatasan. Nilai harus minimal lima karakter dan maksimal delapan karakter:
<xs:element name="password">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:minLength value="5"/>
<xs:maxLength value="8"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
contoh 4
Contoh ini menunjukkan definisi tipe kompleks menggunakan pembatasan. Kompleks jenis "Norwegian_customer" berasal dari pelanggan tipe umum kompleks dan elemen negaranya adalah tetap untuk "Norway" :
<xs:complexType name="customer">
<xs:sequence>
<xs:element name="firstname" type="xs:string"/>
<xs:element name="lastname" type="xs:string"/>
<xs:element name="country" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Norwegian_customer">
<xs:complexContent>
<xs:restriction base="customer">
<xs:sequence>
<xs:element name="firstname" type="xs:string"/>
<xs:element name="lastname" type="xs:string"/>
<xs:element name="country" type="xs:string" fixed="Norway"/>
</xs:sequence>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
<Lengkap XML Schema Referensi