W3C

AllElement Example

  <xs:element name="allElement" type="ex:AllElement"/>

  <xs:complexType name="AllElement">
        <xs:all>
          <xs:element name="element1" type="xs:string"/>
          <xs:element name="element2" type="xs:string"/>
          <xs:element name="element3" type="xs:string"/>
          <xs:element name="element4" type="xs:string"/>
          <xs:element name="element5" type="xs:string"/>
        </xs:all>
      </xs:complexType>

The example schema [AllElement.xsd] has been classified as being "" as it exhibits the following patterns:

Status Name XPath

To facilitate testing, the example schema element has been wrapped in the following descriptions:

The following valid instance documents are provided:

Instance Validity
AllElement01

  <ex:allElement>
        <ex:element1>element1</ex:element1>
        <ex:element2>element2</ex:element2>
        <ex:element3>element3</ex:element3>
        <ex:element4>element4</ex:element4>
        <ex:element5>element5</ex:element5>
      </ex:allElement>

This document was produced by the W3C XML Schema Patterns for Databinding Working Group. Comments on this document may be sent to the public public-xsd-databinding-comments@w3.org mailing list (public archive).

Generated from examples.xml $Date$