599
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
2 |
<!--
|
|
3 |
Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). All Rights Reserved.
|
|
4 |
-->
|
|
5 |
<xsd:schema
|
|
6 |
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
7 |
xmlns:ki="http://www.symbian.com/kif1"
|
|
8 |
targetNamespace="http://www.symbian.com/kif1">
|
|
9 |
<xsd:element name="kitinfo">
|
|
10 |
<xsd:complexType>
|
|
11 |
<!-- Note I'd like to have used xsd:all here but it's not allowed to contain xsd:any -->
|
|
12 |
<xsd:sequence>
|
|
13 |
<xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
|
|
14 |
<xsd:element ref="ki:release"/>
|
|
15 |
<xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded"/>
|
|
16 |
</xsd:sequence>
|
|
17 |
<xsd:attribute name="label" type="xsd:string" use="required"/>
|
|
18 |
</xsd:complexType>
|
|
19 |
</xsd:element>
|
|
20 |
<xsd:element name="release">
|
|
21 |
<xsd:complexType>
|
|
22 |
<xsd:attribute name="version" type="xsd:string" use="required"/>
|
|
23 |
<xsd:attribute name="build" type="xsd:string" use="required"/>
|
|
24 |
</xsd:complexType>
|
|
25 |
</xsd:element>
|
|
26 |
</xsd:schema>
|