diff options
-rw-r--r-- | schemas/pkglist.xsd | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/schemas/pkglist.xsd b/schemas/pkglist.xsd index e92e637a6..457b91ecb 100644 --- a/schemas/pkglist.xsd +++ b/schemas/pkglist.xsd @@ -11,6 +11,13 @@ <xsd:include schemaLocation="types.xsd"/> <xsd:complexType name='PackageType'> + <xsd:choice minOccurs='0' maxOccurs='unbounded'> + <xsd:element name='Ignore'> + <xsd:complexType> + <xsd:attribute type='xsd:string' name='name'/> + </xsd:complexType> + </xsd:element> + </xsd:choice> <xsd:attribute type='xsd:string' name='name'/> <xsd:attribute type='xsd:string' name='version'/> <xsd:attribute type='xsd:string' name='file'/> @@ -45,4 +52,4 @@ <xsd:attribute type='xsd:string' name='srcs'/> </xsd:complexType> </xsd:element> -</xsd:schema>
\ No newline at end of file +</xsd:schema> |