RDF samples

From ARC Wiki
Jump to navigation Jump to search

The following are intended as a guide for RDF submissions. A specification of the available markup elements can be found here.

The first example comes from the Rossetti Archive and describes Rossetti's work, The Slave. The second example is a figure out of The Bijou, which comes from the Poetess Archive.

Simple Cases

MESA: Walters Art Gallery

<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:role="http://www.loc.gov/loc.terms/relators/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:walters="http://thedigitalwalters.org/schema#"
xmlns:collex="http://www.collex.org/schema#"
xmlns:dcterms="http://purl.org/dc/terms/" 
xmlns:dc="http://purl.org/dc/elements/1.1/">
        
        <!-- stable URI -->
      
 <walters:wam rdf:about="http://thedigitalwalters.org/Data/WaltersManuscripts/ManuscriptDescriptions/W768">
      
    <!--Standard DublinCore metadata-->
      
 <dc:title>Walters Ms. W.768, Ethiopic Psalter with Canticles, Song of Songs, and two hymns in praise of Mary</dc:title>

<!-- role information -->
<role:AUT>St. Yared the Aksumite priest St. Ephraem Syrus</role:AUT>
<role:PBL>The Walters Art Museum</role:PBL>

 <!-- add dc:type, dc:provenance, dc:format, etc -->

<dc:provenance>Probably created for one of the princes of the Gonderite royal family, whose reign ended in 1769</dc:provenance>
<dc:provenance>Names of Wälättä Ḥǝywät and Wälättä Kidan, who added texts in the nineteenth century, mentioned repeatedly in later added prayers (fols. 12r, 13v, 31v, and 37r)</dc:provenance>
<dc:provenance>Purchased by the Walters Art Museum through the S. & A. P. Fund, January 1960</dc:provenance>

<collex:discipline>Art History</collex:discipline>
<dc:type>Codex</dc:type>
<dc:language>gez</dc:language>
<collex:genre>Religion</collex:genre> 
       
<dc:date>1700</dc:date>
      
<collex:freeculture>true</collex:freeculture>
      
    
      
    <!--MESA specific metadata-->
      
<collex:federation>MESA</collex:federation>
<collex:archive>walters</collex:archive>
      
<collex:thumbnail rdf:resource="http://www.thedigitalwalters.org/Data/WaltersManuscripts/W768/data/W.768/thumb/W768_000001_thumb.jpg" />
<collex:source_xml rdf:resource="http://thedigitalwalters.org/Data/WaltersManuscripts/ManuscriptDescriptions/W768_tei.xml"/>
      
    <!--Link that MESA should send users for this object-->
      
    <rdfs:seeAlso rdf:resource="http://thedigitalwalters.org/Data/WaltersManuscripts/html/W768/"/>

      
      
    </walters:wam>
      
    </rdf:RDF>

NINES: Rossetti Archive

Example #1

<?xml version="1.0" encoding="utf-8"?>
<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:role="http://www.loc.gov/loc.terms/relators/"
         xmlns:dc="http://purl.org/dc/elements/1.1/"
         xmlns:dcterms="http://purl.org/dc/terms/"
         xmlns:collex="http://www.collex.org/schema#"
         xmlns:ra="http://www.rossettiarchive.org/schema#">
   
  <ra:raw rdf:about="http://www.rossettiarchive.org/docs/1-1835.raw">

      <collex:federation>NINES</collex:federation>
      <collex:archive>rossetti</collex:archive>

      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/1-1835.raw.html"/>

      <dc:title>Commentary for The Slave</dc:title>
      <role:AUT>Jerome J. McGann</role:AUT>
      <dc:date>2006</dc:date>

      <collex:genre>Criticism</collex:genre>
      <collex:genre>Poetry</collex:genre>
      <collex:genre>Fiction</collex:genre>
      <collex:genre>Drama</collex:genre>

      <collex:text rdf:resource="http://www.rossettiarchive.org/docs/1-1835.raw.txt"/>

  </ra:raw>

</rdf:RDF>

Annotated

The root element, <rdf:RDF>, contains a long list of namespace declarations, indicated by "xmlns:_____". These declarations validate the appearance of elements with a certain prefix.

