mirror of
https://github.com/nextcloud/server.git
synced 2026-04-23 23:27:46 -04:00
Allow zero occurences of route in XML schemas
- For xmllint
Signed-off-by: Christopher Ng <chrng8@gmail.com>
(cherry picked from commit 70651c3ab1)
This commit is contained in:
parent
08845f73c9
commit
f725eeddfd
2 changed files with 2 additions and 2 deletions
|
|
@ -446,7 +446,7 @@
|
|||
<xs:sequence>
|
||||
<xs:element name="id" type="id" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="name" type="non-empty-string" minOccurs="1" maxOccurs="1"/>
|
||||
<xs:element name="route" type="route" minOccurs="1" maxOccurs="1"/>
|
||||
<xs:element name="route" type="route" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="icon" type="xs:anyURI" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="order" type="xs:int" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="type" type="navigation-type" minOccurs="0" maxOccurs="1"/>
|
||||
|
|
|
|||
|
|
@ -442,7 +442,7 @@
|
|||
<xs:sequence>
|
||||
<xs:element name="id" type="id" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="name" type="non-empty-string" minOccurs="1" maxOccurs="1"/>
|
||||
<xs:element name="route" type="route" minOccurs="1" maxOccurs="1"/>
|
||||
<xs:element name="route" type="route" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="icon" type="xs:anyURI" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="order" type="xs:int" minOccurs="0" maxOccurs="1"/>
|
||||
<xs:element name="type" type="navigation-type" minOccurs="0" maxOccurs="1"/>
|
||||
|
|
|
|||
Loading…
Reference in a new issue