| By Deepak Vohra, Ajay Vohra | Article Rating: |
|
| October 1, 2004 12:00 AM EDT | Reads: |
19,398 |
This tutorial discusses the simpleType and complexType XML Schema structures and their corresponding representations in an XML document. XML Schema is used as the basis of an XML document structure, and some of the XML technologies, such as JAXB, are based on XML Schema.
Overview
An XML Schema is an XML-based representation of the structure of an XML document. XML Schema supports data types and namespaces; a DTD does not. In this tutorial, the simpleType and complexType structures used to represent a XML document will be discussed.
SimpleType Declaration
SimpleTypes are custom data types used with element and attribute declarations. A simpleType is represented with a <xs:simple Type/> declaration. An <xs:simpleType/> element is used to constrain character data in a element or a attribute declaration. A simpleType is used to constrain data types only; a simpleType does not have attributes or element nodes. With an element declaration the simpleType is used as:
<xs:schema>
<xs:element name="A" type="simpleTypeA"/>
<xs:simpleType name="simpleTypeA">
</xs:simpleType>
</xs:schema>
or
<xs:element name="A">
<xs:simpleType>
</xs:simpleType>
</xs:element>
With an attribute declaration, the simpleType is used as
<complexType> <xs:attribute name="AttributeA" type="simpleTypeA"/> </complexType>
or
<xs:attribute name="AttributeA">
<xs:simpleType>
</xs:simpleType>
<xs:attribute>
The <xs:simpleType/> declaration may be present in an <xs:element/> element, <xs:attribute/> element, <xs:restriction/> element, <xs:list/> element, <xs:union/> element, or the <xs:schema/> element.
The <xs:simpleType/> element may contain one of the <xs:restriction/>, <xs:list/>, <xs:union/> elements.
SimpleType with Restriction Element
A simpleType used to constrain a decimal data type would be
<xs:element name="A">
<xs:simpleType>
<xs:restriction base="xs:decimal">
<xs:minExclusive value="1.0"/>
<xs:maxInclusive value="5.0"/>
<xs:totalDigits value="3"/>
<xs:fractionDigits value="2"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
A corresponding representation of element Element "A" in an XML document would be
<A>5.0</A>
Element "A" in an XML document may have values between 2.00 and 5.00 (inclusive). Declaration <A>1.0</A> or <A>25.0</A> would not validate with the Schema.
A simpleType to constrain the length of a string data type would be
<xs:element name="A">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:minLength value="5"/>
<xs:maxLength value="10"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
A corresponding representation of "A" in an XML document would be
<A>string</A>
Declaration <A>str</A>
or
<A>stringelement</A>
would not validate with the Schema.
An element with a fixed length would be represented with simpleType as
<xs:element name="A">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:length value="5"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
An example of a corresponding representation of ?A? in an XML document would be
<A>strin</A>
An attribute with an enumeration of values would be represented with simpleType as
<xs:element name="A" >
<xs:complexType>
<xs:attribute
name="AttributeA">
<xs:simpleType>
<xs:restriction
base="xs:string">
<xs:enumeration
value="a"/>
<xs:enumeration
value="b"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
A corresponding representation in an XML document is
<A AttributeA="a"/>
"AttributeA" may have one of the values, "a" or "b."
The <xs:restriction/> element in a <xs:simpleType/> may be used to constrain the value space of data types derived from the string data type with the <xs:whitespace/> element.
The whiteSpace element is represented as <xs:whiteSpace value="preserve|collapse|replace"/>. The value of the attribute "value" of element <xs:whitespace/> may be "preserve," "collapse," or "replace."
If the value of an attribute "value" is "preserve," the whitepaces in the string data type are not changed. If the value of the attribue "value" is "replace," all occurrences of #x9(tab), #xA(linefeed), and #xD(carriage return) are replaced with a #x20(space).
An element with a whiteSpace restriction on its string value is represented in a schema as
<xs:element name="A">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:whiteSpace value="replace"/>
<xs:restriction>
</xs:simpleType>
</xs:elementA>
If the value of attribute "value" is "replace," the string in "A" in an XML document represented as
<A> Trim
String
WhiteSpace</A>
would be parsed as "Trim String White Space."
If the value of the attribute '"value" is "collapse," the leading and trailing #x20(space) are removed, and contiguous occurances of #x20(space) are merged into a single #x20(space).
If the value of the attribute "value" is "collapse," the string in "A" in an XML document represented as
<A> Trim String WhiteSpace </A>
would be parsed as "Trim String White Space".
<xs:restriction/> element <xs:pattern/> is used to constrain the value space of data types to literals which match a regular expression.
An example of a simpleType with pattern restriction would be
<xs:element name="A">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[1-5]{2}(-[5-10]{3})"/>
</xs:simpleType>
</xs:element>
An example of a corresponding representation in a XML document is
<A>25-567</A>
SimpleType with List Element
A simpleType may be used to represent a list of values in a XML document element with
<xs:list/> element.
<xs:element name="A">
<xs:simpleType>
<xs:list itemType="xs:decimal"/>
</xs:simpleType>
</xs:element>
An element with a list of values would be
<A>1.0 2 3</A>
SimpleType with Union Element
A simpleType may be used to represent a union of simpleTypes with the <xs:union/> element.
<xs:element name="A">
<xs:simpleType>
<xs:union>
<xs:simpleType>
<xs:restriction base="xs:integer"/>
</xs:simpleType>
<xs:simpleType>
<xs:restriction base="xs:string"/>
</xs:simpleType>
</xs:union>
</xs:simpleType>
</xs:element>
An element with a union of simpleTypes in an XML document would be
<A>15</A>
or
<A>element A</A>
"A" may be either an integer or a string.
ComplexType Declaration
A complexType is used to constrain elements and attributes in an XML document. It is represented with <xs:complex Type/>.
A complexType declaration may occur in the <xs:schema/> declaration or a <xs:element/> declaration.
If a complexType is declared in the <xs:schema/> element, the complexType may be referred to in the ?type? attribute of an element declaration.
<xs:schema>
<complexType name="complexTypeA">
</complexType>
<xs:element name="A" type="complexTypeA"/>
</xs:schema>
A text(PCDATA) element is represented with a complexType as
<xsd:element name="A">
<xsd:complexType mixed="true">
<xsd:complexContent>
<xsd:restriction
base="xsd:anyType">
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
The corresponding representation of a text element in an XML document is
<A>Text Element</A>
An empty element is represented with a complexType as
<xsd:element name="A">
<xsd:complexType mixed="false">
<xsd:complexContent>
<xsd:restriction
base="xsd:anyType">
</xsd:restriction>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
The corresponding representation of an empty element in an XML document is <A/>.
An unordered element set is represented with a complexType element as
<xs:element name="A" >
<xs:complexType>
<xs:all>
<xs:element name="B"
type="xs:string"/>
<xs:element name="C"
type="xs:string"/>
<xs:element name="D"
type="xs:string"/>
</xs:all>
</xs:complexType>
</xs:element>
A corresponding representation of an unordered element set in an XML document is
<A>
<D>Element D</D>
<B>Element B</B>
<C>Element C</C>
</A>
An element with a choice and a sequence is represented with a complex Type as
<xs:element name="A" >
<xs:complexType>
<xs:sequence>
<xs:choice>
<xs:element name="B"
type="xs:string"/>
<xs:element name="C"
type="xs:string"/>
</xs:choice>
<xs:element name="D"
type="xs:string"/>
</xs:sequence>
</xs:choice>
</xs:complexType>
</xs:element>
A corresponding representation of an element with a choice and sequence in a XML document is
<A>
<B>Element B</B>
<D>Element D</D>
</A>
ComplexType with Mixed Content
An element with a mixed content is represented in a complexType as
<xs:element name="A" >
<xs:complexType mixed="true">
<xs:element name="B"
type="xs:string"/>
</xs:complexType>
</xs:element>
The corresponding representation of a mixed content element in an XML document is
<A>Element Text
<B>Element B</B>
</A>
ComplexType with SimpleContent Element
Elements with character data and attributes are represented with the <xs:simpleContent/> element.
<xs:element name="A">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="attr"
type="xs:integer"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</element>
The corresponding representation of a simpleContent element in a XML document is
<A attr="15">simpleContent Type Element</A>
The simpleContent element may also be used with the <xs:restriction/> element.
<xs:element name="A">
<xs:complexType>
<xs:simpleContent>
<xs:restriction base="xs:string">
<xs:minLength value="5"/>
<xs:attribute name="a"
type="xs:integer"/>
</xs:restriction>
</xs:simpleContent>
</xs:complexType>
</element>
The corresponding representation of a simpleContent element with a restriction in a XML document is
<A a="15">Element A</A>
ComplexType with ComplexContent Element
An element with constraint on its elements and attributes may be represented with the <xs:complexContent/> element. An example of this element would be
<xs:element name="A">
<xs:complexType>
<xs:complexContent>
<xs:restriction base="anyType">
<xs:sequence>
<xs:element name="B" type="xs:string"/>
<xs:element name="C" type="xs:integer"/>
</xs:sequence>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
</xs:element>
The corresponding representation of element ?A? with complexContent in a XML document is
<A><B>Element B</B><C>25</C></A>
The complexContent element may be used to extend another complexType.
<xs:complexType name="complexTypeA">
<xs:sequence>
<xs:element name="B"/>
<xs:element name="C"/>
</xs:sequence>
</xs:complexType>
<xs:element name="A">
<xs:complexType>
<xs:complexContent>
<xs:extension base="complexTypeA">
<xs:sequence>
<xs:element name="D"/>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
</xs:element>
The corresponding representation of a complexContent element with an extension on another complexType is
<A>
<B>Element B</B>
<C>Element C</C>
<D>Element D</D>
</A>
Conclusion
This tutorial discussed the simpleType and complexType XML Schema structures, which may be used to design custom simpleType and complexType elements.
Resources:
Published October 1, 2004 Reads 19,398
Copyright © 2004 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Deepak Vohra
Deepak Vohra is a Sun Certified Java 1.4 Programmer and a Web developer.
More Stories By Ajay Vohra
Ajay Vohra is a senior solutions architect with DataSynapse Inc.
- Publishing Synergy: Blog, Twitter and Ulitzer
- Will PR Firms Survive The New Media Avalanche?
- Typhoon Ondoy (Ketsana) Hits the Philippines (Part 2)
- Confessions of a Ulitzer Addict
- My Thoughts on Ulitzer
- Cloud Computing Expo 2010 East to Attract More Than 5,000 Delegates in New York City
- GITEX TECHNOLOGY WEEK 2009 Exhibitor Profiles
- Cloud Computing Journal Continues To Publish World's Best Cloud Analysts
- Are You Comfortable With Where Your Data Sleeps at Night?
- CIA Falls for Cloud Computing in a Big Way
- Managing Cloud Applications
- Dr. Leslie Lenert of CDC Speaks on Healthcare IT
- Cloud CEOs, CTOs & SVPs to Speak at 4th International Cloud Computing Expo
- Publishing Synergy: Blog, Twitter and Ulitzer
- Will PR Firms Survive The New Media Avalanche?
- Typhoon Ondoy (Ketsana) Hits the Philippines (Part 2)
- Confessions of a Ulitzer Addict
- My Thoughts on Ulitzer
- Combining the Cloud with the Computing: Application Delivery Networks
- Ulitzer vs. Ning
- Cloud Computing Expo 2010 East to Attract More Than 5,000 Delegates in New York City
- GITEX TECHNOLOGY WEEK 2009 Exhibitor Profiles
- Cloud Computing Journal Continues To Publish World's Best Cloud Analysts
- Are You Comfortable With Where Your Data Sleeps at Night?
- Where Are RIA Technologies Headed in 2008?
- AJAX World RIA Conference & Expo Kicks Off in New York City
- JSON vs XML - A Jason vs Freddie Sequel
- Processing XML with C# and .NET
- Has the Technology Bounceback Begun?
- BPEL Processes and Human Workflow
- The Top 250 Players in the Cloud Computing Ecosystem
- Open Source Database Special Feature: An Introduction to Berkeley DB XML
- "HP's Problem Ain't the SAP Install," Says Sun's Schwartz
- eXist - An Introduction To Open Source Native XML Database
- Digitizing the Planet: Google Earth vs MSN Virtual Earth vs MapQuest
- Generating XML from Relational Database Tables



























