XML
  Home arrow XML arrow Page 4 - Designing Your Own XML Schema: Indicators
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
XML

Designing Your Own XML Schema: Indicators
By: Jagadish Chaterjee
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 5
    2006-03-27

    Table of Contents:
  • Designing Your Own XML Schema: Indicators
  • The Choice indicator in XML Schema
  • The Sequence indicator in XML Schema
  • The maxOccurs and minOccurs indicators in XML Schema
  • Groups in XML Schema
  • Attribute Groups in XML Schema

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Designing Your Own XML Schema: Indicators - The maxOccurs and minOccurs indicators in XML Schema


    (Page 4 of 6 )

    I have already explained a bit about those two indicators in my previous articles.  Now, we shall see them in more depth. 

    The “maxOccurs” indicator indicates the number of times an element can repeat itself.  If you do not specify (or forget to specify) this indicator, it defaults to “1.”  That means your XML document could contain only one occurrence of that element (with respect to its parent element). 

    If you are unaware of the maximum number of elements expected, then you can specify a value as “unbounded.”  When you specify “unbounded,” it would permit any number of elements.

    Similarly, we have “minOccurs.”  It indicates what number of copies of the same element MUST present (with respect to its parent element).  If you do not specify (or forget to specify) this indicator, it defaults to “1.”  That means you must include the element in your XML document.

    Let us consider the following XML Schema:

    <?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>Contains All Employee
    information</xs:documentation>
            </xs:annotation>
            <xs:complexType>
                  <xs:sequence>
                        <xs:element name="Employee"
     maxOccurs="unbounded">
                              <xs:complexType>
                                    <xs:sequence>
                                          <xs:element name="ID"
     type="xs:string" />
                                          <xs:element name="Name"
     type="xs:string" />
                                          <xs:element name="Address"
     type="xs:string" maxOccurs="unbounded" minOccurs="1" />
                                    </xs:sequence>
                              </xs:complexType>
                        </xs:element>
                  </xs:sequence>
            </xs:complexType>
            <xs:key name="PK_Employee_ID">
                  <xs:selector xpath=".//Employee" />
                  <xs:field xpath="ID" />
            </xs:key>
      </xs:element>
    </xs:schema>



    The most important fragment to concentrate on is the following:

    <xs:element name="Address" type="xs:string" maxOccurs="unbounded"
     minOccurs="1" />

    The above specifies that the “Address” element can be repeated any number of times within the “Employee” element and should be available at least once.  A sample XML document, which conforms to the above schema, would be as follows:

    <?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>
            <Address>13-20-26, Nallam vari thota, Gunupudi,
    Bhimavaram-534201
    </Address>
            <Address>1111, another street, another city, another city
    and pincode
    </Address>
      </Employee>
    </Employees>

    More XML Articles
    More By Jagadish Chaterjee


       · Hello guys, this is another extension for my "XML Schema" series. enjoy!
     

    XML ARTICLES

    - 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
    - UI Design with Java and XML Toolkits
    - Displaying ADO Retrieved Data with XML Islan...
    - Widget Walkthrough
    - Introduction to Widgets
    - The Why and How of XML Data Islands






    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway
    Stay green...Green IT