Sure, no problem:
<xsd:element name="ParentNode">
<xsd:complexType>
<xsd:sequence
maxOccurs="unbounded">
<xsd:element
minOccurs="0" maxOccurs="1" name="A"/>
<xsd:element
minOccurs="0" maxOccurs="1" name="B"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
That should do it for you...
Bryce K. Nielsen
Makers of xmlLinguist, the EDI-to-XML
Translator
----- Original Message -----
Sent: Tuesday, December 02, 2003 9:43
AM
Subject: [xml-dev] XML Schema newbie -
are multiple unordered children occurrences possible?
Using XML Schema def, is it possible to create an element with children (A
and B) where both could have multiple UNORDERED occurrences within the parent
- (A B A A B A A B B ...) ?
TIA
|