[libdb-develop] FRBR in XML
Status: Inactive
Brought to you by:
morbus
|
From: Bruce D'A. <bd...@fa...> - 2004-01-25 14:13:26
|
Was just playing around trying to understand how to represent FRBR in
XML. Is this more-or-less right? It's meant to be a speech, performed
at a conference, and then published as, say, a book chapter that is in
electronic form. Among other things, should these be nested levels, as
I have them here?
<record ID="one">
<work>
<creator role="speaker">
<person ID="doej">
<name>
<given>John</given>
<other abbrev="yes">Q</other>
<family>Doe</family>
</name>
</person>
</creator>
<title>
<titleMain>Title</titleMain>
<titleSub>Subtitle</titleSub>
</title>
</work>
<expression ID="one-A">
<isPartOf>
<event>
<title>
<titleMain>A Conference</titleMain>
</title>
<date>2002-10-10</date>
<place>New York</place>
</event>
</isPartOf>
<manifestation ID="one-B" status="published">
<isPartOf>
<origin>
<publisher>
<organization>
<name>
<full>ABC Publishers</full>
</name>
<place>New York</place>
</organization>
</publisher>
<dateIssued>2003</dateIssued>
</origin>
<partDesc>
<range unit="page">
<start>21</start>
<end>33</end>
</range>
</partDesc>
</isPartOf>
<item>
<location>http://www.example.com/one.pdf</location>
</item>
</manifestation>
</expression>
</record>
|