summaryrefslogtreecommitdiffstats
path: root/addons/xbmc.python/script.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'addons/xbmc.python/script.xsd')
-rw-r--r--addons/xbmc.python/script.xsd32
1 files changed, 32 insertions, 0 deletions
diff --git a/addons/xbmc.python/script.xsd b/addons/xbmc.python/script.xsd
new file mode 100644
index 0000000..6e8a4af
--- /dev/null
+++ b/addons/xbmc.python/script.xsd
@@ -0,0 +1,32 @@
+<?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:sequence>
+ <xs:element name="provides" type="providesList" minOccurs="0" maxOccurs="1"/>
+ </xs:sequence>
+ <xs:attribute name="point" type="xs:string" use="required"/>
+ <xs:attribute name="id" type="simpleIdentifier"/>
+ <xs:attribute name="name" type="xs:string"/>
+ <xs:attribute name="library" type="xs:string" use="required"/>
+ </xs:complexType>
+ </xs:element>
+ <xs:simpleType name="simpleIdentifier">
+ <xs:restriction base="xs:string">
+ <xs:pattern value="xbmc\.(python\.(library|lyrics|module|script|weather)|ui\.screensaver|subtitle\.module)"/>
+ </xs:restriction>
+ </xs:simpleType>
+ <xs:simpleType name="providesList">
+ <xs:list itemType="providesType"/>
+ </xs:simpleType>
+ <xs:simpleType name="providesType">
+ <xs:restriction base="xs:string">
+ <xs:enumeration value="audio"/>
+ <xs:enumeration value="executable"/>
+ <xs:enumeration value="game"/>
+ <xs:enumeration value="image"/>
+ <xs:enumeration value="video"/>
+ </xs:restriction>
+ </xs:simpleType>
+</xs:schema>