Mitwirkende und ihre Rollen mit bf:contribution (hbz)

Um eine  große Menge verschiedener Properties (dct:creator, dc:contributor, alle MARC Relator) für die Verknüpfung einer Ressource mit einer Person oder Körperschaft zu vermeiden, wird in im lobid-Dienst des hbz der Ansatz gewählt, mit bf:contribution eine Liste von Mitwirkungs-Entitäten als blank node zu verlinken, zu denen die Rolle (bf:role+MARC relator) und der Akteur (bf:agent) angegeben wird.

Beispiel

http://lobid.org/resources/HT017646882 (JSON-LD: http://lobid.org/resources/HT017646882?format=json)

JSON-LD:

{
   "@context":"http://lobid.org/resources/context.jsonld",
   "contribution":[
      {
         "agent":{
            "altLabel":[
               "Woolf, Adeline Virginia Stephen",
               "Woolf, Virginia A.",
               "Ṿolf, Ṿirginyah",
               "Woolf, Virginia Stephen",
               "Woolf, Adeline V.",
               "Woolf, Virginia Adeline",
               "Vulf, Virdzhiniia",
               "Gulph, Birtzinia",
               "Woolf, Virginia S.",
               "Ulf, Virxhinia",
               "Wūlf, Fīrgīnā",
               "Woolf, Adeline Virginia",
               "Stephen, Virginia",
               "Ulf, Virzhiniia"
            ],
            "id":"http://d-nb.info/gnd/118635174",
            "label":"Woolf, Virginia",
            "type":[
               "Person"
            ]
         },
         "role":{
            "id":"http://id.loc.gov/vocabulary/relators/cre",
            "label":"Autor/in"
         },
         "type":[
            "Contribution"
         ]
      },
      {
         "agent":{
            "altLabel":"Ptok, F.",
            "id":"http://d-nb.info/gnd/124492258",
            "label":"Ptok, Friedhelm",
            "type":[
               "Person"
            ]
         },
         "role":{
            "id":"http://id.loc.gov/vocabulary/relators/ctb",
            "label":"Mitwirkende"
         },
         "type":[
            "Contribution"
         ]
      },
      {
         "agent":{
            "id":"http://d-nb.info/gnd/1023941805",
            "label":"Langenbach, Katja",
            "type":[
               "Person"
            ]
         },
         "role":{
            "id":"http://id.loc.gov/vocabulary/relators/drt",
            "label":"Regie"
         },
         "type":[
            "Contribution"
         ]
      }
   ],
   "id":"http://lobid.org/resources/HT017646882#!"
}

Turtle:

@prefix bf: <http://id.loc.gov/ontologies/bibframe/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://lobid.org/resources/HT017646882#!> bf:contribution ( [ a bf:Contribution ;
                bf:agent <http://d-nb.info/gnd/118635174> ;
                bf:role <http://id.loc.gov/vocabulary/relators/cre> ] [ a bf:Contribution ;
                bf:agent <http://d-nb.info/gnd/124492258> ;
                bf:role <http://id.loc.gov/vocabulary/relators/ctb> ] [ a bf:Contribution ;
                bf:agent <http://d-nb.info/gnd/1023941805> ;
                bf:role <http://id.loc.gov/vocabulary/relators/drt> ] ) .

<http://d-nb.info/gnd/1023941805> a <http://d-nb.info/standards/elementset/gnd#Person> ;
    rdfs:label "Langenbach, Katja" .

<http://d-nb.info/gnd/118635174> a <http://d-nb.info/standards/elementset/gnd#Person> ;
    rdfs:label "Woolf, Virginia" ;
    skos:altLabel "Gulph, Birtzinia",
        "Stephen, Virginia",
        "Ulf, Virxhinia",
        "Ulf, Virzhiniia",
        "Vulf, Virdzhiniia",
        "Woolf, Adeline V.",
        "Woolf, Adeline Virginia",
        "Woolf, Adeline Virginia Stephen",
        "Woolf, Virginia A.",
        "Woolf, Virginia Adeline",
        "Woolf, Virginia S.",
        "Woolf, Virginia Stephen",
        "Wūlf, Fīrgīnā",
        "Ṿolf, Ṿirginyah" .

<http://d-nb.info/gnd/124492258> a <http://d-nb.info/standards/elementset/gnd#Person> ;
    rdfs:label "Ptok, Friedhelm" ;
    skos:altLabel "Ptok, F." .

Publikationsangaben gebündelt als schema:PublicationEvent (hbz)

Zur besseren Strukturierung und Übersichtlichkeit der Daten werden in lobid sämtliche Angaben zu Primär und Sekundärpublikationen unter schema:publication gruppiert. Neben Publikationsort , -datum und Publisher sind dies Angaben zur Publikationsfrequenz und Anmerkungen.

Beispiel (JSON-LD):

 

{
   "@context":"http://lobid.org/resources/context.jsonld",
   "id":"http://lobid.org/resources/HT018428249#!",
   "publication":[
      {
         "publishedBy":"Stat. Off.",
         "location":"London",
         "type":[
            "PublicationEvent"
         ],
         "startDate":"1854",
         "frequency":[
            {
               "id":"http://marc21rdf.info/terms/continuingfre#a",
               "label":"jährlich"
            }
         ]
      },
      {
         "publishedBy":"Münchener Digitalisierungszentrum",
         "description":[
            "München : Münchener Digitalisierungszentrum, 2008-2013",
            "Digital. Ausg."
         ],
         "location":"München",
         "type":[
            "SecondaryPublicationEvent"
         ],
         "startDate":"2008"
      }
   ]
}

 

Beispiel (Turtle):

@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix bf: <http://id.loc.gov/ontologies/bibframe/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://lobid.org/resources/HT018428249#!> schema:publication [ a <http://purl.org/lobid/lv#SecondaryPublicationEvent> ;
            dcterms:description "Digital. Ausg.",
                "München : Münchener Digitalisierungszentrum, 2008-2013" ;
            schema:location "München" ;
            schema:publishedBy "Münchener Digitalisierungszentrum" ;
            schema:startDate "2008"^^xsd:gYear ],
        [ a schema:PublicationEvent ;
            bf:frequency <http://marc21rdf.info/terms/continuingfre#a> ;
            schema:location "London" ;
            schema:publishedBy "Stat. Off." ;
            schema:startDate "1854"^^xsd:gYear ] .

<http://marc21rdf.info/terms/continuingfre#a> rdfs:label "jährlich" .
  • Keine Stichwörter