OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

 


 

   Re: [xml-dev] Sequence of elements

[ 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
------------------------------------------------------------------------







 

News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 2001 XML.org. This site is hosted by OASIS