It's also important to note that all aspects of the RDF generation (the XSL transformation file and the RDF output) should be encoded in UTF-8 (see XSLT examples). The COLLEX browser expects UTF-8, and if contributors' RDF is not output correctly there will be mangled special characters, such as "&" and "á".

<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
         xmlns:dc="http://purl.org/dc/elements/1.1/"
         xmlns:dcterms="http://purl.org/dc/terms/"
         xmlns:collex="http://www.collex.org/schema#"
         xmlns:ra="http://www.rossettiarchive.org/schema#"
         xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
         xmlns:role="http://www.loc.gov/loc.terms/relators/">

<ra:raw> is the element that denotes the object. "ra" is a custom namespace for the Rossetti Archive; each project should create it's own custom namespace (which is declared as a namespace in <rdf:RDF>). For instance, Example #2 is an object from the Poetess Archive; it uses "pa" as its custom namespace. Currently, contributors can contact us about available namespaces.

The useful component of this element is the "rdf:about" attribute. "rdf:about" should be a unique identifier for this object. In other words, no other object in your RDF submission can have the same id. For the Rossetti Archive, we've reused the unique URL of our web pages as a unique id here.

   <ra:raw rdf:about="http://www.rossettiarchive.org/docs/1-1835.raw">

<collex:archive> indicates the contributors project, such as "rossetti" or "poetess" or "chesnutt". Again, new projects should contact us about suggested values. Typically, these will be short references, and the COLLEX interface will expand the value to a more reader friendly value; e.g. "poetess" will appear as "The Poetess Archive" in the COLLEX list of projects.

      <collex:archive>rossetti</collex:archive>

<rdfs:seeAlso> contains one attribute, "rdf:resource", which points at a web accessible URL for the present object. Contributors should ensure that these addresses are stable and functional. In most cases, it is preferable to provide the most specific address possible. For example, an essay in a digitized journal should point to the URL for the essay, not an introductory page for the journal issue. In the Rossetti Archive, we provide URLs with internal anchor links so that a poem can be located within a long transcription of an entire book. See http://www.rossettiarchive.org/docs/poemssonnets.fizms.rad.html#0.32, which links to a transcription of "The Girlhood of Mary Virgin" within a long document.

Bear in mind that this is the primary mechanism for guiding a user back to your site from NINES. Once a user finds a resource through COLLEX, this URL will be used to link them to the resource on YOUR SITE. Most users would prefer to go directly to the resource, rather than an index or introductory page.

      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/1-1835.raw.html"/>

<dc:title> is Dublin Core element for recording the object's title. If the object is an essay or article, the <dc:title> value should be for the essay or article, not the title of the longer work. <collex:source> should be used for the title of the anthology, journal, or longer work which contains the current object. Likewise, poems or stories in a collection should have their own title in <dc:title>, while <collex:source> records the title of the collection.

      <dc:title>Commentary for The Slave</dc:title>

Files must have at least one <role:___> element, indicating the agent responsible for creating the object. Objects with multiple agents (co-authors, publishers, editors) can have mutliple <role:___> elements, one for each agent. Typically, files will have at least <role:AUT> for an author or <role:ART> for an artist. NINES strongly encourages using <role:ART> or <role:AUT>, even when the agent is unknown or anonymous. In such cases, use the standard values "Unknown" or "Anonymous." For example: <role:AUT>Unknown</role:AUT>. Variants of those values ("Unk." or "Anon.") will degrade the usability of the faceted browser.

We have currently limited the number of permissible roles to five: author, artist, publisher, editor, translator. While we could imagine more (patron, model, printer, photographer, etc.), the limited number appears to address current needs and keeps the faceted browser from being bloated with facet options. We are currently discussing how contributors can submit RDF with pre-assigned "tags," which would enable more nuanced role distinctions.

In this example, the author value is McGann because the object is a scholarly commentary.

      <role:AUT>Jerome J. McGann</role:AUT>

Dates must begin with a four digit year. Dates can also be recorded with a value/label pairing (see below), providing sound computational value with a more human readable label.

      <dc:date>2006</dc:date>

Each file must contain at least one <nines:genre> element but will typically contain several. The list of acceptable values is found here.

      <collex:genre>Criticism</collex:genre>
      <collex:genre>Poetry</collex:genre>
      <collex:genre>Fiction</collex:genre>
      <collex:genre>Drama</collex:genre>

