summaryrefslogtreecommitdiffstats
path: root/schemas/decisions.xsd
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2008-10-08 20:38:28 +0000
committerNarayan Desai <desai@mcs.anl.gov>2008-10-08 20:38:28 +0000
commit3e7d63c4b27057676f02fa505ef108f45a81472f (patch)
treee16758c61b43a417ba0c4c2c06f944e394da33c9 /schemas/decisions.xsd
parent26f2687927ed180c82ed0d60ce5fb8fa90be65d0 (diff)
downloadbcfg2-3e7d63c4b27057676f02fa505ef108f45a81472f.tar.gz
bcfg2-3e7d63c4b27057676f02fa505ef108f45a81472f.tar.bz2
bcfg2-3e7d63c4b27057676f02fa505ef108f45a81472f.zip
Add schema support for new Decisions plugin
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@4934 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'schemas/decisions.xsd')
-rw-r--r--schemas/decisions.xsd23
1 files changed, 23 insertions, 0 deletions
diff --git a/schemas/decisions.xsd b/schemas/decisions.xsd
new file mode 100644
index 000000000..57ee71672
--- /dev/null
+++ b/schemas/decisions.xsd
@@ -0,0 +1,23 @@
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">
+
+ <xsd:annotation>
+ <xsd:documentation>
+ decision list schema for bcfg2
+ Narayan Desai, Argonne National Laboratory
+ $Id$
+ </xsd:documentation>
+ </xsd:annotation>
+
+<xsd:element name='Decisions'>
+ <xsd:complexType>
+ <xsd:choice minOccurs='0' maxOccurs='unbounded'>
+ <xsd:element name='Decision'>
+ <xsd:complexType>
+ <xsd:attribute name='type' type='xsd:string' use='required'/>
+ <xsd:attribute name='name' type='xsd:string' use='required'/>
+ </xsd:complexType>
+ </xsd:element>
+ </xsd:choice>
+ </xsd:complexType>
+ </xsd:element>
+</xsd:schema>