summaryrefslogtreecommitdiffstats
path: root/schemas/info.xsd
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2011-04-08 13:56:44 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2011-04-08 13:56:44 -0400
commit9b27384d1218cbab85612e7d162edc23ee0f5617 (patch)
tree8f40a13b5e2fa23e1b616db589e3d933de8393c3 /schemas/info.xsd
parent3798e8c5c0544ce62ab2c8751ddb21bbd4726d1c (diff)
downloadbcfg2-9b27384d1218cbab85612e7d162edc23ee0f5617.tar.gz
bcfg2-9b27384d1218cbab85612e7d162edc23ee0f5617.tar.bz2
bcfg2-9b27384d1218cbab85612e7d162edc23ee0f5617.zip
further schema fixes
Diffstat (limited to 'schemas/info.xsd')
-rw-r--r--schemas/info.xsd9
1 files changed, 5 insertions, 4 deletions
diff --git a/schemas/info.xsd b/schemas/info.xsd
index 4028f5c15..983513d66 100644
--- a/schemas/info.xsd
+++ b/schemas/info.xsd
@@ -11,19 +11,20 @@
<xsd:complexType name='InfoType'>
<xsd:attribute name='encoding' type='xsd:string'/>
<xsd:attribute name='group' type='xsd:string'/>
- <xsd:attribute name='important' type='xsd:string'/>
+ <xsd:attribute name='important' type='xsd:boolean'/>
<xsd:attribute name='owner' type='xsd:string'/>
<xsd:attribute name='perms' type='xsd:string'/>
- <xsd:attribute name='paranoid' type='xsd:string'/>
+ <xsd:attribute name='paranoid' type='xsd:boolean'/>
</xsd:complexType>
<xsd:complexType name='GroupType'>
<xsd:choice minOccurs='1' maxOccurs='1'>
<xsd:element name='Info' type='InfoType'/>
- <xsd:element name='Group' type='GroupType' minOccurs='0' maxOccurs='unbounded'/>
+ <xsd:element name='Group' type='GroupType' minOccurs='0'
+ maxOccurs='unbounded'/>
</xsd:choice>
<xsd:attribute type='xsd:string' name='name' use='required'/>
- <xsd:attribute type='xsd:string' name='negate' />
+ <xsd:attribute type='xsd:boolean' name='negate' />
</xsd:complexType>
<xsd:element name='FileInfo'>