configurationengine/doc/xsd/thememl.xsd
changeset 0 2e8eeb919028
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/configurationengine/doc/xsd/thememl.xsd	Thu Mar 11 17:04:37 2010 +0200
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xs:schema 
+	xmlns:xs="http://www.w3.org/2001/XMLSchema" 
+	targetNamespace="http://www.s60.com/xml/thememl/1" 
+	xmlns:theme="http://www.s60.com/xml/thememl/1" 
+	elementFormDefault="qualified">
+
+	<xs:complexType name="carbideuiPathType"/>
+
+	<xs:complexType name="themeDirType"/>
+
+	<xs:complexType name="refSettingType"/>
+
+	<xs:complexType name="platformUIDType"/>
+	
+    <xs:complexType name="activeThemeType">
+        <xs:sequence>
+            <xs:element name="refSetting" type="theme:refSettingType" minOccurs="0" maxOccurs="unbounded"/>
+			<xs:element name="platformUID" type="theme:platformUIDType" minOccurs="0" maxOccurs="unbounded"/>
+        </xs:sequence>  
+        <xs:attribute name="uid"        type="xs:string"            use="required"/>
+    </xs:complexType>
+
+	<xs:complexType name="thememlRootType">
+        <xs:sequence>
+            <xs:element name="activeTheme" type="theme:activeThemeType" minOccurs="0" maxOccurs="unbounded"/>
+			<xs:element name="carbideuiPath" type="theme:carbideuiPathType" minOccurs="0" maxOccurs="unbounded"/>
+			<xs:element name="themeDir" type="theme:themeDirType" minOccurs="0" maxOccurs="unbounded"/>
+        </xs:sequence>
+    </xs:complexType>
+
+	<xs:element name="thememl" type="theme:thememlRootType"/>
+
+</xs:schema>
\ No newline at end of file