Biblio

Mostly as an effort to document my thinking about my needs for bibliographic metadata, I’ve gone back and worked on my biblio schema a bit.

File is here. I still want to break out the person and org stuff into a separate schema that I import.

Below is an example instance. It shows influence from the recent RDF discussions, though I’m not sure that’s a good thing for the element naming or not.

<biblio>
  <item id="one">
    <isCreatedBy role="author">
      <person id="doe">
        <name>
          <given>Jane</given>
          <family>Doe</family>
        </name>
      </person>
    </isCreatedBy>
    <hasTitle>
      <titleMain>A Title</titleMain>
      <titleSub>Subtitle</titleSub>
    </hasTitle>
    <isPartOf type="single-issue">
      <isCreatedBy role="editor">
        <person>
          <name>
            <given>John</given>
            <family>Smith</family>
          </name>
        </person>
      </isCreatedBy>
      <hasTitle>
        <titleMain>Book Title</titleMain>
      </hasTitle>
      <hasOrigin>
        <isPublishedBy>
          <organization>
            <name>
              <fullName>ABC Publishers</fullName>
            </name>
            <address>
              <city>New York</city>
            </address>
        </organization>
        </isPublishedBy>
        <dateIssued year="2002"/>
      </hasOrigin>
      <partDesc>
        <range unit="page">
          <start>23</start>
          <end>45</end>
        </range>
      </partDesc>
    </isPartOf>
  </item>
</biblio>

Comments are closed.


Creative Commons License Creative Commons License