RDF przykłady słowników

<rdf:RDF
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:dc="http://purl.org/metadata/dublin_core#"> 

    <rdf:Description about="http://www.foo.com/cool.html"> 
      <dc:Creator>
        <rdf:Seq ID="CreatorsAlphabeticalBySurname">
          <rdf:li>John Doe</rdf:li>
          <rdf:li>John Smith</rdf:li>
        </rdf:Seq>
      </dc:Creator>
      <dc:Title>
        <rdf:Alt>
          <rdf:li>option 1</rdf:li>
          <rdf:li>option 2</rdf:li>
        </rdf:Alt>
      </dc:Title>
    </rdf:Description> 
</rdf:RDF>