summaryrefslogtreecommitdiffstats
path: root/schemas/grouppatterns.xsd
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2011-09-20 09:52:38 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2011-09-20 09:52:38 -0400
commit8a141b864eee1ead61409fc684bcdbfd1294f7fa (patch)
treefe922a0ec8bab40409c25f4552be9cf0e4f91075 /schemas/grouppatterns.xsd
parent88c99b4af0840bccba5f2284a904c4034f7351bd (diff)
downloadbcfg2-8a141b864eee1ead61409fc684bcdbfd1294f7fa.tar.gz
bcfg2-8a141b864eee1ead61409fc684bcdbfd1294f7fa.tar.bz2
bcfg2-8a141b864eee1ead61409fc684bcdbfd1294f7fa.zip
schema fixes
Diffstat (limited to 'schemas/grouppatterns.xsd')
-rw-r--r--schemas/grouppatterns.xsd23
1 files changed, 12 insertions, 11 deletions
diff --git a/schemas/grouppatterns.xsd b/schemas/grouppatterns.xsd
index 712d21f6c..f2bdceccd 100644
--- a/schemas/grouppatterns.xsd
+++ b/schemas/grouppatterns.xsd
@@ -7,20 +7,21 @@
</xsd:documentation>
</xsd:annotation>
- <xsd:complexType name='PatternType'>
- <xsd:choice minOccurs='1' maxOccurs='unbounded'>
+ <xsd:complexType name="PatternType">
+ <xsd:choice minOccurs="1" maxOccurs="unbounded">
<xsd:element name="NameRange" type="xsd:string"/>
<xsd:element name="NamePattern" type="xsd:string"/>
- <xsd:element name="Group" type="xsd:string" minOccurs='1'
- maxOccurs='unbounded'/>
+ <xsd:element name="Group" type="xsd:string" minOccurs="1"
+ maxOccurs="unbounded"/>
</xsd:choice>
</xsd:complexType>
- <xsd:element name='GroupPatterns'>
- <xsd:complexType>
- <xsd:choice minOccurs='1' maxOccurs='unbounded'>
- <xsd:element name='GroupPattern' type='PatternType'/>
- </xsd:choice>
- </xsd:complexType>
- </xsd:element>
+ <xsd:complexType name="GroupPatternsType">
+ <xsd:choice minOccurs="1" maxOccurs="unbounded">
+ <xsd:element name="GroupPattern" type="PatternType"/>
+ <xsd:element name="GroupPatterns" type="GroupPatternsType"/>
+ </xsd:choice>
+ </xsd:complexType>
+
+ <xsd:element name="GroupPatterns" type="GroupPatternsType"/>
</xsd:schema>