summaryrefslogtreecommitdiffstats
path: root/schemas/clients.xsd
blob: 3b98c5fc34377b9c01e00ddf53b4f9d88461d40e (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
<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
    </xsd:documentation>
  </xsd:annotation>

  <xsd:import namespace="http://www.w3.org/XML/1998/namespace"
              schemaLocation="xml.xsd"/>

  <xsd:complexType name='ClientType'>
    <xsd:choice minOccurs='0' maxOccurs='unbounded'>
      <xsd:element name='Alias'>
        <xsd:complexType>
          <xsd:attribute type='xsd:string' name='name' use='required'/>
          <xsd:attribute type='xsd:string' name='address'/>
        </xsd:complexType>
      </xsd:element>
    </xsd:choice>
    <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='optional'/>
    <xsd:attribute type='xsd:string' name='auth' use='optional'/>
    <xsd:attribute type='xsd:string' name='uuid'/>
    <xsd:attribute type='xsd:string' name='password'/>
    <xsd:attribute type='xsd:string' name='location'/>
    <xsd:attribute type='xsd:boolean' name='floating'/>
    <xsd:attribute type='xsd:boolean' name='secure'/>
    <xsd:attribute type='xsd:string' name='pingtime' use='optional'/>
    <xsd:attribute type='xsd:string' name='address'/>
    <xsd:attribute type='xsd:string' name='version'/>
  </xsd:complexType>

  <xsd:complexType name='ClientsType'>
    <xsd:choice minOccurs='0' maxOccurs='unbounded'>
      <xsd:element name='Client' type='ClientType'/>
      <xsd:element name='Clients' type='ClientsType'/>
    </xsd:choice>
    <xsd:attribute name='version' type='xsd:string'/>
    <xsd:attribute ref="xml:base"/>
  </xsd:complexType>

  <xsd:element name='Clients' type='ClientsType'/>
</xsd:schema>