<dc:relation> serves an interesting purpose: it creates a connection between this piece of RDF and another piece of RDF. In this case, we've linked two RDFs, each of which contains an instance of the text "The Slave." Since the current RDF is the file that describes the work, "The Slave," it made sense to reference instances of the work. COLLEX doesn't yet make use of this data, but we have plans for it in the future.

      <dc:relation rdf:resource="http://www.rossettiarchive.org/docs/1-1835.safrica.rad"/>
      <dc:relation rdf:resource="http://www.rossettiarchive.org/docs/pr5246.a43.rad"/>

<collex:text> points to the full text of the resource. Ideally it should point to a .txt file (located on the contributors site) which transcribes the contents of the object. COLLEX uses this .txt file for full-text searches. (Please note: users are not redirected to these .txt files; the files are merely held within the COLLEX database for searching. ) At a future date, the JUXTA collation tool could be integrated and make use of these plain texts. If it is not possible to set up a separate set of .txt files, the NINES Indexer can crawl HTML , stripping the tags away from the text. In this case, the link will point to the main document URL.

      <collex:text rdf:resource="http://www.rossettiarchive.org/docs/1-1835.raw.txt"/>

If you are concerned about these plain text files being picked up by search engines or otherwise being accessed, there are two approaches to securing them:

  1. Use a robots.txt file to prevent indexing, as noted before.
  2. Use an .htaccess file in the "text" directory to prevent the files from loading outside of acceptable domains. This assumes that the server is running Apache (very safe bet) and that they have configured it to permit overriding defaults with the following .htaccess file, placed in the directory with text files:
<Location /path/to/text>
     Order Deny,Allow
     Deny from all
     Allow from *.virginia.edu, *.your-university.edu
</Location>
  </ra:raw>
</rdf:RDF>

Poetess Archive

Example #2

<rdf:RDF>
  <pa:anthologies rdf:about="http://unixgen.muohio.edu/~poetess/bijou/Bijou1828corpus.xml-text1">

    <!--Standard DublinCore metadata-->
    <dc:title>Figure 1: The Child and Flowers</dc:title>
    <role:ART>Humphrys, William</role:ART>
    <role:ART>Lawrence, Thomas</role:ART>
    <role:EDT>Fraser, William</role:EDT>
    <collex:genre>Poetry</collex:genre>
    <dc:date>1828</dc:date>
    <dc:source>The Bijou; or Annual of Literature and the Arts</dc:source>
    <role:PBL>William Pickering</role:PBL>

    <!--NINES specific metadata-->
    <collex:federation>NINES</collex:federation>
    <collex:archive>poetess</collex:archive>
    <collex:genre>Visual Art</collex:genre>
    <collex:thumbnail rdf:resource="http://unixgen.muohio.edu/~poetess/bijou/images/thumbimage1.gif"/>
    <collex:image rdf:resource="http://unixgen.muohio.edu/~poetess/bijou/images/image1.jpg"/>
    <collex:source rdf:resource="http://unixgen.muohio.edu/~poetess/bijou/Bijou1828corpus.xml-text1.xml"/>

    <!--Link that NINES should send users for this object-->
    <rdfs:seeAlso rdf:resource="http://unixgen.muohio.edu/~poetess/bijou/Bijou1828corpus.xml-text1.html"/>

  </pa:anthologies>
</rdf:RDF>

Annotated

Here we see the same root element, <rdf:RDF>, as above. But the first child element is now <pa:anthologies>. "pa" is a custom namespace for the Poetess Archive.

<rdf:RDF>
  <pa:anthologies rdf:about="http://unixgen.muohio.edu/~poetess/bijou/Bijou1828corpus.xml-text1">
    

This object is an image within the 1828 edition of The Bijou. Note that the title of the book is referenced by <dc:source>; <dc:title> merely references the title of the figure.

    <dc:title>Figure 1: The Child and Flowers</dc:title>

Since multiple agents had a hand in creating this object in the book, we find multiple roles listed, one each for the painter, engraver, and editor (who included the image in his design of the book).

    <role:ART>Humphrys, William</role:ART>
    <role:ART>Lawrence, Thomas</role:ART>
    <role:EDT>Fraser, William</role:EDT>

