summaryrefslogtreecommitdiffstats
path: root/schemas/clients.xsd
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2006-01-23 22:35:40 +0000
committerNarayan Desai <desai@mcs.anl.gov>2006-01-23 22:35:40 +0000
commitedca0b698637c3fd0a70af7e4752a46afca938d3 (patch)
tree658fad717833200ccb4e3725c811ccce7c10fc8d /schemas/clients.xsd
parent8ca8a153dfc6bd81ede9f5cff1ee3f111ae053ee (diff)
downloadbcfg2-edca0b698637c3fd0a70af7e4752a46afca938d3.tar.gz
bcfg2-edca0b698637c3fd0a70af7e4752a46afca938d3.tar.bz2
bcfg2-edca0b698637c3fd0a70af7e4752a46afca938d3.zip
last step of repo switches
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1716 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'schemas/clients.xsd')
-rw-r--r--schemas/clients.xsd26
1 files changed, 26 insertions, 0 deletions
diff --git a/schemas/clients.xsd b/schemas/clients.xsd
new file mode 100644
index 000000000..f1a3ec27e
--- /dev/null
+++ b/schemas/clients.xsd
@@ -0,0 +1,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> \ No newline at end of file