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

RE: Dependencies between attributes and elements

From: Michael Kay <mike@saxonica.com>
Date: Mon, 06 Aug 2007 17:16:26 +0100
To: 'João Cruz Morais' <napalm@spiderfish.net>, xmlschema-dev@w3.org
Message-id: <012d01c7d845$239467e0$313410ac@turtle>
RE: Dependencies between attributes and elements

> Given this simple xml:
> 
> <vector size="2">
>   <value>1</value>
>   <value>3</value>
> </vector>
> 
> Is there a way to validate the number of <value> elements 
> according to the vector size attribute?
> I'm tempted to say no, so should I make this kind of 
> validation inside my program?

XML Schema 1.1 will add this capability using assertions:

<xs:assert test="count(value) = @size"/>

Meanwhile you have to resort to other approaches, e.g. your own validation
code in XSLT, or Schematron.

Michael Kay
http://www.saxonica.com/
Received on Monday, 6 August 2007 16:16:42 GMT

Subscribe to the Stylus Scoop newsletter for helpful XML tips and tutorials.
Email
First Name
Last Name
Company

Download Stylus Studio 6 XML Enterprise Edition

Subscribe in XML format
RSS 2.0
Atom 0.3
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-2007 All Rights Reserved.