<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/">
  <channel rdf:about="http://www.example.org/">
    <title>Example RSS Channel</title>
    <link>http://www.example.org/</link>
    <description>Example RSS feed</description>
    <items>
      <rdf:Seq>
        <rdf:li resource="http://www.example.org/item1"/>
        <rdf:li resource="http://www.example.org/item2"/>
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="http://www.example.org/item1">
    <title>First Item</title>
    <link>http://www.example.org/item1</link>
    <description>This is the first item.</description>
  </item>
  <item rdf:about="http://www.example.org/item2">
    <title>Second Item</title>
    <link>http://www.example.org/item2</link>
    <description>This is the second item.</description>
  </item>
</rdf:RDF>
