<?xml version="1.0" encoding="UTF-8"?>
<?oxygen RNGSchema="file:/Users/darcusb/projects/odbib/odmeta-bib.rnc" type="compact"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns="http://www.example.net/odbib#"
  xmlns:dcterms="http://purl.org/dc/terms/">
  <Person rdf:about="mitchell">
    <givenname>Jan</givenname>
    <surname>Mitchell</surname>
  </Person>
  <Person rdf:about="doe-j">
    <givenname>Jane</givenname>
    <articular>von</articular>
    <surname>Doe</surname>
    <suffix>III</suffix>
  </Person>
  <Person rdf:about="smith-j">
    <givenname>John</givenname>
    <surname>Smith</surname>
  </Person>
  <Organization rdf:about="pub">
    <name>Routledge</name>
    <city>New York</city>
  </Organization>
  <Book rdf:about="x">
    <title xml:lang="en">Some Title</title>
    <authors>
      <rdf:Seq>
        <rdf:li rdf:resource="mitchell"/>
      </rdf:Seq>
    </authors>
    <dateIssued>1999</dateIssued>
    <publisher rdf:resource="pub"/>
    <identifier rdf:resource="urn:isbn:34523465"/>
  </Book>
  <Article rdf:about="z">
    <title xml:lang="en">Another Title</title>
    <authors>
      <rdf:Seq>
        <rdf:li rdf:resource="doe-j"/>
        <rdf:li rdf:resource="smith-j"/>
      </rdf:Seq>
    </authors>
    <dateIssued>2000</dateIssued>
    <volume>23</volume>
    <issue>2</issue>
    <pages>132-154</pages>
    <containedIn rdf:resource="abc"/>
  </Article>
  <Journal rdf:about="abc">
    <title>ABC Journal</title>
  </Journal>
  <Paper rdf:about="g">
    <title>Some Title</title>
    <authors>
      <rdf:Seq>
        <rdf:li rdf:resource="mitchell"/>
      </rdf:Seq>
    </authors>
    <presentedAt>
      <Conference>
        <title>Some Conference</title>
        <beginDate>1999-10-13</beginDate>
        <endDate>1999-10-17</endDate>
      </Conference>
    </presentedAt>
    <!-- this example suggests there might be a PeriodicalIssue structure, and issue details go there -->
    <dateIssued>2000</dateIssued>
    <volume>23</volume>
    <issue>1</issue>
    <pages>22-41</pages>
    <containedIn rdf:resource="abc"/>
  </Paper>
  <Manuscript rdf:about="asfag">
    <title>Some Manuscript</title>
    <partOf>
      <!-- archival records are a little tricky to fit in the general model, but here's a stab -->
      <Collection>
        <title>Archival Collection</title>
        <item>
          <PhysicalCopy>
            <owner>Some Archive</owner>
            <location>New York</location>
          </PhysicalCopy>
        </item>
      </Collection>
    </partOf>
    <item>
      <PhysicalCopy>
        <location>Box 23, Folder 2</location>
      </PhysicalCopy>
    </item>
  </Manuscript>
</rdf:RDF>
