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

Declaring Elements and Attributes with Built-in Datatypes

This section describes how to declare XML elements and XML attributes using built-in datatypes with a simple XSD document example.

When built-in datatypes are used to declare XML elements and XML attributes, we need to remember these rules:

  • All built-in datatype names must be qualified with namespace of xmlns:xs="http://www.w3.org/2001/XMLSchema", where "xs" can be replace with any short names.
  • All built-in datatypes are allowed to declare XML elements.
  • All built-in datatypes are allowed to declare XML attributes, except "anyType" because it is a complex datatype.
  • Declaring an XML element using a built-in datatype must be written with the "element" component like: lt;xs:element name="SomeName" type="xs:X" .../>, where "X" is the built-in datatype name.
  • Declaring an XML attribute using a built-in datatype must be written with the "attribute" component like: lt;xs:attribute name="SomeName" type="xs:X" .../>, where "X" is the built-in datatype name.

Here is a simple XSD document example on how to declare XML elements and XML attributes using built-in datatypes:

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

 <!-- Using built-in datatype to declare an element -->
 <xs:element name="message" type="xs:string"/>

 <xs:element name="profile">
  <xs:complexType>
   <!-- Using built-in datatypes to declare attributes -->
   <xs:attribute name="name" type="xs:string"/>
   <xs:attribute name="age" type="xs:nonNegativeInteger"/>
   <xs:attribute name="birthDate" type="xs:date"/>
  </xs:complexType>
 </xs:element>

</xs:schema>

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

 Overview of XSD 1.1 Built-in Datatypes

 List of Built-in Datatypes

 Datatypes, Values and Representations

 Datatypes, Values and Representations - Example

 Built-in Datatypes Lexical Representation Examples

Declaring Elements and Attributes with Built-in Datatypes

 Defining New Datatypes with Built-in Datatypes

 "anyType" Built-in Datatype Values and Representations

 "anySimpleType" Built-in Datatype Values and Representations

 "anyAtomicType" Built-in Datatype Values and Representations

 "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

 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

Declaring Elements and Attributes with Built-in Datatypes - Updated in 2014, by Dr. Herong Yang