blob: f1a3ec27eacf9859787b264f0c602eb4f2e8e8bc (
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
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">
<xsd:annotation>
<xsd:documentation>
client schema for bcfg2
Narayan Desai, Argonne National Laboratory
$Id$
</xsd:documentation>
</xsd:annotation>
<xsd:complexType name='ClientType'>
<xsd:attribute type='xsd:string' name='name' use='required'/>
<xsd:attribute type='xsd:string' name='profile' use='required'/>
<xsd:attribute type='xsd:string' name='pingable' use='required'/>
<xsd:attribute type='xsd:string' name='pingtime' use='required'/>
</xsd:complexType>
<xsd:element name='Clients'>
<xsd:complexType>
<xsd:choice minOccurs='0' maxOccurs='unbounded'>
<xsd:element name='Client' type='ClientType'/>
</xsd:choice>
<xsd:attribute name='version' type='xsd:string'/>
</xsd:complexType>
</xsd:element>
</xsd:schema>
|