|
1 | 1 | <?xml version="1.0"?> |
| 2 | +<!-- |
| 3 | + - SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors |
| 4 | + - SPDX-License-Identifier: AGPL-3.0-or-later |
| 5 | +--> |
2 | 6 | <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" |
3 | 7 | 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 | + |
8 | 9 | <xs:element name="info"> |
9 | 10 | <xs:complexType> |
10 | 11 | <xs:sequence> |
|
66 | 67 | maxOccurs="1"/> |
67 | 68 | <xs:element name="collaboration" type="collaboration" minOccurs="0" |
68 | 69 | maxOccurs="1" /> |
| 70 | + <xs:element name="openmetrics" type="openmetrics" minOccurs="0" |
| 71 | + maxOccurs="1" /> |
69 | 72 | <xs:element name="sabre" type="sabre" minOccurs="0" |
70 | 73 | maxOccurs="1" /> |
71 | 74 | <xs:element name="trash" type="trash" minOccurs="0" |
|
410 | 413 |
|
411 | 414 | <xs:complexType name="settings"> |
412 | 415 | <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" |
415 | 418 | maxOccurs="unbounded"/> |
416 | 419 | <xs:element name="personal" type="php-class" minOccurs="0" |
417 | 420 | maxOccurs="unbounded"/> |
418 | 421 | <xs:element name="personal-section" type="php-class" minOccurs="0" |
419 | 422 | 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"/> |
420 | 427 | </xs:sequence> |
421 | 428 | </xs:complexType> |
422 | 429 |
|
|
544 | 551 | </xs:restriction> |
545 | 552 | </xs:simpleType> |
546 | 553 |
|
| 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 | + |
547 | 566 | <xs:complexType name="sabre"> |
548 | 567 | <xs:sequence> |
549 | 568 | <xs:element name="collections" type="sabre-collections" minOccurs="0" maxOccurs="1"/> |
|
0 commit comments