diff options
Diffstat (limited to 'schemas')
-rw-r--r-- | schemas/grouppatterns.xsd | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/schemas/grouppatterns.xsd b/schemas/grouppatterns.xsd index 36880d0a5..712d21f6c 100644 --- a/schemas/grouppatterns.xsd +++ b/schemas/grouppatterns.xsd @@ -8,18 +8,11 @@ </xsd:annotation> <xsd:complexType name='PatternType'> - <xsd:choice maxOccurs='1' minOccurs='1'> - <xsd:sequence> - <xsd:element name="NamePattern" type="xsd:string" minOccurs='1' - maxOccurs='1'/> - <xsd:element name="Group" type="xsd:string" minOccurs='1' - maxOccurs='unbounded'/> - </xsd:sequence> - <xsd:sequence> - <xsd:element name="NameRange" type="xsd:string"/> - <xsd:element name="Group" type="xsd:string" minOccurs='1' - maxOccurs='unbounded'/> - </xsd:sequence> + <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:choice> </xsd:complexType> |