Home arrow XML arrow Page 2 - Designing Your own XML Schema: Learn the Essentials
SEARCH DEVARTICLES

TOOLS YOU CAN USE

advertisement
Designing Your own XML Schema: Learn the Essentials - XML Schema: beginning with the simplest way
(Page 2 of 6 )

To write a schema for any XML document, we could simply follow its structure and define each element as we find it.  Before going into further detail, let us see how we can start an XML Schema.

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified" attributeFormDefault="unqualified">
.
.
.
</xs:schema>

We shall take another look at “elementFormDefault” and “attributeFormDefault” later.  The above states that we are about to start our own schema design, which conforms to the rules and regulations available at http://www.w3.org/2001/XMLSchema (in fact it is an “XML namespace”). “xs” is the preferred prefix, which is mainly used to point to that “namespace” for declarations, definitions or several available structures.

Let us now design a somewhat realistic example.  The following XML Schema defines an element, “Organization,” to be used in our markup.

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs=http://www.w3.org/2001/XMLSchema 
elementFormDefault="qualified" attributeFormDefault=
"unqualified">
      <xs:element name="Organization" type="xs:string" />        
</xs:schema>

Note that I saved the above in a file named “Sample1.xsd” (every XML Schema is generally stored with an extension “xsd”).  Within the above schema, “Organization” is the element name and “string” is its data type.  The following are the quite common data types used in defining XML Schemas:

  • xs:string
  • xs:decimal
  • xs:integer
  • xs:boolean
  • xs:date
  • xs:time

Now, let us see the XML document which conforms to the above defined schema.

<?xml version="1.0" encoding="UTF-8"?>
<Organization xmlns:xsi="http://www.w3.org/2001/XMLSchema-
instance"
 xsi:noNamespaceSchemaLocation="C:\Sample1.xsd">ABC
companies Ltd.
</Organization>

Now, you can observe that you started with your own “Organization” element, which is exactly what you defined in the schema above.  You should also observe that I included my XSD document (schema), to follow my schema rules and regulations for proper validation.


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 10 - Follow our Sitemap
Popular Web Development Topics
All Web Development Tutorials