As a follow up, this may work for you:
<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="
http://relaxng.org/ns/structure/1.0">
<start>
<element name="root">
<oneOrMore>
<choice>
<element name="collection">
<value>all</value>
</element>
<zeroOrMore>
<element name="collection">
<text/>
</element>
</zeroOrMore>
<zeroOrMore>
<text/>
</zeroOrMore>
</choice>
</oneOrMore>
</element>
</start>
</grammar>