W3C

ElementMaxOccursUnbounded Example

  <xs:element name="publications" type="ex:Publications"/>

  <xs:complexType name="Publications">
        <xs:sequence>
          <xs:element name="day" type="xs:string" maxOccurs="unbounded"/>
        </xs:sequence>
      </xs:complexType>

The example schema [ElementMaxOccursUnbounded.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
ElementMaxOccursUnbounded01
ElementMaxOccursUnbounded02

  <ex:publications>
        <ex:day>2002-09-24</ex:day>
        <ex:day>2003-04-14</ex:day>
        <ex:day>2004-03-31</ex:day>
        <ex:day>2005-06-04</ex:day>
        <ex:day>2006-07-03</ex:day>
      </ex:publications>
  <ex:publications>
        <ex:day>2006-01-26</ex:day>
      </ex:publications>

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$