Here's how to empower instance document authors to create their own root element

Hi Folks,

It is not necessary to declare a root element in your XML Schema. You can empower instance document authors to create their own root element. Here's how:

1. In the XML Schema create a complexType for the root element, but don't declare a root element.

2. Instance document authors create their own root element name. They add this attribute onto their root element: xsi:type

This is a powerful technique. The XML Schema is versatile since it can be repurposed for different things by instance document authors.

Example: Here is an XML Schema. Notice that there is no declaration of a root element, there is only a global complexType (Books):

--------------------------------------------------
                     Books.xsd
--------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> 
    
    <xs:complexType name="Books">
        <xs:sequence>
            <xs:element name="Book" maxOccurs="unbounded">
                <xs:complexType>
                    <xs:sequence>
                        <xs:element name="Title" type="xs:string"/>
                        <xs:element name="Author" type="xs:string"/>
                        <xs:element name="Date" type="xs:gYear"/>
                        <xs:element name="ISBN" type="xs:string"/>
                        <xs:element name="Publisher" type="xs:string"/>
                    </xs:sequence>
                </xs:complexType>
            </xs:element>
        </xs:sequence>
    </xs:complexType>
    
</xs:schema> 

Now each instance document author can name the root element anything he wants. One person may name the root element BookStore. Another may name the root element Library. And a third may name the root element Inventory. And so forth. 

This ability to repurpose the XML Schema is powerful.

Here is one instance document, where the root element is named BookStore:

--------------------------------------------------
                     BookStore.xml
--------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<BookStore xsi:type="Books"
                      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  
  <Book>
    <Title>My Life and Times</Title>
    <Author>Paul McCartney</Author>
    <Date>1998</Date>
    <ISBN>1-56592-235-2</ISBN>
    <Publisher>McMillan Publishing</Publisher>
  </Book>
  <Book>
    <Title>Illusions The Adventures of a Reluctant Messiah</Title>
    <Author>Richard Bach</Author>
    <Date>1977</Date>
    <ISBN>0-440-34319-4</ISBN>
    <Publisher>Dell Publishing Co.</Publisher>
  </Book>
  <Book>
    <Title>The First and Last Freedom</Title>
    <Author>J. Krishnamurti</Author>
    <Date>1954</Date>
    <ISBN>0-06-064831-7</ISBN>
    <Publisher>Harper &amp; Row</Publisher>
  </Book>
    
</BookStore>

/Roger

Received on Sunday, 14 October 2012 13:00:17 UTC