<Pełna XML Schema Reference
Definicja i Wykorzystanie
Element lista definiuje prosty typ elementu w postaci listy wartości określonego typu danych.
Element informacji
- Parent elements: simpleType
Składnia
<list
id=ID
itemType=QName
any attributes
>
(annotation?,(simpleType?))
</list>
(Znak? Deklaruje, że element może wystąpić zero lub jeden raz wewnątrz elementu listy)
Atrybut | Opis |
---|---|
id | Opcjonalny. Określa unikatowy identyfikator dla elementu |
itemType | Określa nazwę wbudowanego typu danych lub elementu simpleType określonej w niniejszym lub innym schemacie. Ten atrybut nie jest dozwolony, jeżeli zawartość zawiera element simpleType, w przeciwnym razie jest to wymagane |
any attributes | Opcjonalny. Określa atrybuty z innych przestrzeni nazw nie schematu |
Przykład 1
Poniższy przykład pokazuje prosty typ, który jest lista liczb całkowitych:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="intvalues" type="valuelist"/>
<xs:simpleType name="valuelist">
<xs:list itemType="xs:integer"/>
</xs:simpleType>
</xs:schema>
The "intvalues" element in a document could look like this (notice that
the list will have five list items):
<intvalues>100 34 56 -23 1567</intvalues>
Note: Biała przestrzeń jest traktowany jako separator elementu listy!
Przykład 2
Poniższy przykład pokazuje prosty typ, który jest listą ciągów:
<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="stringvalues" type="valuelist"/>
<xs:simpleType name="valuelist">
<xs:list itemType="xs:string"/>
</xs:simpleType>
</xs:schema>
The "stringvalues" element in a document could look like this (notice
that the list will have four list items):
<stringvalues>I love XML Schema</stringvalues>
<Pełna XML Schema Reference