Designing Your own XML Schema: Constraining with Restrictions - Working with other data types in XML Schema
(Page 2 of 6 )
In this section, we shall go through an example covering most of the important data types available in the XML Schema definition. 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="HireDate" type="xs:date"/>
<xs:element name="isMarried" type="xs:boolean" minOccurs="0"/>
<xs:element name="Salary" type="xs:float"/>
<xs:element name="Age" type="xs:integer"/>
</xs:sequence>
<xs:attribute name="ID" type="xs:string" 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 a few more elements: “Name,” “Hiredate,” “isMarried,” “Salary” and “Age.” You should observe that there could be any number of “Employee” elements within “Employee.”
You should also observe that “Name,” “HireDate,” “isMarried,” “Salary” and “Age” are defined with different simple data types rather than with “complex types.” The only complex elements are “Employees” and “Employee.” I also declared an attribute ID for the “Employee” element as follows:
<xs:attribute name="ID" type="xs:int" use="required"/>
Another important point to observe is that the “isMarried” element is declared as optional. This is possible by making “minOccurs” be “0” (default is “1”).
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:\Documents and
Settings\Administrator\Desktop\ForDec\ForDec\XSLT\XMLExamples\02
\SampleDataTypes.xsd">
<Employee ID="1001">
<Name>Jag</Name>
<HireDate>1978-06-25</HireDate>
<isMarried>false</isMarried>
<Salary>2500</Salary>
<Age>27</Age>
</Employee>
<Employee ID="1002">
<Name>Winner</Name>
<HireDate>1985-09-08</HireDate>
<Salary>2500</Salary>
<Age>20</Age>
</Employee>
</Employees>
Next: Constraining values (restricting a range) >>
More XML Articles
More By Jagadish Chaterjee