[
Lists Home |
Date Index |
Thread Index
]
Manos said:
> Just nest a choice in a sequence like:
>
>
> <xs:element name="lala">
> <xs:complexType>
> <xs:sequence minOccurs="0" maxOccurs="unbounded">
> <xs:choice>
> <xs:element name="foo"/>
> <xs:element name="bar"/>
> </xs:choice>
> </xs:sequence>
> </xs:complexType>
> </xs:element>
Note that you can also just replace the sequence by a choice:
<xs:element name="lala">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="foo"/>
<xs:element name="bar"/>
</xs:choice>
</xs:complexType>
</xs:element>
Eric
--
Freelance consulting and training.
http://dyomedea.com/english/
------------------------------------------------------------------------
Eric van der Vlist http://xmlfr.org http://dyomedea.com
(W3C) XML Schema ISBN:0-596-00252-1 http://oreilly.com/catalog/xmlschema
------------------------------------------------------------------------
|