XML.orgXML.org
FOCUS AREAS |XML-DEV |XML.org DAILY NEWSLINK |REGISTRY |RESOURCES |ABOUT
OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]
Re: [xml-dev] <xs:all> with different elements in any order

Hi Mukul,

You can write that as

(a+, b, (a|b)*) | (b+, a, (a|b)*)

Best Regards,
George
---------------------------------------------------------------------
George Cristian Bina - http://aboutxml.blogspot.com/
<oXygen/> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com


Mukul Gandhi wrote:
> Hi all,
>    I want to validate an XML instance like following with W3C XML Schema.
> 
> <OBJECTS>
>   <!-- A & Bs in any order and unbounded. B can be before A also. -->
>   <A>ddjhfj</A>
>   <B>hghgh</B>
>   <!-- more A & Bs -->
> </OBJECTS>
> 
> I want a Schema like (which is invalid) following.
> 
> <xs:element name="OBJECTS">
>    <xs:complexType>
>        <xs:all>
>           <xs:element name="A" type="xs:string" maxOccurs="unbounded" />
>           <xs:element name="B" type="xs:string" maxOccurs="unbounded" />
>        </xs:all>
>     </xs:complexType>
> </xs:element>
> 
> But this is wrong, because in this Schema maxOccurs can be 0 or 1.
> 
> Could somebody please suggest a Schema for this requirement.
> 


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


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

Copyright 1993-2007 XML.org. This site is hosted by OASIS