summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-03-14 21:11:01 +0100
committerMichał Górny <mgorny@gentoo.org>2021-03-14 21:11:01 +0100
commit1f044715a9459c7d0f724d4a7c5e18b274254ae2 (patch)
tree1d54242f741061006da95ea44f2f018c8399f4f6
parentmetadata.xsd: Allow heptapod for remote-id (diff)
downloadxml-schema-1f044715a9459c7d0f724d4a7c5e18b274254ae2.tar.gz
xml-schema-1f044715a9459c7d0f724d4a7c5e18b274254ae2.tar.bz2
xml-schema-1f044715a9459c7d0f724d4a7c5e18b274254ae2.zip
metadata.xsd: Add <maintainer proxied=""/> attribute
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--metadata.xsd10
1 files changed, 10 insertions, 0 deletions
diff --git a/metadata.xsd b/metadata.xsd
index db243ab..d2e3d4f 100644
--- a/metadata.xsd
+++ b/metadata.xsd
@@ -127,6 +127,8 @@
</xs:choice>
<xs:attribute name='type' type='maintainerTypeAttrType'
use='required'/>
+ <xs:attribute name='proxied' type='maintainerProxiedAttrType'
+ default='no'/>
<xs:attribute name='restrict' type='restrictAttrType'
default=''/>
</xs:complexType>
@@ -138,6 +140,14 @@
</xs:restriction>
</xs:simpleType>
+ <xs:simpleType name='maintainerProxiedAttrType'>
+ <xs:restriction base='xs:token'>
+ <xs:enumeration value='yes'/>
+ <xs:enumeration value='no'/>
+ <xs:enumeration value='proxy'/>
+ </xs:restriction>
+ </xs:simpleType>
+
<xs:complexType name='upstreamMaintainerType'>
<xs:all>
<xs:element name='email' type='emailType'