[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: One problem about XSD

  • From: Rick Jelliffe <rjelliffe@a...>
  • To: xml-dev@l...
  • Date: Fri, 20 Oct 2006 18:00:18 +1000

xsd assert
You might try
  <xsd:all>
     <xsd:element name="a">...</xsd:element>
     <xsd:element name="b">...</xsd:element>
     <xsd:element name="c">...</xsd:element>
     <xsd:element name="d">...</xsd:element>
     <xsd:any namespace="##any" processContents="skip" />
 </xsd:all>

If that doesn't work (I presume it doesn't) you could try unfolding it 
to give every
permutation. Or just do something like the following

   <xsd:choice maxOccurs="unbounded">
     <xsd:element name="a">...</xsd:element>
     <xsd:element name="b">...</xsd:element>
     <xsd:element name="c">...</xsd:element>
     <xsd:element name="d">...</xsd:element>
     <xsd:any namespace="##any" processContents="skip" />
 </xsd:choice>

then use a Schematron schema to enforce the single rule

<sch:rule context="whatever">
 <sch:assert test="count(a)=1">There should be one a</sch:assert>
 <sch:assert test="count(b)=1">There should be one b</sch:assert>
 <sch:assert test="count(c)=1">There should be one c</sch:assert>
 <sch:assert test="count(d)=1">There should be one d</sch:assert>
</sch:rule>

Cheers
Rick Jelliffe


Juny Yin wrote:
>
> Hi, xml-dev experts:
>  
>    Now I have one problem about XSD as the following:
> I want to define the contents model of an element, For example the 
> element is <EleParent> and currently it
> has four children elements:<a>,<b>,<c>,<d>. these children elements 
> can appear in any order under  <EleParent>.
> For extensibility any other children elements can be added to 
> <EleParent> in any order. 
>  
> How can I write the schema for this requirement?
> Who can give me the answer?
>  
> Thanks a lot.
>  
> Best regards.
>
>  
>
>
> Juny.Yin
>



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


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.