This is the fourth (and last) in this series of articles, which guides you in designing XML Schemas right from the basics without any hurdles. This part explains what indicators are and how to use them.
Designing Your Own XML Schema: Indicators - The Sequence indicator in XML Schema (Page 3 of 6 )
Another indicator from the XML Schema vocabulary is the “Sequence” indicator. We have been using this indicator right from the beginning of this series, but I never explained it completely. It is specially used to inform that all the elements under it should occur in the same order. None of the child elements could occur in a different order.
There exists nothing really important about the above schema. The only issue would be that the “Employee” element should be supported with “ID,” ”Name” and “Age” in the same order. For example, the following XML document would be invalid:
<?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\Employees.xsd">
<Employee>
<ID>1001</ID>
<Name>Jag</Name>
<Age>27</ Age >
</Employee>
<Employee>
<ID>1002</ID>
<Age>27</ Age >
<Name>Chat</Name>
</Employee>
</Employees>
Within the above XML, even though the initial “Employee” information is quite correct, the rest of the “Employee” details do not match with the order we specified in the above schema. Thus, the whole XML document becomes invalid!