Home arrow XML arrow Designing Your own XML Schema: Constraining with Restrictions
SEARCH DEVARTICLES

TOOLS YOU CAN USE

advertisement
Designing Your own XML Schema: Constraining with Restrictions
(Page 1 of 6 )

If you are new to XML Schema, I strongly suggest you go through my first article in this series, which you can check out here

Declaring attributes in XML Schema

Since I already explained certain aspects of XML Schemas (defining them, simple types, complex types, and so on) in my previous article, I shall not repeat them again in this article.  Before discussing “constraints” (or restrictions), I need to cover two more topics.  Let us first complete them and then proceed to “restrictions” in XML schema.

An “attribute” is very similar to characteristics of an element. The best example would be the <IMG> tag in HTML.  It accepts the file name of the image with the help of the “SRC” attribute.  Similarly, you can also define your own attributes (reasonably) within an XML Schema.

Let us have a look at the following XML schema now:

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
      <xs:element name="Employees">
            <xs:annotation>
                  <xs:documentation>Comment describing your root
element
</xs:documentation>
            </xs:annotation>
            <xs:complexType>
                  <xs:sequence>
                        <xs:element name="Employee"
maxOccurs="unbounded">
                              <xs:complexType>
                                    <xs:sequence>
                                          <xs:element name="Name"
type="xs:string"/>
                                          <xs:element name="Age" type="xs:int"/>
                                    </xs:sequence>
                                    <xs:attribute name="ID"
type="xs:int" use="required"/>
                              </xs:complexType>
                        </xs:element>
                  </xs:sequence>
            </xs:complexType>
      </xs:element>
</xs:schema>



According to the above example, the document root element would be “Employees.”  The element “Employees” internally can contain “Employee” elements.  The element “Employee” internally contains two more elements, “Name” and “Age.”  You should observe that there could be any number of “Employee” elements within “Employee.” 

You should also observe that “Name” and “Age” are defined with “simple types” rather than with “complex types.”  The only complex elements are “Employees” and “Employee.”  The most important declaration within the above schema is as follows:

<xs:attribute name="ID" type="xs:int" use="required"/>

The above statement makes sure that every “Employee” element is provided with the attribute “ID” (which is of type “int”).

Now, how would the XML document look when it conformed to the above XML Schema?  The following would be a sample XML document which conforms to the XML Schema above.

<?xml version="1.0" encoding="UTF-8"?>
<Employees xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="C:\SampleAttributes.xsd">
      <Employee ID="1001">
            <Name>Jag</Name>
            <Age>27</Age>
      </Employee>
      <Employee ID="1002">
            <Name>Winner</Name>
            <Age>20</Age>
      </Employee>
</Employees>


blog comments powered by Disqus
XML ARTICLES

- Using Regions with XSL Formatting Objects
- Using XSL Formatting Objects
- More Schematron Features
- Schematron Patterns and Validation
- Using Schematron
- Datatypes and More in RELAX NG
- Providing Options in RELAX NG
- An Introduction to RELAX NG
- Path, Predicates, and XQuery
- Using Predicates with XQuery
- Navigating Input Documents Using Paths
- XML Basics
- Introduction to XPath
- Simple Web Syndication with RSS 2.0
- Java UI Design with an IDE

Dev Articles Forums 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Contact Us 
Site Map 
Privacy Policy 
Support 



© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 2 - Follow our Sitemap
Popular Web Development Topics
All Web Development Tutorials