XSD Tutorials - Herong's Tutorial Examples - Version 5.10, by Dr. Herong Yang

Using Shorthand for "complexContent" with "restriction"

This section describes a tutorial example on how to use the shorthand format for a complextType definition using a complexContent with a restriction on anyType.

As you can see from previous sections, many complex elements are defined as "complexContent" with "restriction" on "anyType". XML Schema offers a shorthand format of:

 <xs:complexType ...>
    (all, choice or sequence component) 
    <xs:attribute .../>
    ...
 </xs:complexType>

for the following "complexType" definition:

 <xs:complexType>
  <xs:complexContent ...>
   <xs:restriction base="xs:anyType">
    <xs:sequence>
    (all, choice or sequence component) 
    <xs:attribute .../>
    ...
   </xs:restriction>
  </xs:complexContent>
 </xs:complexType>
 </xs:element>

Now we can rewrite the schema from the previous section complexType_everything.xsd using the shorthand format as complexType_everything_shorthand.xsd

<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<!-- complexType_everything_shorthand.xsd
 - Copyright (c) 2013, HerongYang.com, All Rights Reserved.
-->

 <xs:element name="form">
 <xs:complexType mixed="true">
    <xs:sequence>
    <xs:element name="input" type="xs:anyType" maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attribute name="action" type="xs:string"/>
 </xs:complexType>
 </xs:element>

</xs:schema>

Let's try this schema on the sample XML document, complexType_no_text_content.xml, to see if it works in the same way as complexType_everything.xsd

>type complexType_everything.xml

<?xml version="1.0"?>
<form action="submit.pl" note="Tutorials">
 Your Name: <input type="text"/>
 <input type="submit"/>
</form>


>java XsdSchemaValidator complexType_everything_shorthand.xsd 
   complexType_everything.xml

Error:
   Line number: 2
   Column number: 43
   Message: cvc-complex-type.3.2.2: Attribute 'note' is not 
   allowed to appear in element 'form'.

Failed with errors: 1

Last update: 2013.

Table of Contents

 About This Book

 Introduction to XML Schema

 XML Editor and Schema Processor - XMLPad

 Java API for XML Processing - JAXP

 JAXP - XML Schema (XSD) Validation

 Xerces2 Java Parser - Java API of XML Parsers

 Using Xerces2 Java API

 XML Schema Language - Basics

 Introduction of XSD Built-in Datatypes

 "string" and Its Derived Datatypes

 "decimal" and Its Derived Datatypes

 "dateTime" and Its Related Datatypes

 Miscellaneous Built-in Datatypes

 Facets, Constraining Facets and Restriction Datatypes

 "simpleType" - Defining Your Own Simple Datatypes

Complex Element Declaration

 Complex Element vs. Simple Element

 Declaring Empty Elements

 Declaring Simple Elements

 Declaring Complex Elements with Simple Content

 Declaring Complex Elements with Attributes Only

 Declaring Complex Elements with Sub Elements Only

 Declaring Complex Elements with Attributes and Sub Elements

 Declaring Complex Elements with Attributes, Sub Elements & Text Content

Using Shorthand for "complexContent" with "restriction"

 Identity-Constraints: unique, key and keyref

 Assertion as Custom Validation Rules

 XML Schema Location and Namespace in XML Documents

 Overriding Element Types in XML Documents

 Linking Multiple Schema Documents Together

 Glossary

 References

 PDF Printing Version

Using Shorthand for "complexContent" with "restriction" - Updated in 2014, by Dr. Herong Yang