summaryrefslogtreecommitdiffstats
path: root/schemas/pathentry.xsd
diff options
context:
space:
mode:
authorSol Jerome <solj@ices.utexas.edu>2009-09-26 22:37:59 +0000
committerSol Jerome <solj@ices.utexas.edu>2009-09-26 22:37:59 +0000
commitf69841e038ec81a98f6b3bf870b7ee4ad0e4a5af (patch)
treefdb634e34cc397f120cf3d5cae0607aead7ff528 /schemas/pathentry.xsd
parent1f9e1bbb09409ee70edef1ecdc67580c56668efd (diff)
downloadbcfg2-f69841e038ec81a98f6b3bf870b7ee4ad0e4a5af.tar.gz
bcfg2-f69841e038ec81a98f6b3bf870b7ee4ad0e4a5af.tar.bz2
bcfg2-f69841e038ec81a98f6b3bf870b7ee4ad0e4a5af.zip
schema: Add schema for Path entries
Signed-off-by: Sol Jerome <solj@ices.utexas.edu> git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5466 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'schemas/pathentry.xsd')
-rw-r--r--schemas/pathentry.xsd17
1 files changed, 17 insertions, 0 deletions
diff --git a/schemas/pathentry.xsd b/schemas/pathentry.xsd
new file mode 100644
index 000000000..5e129fa75
--- /dev/null
+++ b/schemas/pathentry.xsd
@@ -0,0 +1,17 @@
+<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:include schemaLocation="types.xsd"/>
+
+ <xsd:complexType name='PathEntry'>
+ <xsd:attribute type='xsd:string' name='name' use='required'/>
+ <xsd:attribute name='type' use='required' type='PathTypeEnum' />
+ </xsd:complexType>
+</xsd:schema>