<feed xmlns="http://www.w3.org/2005/Atom"
      xmlns:foaf="http://xmlns.com/foaf/0.1/"
      xmlns:bib="http://prul.org/net/biblio#"
      xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
      xmlns:dcterms="http://purl.org/dc/terms/"
      xmlns:dc="http://purl.org/dc/elements/1.1/">  <id>http://www.example.com/feed/1234.1/posts/full</id>   <updated>2005-09-16T00:42:06Z</updated>   <title type="text">Jane Doe's Library</title>   <link rel="self" type="application/atom+xml"    href="http://www.users.muohio.edu/darcusb/feeds/test2.xml"/>   <author>    <name>Jane Doe</name>     <email>jane@example.com</email>   </author>  <generator version="1.0"    uri="http://www.example.com">Example Generator Engine</generator> 
  <!-- entry element is trivial to convert to valid RDF, and map to a RDBMS -->  <entry>
    <!-- am wondering if, as with RDF, it'd be appropriate to use the doi as an id? -->    <id>http://www.example.com/doe/library/1</id>     <published>2005-01-09T08:00:00Z</published>     <updated>2005-01-09T08:00:00Z</updated> 
    <!-- use atom:category to assign uri-based type to entry -->    <category scheme="http://purl.org/net/biblio#" term="Article"/>     <title>The secret life of invertebrates on Mount Everest during full moon</title>
    <dc:title>The secret life of invertebrates on Mount Everest during full moon</dc:title>
    <bib:abbreviatedTitle>Invertebrates on Mount Everest</bib:abbreviatedTitle>    <bib:author>
      <bib:Person>
        <!-- if we're going to improve name representation, let's start by making it international -->
        <bib:familyname>Miller</bib:familyname>        <bib:givenname>John D.</bib:givenname>        <bib:suffix>Jr</bib:suffix>        <bib:displayname>John D. Miller</bib:displayname>
      </bib:Person>
    </bib:author>
    <!-- I'd prefer a more generic pages element to cpature non-continuous pages, but this fine too -->
    <bib:startpage>55</bib:startpage>    <bib:endpage>59</bib:endpage>    <bib:volume>33</bib:volume>    <bib:issue>2</bib:issue>
    <!-- most standard ids can be represented as uris and urns; much more scalable -->
    <dc:identifier>info:doi/238012701274</dc:identifier>    <dc:date>2005-04-01</dc:date>
    <!-- 
       1) part-monograph relations are captured with standard dcterms:isPartOf property
       2) again, we use uri to link items to containers
       3) we could also include the full journal representation here of course
    -->
    <dcterms:isPartOf rdf:resource="urn:issn:23454256567"/>
    <!-- exploit the atom:content element for notes -->
    <content>note text</content>  </entry>
</feed>