Here is one genre declaration. Another exists farther down in the file. This raises the interesting point that none of the child elements of <pa:anthologies> need to come in any particular order.

    <collex:genre>Poetry</collex:genre>

A nice four digit date.

    <dc:date>1828</dc:date>

The name of the anthology which contains the figure object.

    <dc:source>The Bijou; or Annual of Literature and the Arts</dc:source>

<role:PBL> can indicate any agent involved in the publication process: publisher, printer, etc.

    <role:PBL>William Pickering</role:PBL>

"poetess" is the shorthand reference for the Poetess Archive.

    <!--NINES specific metadata-->
    <collex:archive>poetess</collex:archive>
    <collex:genre>Visual Art</collex:genre>

Below are four different elements, each of which uses the "rdf:resource" attribute. In the first, <collex:thumbnail> points to a small-scale version of the object's digital image. <collex:image> points to the full-size image. <collex:source>, on the other hand, refers to the xml resource which encodes the data originally. Note that this is a different value than the web accessible <rdfs:seeAlso> value, which is an html rendering of the xml source. This is the link that COLLEX will use when pointing users back to the object on the Poetess Archive.

    <collex:thumbnail rdf:resource="http://unixgen.muohio.edu/~poetess/bijou/images/thumbimage1.gif"/>
    <collex:image rdf:resource="http://unixgen.muohio.edu/~poetess/bijou/images/image1.jpg"/>
    <collex:source rdf:resource="http://unixgen.muohio.edu/~poetess/bijou/Bijou1828corpus.xml-text1.xml"/>

    <!--Link that NINES should send users for this object-->
    <rdfs:seeAlso rdf:resource="http://unixgen.muohio.edu/~poetess/bijou/Bijou1828corpus.xml-text1.html"/>
  </pa:anthologies>
</rdf:RDF>

Complex Cases

Example #3

From the Rossetti Archive, the example below shows how several RDF objects can be packaged within a single RDF file. In this case, the primary object is the book by H. C. Marillier, Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life. The object for the book not only includes its own metadata but also refers to objects that encode divisions of the book as well as figures located throughout. The following is a truncated view; the entire RDF file encompasses 227 objects.

