ZVON > References > Zvon Example Repository
Example repository: index | categories | search

All > Relax NG > Simplification - number of child elements > Test 137

Previous sample | Next sample

Author: James Clark
Origin: Testsuite for Relax NG


ElementsAttributes
elementname |
list
value

ZVON comment: Document 2 - this is not a list which consists of "x", "y", and "z".

Correct schema

<element name="foo" xmlns:html="http://www.w3.org/TR/REC-html40" xmlns="http://relaxng.org/ns/structure/1.0" >
     <list>
          <value>x</value>
          <value>y</value>
          <value>z</value>
     </list>
</element>


Valid document:
<foo>x y z</foo>

Invalid document:
<foo>x</foo>