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

RE: Restrictions on existence of attributes?


howard bartel
Howard,

In general Xml Schema doesn't support co-occurrence constraints and the
generic answer is to use something like Schematron.  However, there are
exceptions and your case is one of them.  The following schema enforces
that one and only one of a1, a2, or a3 attributes appears in the
instance document:

<xs:element name="e1">
  <xs:complexType>
    <xs:attribute name="a1" />
    <xs:attribute name="a2" />
    <xs:attribute name="a3" />
  </xs:complexType>
  <xs:key name="uniqueAtt">
    <xs:selector xpath="."/>
    <xs:field xpath="@a1|@a2|@a3"/>
  </xs:key>
</xs:element>


Stan Kitsis
Microsoft Corporation

-----Original Message-----
From: Howard Bartel [mailto:hbartel@c...] 
Sent: Monday, June 26, 2006 5:09 PM
To: xml-dev@l...
Subject:  Restrictions on existence of attributes?

How do I specify that an element MUST have ONLY ONE of a set of possible
attributes?
I understand that there is a "choice" option but it seems that this only
applies to elements, not attributes within an element.

Thanks,
Howard


-----------------------------------------------------------------
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://www.oasis-open.org/mlmanage/index.php>


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.