Skip to content

Commit

Permalink
some fixes to min and maxOccurs
Browse files Browse the repository at this point in the history
  • Loading branch information
H0ofy committed Mar 25, 2009
1 parent d13d8e1 commit 20f4b46
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions raidlogschema.xsd
Expand Up @@ -58,7 +58,7 @@
<element name="name" type="string" />
<element name="enter" type="positiveInteger" />
<element name="leave" type="positiveInteger" />
<element name="difficulty" type="int" />
<element name="difficulty" minOccurs="0" maxOccurs="1" type="int" />
</sequence>
</complexType>
</element>
Expand Down Expand Up @@ -93,7 +93,7 @@
<element name="times">
<complexType>
<sequence>
<element name="time" maxOccurs="unbounded" type="positiveInteger">
<element name="time" minOccurs="2" maxOccurs="unbounded" type="positiveInteger">
<complexType>
<simpleContent>
<extension base="positvieInteger">
Expand Down Expand Up @@ -127,8 +127,8 @@
<element name="name" type="string" />
<element name="time" type="positiveInteger" />
<element name="member" type="string" />
<element name="cost" type="float" />
<element name="itemid" type="int" />
<element name="cost" minOccurs="0" maxOccurs="1" type="float" />
<element name="itemid" minOccurs="0" maxOccurs="1" type="int" />
</sequence>
</complexType>
</element>
Expand Down

0 comments on commit 20f4b46

Please sign in to comment.