Skip to content
This repository has been archived by the owner on Oct 12, 2018. It is now read-only.

MARC 856 contributor biographical information #234

Open
kiegel opened this issue Jan 27, 2015 · 0 comments
Open

MARC 856 contributor biographical information #234

kiegel opened this issue Jan 27, 2015 · 0 comments

Comments

@kiegel
Copy link

kiegel commented Jan 27, 2015

When field 856 has $3 Contributor biographical information, the conversion program understands that it should be an annotation.

856 42 |3 Contributor biographical information |u http://catdir.loc.gov/catdir/bios/hol052/2003041621.html

gives:

<http://example.org/99161787763601452annotation14> a bf:Annotation ;
    bf:annotates <http://example.org/99161787763601452person9> ;
    bf:annotationBody <http://catdir.loc.gov/catdir/bios/hol052/2003041621.html> ;
    bf:label "Contributor biographical information" .

<http://example.org/99161787763601452annotation15> a bf:Annotation ;
    bf:annotates <http://example.org/99161787763601452person10> ;
    bf:annotationBody <http://catdir.loc.gov/catdir/bios/hol052/2003041621.html> ;
    bf:label "Contributor biographical information" .

<http://example.org/99161787763601452person9> a bf:Person ;
    bf:authorizedAccessPoint "Hesse, Hermann, 1877-1962." ;
    bf:hasAuthority [ a madsrdf:Authority ;
            madsrdf:authoritativeLabel "Hesse, Hermann, 1877-1962." ] ;
    bf:label "Hesse, Hermann, 1877-1962." .

<http://example.org/99161787763601452person10> a bf:Person ;
    bf:authorizedAccessPoint "Roloff, Michael." ;
    bf:hasAuthority [ a madsrdf:Authority ;
            madsrdf:authoritativeLabel "Roloff, Michael." ] ;
    bf:label "Roloff, Michael." .

The problem is that you can't know who the annotation is about, so the conversion currently points it at every person in the record. This likely to be incorrect, as in this case, where the biographical information is about the author Hesse but not the translator Roloff.

A better solution is to create a single annotation that points at the Instance. This will always be correct. For example,

<http://example.org/99161787763601452annotation14> a bf:Annotation ;
    bf:annotates <http://example.org/99161787763601452instance24> ;
    bf:annotationBody <http://catdir.loc.gov/catdir/bios/hol052/2003041621.html> ;
    bf:label "Contributor biographical information" .

(OCLC # 51518461)

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant