core/com.nokia.carbide.cpp.news.reader/schema/FeedInfo.xsd
author stechong
Wed, 20 Oct 2010 11:19:31 -0500
changeset 2165 2a7b5eccb0bc
parent 0 fb279309251b
permissions -rw-r--r--
Keeping PlatSim internal only.

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="feedInfo">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="feeds"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="feed">
    <xs:complexType>
      <xs:sequence>
        <xs:element ref="url"/>
        <xs:element ref="type"/>
        <xs:element ref="subscribed"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="feeds">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" minOccurs="0" ref="feed"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
  <xs:element name="subscribed" type="xs:string"/>
  <xs:element name="type" type="xs:string"/>
  <xs:element name="url" type="xs:string"/>
</xs:schema>