ZVON
>
References
>
Zvon Example Repository
Intro
/
Search
/
ZVON
Example repository:
index
|
categories
|
search
All
>
Relax NG
>
Simplification - number of child elements
> Test 149
Previous sample
|
Next sample
Author:
James Clark
Origin:
Testsuite
for
Relax NG
Elements
Attributes
choice
element
name
|
empty
ZVON comment:
Element "foo" must have just one "bar" element, nothing else.
Correct schema
<
element
name
="foo" xmlns:html="
http://www.w3.org/TR/REC-html40
" xmlns="
http://relaxng.org/ns/structure/1.0
" >
<
choice
>
<
element
name
="bar">
<
empty
/>
</
element
>
</
choice
>
</
element
>
Valid document:
<foo>
<bar/>
</foo>
Invalid document:
<foo/>