aboutsummaryrefslogtreecommitdiff
path: root/addons/xbmc.addon/repository.xsd
blob: 7ec8141a47c7aa046524532aa79f5d2c5b17856a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE schema PUBLIC "-//W3C//DTD XMLSCHEMA 200102//EN" "http://www.w3.org/2001/XMLSchema.dtd">
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
	<xs:element name="extension">
		<xs:complexType>
      <xs:element name="info">
        <xs:complexType>
          <xs:attribute name="compressed" type="xs:boolean"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="checksum" type="xs:string"/>
      <xs:element name="datadir">
        <xs:complexType>
          <xs:attribute name="zip" type="xs:boolean"/>
        </xs:complexType>
      </xs:element>
		</xs:complexType>
	</xs:element>
	<xs:simpleType name="simpleIdentifier">
		<xs:restriction base="xs:string">
			<xs:pattern value="[^.]+"/>
		</xs:restriction>
	</xs:simpleType>
</xs:schema>