XML
  Home arrow XML arrow Designing Your own XML Schema: Restriction...
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  
Dedicated Servers  
Moblin 
JMSL Numerical Library 
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: Restrictions and User Defined Types
By: Jagadish Chaterjee
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 2
    2006-03-20

    Table of Contents:
  • Designing Your own XML Schema: Restrictions and User Defined Types
  • Restrictions based on patterns in XML Schema
  • How to define your own simple type (user-defined data type) in XML Schema
  • Understanding the user-defined simple type in XML Schema
  • User-defined Simple Type with enumeration in XML Schema
  • Understanding the simple type with enumeration in XML Schema
  • User-defined Complex Type 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: Restrictions and User Defined Types


    (Page 1 of 7 )

    This is the third article in a series which guides you in designing XML Schemas. Hopefully this series will take you from the most basic ideas to the more advanced topics without any hurdles.

    If you are new to XML Schema, I strongly suggest you to go through my first article in the same series, which you can find here

    Restricting the digits in an XML Schema

    As, I already explained various aspects of XML Schemas, including their definition, simple types and complex types, restrictions and so forth in my previous articles, I shall not repeat them again in this article. 

    Let us consider that we would like to have any employee's salary to be restricted to only certain digits (towards both precision and scale).  This is possible with an existing schema type, “decimal.”  Let us look at the following complete 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="Salary">
                    <xs:simpleType>
                      <xs:restriction base="xs:decimal">
                        <xs:totalDigits value="7" />
                        <xs:fractionDigits value="2" />
                      </xs:restriction>
                    </xs:simpleType>
                  </xs:element>
                </xs:sequence>
              </xs:complexType>
            </xs:element>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:schema>

    You need to observe the following fragment within the above complete schema, which actually does the restriction:

    <xs:element name="Salary">
      <xs:simpleType>
        <xs:restriction base="xs:decimal">
          <xs:totalDigits value="7" />
          <xs:fractionDigits value="2" />
        </xs:restriction>
      </xs:simpleType>
    </xs:element>

    The most important parts are the “totalDigits” and “fractionDigitis” which do our restriction.

    More XML Articles
    More By Jagadish Chaterjee


       · Hello, I extended the XML-Schema series. enjoy and don't hesitate to post, if you...
     

    XML ARTICLES

    - 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
    - Creating an XUL App Installer







    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway