summaryrefslogtreecommitdiffstats
path: root/schemas/packages.xsd
blob: 9f16a23c0441de30a866f5b05baed2b78e4598e7 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">
  
  <xsd:annotation>
    <xsd:documentation>
      packages config schema for bcfg2
      Narayan Desai, Argonne National Laboratory
    </xsd:documentation>
  </xsd:annotation>

  <xsd:simpleType name="sourceTypeEnum">
    <xsd:restriction base="xsd:string">
      <xsd:enumeration value="yum"/>
      <xsd:enumeration value="apt"/>
      <xsd:enumeration value="pac"/>
      <xsd:enumeration value="pulp"/>
    </xsd:restriction>
  </xsd:simpleType>

  <xsd:complexType name="sourceType">
    <xsd:sequence minOccurs="0" maxOccurs="unbounded">
      <xsd:element name="Component" type="xsd:string" minOccurs="0"
                   maxOccurs="unbounded"/>
      <xsd:choice>
        <xsd:element name="Blacklist" type="xsd:string" minOccurs="0"
                     maxOccurs="unbounded"/>
        <xsd:element name="Whitelist" type="xsd:string" minOccurs="0"
                     maxOccurs="unbounded"/>
      </xsd:choice>
      <xsd:element name="Arch" type="xsd:string" minOccurs="1"
                   maxOccurs="unbounded"/>
      <xsd:element name="GPGKey" type="xsd:string" minOccurs="0"
                   maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:attribute type="xsd:boolean" name="recommended"/>
    <xsd:attribute type="sourceTypeEnum" name="type"/>
    <xsd:attribute type="xsd:string" name="pulp_id"/>
    <xsd:attribute type="xsd:string" name="url"/>
    <xsd:attribute type="xsd:string" name="rawurl"/>
    <xsd:attribute type="xsd:string" name="version"/>
  </xsd:complexType>

  <xsd:complexType name="groupType">
    <xsd:choice minOccurs="1" maxOccurs="unbounded">
      <xsd:element name="Group" type="groupType"/>
      <xsd:element name="Client" type="groupType"/>
      <xsd:element name="Sources" type="sourcesType"/>
      <xsd:element name="Source" type="sourceType"/>
    </xsd:choice>
    <xsd:attribute type="xsd:string" name="name" use="required"/>
    <xsd:attribute type="xsd:boolean" name="negate"/>
  </xsd:complexType>

  <xsd:complexType name="sourcesType">
    <xsd:sequence>
      <xsd:choice minOccurs="1" maxOccurs="unbounded">
        <xsd:element name="Group" type="groupType"/>
        <xsd:element name="Client" type="groupType"/>
        <xsd:element name="Source" type="sourceType"/>
        <xsd:element name="Sources" type="sourcesType"/>
      </xsd:choice>
    </xsd:sequence>
  </xsd:complexType>

  <xsd:element name="Sources" type="sourcesType"/>
</xsd:schema>