← Prev in month
← Prev in thread
Next in thread →
Next in month →
Do your XML Schemas or Relax NG schemas have recursive definitions?
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
← Prev in month
← Prev in thread
Next in thread →
Next in month →