summaryrefslogtreecommitdiffstats
path: root/policy_collection/policy_collection.rng
blob: 7ab94a8d2c0bacbf99da3522ff380282b17624f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<grammar xmlns="http://relaxng.org/ns/structure/1.0"
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"
xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">
  <start>
    <element name="policy_collection">
      <oneOrMore>
      <element name="template">
        <element name="name">
          <text/>
        </element>
        <element name="ordered_policies">
          <oneOrMore>
            <element name="file">
              <text/>
            </element>
          </oneOrMore>
        </element>
      </element>
      </oneOrMore>
    </element>
  </start>
</grammar>