RDF example (from SVG spec)

      
<rdf:RDF
   xmlns:rdf = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:rdfs = "http://www.w3.org/2000/01/rdf-schema#"
   xmlns:dc = "http://purl.org/dc/elements/1.1/">
   <rdf:Description rdf:about="http://example.org/myfoo"
     dc:title="MyFoo Financial Report"
     dc:description="$three $bar $thousands $dollars $from 1998 $through 2000"
     dc:publisher="Example Organization"
     dc:date="2000-04-11"
     dc:format="image/svg+xml"
     dc:language="en">
     <dc:creator>
       <rdf:Bag>
         <rdf:li>Irving Bird</rdf:li>
         <rdf:li>Mary Lambert</rdf:li>
       </rdf:Bag>
     </dc:creator>
    </rdf:Description>
  </rdf:RDF>