<?xml version="1.0" encoding="iso-8859-1"?>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" 
         xmlns:ra="http://www.rossettiarchive.org/schema#" 
         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
         xmlns:role="http://www.loc.gov/loc.terms/relators/"
         xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" 
         xmlns:collex="http://www.collex.org/schema#" 
         xmlns:dcterms="http://purl.org/dc/terms/">
   <ra:rad rdf:about="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <collex:text rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.txt"/>
      <dc:title>Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:title>
      <role:AUT>H. C. Marillier</role:AUT>
      <role:PBL>George Bell and Sons</role:PBL>
      <collex:genre>Primary</collex:genre>
      <collex:genre>Paratext</collex:genre>
      <dcterms:hasPart rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.radheader"/>
      <dcterms:hasPart rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#front0.2"/>
      <dcterms:hasPart rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#0.1"/>
      <dcterms:hasPart rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#0.2"/>
      <dcterms:hasPart rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#0.3"/>
      <dcterms:hasPart rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#back.0.1"/>
      <dc:relation rdf:resource="http://www.rossettiarchive.org/img/op12.m"/>
      <dc:relation rdf:resource="http://www.rossettiarchive.org/img/printersdevice"/>
      <dc:relation rdf:resource="http://www.rossettiarchive.org/img/s117b.m"/>
      <dc:relation rdf:resource="http://www.rossettiarchive.org/img/s442.m"/>
      
      [......................................................................]

      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
   </ra:rad>
   <ra:header rdf:about="http://www.rossettiarchive.org/docs/nd497.r8.m33.radheader">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.radheader.html"/>
      <dc:title>Commentary for Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:title>
      <dc:source>Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:source>
      <role:AUT>Jerome J. McGann</role:AUT>
      <dc:date>2006</dc:date>
      <collex:genre>Secondary</collex:genre>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:header>
   <ra:div rdf:about="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#front0.2">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html#front0.2"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <collex:text rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.front0.2.txt"/>
      <dc:title>In an Artist's Studio</dc:title>
      <dc:source>Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:source>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Poetry</collex:genre>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:div>
   <ra:div rdf:about="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#0.1">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html#0.1"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <collex:text rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.0.1.txt"/>
      <dc:title>Chapter I.</dc:title>
      <dc:source>Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:source>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Paratext</collex:genre>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:div>
   <ra:div rdf:about="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#0.2">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html#0.2"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <collex:text rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.0.2.txt"/>
      <dc:title>Chapter II.</dc:title>
      <dc:source>Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:source>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Paratext</collex:genre>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:div>
   <ra:div rdf:about="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#0.3">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html#0.3"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <collex:text rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.0.3.txt"/>
      <dc:title>Chapter III.</dc:title>
      <dc:source>Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:source>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Paratext</collex:genre>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:div>
   <ra:div rdf:about="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#back.0.1">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html#back.0.1"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <collex:text rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.back.0.1.txt"/>
      <dc:title>Appendix: A Chronological List of Pictures and Drawings by Dante Gabriel Rossetti</dc:title>
      <dc:source>Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:source>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Paratext</collex:genre>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:div>
   <ra:figure rdf:about="http://www.rossettiarchive.org/img/op12.m">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <dc:title>DGR by Watts</dc:title>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Visual Art</collex:genre>
      <collex:thumbnail rdf:resource="http://www.rossettiarchive.org/img/thumbs_small/op12.m.jpg"/>
      <collex:image rdf:resource="http://www.rossettiarchive.org/img/op12.m.jpg"/>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:figure>
   <ra:figure rdf:about="http://www.rossettiarchive.org/img/printersdevice">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <dc:title/>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Visual Art</collex:genre>
      <collex:thumbnail rdf:resource="http://www.rossettiarchive.org/img/thumbs_small/printersdevice.jpg"/>
      <collex:image rdf:resource="http://www.rossettiarchive.org/img/printersdevice.jpg"/>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:figure>
   <ra:figure rdf:about="http://www.rossettiarchive.org/img/s117b.m">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <dc:title>Dantis Amor</dc:title>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Visual Art</collex:genre>
      <collex:thumbnail rdf:resource="http://www.rossettiarchive.org/img/thumbs_small/s117b.m.jpg"/>
      <collex:image rdf:resource="http://www.rossettiarchive.org/img/s117b.m.jpg"/>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:figure>
   <ra:figure rdf:about="http://www.rossettiarchive.org/img/s442.m">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <dc:title>Gabriele Rossetti</dc:title>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Visual Art</collex:genre>
      <collex:thumbnail rdf:resource="http://www.rossettiarchive.org/img/thumbs_small/s442.m.jpg"/>
      <collex:image rdf:resource="http://www.rossettiarchive.org/img/s442.m.jpg"/>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:figure>

   [........................................................................................]

</rdf:RDF>

Annotated

<?xml version="1.0" encoding="iso-8859-1"?>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" 
         xmlns:ra="http://www.rossettiarchive.org/schema#" 
         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
         xmlns:role="http://www.loc.gov/loc.terms/relators/"
         xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" 
         xmlns:collex="http://www.collex.org/schema#" 
         xmlns:dcterms="http://purl.org/dc/terms/">

The first object, <ra:rad> includes metadata for the book as a whole.

   <ra:rad rdf:about="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad">
      <collex:archive>rossetti</collex:archive>

Metadata about the web-accessible versions of this resource: XML, HTML, and plain-text.

      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <collex:text rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.txt"/>

General metadata.

      <dc:title>Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:title>
      <role:AUT>H. C. Marillier</role:AUT>
      <role:PBL>George Bell and Sons</role:PBL>
      <collex:genre>Primary</collex:genre>
      <collex:genre>Paratext</collex:genre>

A list of subordinate objects that are divisions of the present object, encoded through <dcterms:hasPart>.

      <dcterms:hasPart rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.radheader"/>
      <dcterms:hasPart rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#front0.2"/>
      <dcterms:hasPart rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#0.1"/>
      <dcterms:hasPart rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#0.2"/>
      <dcterms:hasPart rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#0.3"/>
      <dcterms:hasPart rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#back.0.1"/>

A list of related objects, in this case figures that appear throughout the text. Each of these figures and subordinate divisions will have an object with its own distinct metadata after the object for the book entire.

      <dc:relation rdf:resource="http://www.rossettiarchive.org/img/op12.m"/>
      <dc:relation rdf:resource="http://www.rossettiarchive.org/img/printersdevice"/>
      <dc:relation rdf:resource="http://www.rossettiarchive.org/img/s117b.m"/>
      <dc:relation rdf:resource="http://www.rossettiarchive.org/img/s442.m"/>
      
      [......................................................................]

