summaryrefslogtreecommitdiff
path: root/test/relaxng/tutor3_3.rng
blob: 66193e80ac8eec15021fc2964c04502d1fb131bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<element name="addressBook" xmlns="http://relaxng.org/ns/structure/1.0">
  <zeroOrMore>
    <element name="card">
      <attribute name="name">
        <text/>
      </attribute>
      <attribute name="email">
        <text/>
      </attribute>
      <optional>
        <attribute name="note">
          <text/>
        </attribute>
      </optional>
    </element>
  </zeroOrMore>
</element>