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

Re: choice, sequence, all: 'easy' XML Schema question


xml sequence

> John Graybeal wrote:
>> We are writing XML of the form:
>>
>> <element>
>>    <required_element/>
>>    <optional_element1/>
>>    <optional_element2/>
>> </element>
>>
>> We would like to specify (for example), that there can be only one of
>> required_element, only one of optional_element1, but as many as desired
>> of optional_element2.  Plus, we would like to be able to specify the
>> elements in any order.

XML Schemas is a grammar-based schema language, which brings with it
a lot of limitations as far as modeling capabilities. It has some
extensions (as does RELAX NG) to make it easier to declare some
simple structures which are otherwise cumbersome to express in regular
grammars. In particular, grammars typically use element position to key
occurrence, which makes it difficult to model when occurrences are
position-independent.

The advantage of using a grammar is that validation and processing can
be performed using automata and other techniques, which are theoretically
well understood. (How much this actually helps implementations to be good
is another matter.)

Many people who use XML Schemas and DTDs (& RELAX NG to a lesser extent)
come to the realization that they are better off only modelling in
grammars the kinds of constraints that grammars lend themselves to, and to
add additional constraints in a different language. For example, you might
model in your XML Schema the equivalent (in DTD notation) of
  <!ELEMENT element
       (required_element | optional_element | optional_element3)*>
then add the following Schematron schema to validate the other constraints"

<schema xmlns="http://www.ascc.net/xml/schematron">

  <title>Example for John Graybeal</title>

  <pattern>
    <rule context="element">

      <assert test="count(required_element)=1">
      There must be one required_element</assert>

      <assert test="count(optional_element)&lt;=1">
      There may be one optional_element</assert>

    </rule>
  </pattern>
</schema>

See Schematron.com for info on Schematron.

Cheers
Rick Jelliffe


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.