Skip to content

Commit

Permalink
Set minOccurs=0 for schema validation
Browse files Browse the repository at this point in the history
  • Loading branch information
luk1337 committed Oct 1, 2024
1 parent 4dbe520 commit 9ac3000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifest.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<xs:element name="manifest">
<xs:complexType>
<xs:sequence>
<xs:element name="project" maxOccurs="unbounded" type="project"/>
<xs:element name="project" minOccurs="0" maxOccurs="unbounded" type="project"/>
</xs:sequence>
</xs:complexType>
</xs:element>
Expand Down

0 comments on commit 9ac3000

Please sign in to comment.