The following date format shows the use of <collex:date>. In this case, the values for <rdfs:label> and <rdf:value> are redundant but still valid within the COLLEX system. Because of the automatic generation of Rossetti Archive RDF through XSLT, the <collex:date> format is used as a default, so that any instance of a prosaic date value will be output when it occurs.

      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>

The end of the first object.

   </ra:rad>

The second object begins. This is scholarly commentary, written by Jerome McGann, that is included in the header of the encoded text (hence <ra:header>). The Rossetti Archive deemed that such commentary might be worth collecting in its own right.

   <ra:header rdf:about="http://www.rossettiarchive.org/docs/nd497.r8.m33.radheader">
      <collex:archive>rossetti</collex:archive>

Because this object comes from the same XML source as the primary object, they share the same XML resource value.

      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>

Although they come from the same XML, the Rossetti Archive interface splits off the header commentary into its own HTML, hence the different HTML value.

      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.radheader.html"/>

Metadata for the commentary object.

      <dc:title>Commentary for Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:title>
      <dc:source>Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:source>
      <role:AUT>Jerome J. McGann</role:AUT>
      <dc:date>2006</dc:date>
      <collex:genre>Secondary</collex:genre>

<dcterms:isPartOf> indicates a hierarchically superior object, in this case the object for the book.

      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:header>

The next object encodes a division within the book. It uses a unique identifier located on the <div> element in the XML resource to generated the unique id for the object.

   <ra:div rdf:about="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#front0.2">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html#front0.2"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <collex:text rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.front0.2.txt"/>
      <dc:title>In an Artist's Studio</dc:title>
      <dc:source>Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:source>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Poetry</collex:genre>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:div>

Further divisions.

   <ra:div rdf:about="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#0.1">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html#0.1"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <collex:text rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.0.1.txt"/>
      <dc:title>Chapter I.</dc:title>
      <dc:source>Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:source>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Paratext</collex:genre>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:div>
   <ra:div rdf:about="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#0.2">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html#0.2"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <collex:text rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.0.2.txt"/>
      <dc:title>Chapter II.</dc:title>
      <dc:source>Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:source>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Paratext</collex:genre>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:div>
   <ra:div rdf:about="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#0.3">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html#0.3"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <collex:text rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.0.3.txt"/>
      <dc:title>Chapter III.</dc:title>
      <dc:source>Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:source>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Paratext</collex:genre>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:div>
   <ra:div rdf:about="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad#back.0.1">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html#back.0.1"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <collex:text rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.back.0.1.txt"/>
      <dc:title>Appendix: A Chronological List of Pictures and Drawings by Dante Gabriel Rossetti</dc:title>
      <dc:source>Dante Gabriel Rossetti, An Illustrated Memorial of His Art and Life</dc:source>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Paratext</collex:genre>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:div>

