XML Schema tutorial - Basics: Difference between revisions
m (Created page with "<pageby nominor="false" comments="false"/> {{web technology tutorial|beginner}} == Introduction == This is a beginners tutorial for XML Schema (of called '''XSD''' in refer...") |
m (using an external editor) |
||
Line 30: | Line 30: | ||
These slides have been prepared with the help of | These slides have been prepared with the help of | ||
* The W3C XML Schema primer: | * The W3C XML Schema primer: http://www.w3.org/TR/xmlschema-0/ | ||
* Roger Costello s extensive XML Schema tutorial: http://www.xfront.com/ | |||
== Introduction == | |||
We may distinguish between several kinds of XML grammars | |||
* A grammar-based schema specifies '''what elements''' may be used in an XML document, the '''order''' of the elements, the number of '''occurrences''' of each element, and finally the '''content and datatype''' of each element and attribute. | |||
* An assertion-based schema makes assertions about the relationships that must hold between the elements and attributes in an XML instance document. | |||
Comparison between grammar-based schemas | |||
{| class="prettytable" | {| class="prettytable" | ||
Line 214: | Line 112: | ||
* Relax NG was a reaction by people who didn t like this new format. It is about as powerful as XSD but not as complicated | * Relax NG was a reaction by people who didn t like this new format. It is about as powerful as XSD but not as complicated | ||
=== Resources === | |||
* XML Schema (also called XSD or simply Schema) is difficult | * XML Schema (also called XSD or simply Schema) is difficult | ||
Line 236: | Line 134: | ||
'''Tools:''' | '''Tools:''' | ||
Exchanger XML Editor can handle XML Schema | |||
* Support for XSD editing | * Support for XSD editing | ||
* Validation of XSD file | * Validation of XSD file | ||
* Validation of XML against XSD | * Validation of XML against XSD | ||
* DTD/XSD/Relax NG translation | * DTD/XSD/Relax NG translation | ||
== XSD bare bones == | |||
=== The structure and namespace of an XSD file === | |||
* As '''any''' XML file, an XSD file must start with an XML declaration | * As '''any''' XML file, an XSD file must start with an XML declaration | ||
Line 259: | Line 154: | ||
* Complex XSD files refer to more than one "Schema" namespace (see later) | * Complex XSD files refer to more than one "Schema" namespace (see later) | ||
'''Namespaces and prefixes''' | '''Namespaces and prefixes''' | ||
* You | Since XSD is XML, one must be able to dinguish XSD elements from the language you are defining. | ||
* You '''either''' can define a prefix for the XSD elements '''or''' one for your own XML elements. See solution 1 and 2 below | |||
* You then can decide whether your XML elements are namespaced or not | |||
=== Solution 1: Give a namespace prefix to the XSD code === | |||
* We define the '''xs:''' prefix for the XSD namespace | * We define the '''xs:''' prefix for the XSD namespace | ||
* Doesn t matter what prefix we use (usually '''xs:''' but often '''xsd:''') | * Doesn't matter what prefix we use (usually '''xs:''' but often '''xsd:''') | ||
* '''elementFormDefault="qualified"''' means that your target XML files will not have namespaces | * '''elementFormDefault="qualified"''' means that your target XML files will not have namespaces | ||
Line 291: | Line 183: | ||
</xs:element> | </xs:element> | ||
=== Solution 2: Give a namespace to target code and prefix it === | |||
* We use a prefixed namespace for '''our''' XML elements | * We use a prefixed namespace for '''our''' XML elements | ||
Line 299: | Line 191: | ||
'''Example 2-2: XSD definition for a simple recipe''' | '''Example 2-2: XSD definition for a simple recipe''' | ||
<source lang="xml"> | |||
<schema | <schema | ||
xmlns='http://www.w3.org/2000/10/XMLSchema' | |||
targetNamespace='http://yourdomain.org/namespace/' | |||
xmlns:t='http://yourdomain.org/namespace/' | |||
<element name='list'> | <element name='list'> | ||
Line 312: | Line 204: | ||
</complexType> | </complexType> | ||
</element> | </element> | ||
</source> | |||
=== Validation === | |||
* An XML document described by a XSD is called an '''instance document'''. | * An XML document described by a XSD is called an '''instance document'''. | ||
Line 321: | Line 214: | ||
* In XML Exchanger, simple click the validate icon, then select the XSD file when asked.... | * In XML Exchanger, simple click the validate icon, then select the XSD file when asked.... | ||
Association of XSD with XML, Solution 1: | |||
* You must declare the xsi:'''XMLSchema-instance namespace''' | * You must declare the xsi:'''XMLSchema-instance namespace''' | ||
Line 331: | Line 224: | ||
'''XML file (http://tecfa.unige.ch/guides/xml/examples/xsd-examples/recipe-no-ns.xml )''' | '''XML file (http://tecfa.unige.ch/guides/xml/examples/xsd-examples/recipe-no-ns.xml )''' | ||
<source lang="xml"> | |||
<?xml version="1.0" encoding="ISO-8859-1" ?> | <?xml version="1.0" encoding="ISO-8859-1" ?> | ||
<list | <list | ||
Line 337: | Line 231: | ||
<recipe> .... | <recipe> .... | ||
</list> | </list> | ||
</source> | |||
'''XSD file (http://tecfa.unige.ch/guides/xml/examples/xsd-examples/recipe-no-ns.xsd)''' | '''XSD file (http://tecfa.unige.ch/guides/xml/examples/xsd-examples/recipe-no-ns.xsd)''' | ||
<source lang="xml"> | |||
<?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
elementFormDefault="qualified"> | elementFormDefault="qualified"> | ||
<xs:element name="list"> | <xs:element name="list"> | ||
</source> | |||
'''B. Association of XSD with XML, Solution 2''' | '''B. Association of XSD with XML, Solution 2''' | ||
Line 363: | Line 260: | ||
'''XML file (http://tecfa.unige.ch/guides/xml/examples/xsd-examples/recipe.xml)''' | '''XML file (http://tecfa.unige.ch/guides/xml/examples/xsd-examples/recipe.xml)''' | ||
<source lang="xml"> | |||
<?xml version="1.0" encoding="ISO-8859-1" ?> | |||
<list | |||
xmlns="http://myrecipes.org/" | |||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |||
xsi:schemaLocation="http://myrecipes.org/ recipe.xsd" > | |||
<recipe> | |||
<meta> .....</meta> | |||
...... | |||
</recipe> | |||
</list> | |||
</source> | |||
In practical terms: You must provide something for the pink and red above | In practical terms: You must provide something for the pink and red above | ||
Line 378: | Line 277: | ||
'''XSD file (http://tecfa.unige.ch/guides/xml/examples/xsd-examples/recipe.xsd)''' | '''XSD file (http://tecfa.unige.ch/guides/xml/examples/xsd-examples/recipe.xsd)''' | ||
<source lang="xml"> | |||
<?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Simple recipe Schema --> | <!-- Simple recipe Schema --> | ||
<xs:schema | <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
targetNamespace="http://myrecipes.org/" | |||
xmlns="http://myrecipes.org/" | |||
elementFormDefault="qualified"> | elementFormDefault="qualified"> | ||
.... | .... | ||
</xs:schema> | </xs:schema> | ||
</source> | |||
* This XSD defines a default namespace (no prefixes) for your tags | * This XSD defines a default namespace (no prefixes) for your tags | ||
Line 396: | Line 296: | ||
'''This XML file will use two vocabularies''' | '''This XML file will use two vocabularies''' | ||
<source lang="xml"> | |||
<manifest | <manifest | ||
xmlns="http://www.imsglobal.org/xsd/imscp_v1p1" | |||
xmlns:imsmd="http://www.imsglobal.org/xsd/imsmd_v1p2" | |||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
identifier="MANIFEST-1" | identifier="MANIFEST-1" | ||
xsi:schemaLocation= | xsi:schemaLocation= | ||
"http://www.imsglobal.org/xsd/imscp_v1p imscp_v1p1.xsd | |||
http://www.imsglobal.org/xsd/imsmd_v1p2 imsmd_v1p2p2.xsd"> | |||
<metadata> | <metadata> | ||
< | <imsmd:lom> ...... </imsmd:lom> | ||
</metadata> | </metadata> | ||
<organizations default="learning_sequence_1"> | <organizations default="learning_sequence_1"> | ||
..... | ..... | ||
</source> | |||
* imscp_v1p1 is the default namespace (no prefix) | * imscp_v1p1 is the default namespace (no prefix) | ||
Line 416: | Line 318: | ||
'''Extract of ims_v1p1.xsd''' | '''Extract of ims_v1p1.xsd''' | ||
<source lang="xml"> | |||
<xsd:schema | <xsd:schema | ||
xmlns = "http://www.imsglobal.org/xsd/imscp_v1p1" | |||
targetNamespace = " | targetNamespace = "http://www.imsglobal.org/xsd/imscp_v1p1" | ||
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" | xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:xsd = "http://www.w3.org/2001/XMLSchema" | xmlns:xsd = "http://www.w3.org/2001/XMLSchema" | ||
version = "IMS CP 1.1.4" elementFormDefault = "qualified"> | version = "IMS CP 1.1.4" elementFormDefault = "qualified"> | ||
</source> | |||
=== Element definitions === | |||
* Recall that XML structure is about nested elements | * Recall that XML structure is about nested elements | ||
''<xs:element>'' | |||
* Elements are defined with xs:element, | * Elements are defined with xs:element, | ||
Line 433: | Line 337: | ||
Example of a simple element without childre and attributes: | Example of a simple element without childre and attributes: | ||
< | <xs:element name="author" type="xs:string"/> | ||
'''Definition of children''' | '''Definition of children''' | ||
Line 439: | Line 343: | ||
* Element children can be defined in two ways:(1) with a complexType child element or (2) with a type attribute | * Element children can be defined in two ways:(1) with a complexType child element or (2) with a type attribute | ||
''<xs:complexType> (1)'' | |||
* | * ''complexType ''as a child element of ''xs:element:'' means "we got children or attributes to declare" | ||
< | <source lang="xml"> | ||
<xs:element name="recipe"> | |||
<xs:complexType> | |||
<xs:sequence> | <xs:sequence> | ||
<xs:element ref="meta"/> | <xs:element ref="meta"/> | ||
Line 452: | Line 357: | ||
<xs:element ref="directions"/> | <xs:element ref="directions"/> | ||
</xs:sequence> | </xs:sequence> | ||
</xs:complexType> | |||
</xs:element> | </xs:element> | ||
</source> | |||
''<xs:complexType> (2)'' | |||
* Alternatively, one can declare a complex type by itself and then "use it" in an element declaration. | * Alternatively, one can declare a complex type by itself and then "use it" in an element declaration. | ||
''url: http://tecfa.unige.ch/guides/xml/examples/xsd-examples/recipe2.xsd'' | |||
* Referring to a type: | * Referring to a type: | ||
< | <source lang="xml"> | ||
<xs:element name="recipe" type="recipe_contents" /> | |||
</source> | |||
* Defining the type: | * Defining the type: | ||
< | <source lang="xml"> | ||
<xs:complexType name="recipe_contents"> | |||
<xs:sequence> | <xs:sequence> | ||
<xs:element ref="meta"/> | <xs:element ref="meta"/> | ||
Line 477: | Line 385: | ||
<xs:element ref="directions"/> | <xs:element ref="directions"/> | ||
</xs:sequence> | </xs:sequence> | ||
< | </xs:complexType> | ||
</source> | |||
=== Data types === | |||
Simple data types allow to define what kind of data elements and attributes can contain | Simple data types allow to define what kind of data elements and attributes can contain | ||
Examples: | Examples: | ||
{| class="prettytable" | {| class="prettytable" | ||
| <center> | | <center>Simple Type</center> | ||
| <center> | | <center>Examples (delimited by commas)</center> | ||
| <center> | | <center>Explanation</center> | ||
|- | |- | ||
Line 596: | Line 504: | ||
2.5Simple user-defined types | |||
Exemple 2-5: Exemple "list": | |||
XSD: | XSD: | ||
<xsd:element name=" | <source lang="xml"> | ||
<xsd:simpleType name=" | <xsd:element name="listOfMyInt" type="listOfMyIntType"/> | ||
<xsd: | <xsd:simpleType name="listOfMyIntType"> | ||
<xsd:list itemType="xsd:integer"/> | |||
</xsd:simpleType> | </xsd:simpleType> | ||
</source> | |||
XML: | XML: | ||
< | <source lang="xml"> | ||
<listOfMyInt>20003 15037 95977 95945</listOfMyInt> | |||
</source> | |||
Exemple 2-6: restricted list of words to choose from | |||
XSD: | XSD: | ||
<xsd:element name=" | <source lang="xml"> | ||
<xsd:element name="theory" type="list_theories"/> | |||
<xsd:simpleType name="list_theories"> | |||
<xsd:simpleType name=" | <xsd:restriction base="xsd:string"> | ||
<xsd: | |||
<xsd:enumeration value="constructivism"/> | <xsd:enumeration value="constructivism"/> | ||
<xsd:enumeration value="behaviorism"/> | <xsd:enumeration value="behaviorism"/> | ||
Line 626: | Line 538: | ||
</xsd:restriction> | </xsd:restriction> | ||
</xsd:simpleType> | </xsd:simpleType> | ||
</source> | |||
XML: | XML: | ||
< | <source lang="xml"> | ||
<theory>constructivism</theory> | |||
</source> | |||
Exemple 2-7: Restrictions on numbers | |||
* This time (to change a bit) we define the type as child. | * This time (to change a bit) we define the type as child. | ||
Line 637: | Line 552: | ||
XSD: | XSD: | ||
<xs:element name=" | <source lang="xml"> | ||
<xs:element name="age"> | |||
<xs:simpleType> | <xs:simpleType> | ||
<xs: | <xs:restriction base="xs:integer"> | ||
<xs: | <xs:minInclusive value="0"/> | ||
<xs: | <xs:maxInclusive value="120"/> | ||
</xs:restriction> | </xs:restriction> | ||
</xs:simpleType> | </xs:simpleType> | ||
</xs:element> | </xs:element> | ||
</source> | |||
XML: | XML: | ||
< | <source lang="xml"> | ||
<age>100</age> | |||
</source> | |||
=== Organization of elements === | |||
* XSD allows for quite sophisticated occurrence constraints, i.e. how child elements can be used within an element. Here we only cover a few basic design patterns | * XSD allows for quite sophisticated occurrence constraints, i.e. how child elements can be used within an element. Here we only cover a few basic design patterns | ||
Line 666: | Line 582: | ||
'''Defining elements within elements (not so good)''' | '''Defining elements within elements (not so good)''' | ||
<source lang="xml"> | |||
<xs:element name="meta"> | <xs:element name="meta"> | ||
<xs:complexType> | <xs:complexType> | ||
Line 675: | Line 592: | ||
</xs:complexType> | </xs:complexType> | ||
</xs:element> | </xs:element> | ||
</source> | |||
'''Defining child elements with a reference (generally a better solution)''' | '''Defining child elements with a reference (generally a better solution)''' | ||
Line 680: | Line 598: | ||
* See next Example 2-8: A list of ordered child elements [22] | * See next Example 2-8: A list of ordered child elements [22] | ||
< | <source lang="xml"> | ||
<xs:element | <xs:sequence> | ||
<xs:element ref="author"/> | |||
..... | ..... | ||
</ | </xs:sequence> | ||
</source> | |||
'''B.Sequences''' | '''B.Sequences''' | ||
Line 691: | Line 611: | ||
'''Example 2-8: A list of ordered child elements''' | '''Example 2-8: A list of ordered child elements''' | ||
< | <source lang="xml"> | ||
<xs:element name="meta"> | |||
<xs:complexType> | <xs:complexType> | ||
< | <xs:sequence> | ||
<xs:element | <xs:element ref="author"/> | ||
<xs:element | <xs:element ref="date"/> | ||
<xs:element | <xs:element ref="version"/> | ||
</xs:sequence> | </xs:sequence> | ||
</xs:complexType> | </xs:complexType> | ||
<xs:element name="version" type="xs:string"/> | |||
< | <xs:element name="date" type="xs:string"/> | ||
<xs:element | <xs:element name="author" type="xs:string"/> | ||
<xs:element | </source> | ||
'''Example 2-9: A list with one more recipe child elements''' | '''Example 2-9: A list with one more recipe child elements''' | ||
<source lang="xml"> | |||
<xs:element name="list"> | <xs:element name="list"> | ||
<xs:complexType> | <xs:complexType> | ||
<'''xs:sequence | <'''xs:sequence> | ||
<xs:element | <xs:element maxOccurs="unbounded" ref="recipe"/> | ||
</xs:sequence> | </xs:sequence> | ||
</xs:complexType> | </xs:complexType> | ||
</xs:element> | </xs:element> | ||
</source> | |||
Example 2-10: A list of ordered child elements | |||
<source lang="xml"> | |||
<xs:element name="meta"> | <xs:element name="meta"> | ||
<xs:complexType> | <xs:complexType> | ||
< | <xs:sequence> | ||
<xs:element | <xs:element ref="author"/> | ||
<xs:element | <xs:element ref="date"/> | ||
<xs:element | <xs:element ref="version"/> | ||
</xs:sequence> | </xs:sequence> | ||
</xs:complexType> | </xs:complexType> | ||
</source> | |||
Example 2-11: A list with an optional email element - repeatable | |||
<source lang="xml"> | |||
<xs:element name="person"> | <xs:element name="person"> | ||
<xs:complexType> | <xs:complexType> | ||
<xs:sequence> | <xs:sequence> | ||
<xs:element ref="name"/> | <xs:element ref="name"/> | ||
<xs:element | <xs:element minOccurs="0" maxOccurs="unbounded" ref="email"/> | ||
<xs:element ref="link"/> | <xs:element ref="link"/> | ||
</xs:sequence> | </xs:sequence> | ||
Line 738: | Line 664: | ||
</xs:complexType> | </xs:complexType> | ||
</xs:element> | </xs:element> | ||
</source> | |||
C. Choice | |||
Example 2-12: Optional repeatable child elements | |||
<source lang="xml"> | |||
<xs:element name="INFOS"> | <xs:element name="INFOS"> | ||
<xs:complexType> | <xs:complexType> | ||
< | <xs:choice minOccurs="0" maxOccurs="unbounded"> | ||
<xs:element ref="date"/> | <xs:element ref="date"/> | ||
<xs:element ref="author"/> | <xs:element ref="author"/> | ||
Line 752: | Line 680: | ||
</xs:complexType> | </xs:complexType> | ||
</xs:element> | </xs:element> | ||
</source> | |||
Example 2-13: Either - or child elements | |||
<source lang="xml"> | |||
<xs:element name="ATTEMPT"> | <xs:element name="ATTEMPT"> | ||
<xs:complexType> | <xs:complexType> | ||
< | <xs:choice> | ||
<xs:element ref="action"/> | <xs:element ref="action"/> | ||
<xs:element ref="EPISODE"/> | <xs:element ref="EPISODE"/> | ||
Line 763: | Line 693: | ||
</xs:complexType> | </xs:complexType> | ||
</xs:element> | </xs:element> | ||
</source> | |||
D. Mixed contents (tags and text) | |||
<source lang="xml"> | |||
<xs:element name="para"> | <xs:element name="para"> | ||
<xs:complexType | <xs:complexType mixed="true"> | ||
<xs:sequence> | <xs:sequence> | ||
<xs:element | <xs:element minOccurs="0" maxOccurs="unbounded" ref="strong"/> | ||
</xs:sequence> | </xs:sequence> | ||
</xs:complexType> | </xs:complexType> | ||
</xs:element> | </xs:element> | ||
<xs:element name=" | <xs:element name="strong" type="xs:string"/> | ||
</source> | |||
<para> XML is < | XML: | ||
<source lang="xml"> | |||
<para> XML is <strong>so</strong> cool ! </para> | |||
</source> | |||
E.Empty elements | |||
* Simply define an element and do not define any child elements | * Simply define an element and do not define any child elements | ||
<xs:element | <xs:element name="author" type="xs:string"/> | ||
* Of course this also applies to complex elements: | * Of course this also applies to complex elements: | ||
Line 788: | Line 722: | ||
* See Example 2-14: Attribute groups [27] | * See Example 2-14: Attribute groups [27] | ||
=== Attributes === | |||
* To declare attributes, define complexTypes. | * To declare attributes, define complexTypes. | ||
* The | * The use parameter: can be either optional, prohibited or required | ||
* default is "optional" | * default is "optional" | ||
Line 798: | Line 732: | ||
* We will not cover all possibilities here, but just demonstrate with examples | * We will not cover all possibilities here, but just demonstrate with examples | ||
<xs:element name=" | <source lang="xml"> | ||
<xs: | <xs:element name="Name"> | ||
<xs:attribute name=" | <xs:complexType> | ||
</xs: | <xs:attribute name="lang" type="xs:string" use="required"/> | ||
</xs:complexType> | |||
</xs:element> | </xs:element> | ||
</source> | |||
The above code is actually a short hand notation for: | The above code is actually a short hand notation for: | ||
<xs:element name=" | <source lang="xml"> | ||
<xs: | <xs:element name="Name"> | ||
<xs: | <xs:complexType> | ||
<xs:simpleContent> | |||
<xs:extension base="xs:string"> | <xs:extension base="xs:string"> | ||
<xs:attribute name=" | <xs:attribute name="lang" type="xs:string" use="required"/> | ||
</xs:extension | </xs:extension | ||
</xs: | </xs:simpleContent> | ||
</xs: | </xs:complexType> | ||
</xs:element> | </xs:element> | ||
</source> | |||
XML example | XML example | ||
< | <Name lang="English"/> | ||
Attribute groups | |||
* More complex attributes are better declared with attribute groups | * More complex attributes are better declared with attribute groups | ||
Line 827: | Line 764: | ||
* Attribute groups are reusable, i.e. the equivalent of DTD s parameter entities. | * Attribute groups are reusable, i.e. the equivalent of DTD s parameter entities. | ||
Example 2-14: Attribute groups | |||
''url: http://tecfa.unige.ch/guides/xml/examples/xsd-examples/family.xsd'' | |||
<source lang="xml"> | |||
<xs:element name="person"> | <xs:element name="person"> | ||
<xs: | <xs:complexType> | ||
<xs: | <xs:attributeGroup ref="attlist.person"/> | ||
</xs:complexType> | </xs:complexType> | ||
</xs:element> | </xs:element> | ||
</source> | |||
The element definition above refers to a named attribute group (defined below) | The element definition above refers to a named attribute group (defined below) | ||
<xs: | <source lang="xml"> | ||
<xs:attribute name=" | <xs:attributeGroup name="attlist.person"> | ||
<xs:attribute name="name" use="required"/> | |||
<xs:attribute name=" | <xs:attribute name="gender"> | ||
<xs:simpleType> | <xs:simpleType> | ||
<xs: | <xs:restriction base="xs:token"> | ||
<xs:enumeration value="male"/> | <xs:enumeration value="male"/> | ||
<xs:enumeration value="female"/> | <xs:enumeration value="female"/> | ||
Line 853: | Line 793: | ||
</xs:attribute> | </xs:attribute> | ||
<xs:attribute name="type" default="mother"> | |||
<xs:attribute name=" | |||
<xs:simpleType> | <xs:simpleType> | ||
<xs: | <xs:restriction base="xs:token"> | ||
<xs:enumeration value="mother"/> | <xs:enumeration value="mother"/> | ||
<xs:enumeration value="father"/> | <xs:enumeration value="father"/> | ||
Line 868: | Line 804: | ||
</xs:attribute> | </xs:attribute> | ||
<xs:attribute name="id" use="required" type="xs:ID"/> | |||
</xs:attributeGroup> | |||
</source> | |||
Valid XML fragment: | |||
url: http://tecfa.unige.ch/guides/xml/examples/xsd-examples/family.xml | |||
<source lang="xml"> | |||
<family> | <family> | ||
<person | <person name="Joe Miller" gender="male" type="father" id="I123456789"/> | ||
<person name="Josette Miller" type="girl" id="I123456987"/> | <person name="Josette Miller" type="girl" id="I123456987"/> | ||
</family> | </family> | ||
</source> | |||
=== Value constraints === | |||
* | * One can put restraints on values that a user can enter in several ways | ||
Example 2-15: Restrict values for an age element | |||
<source lang="xml"> | |||
<xs:element name="age"> | <xs:element name="age"> | ||
<xs:simpleType> | <xs:simpleType> | ||
<xs: | <xs:restriction base="xs:integer"> | ||
<xs:minInclusive value="0"/> | <xs:minInclusive value="0"/> | ||
<xs:maxInclusive value="120"/> | <xs:maxInclusive value="120"/> | ||
</xs:restriction> | </xs:restriction> | ||
</xs:simpleType> | </xs:simpleType> | ||
</xs:element> | </xs:element> | ||
</source> | |||
== From DTDs to XSDs == | |||
Below we shall present a few typical translation patterns | |||
Most decent XML editors have a built-in translator that will do most of the work. Wowever, generated XSD code is not necessarily the most pretty ... | |||
* e.g. in Exchanger XML Editor: Use Menu Schema -> Convert Schema | |||
=== Encoding elements === | |||
Examples taken from http://www.w3.org/2000/04/schema_hack/ | |||
{| class="prettytable" | {| class="prettytable" | ||
| <center> | | <center>DTD</center> | ||
| <center> | | <center>XML Schema</center> | ||
|- | |- | ||
| | | <!ELEMENT ROOT | ||
(A,B) > | |||
| | | <element name="ROOT"> | ||
<complexType content="elementOnly"> | <complexType content="elementOnly"> | ||
<element ref="t:A"> | <element ref="t:A"> | ||
<element ref="t:B"> | <element ref="t:B"> | ||
</complexType> | </complexType> | ||
<element> | <element> | ||
|- | |- | ||
| | | <!ELEMENT ROOT | ||
(A|B) > | |||
| | | <element name="ROOT"> | ||
<complexType content="elementOnly"> | <complexType content="elementOnly"> | ||
<choice> | <choice> | ||
Line 941: | Line 875: | ||
</choice> | </choice> | ||
</complexType> | </complexType> | ||
<element> | <element> | ||
|- | |- | ||
| | | <!ELEMENT ROOT | ||
(A|(B,C)) > | |||
| | | <element name="ROOT"> | ||
<complexType content="elementOnly"> | <complexType content="elementOnly"> | ||
<choice> | <choice> | ||
Line 956: | Line 890: | ||
</choice> | </choice> | ||
</complexType> | </complexType> | ||
<element> | <element> | ||
|- | |- | ||
| | | <!ELEMENT ROOT | ||
(A?,B+,C*) > | |||
| | | <element name="ROOT"> | ||
<complexType content="elementOnly"> | <complexType content="elementOnly"> | ||
<element ref="t:A" minOccurs="0"> | <element ref="t:A" minOccurs="0"> | ||
Line 967: | Line 901: | ||
<element ref="t:C" minOccurs="0" maxOccurs="unbounded"> | <element ref="t:C" minOccurs="0" maxOccurs="unbounded"> | ||
</complexType> | </complexType> | ||
<element> | <element> | ||
|} | |} | ||
3.2Attribute definitions | |||
{| class="prettytable" | {| class="prettytable" | ||
| <center> | | <center>DTD</center> | ||
| <center> | | <center>XML Schema</center> | ||
|- | |- | ||
| | | <!ATTLIST ROOT | ||
a CDATA #REQUIRED> | |||
| | | <element name="ROOT"> | ||
<complexType content="elementOnly"> | <complexType content="elementOnly"> | ||
<attribute name="a" type="string" use="required"/> | <attribute name="a" type="string" use="required"/> | ||
</complexType> | </complexType> | ||
</element> | </element> | ||
|- | |- | ||
| | | <!ATTLIST ROOT | ||
a CDATA #IMPLIED> | |||
| | | <element name="ROOT"> | ||
<complexType content="elementOnly"> | <complexType content="elementOnly"> | ||
<attribute name="a" type="string" use="optional"/> | <attribute name="a" type="string" use="optional"/> | ||
</complexType> | </complexType> | ||
</element> | </element> | ||
|- | |- | ||
| | | <!ATTLIST ROOT | ||
a (x|y|z)#REQUIRED;> | |||
| | | <element name="ROOT"> | ||
<complexType content="elementOnly"> | <complexType content="elementOnly"> | ||
<attribute name="a"> | <attribute name="a"> | ||
Line 1,009: | Line 943: | ||
</attribute> | </attribute> | ||
</complexType> | </complexType> | ||
</element> | </element> | ||
|- | |- | ||
| | | <!ATTLIST ROOT | ||
a CDATA #FIXED "x"> | |||
| | | <element name="ROOT"> | ||
<complexType content="elementOnly"> | <complexType content="elementOnly"> | ||
<attribute name="a" type="string" | <attribute name="a" type="string" | ||
use="fixed" value="x"/> | use="fixed" value="x"/> | ||
</complexType> | </complexType> | ||
</element> | |||
|} | |} |
Revision as of 17:30, 4 December 2010
<pageby nominor="false" comments="false"/>
Introduction
This is a beginners tutorial for XML Schema (of called XSD in reference to the file name extension *.xsd) made from slides
- Objectives
- Understand the purpose of XSD
- Be able to cope with XSD editing
- Translat DTDs to XSD with a conversion tool
- Modify data types of a given XSD
- Write very simple XSD grammars
- Prerequisites
- Editing XML (being able to use a simple DTD). Catch up with the Editing XML tutorial
- Be somewhat familiar with DTD's (see the DTD tutorial)
- XML namespaces (some, have a look at the XML namespace article)
- HTML and CSS (some)
- Next steps
- ...
- Warning
XSD is a rather complex schema definition language. For one problem there always exist several good solutions.
These slides have been prepared with the help of
- The W3C XML Schema primer: http://www.w3.org/TR/xmlschema-0/
- Roger Costello s extensive XML Schema tutorial: http://www.xfront.com/
Introduction
We may distinguish between several kinds of XML grammars
- A grammar-based schema specifies what elements may be used in an XML document, the order of the elements, the number of occurrences of each element, and finally the content and datatype of each element and attribute.
- An assertion-based schema makes assertions about the relationships that must hold between the elements and attributes in an XML instance document.
Comparison between grammar-based schemas
Adoption | wide spread | Data-centric applications like web services | R&D mostly |
Complexity of structure | Medium | Powerful (e.g. sets, element occurrence constraints) | Powerful |
Data types | Little (10, mostly attribute values) | Powerful (44 + your own derived data types) | Powerful (same as XSD) |
Overall complexity | low | high | medium |
XML-based formalism | no | yes | yes
(also a short notation) |
Association with XML document | DOCTYPE declaration | Namespace declaration | No standard solution |
Browser support | IE (not Firefox) | no | no |
File suffix | *.dtd | *.xsd | *.rng / *.rnc |
Entities | yes | no (use xinclude instead) | no |
- XML Schemas were created to define more precise grammars than with DTDs, in particular one can define Data Types and more sophisticated element structures
- DTD supports 10 datatypes; XML Schemas supports 44+ datatypes
- Relax NG was a reaction by people who didn t like this new format. It is about as powerful as XSD but not as complicated
Resources
- XML Schema (also called XSD or simply Schema) is difficult
- A good way to learn XSD is to translate your own DTDs with a tool and then study the code
- See also chapter 3. From DTDs to XSDs [30]
W3C websites:
url: http://www.w3.org/XML/Schema (W3C Overview Page)
url: http://www.w3.org/TR/xmlschema-0/ The W3C XML Schema primer
Specifications:
url: http://www.w3.org/TR/xmlschema-1/ XML Schema Part 1: Structures Second Edition 2004
url: http://www.w3.org/TR/xmlschema-2/ XML Schema Part 2: Datatypes Second Edition 2004
Tools:
Exchanger XML Editor can handle XML Schema
- Support for XSD editing
- Validation of XSD file
- Validation of XML against XSD
- DTD/XSD/Relax NG translation
XSD bare bones
The structure and namespace of an XSD file
- As any XML file, an XSD file must start with an XML declaration
- Root of an XSD is <schema> ... </schema>
- Attributes of schema are used to declare certain things (see later)
- XSD makes use of namespaces since we have to make a distinction between code that belongs to XSD and code that refers to the defined elements and attributes (same principle as in XSLT).
- Complex XSD files refer to more than one "Schema" namespace (see later)
Namespaces and prefixes
Since XSD is XML, one must be able to dinguish XSD elements from the language you are defining.
- You either can define a prefix for the XSD elements or one for your own XML elements. See solution 1 and 2 below
- You then can decide whether your XML elements are namespaced or not
Solution 1: Give a namespace prefix to the XSD code
- We define the xs: prefix for the XSD namespace
- Doesn't matter what prefix we use (usually xs: but often xsd:)
- elementFormDefault="qualified" means that your target XML files will not have namespaces
Example 2-1: XSD definition for a simple recipe
<?xml version="1.0" encoding="UTF-8"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <xs:element name="list"> <xs:complexType> <xs:sequence> <xs:element maxOccurs="unbounded" ref="recipe"/> </xs:sequence> </xs:complexType> </xs:element>
Solution 2: Give a namespace to target code and prefix it
- We use a prefixed namespace for our XML elements
- Declare the XMLSchema namespace as default namespace, i.e. XSD elements will not be prefixed as in the next example
Example 2-2: XSD definition for a simple recipe
<schema
xmlns='http://www.w3.org/2000/10/XMLSchema'
targetNamespace='http://yourdomain.org/namespace/'
xmlns:t='http://yourdomain.org/namespace/'
<element name='list'>
<complexType>
<sequence>
<element ref=''''t:recipe'''' maxOccurs='unbounded'/>
</sequence>
</complexType>
</element>
Validation
- An XML document described by a XSD is called an instance document.
- As with DTDs one can validate an XML against an XSD and most XML editors will allow you to do so.
- In XML Exchanger, simple click the validate icon, then select the XSD file when asked....
Association of XSD with XML, Solution 1:
- You must declare the xsi:XMLSchema-instance namespace
- The xsi:noNamespaceSchemaLocation attribute defines the URL of your XSD
- Warning: Make sure you get spelling and case right !!!
XML file (http://tecfa.unige.ch/guides/xml/examples/xsd-examples/recipe-no-ns.xml )
<?xml version="1.0" encoding="ISO-8859-1" ?>
<list
'''xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"'''
'''xsi:noNamespaceSchemaLocation="recipe-no-ns.xsd">'''
<recipe> ....
</list>
XSD file (http://tecfa.unige.ch/guides/xml/examples/xsd-examples/recipe-no-ns.xsd)
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
<xs:element name="list">
B. Association of XSD with XML, Solution 2
- This solution is more popular since many XML standards require a namespace
1.Both XML and XSD files must contain a namespace declaration for your domain
The XML file must contain in addition:
2.a declaration for the XMLSchema-instance namespace
3.a xsi:schemaLocation attribute that tells for your namespaces where to find the XSDs
- This attribute can have as many "namespace-URL" pairs as you like
Example 2-3: XML for a simple recipe with an associated XSD (file recipe.xml)
XML file (http://tecfa.unige.ch/guides/xml/examples/xsd-examples/recipe.xml)
<?xml version="1.0" encoding="ISO-8859-1" ?>
<list
xmlns="http://myrecipes.org/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://myrecipes.org/ recipe.xsd" >
<recipe>
<meta> .....</meta>
......
</recipe>
</list>
In practical terms: You must provide something for the pink and red above
XSD file (http://tecfa.unige.ch/guides/xml/examples/xsd-examples/recipe.xsd)
<?xml version="1.0" encoding="UTF-8"?>
<!-- Simple recipe Schema -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://myrecipes.org/"
xmlns="http://myrecipes.org/"
elementFormDefault="qualified">
....
</xs:schema>
- This XSD defines a default namespace (no prefixes) for your tags
- You should substitute http://myrecipes.org/ by an URL of your own, preferably an URL over which you have control, e.g. a blog or a home page.
Exemple 2-4: IMS Content Packaging 1.1.4 and IMS/LOM Metadata
This XML file will use two vocabularies
<manifest
xmlns="http://www.imsglobal.org/xsd/imscp_v1p1"
xmlns:imsmd="http://www.imsglobal.org/xsd/imsmd_v1p2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
identifier="MANIFEST-1"
xsi:schemaLocation=
"http://www.imsglobal.org/xsd/imscp_v1p imscp_v1p1.xsd
http://www.imsglobal.org/xsd/imsmd_v1p2 imsmd_v1p2p2.xsd">
<metadata>
<imsmd:lom> ...... </imsmd:lom>
</metadata>
<organizations default="learning_sequence_1">
.....
- imscp_v1p1 is the default namespace (no prefix)
- imsmd_v1p1 is the namespace for metadata.
Extract of ims_v1p1.xsd
<xsd:schema
xmlns = "http://www.imsglobal.org/xsd/imscp_v1p1"
targetNamespace = "http://www.imsglobal.org/xsd/imscp_v1p1"
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd = "http://www.w3.org/2001/XMLSchema"
version = "IMS CP 1.1.4" elementFormDefault = "qualified">
Element definitions
- Recall that XML structure is about nested elements
<xs:element>
- Elements are defined with xs:element,
Example of a simple element without childre and attributes:
<xs:element name="author" type="xs:string"/>
Definition of children
- Element children can be defined in two ways:(1) with a complexType child element or (2) with a type attribute
<xs:complexType> (1)
- complexType as a child element of xs:element: means "we got children or attributes to declare"
<xs:element name="recipe">
<xs:complexType>
<xs:sequence>
<xs:element ref="meta"/>
<xs:element minOccurs="0" ref="recipe_author"/>
<xs:element ref="recipe_name"/>
<xs:element ref="ingredients"/>
<xs:element ref="directions"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:complexType> (2)
- Alternatively, one can declare a complex type by itself and then "use it" in an element declaration.
url: http://tecfa.unige.ch/guides/xml/examples/xsd-examples/recipe2.xsd
- Referring to a type:
<xs:element name="recipe" type="recipe_contents" />
- Defining the type:
<xs:complexType name="recipe_contents">
<xs:sequence>
<xs:element ref="meta"/>
<xs:element minOccurs="0" ref="recipe_author"/>
<xs:element ref="recipe_name"/>
<xs:element ref="meal"/>
<xs:element ref="ingredients"/>
<xs:element ref="directions"/>
</xs:sequence>
</xs:complexType>
Data types
Simple data types allow to define what kind of data elements and attributes can contain
Examples:
string | Confirm this is electric | A text string |
base64Binary | GpM7 | Base86 encoded binary data |
hexBinary | 0FB7 | HEX encoded binary data |
integer | ...-1, 0, 1, ... | |
positiveInteger | 1, 2, ... | |
negativeInteger | ... -2, -1 | |
nonNegativeInteger | 0, 1, 2, ... | |
long | -9223372036854775808, ... -1, 0, 1, ... 9223372036854775807 | |
decimal | -1.23, 0, 123.4, 1000.00 | |
float | -INF, -1E4, -0, 0, 12.78E-2, 12, INF, NaN | |
boolean | true, false, 1, 0 | |
duration | P1Y2M3DT10H30M12.3S | 1 year, 2 months, 3 days, 10 hours, 30 minutes, and 12.3 seconds |
dataTime | 1999-05-31T13:20:00.000-05:00 | May 31st 1999 at 1.20pm Eastern Standard Time |
date | 1999-05-31 | |
time | 13:20:00.000, 13:20:00.000-05:00 | |
gYear | 1999 | |
Name | shipTo | XML 1.0 Name type |
QName | po:USAddress | XML Namespace QName |
anyURI | http://www.example.com/ | |
language | en-GB, en-US, fr | valid values for xml:lang as defined in XML 1.0 |
In addition one can define list types, union types and complex types
2.5Simple user-defined types
Exemple 2-5: Exemple "list":
XSD:
<xsd:element name="listOfMyInt" type="listOfMyIntType"/>
<xsd:simpleType name="listOfMyIntType">
<xsd:list itemType="xsd:integer"/>
</xsd:simpleType>
XML:
<listOfMyInt>20003 15037 95977 95945</listOfMyInt>
Exemple 2-6: restricted list of words to choose from
XSD:
<xsd:element name="theory" type="list_theories"/>
<xsd:simpleType name="list_theories">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="constructivism"/>
<xsd:enumeration value="behaviorism"/>
<xsd:enumeration value="cognitivism"/>
</xsd:restriction>
</xsd:simpleType>
XML:
<theory>constructivism</theory>
Exemple 2-7: Restrictions on numbers
- This time (to change a bit) we define the type as child.
XSD:
<xs:element name="age">
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="120"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
XML:
<age>100</age>
Organization of elements
- XSD allows for quite sophisticated occurrence constraints, i.e. how child elements can be used within an element. Here we only cover a few basic design patterns
A.References vs. direct insertion (recall)
- It is best to define all elements in a flat list and then refer to these when you define how child elements are to be inserted
Defining elements within elements (not so good)
<xs:element name="meta">
<xs:complexType>
<xs:sequence>
<xs:element name="author" type="xs:string"/>
<xs:element name="version" type="xs:string"/>
<xs:element name="date" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
Defining child elements with a reference (generally a better solution)
- See next Example 2-8: A list of ordered child elements [22]
<xs:sequence>
<xs:element ref="author"/>
.....
</xs:sequence>
B.Sequences
- Number of times a child element can occur is defined with minOccurs and maxOccurs attributes.
Example 2-8: A list of ordered child elements
<xs:element name="meta">
<xs:complexType>
<xs:sequence>
<xs:element ref="author"/>
<xs:element ref="date"/>
<xs:element ref="version"/>
</xs:sequence>
</xs:complexType>
<xs:element name="version" type="xs:string"/>
<xs:element name="date" type="xs:string"/>
<xs:element name="author" type="xs:string"/>
Example 2-9: A list with one more recipe child elements
<xs:element name="list">
<xs:complexType>
<'''xs:sequence>
<xs:element maxOccurs="unbounded" ref="recipe"/>
</xs:sequence>
</xs:complexType>
</xs:element>
Example 2-10: A list of ordered child elements
<xs:element name="meta">
<xs:complexType>
<xs:sequence>
<xs:element ref="author"/>
<xs:element ref="date"/>
<xs:element ref="version"/>
</xs:sequence>
</xs:complexType>
Example 2-11: A list with an optional email element - repeatable
<xs:element name="person">
<xs:complexType>
<xs:sequence>
<xs:element ref="name"/>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="email"/>
<xs:element ref="link"/>
</xs:sequence>
<xs:attributeGroup ref="attlist.person"/>
</xs:complexType>
</xs:element>
C. Choice
Example 2-12: Optional repeatable child elements
<xs:element name="INFOS">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="date"/>
<xs:element ref="author"/>
<xs:element ref="a"/>
</xs:choice>
</xs:complexType>
</xs:element>
Example 2-13: Either - or child elements
<xs:element name="ATTEMPT">
<xs:complexType>
<xs:choice>
<xs:element ref="action"/>
<xs:element ref="EPISODE"/>
</xs:choice>
</xs:complexType>
</xs:element>
D. Mixed contents (tags and text)
<xs:element name="para">
<xs:complexType mixed="true">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" ref="strong"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="strong" type="xs:string"/>
XML:
<para> XML is <strong>so</strong> cool ! </para>
E.Empty elements
- Simply define an element and do not define any child elements
<xs:element name="author" type="xs:string"/>
- Of course this also applies to complex elements:
- See Example 2-14: Attribute groups [27]
Attributes
- To declare attributes, define complexTypes.
- The use parameter: can be either optional, prohibited or required
- default is "optional"
- We will not cover all possibilities here, but just demonstrate with examples
<xs:element name="Name">
<xs:complexType>
<xs:attribute name="lang" type="xs:string" use="required"/>
</xs:complexType>
</xs:element>
The above code is actually a short hand notation for:
<xs:element name="Name">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="lang" type="xs:string" use="required"/>
</xs:extension
</xs:simpleContent>
</xs:complexType>
</xs:element>
XML example
<Name lang="English"/>
Attribute groups
- More complex attributes are better declared with attribute groups
- Attribute groups are reusable, i.e. the equivalent of DTD s parameter entities.
Example 2-14: Attribute groups
url: http://tecfa.unige.ch/guides/xml/examples/xsd-examples/family.xsd
<xs:element name="person">
<xs:complexType>
<xs:attributeGroup ref="attlist.person"/>
</xs:complexType>
</xs:element>
The element definition above refers to a named attribute group (defined below)
<xs:attributeGroup name="attlist.person">
<xs:attribute name="name" use="required"/>
<xs:attribute name="gender">
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="male"/>
<xs:enumeration value="female"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="type" default="mother">
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="mother"/>
<xs:enumeration value="father"/>
<xs:enumeration value="boy"/>
<xs:enumeration value="girl"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="id" use="required" type="xs:ID"/>
</xs:attributeGroup>
Valid XML fragment:
url: http://tecfa.unige.ch/guides/xml/examples/xsd-examples/family.xml
<family>
<person name="Joe Miller" gender="male" type="father" id="I123456789"/>
<person name="Josette Miller" type="girl" id="I123456987"/>
</family>
Value constraints
- One can put restraints on values that a user can enter in several ways
Example 2-15: Restrict values for an age element
<xs:element name="age">
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="120"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
From DTDs to XSDs
Below we shall present a few typical translation patterns
Most decent XML editors have a built-in translator that will do most of the work. Wowever, generated XSD code is not necessarily the most pretty ...
- e.g. in Exchanger XML Editor: Use Menu Schema -> Convert Schema
Encoding elements
Examples taken from http://www.w3.org/2000/04/schema_hack/
<!ELEMENT ROOT
(A,B) > |
<element name="ROOT">
<complexType content="elementOnly"> <element ref="t:A"> <element ref="t:B"> </complexType> <element> |
<!ELEMENT ROOT
(A|B) > |
<element name="ROOT">
<complexType content="elementOnly"> <choice> <element ref="t:A"> <element ref="t:B"> </choice> </complexType> <element> |
<!ELEMENT ROOT
(A|(B,C)) > |
<element name="ROOT">
<complexType content="elementOnly"> <choice> <element ref="t:A"> <sequence> <element ref="t:B"> <element ref="t:C"> </sequence> </choice> </complexType> <element> |
<!ELEMENT ROOT
(A?,B+,C*) > |
<element name="ROOT">
<complexType content="elementOnly"> <element ref="t:A" minOccurs="0"> <element ref="t:B" maxOccurs="unbounded"> <element ref="t:C" minOccurs="0" maxOccurs="unbounded"> </complexType> <element> |
3.2Attribute definitions
<!ATTLIST ROOT
a CDATA #REQUIRED> |
<element name="ROOT">
<complexType content="elementOnly"> <attribute name="a" type="string" use="required"/> </complexType> </element> |
<!ATTLIST ROOT
a CDATA #IMPLIED> |
<element name="ROOT">
<complexType content="elementOnly"> <attribute name="a" type="string" use="optional"/> </complexType> </element> |
<!ATTLIST ROOT
a (x|y|z)#REQUIRED;> |
<element name="ROOT">
<complexType content="elementOnly"> <attribute name="a"> <simpleType base="string"> <enumeration value="x"/> <enumeration value="y"/> <enumeration value="z"/> </simpleType> </attribute> </complexType> </element> |
<!ATTLIST ROOT
a CDATA #FIXED "x"> |
<element name="ROOT">
<complexType content="elementOnly"> <attribute name="a" type="string" use="fixed" value="x"/> </complexType> </element> |