Fix the exception about getting effectimage
[platform/core/appfw/pkgmgr-info.git] / parser / res.xsd.in
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
3         targetNamespace="http://tizen.org/ns/rm" xmlns:packages="http://tizen.org/ns/rm">
4         <xs:import namespace="http://www.w3.org/XML/1998/namespace"/>
5         <xs:element name="res">
6                 <xs:complexType>
7                         <xs:all>
8                                 <xs:element name="group-image" type="packages:GroupContainer" maxOccurs="1" minOccurs="0"/>
9                                 <xs:element name="group-layout" type="packages:GroupContainer" maxOccurs="1" minOccurs="0"/>
10                                 <xs:element name="group-sound" type="packages:GroupContainer" maxOccurs="1" minOccurs="0"/>
11                                 <xs:element name="group-bin" type="packages:GroupContainer" maxOccurs="1" minOccurs="0"/>
12                         </xs:all>
13                 </xs:complexType>
14         </xs:element>
15
16         <xs:complexType name="GroupContainer">
17                 <xs:sequence>
18                         <xs:element name="node" maxOccurs="unbounded" minOccurs="0">
19                                 <xs:complexType>
20                                         <xs:attribute name="folder" type="xs:string" use="required"/>
21                                         <xs:attribute name="screen-dpi" type="xs:integer"/>
22                                         <xs:attribute name="screen-dpi-range" type="xs:string"/>
23                                         <xs:attribute name="screen-width-range" type="xs:string"/>
24                                         <xs:attribute name="screen-large" type="xs:boolean"/>
25                                         <xs:attribute name="screen-bpp" type="xs:integer"/>
26                                         <xs:attribute name="platform-version" type="xs:string"/>
27                                         <xs:attribute name="language" type="xs:string"/>
28                                 </xs:complexType>
29                         </xs:element>
30                 </xs:sequence>
31                 <xs:attribute name="folder" type="xs:string" use="required"/>
32         </xs:complexType>
33 </xs:schema>