[XMLSCHEMA-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Defining recursive elements?

From: Shlomo Yona <S.Yona@F5.com>
Date: Wed, 16 May 2007 13:59:46 -0700
Message-ID: <B546C312A37C12438A22154026CDC7E00159239A@exchfive.olympus.f5net.com>
To: "Todd Moon" <tmrfcm@gmail.com>, <xmlschema-dev@w3.org>
RE: Defining recursive elements?
It sounds like something like this:

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
   <xsd:element name="part">
      <xsd:complexType>
         <xsd:element ref="part" minOccurs="0" maxOccurs="unbounded"/>
         <xsd:attribute name="serial" type="xsd:string"/>
      </xsd:complexType>
   </xsd:element>
</xsd:schema>
 
Shlomo

________________________________

From: xmlschema-dev-request@w3.org on behalf of Todd Moon
Sent: Wed 5/16/2007 10:55 AM
To: xmlschema-dev@w3.org
Subject: Defining recursive elements?




I'm not sure if the subject is accurate, but I'm trying to author an
XSD that allows a certain complex type to be nested within itself to
an arbitrary depth.

A simple example would look like this:

<?xml version="1.0" encoding="utf-8" ?>
<part serial="00000001234">
  <part serial="00000001234">
    <part serial="00000001234">
    </part>
    <part serial="00000001234">
    </part>
    <part serial="00000001234">
      <part serial="00000001234">
      </part>
      <part serial="00000001234">
        <part serial="00000001234">
        </part>
      </part>
    </part>
  </part>
  <part serial="00000001234">
  </part>
</part>

Any "part" can contain any number of other parts.

Is it possible to validate this structure without putting an arbitrary
limit on the maximum depth?
Received on Wednesday, 16 May 2007 21:00:05 GMT

Subscribe to the Stylus Scoop newsletter for helpful XML tips and tutorials.
Email
First Name
Last Name
Company

Download Stylus Studio 6 XML Enterprise Edition

Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2007 All Rights Reserved.