ISSUE-78: fixed length repetition

ISSUE-78: fixed length repetition

http://www.w3.org/2005/06/tracker/databinding/issues/78

Raised by: Paul Downey
On product: Advanced

proposed advanced pattern, used to express fixed length arrays:

<xs:element name="foo" type="bar" minOccurs="n" maxOccurs="n" />

example instance:

  <foo>one</foo>
  <foo>two</foo>
  <foo>three</foo>

pattern definition:

  .//xs:element[@minOccurs = @maxOccurs and @minOccurs gt 1]
/(@minOccurs, @maxOccurs) 

Received on Thursday, 26 October 2006 08:12:57 UTC