RDF objects for figures within the book. In these cases, we're still in the process of explointing our data in a more correct fashion: Marillier is acting as an editor rather than as an author when including these objects in the book; artist information, though not available in the <figure> element, can be extracted by other means.

   <ra:figure rdf:about="http://www.rossettiarchive.org/img/op12.m">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <dc:title>DGR by Watts</dc:title>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Visual Art</collex:genre>
      <collex:thumbnail rdf:resource="http://www.rossettiarchive.org/img/thumbs_small/op12.m.jpg"/>
      <collex:image rdf:resource="http://www.rossettiarchive.org/img/op12.m.jpg"/>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:figure>
   <ra:figure rdf:about="http://www.rossettiarchive.org/img/printersdevice">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <dc:title/>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Visual Art</collex:genre>
      <collex:thumbnail rdf:resource="http://www.rossettiarchive.org/img/thumbs_small/printersdevice.jpg"/>
      <collex:image rdf:resource="http://www.rossettiarchive.org/img/printersdevice.jpg"/>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:figure>
   <ra:figure rdf:about="http://www.rossettiarchive.org/img/s117b.m">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <dc:title>Dantis Amor</dc:title>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Visual Art</collex:genre>
      <collex:thumbnail rdf:resource="http://www.rossettiarchive.org/img/thumbs_small/s117b.m.jpg"/>
      <collex:image rdf:resource="http://www.rossettiarchive.org/img/s117b.m.jpg"/>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:figure>
   <ra:figure rdf:about="http://www.rossettiarchive.org/img/s442.m">
      <collex:archive>rossetti</collex:archive>
      <collex:source rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.xml"/>
      <rdfs:seeAlso rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad.html"/>
      <dc:title>Gabriele Rossetti</dc:title>
      <role:AUT>H. C. Marillier</role:AUT>
      <dc:date>
         <collex:date>
            <rdfs:label>1899</rdfs:label>
            <rdf:value>1899</rdf:value>
         </collex:date>
      </dc:date>
      <collex:genre>Visual Art</collex:genre>
      <collex:thumbnail rdf:resource="http://www.rossettiarchive.org/img/thumbs_small/s442.m.jpg"/>
      <collex:image rdf:resource="http://www.rossettiarchive.org/img/s442.m.jpg"/>
      <dcterms:isPartOf rdf:resource="http://www.rossettiarchive.org/docs/nd497.r8.m33.rad"/>
   </ra:figure>

   [........................................................................................]

</rdf:RDF>

Example #4

The following RDF extract represents Original Fables, a book of verse from the The British Women Romantic Poets Project. It uses the <dcterms:hasPart> to show the individual poems that constitute the volume.

<?xml version="1.0" encoding="utf-8"?>
<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/"
    xmlns:collex="http://www.collex.org/schema#" 
    xmlns:dcterms="http://purl.org/dc/terms/"
    xmlns:bwrp="http://digital/ucdavis.edu/projects/bwrp/schema#" 
    xmlns:role="http://www.loc.gov/loc.terms/relators">
    <bwrp:doc rdf:about="http://digital.lib.ucdavis.edu/projects/Works/LadyAOrigi">
        <dc:title>Original fables</dc:title>
        <role:AUT>A Lady.</role:AUT>
        <dc:date>1810</dc:date>
        <collex:archive>bwrp</collex:archive>
        <collex:genre>Poetry</collex:genre>
        <dcterms:hasPart rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi#d0e419"/>
        <dcterms:hasPart rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi#d0e651"/>
        <dcterms:hasPart rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi#d0e761"/>
        <dcterms:hasPart rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi#d0e791"/>
        <dcterms:hasPart rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi#d0e938"/>
        <dcterms:hasPart rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi#d0e973"/>
        <dcterms:hasPart rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi#d0e1071"/>
        <dcterms:hasPart rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi#d0e1101"/>

        [................................................]

        <collex:genre>Primary</collex:genre>
        <collex:source rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi.sgm"/>
        <rdfs:seeAlso rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi.html"/>
        <collex:thumb rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/images/LadyAOrigi2l.jpg"/>
        <collex:image rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/images/LadyAOrigi2h.jpg"/>
        <collex:text rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/text/LadyAOrigi.txt"/>
    </bwrp:doc>
    <bwrp:div rdf:about="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi#d0e419">
        <dc:title>THE PIGEON CARRIERS.</dc:title>
        <role:AUT>A Lady.</role:AUT>
        <dc:date>1810</dc:date>
        <collex:archive>bwrp</collex:archive>
        <collex:genre>Poetry</collex:genre>
        <collex:genere>Primary</collex:genere>
        <collex:source rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi.sgm"/>
        <collex:seeAlso rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi.htm"/>
        <dcterms:isPartOf rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi"/>
    </bwrp:div>
    <bwrp:div rdf:about="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi#d0e651">
        <dc:title>FABLE I. The inconstant Dove.</dc:title>
        <role:AUT>A Lady.</role:AUT>
        <dc:date>1810</dc:date>
        <collex:archive>bwrp</collex:archive>
        <collex:genre>Poetry</collex:genre>
        <collex:genere>Primary</collex:genere>
        <collex:source rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi.sgm"/>
        <collex:seeAlso rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi.htm"/>
        <dcterms:isPartOf rdf:resource="http://digital.lib.ucdavis.edu/projects/bwrp/Works/LadyAOrigi"/>
    </bwrp:div>

    [.....................................................]

</rdf:RDF>