summaryrefslogtreecommitdiffstats
path: root/schemas/types.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'schemas/types.xsd')
-rw-r--r--schemas/types.xsd27
1 files changed, 27 insertions, 0 deletions
diff --git a/schemas/types.xsd b/schemas/types.xsd
new file mode 100644
index 000000000..57f56e84b
--- /dev/null
+++ b/schemas/types.xsd
@@ -0,0 +1,27 @@
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xml:lang="en">
+
+ <xsd:annotation>
+ <xsd:documentation>
+ string enumeration definitions for bcfg2
+ Narayan Desai, Argonne National Laboratory
+ $Id$
+ </xsd:documentation>
+ </xsd:annotation>
+
+ <xsd:simpleType name='PackageTypeEnum'>
+ <xsd:restriction base='xsd:string'>
+ <xsd:enumeration value='deb' />
+ <xsd:enumeration value='rpm' />
+ <xsd:enumeration value='encap' />
+ <xsd:enumeration value='sysv' />
+ </xsd:restriction>
+ </xsd:simpleType>
+
+ <xsd:simpleType name='StatusEnum'>
+ <xsd:restriction base='xsd:string'>
+ <xsd:enumeration value='on'/>
+ <xsd:enumeration value='off'/>
+ </xsd:restriction>
+ </xsd:simpleType>
+
+</xsd:schema> \ No newline at end of file