[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]
Do your XML Schemas or Relax NG schemas have recursive definitions?
- From: "Costello, Roger L." <costello@mitre.org>
- To: "xml-dev@lists.xml.org" <xml-dev@lists.xml.org>
- Date: Fri, 9 Dec 2011 20:47:07 +0000
Hi Folks,
Here are two examples of recursive definitions:
<xsd:element name="Door">
<xsd:complexType>
<xsd:sequence>
<xsd:element ref="Door" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:complexType name="SectionType">
<xsd:sequence>
<xsd:element name="Section" type="SectionType" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
<xsd:element name="Section" type="SectionType" />
Have you created any schemas with recursive definitions? I'd like to see them please (the recursive parts).
/Roger
[Date Prev]
| [Thread Prev]
| [Thread Next]
| [Date Next]
--
[Date Index]
| [Thread Index]