diff options
| author | Andrew Branson <andrew.branson@cern.ch> | 2013-03-27 11:46:01 +0100 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@cern.ch> | 2013-03-27 11:46:01 +0100 |
| commit | 5dc9412157462c68ae184e00985693489eedf61a (patch) | |
| tree | 21c0a3b85c26e81089838cbecfaf4a82226af85d | |
| parent | 19dffc5b88d2eeee833b7e469297a6ce535c7183 (diff) | |
Module didn't allow empty Aggregations
| -rw-r--r-- | src/main/resources/boot/OD/Module.xsd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/boot/OD/Module.xsd b/src/main/resources/boot/OD/Module.xsd index 2fb4e43..8351e65 100644 --- a/src/main/resources/boot/OD/Module.xsd +++ b/src/main/resources/boot/OD/Module.xsd @@ -118,7 +118,7 @@ </xs:annotation>
<xs:complexType>
<xs:sequence>
- <xs:element name="AggregationMember" maxOccurs="unbounded">
+ <xs:element name="AggregationMember" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="Geometry" minOccurs="1"
|
