summaryrefslogtreecommitdiffstats
path: root/schemas/deps.xsd
blob: 58d19f699bca3b65c9eb07fc3e77b24f7b065dbc (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">
  <xsd:annotation>
    <xsd:documentation>
      dependency schema for bcfg2
      Narayan Desai, Argonne National Laboratory
    </xsd:documentation>
  </xsd:annotation>

  <xsd:complexType name='Dependency'>
    <xsd:choice minOccurs='0' maxOccurs='unbounded'>
      <xsd:element name='Package' type='PackageStructure'/>
      <xsd:element name='Service' type='Dependency'/>
      <xsd:element name='Path' type='Dependency'/>
    </xsd:choice>
    <xsd:attribute type='xsd:string' name='name' use='required'/>
  </xsd:complexType>

  <xsd:complexType name='DepsGroupType'>
    <xsd:choice minOccurs='0' maxOccurs='unbounded'>
      <xsd:element name='Package' type='PackageStructure'/>
      <xsd:element name='Service' type='Dependency'/>
      <xsd:element name='Path' type='Dependency'/>
      <xsd:element name='Group' type='DepsGroupType'/>
    </xsd:choice>
    <xsd:attribute type='xsd:string' name='name' use='required'/>
  </xsd:complexType>

  <xsd:element name='Dependencies'>
    <xsd:complexType>
      <xsd:choice minOccurs='0' maxOccurs='unbounded'>
        <xsd:element name='Package' type='PackageStructure'/>
        <xsd:element name='Service' type='Dependency'/>
        <xsd:element name='Path' type='Dependency'/>
        <xsd:element name='Group' type='DepsGroupType'/>
      </xsd:choice>
      <xsd:attribute type='xsd:string' name='priority' />
    </xsd:complexType>
  </xsd:element>
</xsd:schema>