[
Lists Home |
Date Index |
Thread Index
]
Hi!
<xs:complexType name="BasketType">
<xs:sequence maxOccurs="unbounded">
<xs:choice>
<xs:element name="Orange" minOccurs="0" maxoccurs="unbounded"/>
<xs:element name="Apple" minOccurs="0" maxoccurs="unbounded"/>
</xs:choice>
</xs:sequence>
</xs:complexType>
mean
>-----Original Message-----
>From: florian [mailto:csshsh@structbench.com]
>Sent: Wednesday, June 18, 2003 1:04 PM
>To: xml-dev@lists.xml.org
>Subject: [xml-dev] xml schema question
>
>
>hi!
>
>how can i define in xml schema that the element 'basket'
>can hold an unlimited amount of 'apple' and 'oranges'
>elements, in any mixed order.
>
>so it could be:
>
><basket>
> <orange />
></basket>
>
>or
>
><basket>
> <orange />
> <orange />
> <orange />
> <apple />
></basket>
>
>and so on..
>
>any advice? i've been seeking with google, but didnt find any
>solution for it.
>
>thanks alot!
>
>ciao!
>florian
>
>
>-----------------------------------------------------------------
>The xml-dev list is sponsored by XML.org <http://www.xml.org>,
>an initiative of OASIS <http://www.oasis->open.org>
>
>The list
>archives are at
>http://lists.xml.org/archives/xml-dev/
>
>To subscribe or unsubscribe from this list use the subscription
>manager: <http://lists.xml.org/ob/adm.pl>
>
>
|