summaryrefslogtreecommitdiffstats
path: root/addons/xbmc.addon/metadata.xsd
blob: 86a867e919df31e85cfa5de8c660872d82aecb8c (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?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:choice maxOccurs="unbounded">
        <xs:element name="summary" type="translatedString" minOccurs="1" maxOccurs="unbounded"/>
        <xs:element name="description" type="translatedString" minOccurs="0" maxOccurs="unbounded"/>
        <xs:element name="disclaimer" type="translatedString" minOccurs="0" maxOccurs="unbounded"/>
        <xs:element name="platform" type="platformList" minOccurs="0"/>
        <xs:element name="language" type="xs:string"  minOccurs="0" maxOccurs="1"/>
        <xs:element name="license" type="xs:string"  minOccurs="0" maxOccurs="1" />
        <xs:element name="forum" type="xs:string" minOccurs="0" maxOccurs="1"/>
        <xs:element name="website" type="xs:string" minOccurs="0" maxOccurs="1"/>
        <xs:element name="source" type="xs:string" minOccurs="0" maxOccurs="1"/>
        <xs:element name="email" type="xs:string" minOccurs="0" maxOccurs="1"/>
        <xs:element name="lifecyclestate" type="translatedLifecycleState" minOccurs="0" maxOccurs="unbounded"/>
        <xs:element name="news" type="xs:string" minOccurs="0" maxOccurs="1"/>
        <xs:element name="reuselanguageinvoker" type="xs:boolean" minOccurs="0" maxOccurs="1"/>
        <xs:element name="assets" type="assetsList" minOccurs="0" maxOccurs="1"/>
      </xs:choice>
      <xs:attribute name="point" type="xs:string" use="required"/>
      <xs:attribute name="id" type="simpleIdentifier"/>
      <xs:attribute name="name" type="xs:string"/>
    </xs:complexType>
  </xs:element>
  <xs:simpleType name="simpleIdentifier">
    <xs:restriction base="xs:string">
      <xs:pattern value="(kodi|xbmc)\.addon\.metadata"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:complexType name="translatedString">
    <xs:simpleContent>
      <xs:extension base="xs:string">
        <xs:attribute name="lang" type="langIdentifier" use="required"/>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>
 <xs:complexType name="translatedLifecycleState">
    <xs:simpleContent>
      <xs:extension base="nonEmptyStringCapped">
        <xs:attribute name="type" type="lifecycleStateType" use="required"/>
        <xs:attribute name="lang" type="langIdentifier"/>
      </xs:extension>
    </xs:simpleContent>
  </xs:complexType>
  <xs:simpleType name="platformType">
    <xs:restriction base="xs:string">
      <xs:enumeration value="linux"/>
      <xs:enumeration value="osx"/>
      <xs:enumeration value="osx64"/>
      <xs:enumeration value="ios"/>
      <xs:enumeration value="windx"/>
      <xs:enumeration value="windows"/>
      <xs:enumeration value="windowsstore"/>
      <xs:enumeration value="android"/>
      <xs:enumeration value="freebsd"/>
      <xs:enumeration value="all"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="langIdentifier">
    <xs:restriction base="xs:string">
      <xs:pattern value="[a-z]{2,3}(_[A-Z]{2}(@\S+)?)?"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:simpleType name="lifecycleStateType">
    <xs:restriction base="xs:string">
      <xs:enumeration value="normal"/>
      <xs:enumeration value="deprecated"/>
      <xs:enumeration value="broken"/>
    </xs:restriction>
  </xs:simpleType>
  <xs:complexType name="assetsList">
    <xs:choice maxOccurs="unbounded">
        <xs:element name="icon" type="xs:string" minOccurs="0" maxOccurs="1"/>
        <xs:element name="fanart" type="xs:string" minOccurs="0" maxOccurs="1"/>
        <xs:element name="screenshot" type="xs:string" minOccurs="0"/>
        <xs:element name="clearlogo" type="xs:string" minOccurs="0" maxOccurs="1"/>
        <xs:element name="banner" type="xs:string" minOccurs="0" maxOccurs="1"/>
    </xs:choice>
  </xs:complexType>
  <xs:simpleType name="platformList">
    <xs:list itemType="platformType"/>
  </xs:simpleType>
</xs:schema>