Skip to content

Commit aca444e

Browse files
Merge pull request #1695 from nextcloud/bugfix/noid/bring-server-changes
fix(infoxsd): Upstream changes from server repository
2 parents 01e96bd + eff8246 commit aca444e

1 file changed

Lines changed: 25 additions & 6 deletions

File tree

  • nextcloudappstore/api/v1/release

nextcloudappstore/api/v1/release/info.xsd

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<?xml version="1.0"?>
2+
<!--
3+
- SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
4+
- SPDX-License-Identifier: AGPL-3.0-or-later
5+
-->
26
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
37
elementFormDefault="qualified" attributeFormDefault="unqualified">
4-
<!--
5-
- SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
6-
- SPDX-License-Identifier: AGPL-3.0-or-later
7-
-->
8+
89
<xs:element name="info">
910
<xs:complexType>
1011
<xs:sequence>
@@ -66,6 +67,8 @@
6667
maxOccurs="1"/>
6768
<xs:element name="collaboration" type="collaboration" minOccurs="0"
6869
maxOccurs="1" />
70+
<xs:element name="openmetrics" type="openmetrics" minOccurs="0"
71+
maxOccurs="1" />
6972
<xs:element name="sabre" type="sabre" minOccurs="0"
7073
maxOccurs="1" />
7174
<xs:element name="trash" type="trash" minOccurs="0"
@@ -410,13 +413,17 @@
410413

411414
<xs:complexType name="settings">
412415
<xs:sequence>
413-
<xs:element name="admin" minOccurs="0" maxOccurs="unbounded"/>
414-
<xs:element name="admin-section" type="php-class" minOccurs="0"
416+
<xs:element name="admin" minOccurs="0" maxOccurs="unbounded"/>
417+
<xs:element name="admin-section" type="php-class" minOccurs="0"
415418
maxOccurs="unbounded"/>
416419
<xs:element name="personal" type="php-class" minOccurs="0"
417420
maxOccurs="unbounded"/>
418421
<xs:element name="personal-section" type="php-class" minOccurs="0"
419422
maxOccurs="unbounded"/>
423+
<xs:element name="admin-delegation" type="php-class" minOccurs="0"
424+
maxOccurs="unbounded"/>
425+
<xs:element name="admin-delegation-section" type="php-class" minOccurs="0"
426+
maxOccurs="unbounded"/>
420427
</xs:sequence>
421428
</xs:complexType>
422429

@@ -544,6 +551,18 @@
544551
</xs:restriction>
545552
</xs:simpleType>
546553

554+
<xs:complexType name="openmetrics">
555+
<xs:sequence>
556+
<xs:element name="exporter" type="openmetrics-exporter" maxOccurs="unbounded"/>
557+
</xs:sequence>
558+
</xs:complexType>
559+
560+
<xs:complexType name="openmetrics-exporter">
561+
<xs:simpleContent>
562+
<xs:extension base="php-class"/>
563+
</xs:simpleContent>
564+
</xs:complexType>
565+
547566
<xs:complexType name="sabre">
548567
<xs:sequence>
549568
<xs:element name="collections" type="sabre-collections" minOccurs="0" maxOccurs="1"/>

0 commit comments

Comments
 (0)