Home arrow XML arrow Page 6 - Designing Your own XML Schema: Restrictions and User Defined Types
SEARCH DEVARTICLES

TOOLS YOU CAN USE

advertisement
Designing Your own XML Schema: Restrictions and User Defined Types - Understanding the simple type with enumeration in XML Schema
(Page 6 of 7 )

Instead of explaining the whole XML schema at one time (demonstrated in the previous section), let me elaborate in a few steps.  Let us consider the following fragment first:

      <xs:simpleType name="Category">
        <xs:restriction base="xs:string">
          <xs:enumeration value="TopManagement" />
          <xs:enumeration value="Management" />
          <xs:enumeration value="SalesMan" />
          <xs:enumeration value="Clerk" />
        </xs:restriction>
      </xs:simpleType>

The above fragment declares a new data type (of the simple type in XML schema).  The name of the new simple data type is “Category.”  Once declared, I can use this “Category” as a data type for any element in my XML Schema.

In general, every new user-defined type will get inherited from an existing XML Schema type.  According to the above scenario, our “Category” is getting inherited from the “string” type (xs:string).  This means all the characteristics of “xs:string” become available to our new data type “Category.” 

Once inherited from an existing type, we can refine with our own restrictions along with facets (if necessary).  According to the above definition, I restricted the “Category” in such a way that it would accept any of the values within the following list (or enumeration):

      <xs:enumeration value="TopManagement" />
      <xs:enumeration value="Management" />
      <xs:enumeration value="SalesMan" />
      <xs:enumeration value="Clerk" />

Now I need to use the new data type in my element definitions (in our sense, it would be “EmpCategory” element).  Let us look at the following fragment:

<xs:element name="EmpCategory" type="Category" />

The above line declares a new element, “EmpCategory,” which is based on our own user-defined simple type “Category.”  And thus all the restrictions available for “Category,” get carried to the “EmpCategory” element accordingly for validations (based on enumeration values).  You can use the same “EmpCategory” any number of times within the same schema.  Availability of “Category” to external schemas is also possible through namespaces and other means, which I will cover in future articles.

You can also create several other new data types, which can even nest some other data types.  Similarly, you can even create a data type based on some elements.  This would help us to reuse every data type in several other schemas when necessary.


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