blob: 31fa9959db8962df7e32ebe11c167cb5c8fbff76 (
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
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">
<xsd:annotation>
<xsd:documentation>
package list schema for bcfg2
Narayan Desai, Argonne National Laboratory
$Id: $
</xsd:documentation>
</xsd:annotation>
<xsd:complexType name='PackageType'>
<xsd:attribute type='xsd:string' name='name'/>
<xsd:attribute type='xsd:string' name='version'/>
<xsd:attribute type='xsd:string' name='file'/>
<xsd:attribute type='xsd:string' name='verify'/>
<xsd:attribute type='xsd:string' name='simplefile'/>
</xsd:complexType>
<xsd:complexType name='LocationType'>
<xsd:choice minOccurs='0' maxOccurs='unbounded'>
<xsd:element name='Package' type='PackageType'/>
</xsd:choice>
<xsd:attribute type='xsd:string' name='uri' use='required'/>
<xsd:attribute type='xsd:string' name='type' use='required'/>
</xsd:complexType>
<xsd:element name='PackageList'>
<xsd:complexType>
<xsd:choice minOccurs='0' maxOccurs='unbounded'>
<xsd:element name='Location' type='LocationType'/>
</xsd:choice>
<xsd:attribute name='image' type='xsd:string' use='required'/>
</xsd:complexType>
</xsd:element>
</xsd:schema>
|