summaryrefslogtreecommitdiff
path: root/test/relaxng/choice0.rng
blob: 99526e188e657188afd14cbac8aae83c7aa01a01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0"?>
<element xmlns="http://relaxng.org/ns/structure/1.0" name="device">
    <choice>
      <group>
	<attribute name="link">
	  <value>ethernet</value>
	</attribute>
	<optional>
	  <element name="ethernet-element">
	    <text/>
	  </element>
	</optional>
      </group>
      <group>
	<attribute name="link">
	  <value>serial</value>
	</attribute>
	<optional>
	  <element name="serial-element">
	    <text/>
	  </element>
	</optional>
      </group>
    </choice>
</element>