summaryrefslogtreecommitdiffstats
path: root/schemas/pathentry.xsd
blob: e564aaa90148b4ddb56a951fda3a9542221a881d (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
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">

  <xsd:annotation>
    <xsd:documentation>
      path entry schema for bcfg2
      Narayan Desai, Argonne National Laboratory
      $Id$
    </xsd:documentation>
  </xsd:annotation>

  <xsd:complexType name='PathEntry'>
    <xsd:attribute type='xsd:string' name='name' use='required'/>
    <xsd:attribute type='xsd:string' name='altsrc' />
  </xsd:complexType>

  <xsd:complexType name='BoundPathEntry'>
    <xsd:attribute type='xsd:string' name='name' use='required'/>
    <xsd:attribute type='xsd:string' name='group' use='optional'/>
    <xsd:attribute type='xsd:string' name='owner' use='optional'/>
    <xsd:attribute type='xsd:string' name='perms' use='optional'/>
    <xsd:attribute type='xsd:string' name='type' use='optional'/>
    <xsd:attribute type='xsd:string' name='altsrc' use='optional'/>
  </xsd:complexType>
</xsd:schema>