API-Grundlagen

HTTP GET
/resources/990150876610206441
Suche über alle Felder
/resources/search?q=kunst
Suche mit Paginierung
/resources/search?q=kunst&from=2&size=2
Einschränkung auf Bestand in Bibliotheken
/resources/search?q=kunst&owner=DE-290,DE-294

Abfragemöglichkeiten

Einfache Feldsuche: "title"
/resources/search?q=title:ehrenfeld
Geschachtelte Feldsuche: "contribution.agent.label"
/resources/search?q=contribution.agent.label:Melville
In eingebetteten Objekten suchen: "nested"
/resources/search?format=json&nested=contribution:contribution.agent.label:Melville AND contribution.role.label:Autor
Bereichssuche: "publication.startDate:[* TO 1500]"
/resources/search?q=publication.startDate:[* TO 1500]
Aggregationen: "aggregations"
/resources/search?q=kunst&format=json&aggregations=subject.id,subject.componentList.id
Löschungen zwischen zwei Zeitpunkten
/resources/deletions/search?q=describedBy.deleted:[20180328 TO 20180405]

Eine detaillierte Beschreibung der Abfragemöglichkeiten finden Sie in der Dokumentation der Lucene query string syntax.

Bitte beachten Sie insbesondere, dass bei der Suche nach URLs Sonderzeichen wie Doppelpunkte, Schräg- und Bindestriche maskiert werden müssen:

URL-Suche: "subject.componentList.id:https\:\/\/d\-nb.info\/gnd\/2015876\-2"
/resources/search?q=subject.componentList.id:https\:\/\/d\-nb.info\/gnd\/2015876\-2

Inhaltstypen

Standardmäßig liefert dieser Dienst strukturierte API-Antworten (als JSON):

curl https://lobid.org/resources/990150876610206441

Er unterstützt Content-Negotiation für JSON (application/json), RSS (application/rss+xml) und HTML (text/html):

curl --header "Accept: application/json" https://lobid.org/resources/search?q=kunst

curl --header "Accept: application/rss+xml" https://lobid.org/resources/search?q=kunst

Der Query-Parameter "format" (Werte: html,json,rss) kann verwendet werden, um den Accept-Header aufzuheben, z.B. zur Anzeige von JSON im Browser:

/resources/990150876610206441?format=json

Oder zum Abonnieren eines RSS-Feeds:

/resources/search?q=kunst&format=rss

Der Wert des Format-Parameters kann für Einzeltreffer auch in URLs als Dateiendung verwendet werden:

/resources/990150876610206441.json

Einzeltreffer unterstützen zudem verschiedene RDF-Serialisierungen (siehe Abschnitt zu JSON-LD).

Bulk-Downloads

Bulk-Downloads können im Format JSON lines (Accept: application/x-jsonlines oder format=jsonl) bezogen werden:

curl --header "Accept: application/x-jsonlines" "https://lobid.org/resources/search?q=contribution.agent.label:Melville" > melville.jsonl

Für größere Anfragen kann die Antwort als gzip komprimiert werden:

curl --header "Accept-Encoding: gzip" "https://lobid.org/resources/search?q=contribution.agent.label:Melville&format=jsonl" > melville.jsonl.gz

Siehe auch diesen Abschnitt zu Bulk-Downloads in unserem Blog.

Autovervollständigung

Die API unterstützt ein spezielles Antwortformat mit Vorschlägen zur Vervollständigung aus einem angegebenen Feld:

Titel vorschlagen: "format=json:title"
/resources/search?q=title:Werth&format=json:title
Mitwirkende vorschlagen: "format=json:agent"
/resources/search?q=contribution.agent.label:Hein&format=json:agent
Schlagwort vorschlagen: "format=json:subject"
/resources/search?q=subject.componentList.label:Pferd&format=json:subject

Damit kann z.B. eine Autovervollständigung umgesetzt werden, bei der zur Suche an Stelle des gewählten Labels die entsprechende ID verwendet werden kann:

Dieses Beispiel ist folgendermaßen mit JavaScript und jQuery UI implementiert:

$('input.search-resources').autocomplete({
	source : function(request, response) {
		$.ajax({
			url : "https://lobid.org/resources/search",
			dataType : "jsonp",
			data : {
				q : request.term,
				format : "json:title"
			},
			success : function(data) {
				response(data);
			}
		});
	},
	select: function(event, ui) {
		$('#id').val('"'+ui.item.id+'"');
	}
});

JSON-LD

JSON-API-Anfragen liefern JSON-LD. Um damit zu experimentieren können sie das JSON-LD oder URLs im JSON-LD Playground einfügen.

JSON-LD Context
/resources/context.jsonld
RDF-Konvertierung
Mit einem JSON-LD-Prozessor können sie API-Antworten in andere RDF-Serialisierungen umwandeln, z.B. in N-Quads mit jsonld-cli:

jsonld format --nquads https://lobid.org/resources/990150876610206441

Einzeltreffer können per Accept Header auch direkt als RDF/XML, Turtle oder N-Triples angefordert werden:

curl --header "Accept: application/rdf+xml" https://lobid.org/resources/990150876610206441

curl --header "Accept: text/turtle" https://lobid.org/resources/990150876610206441

curl --header "Accept: application/n-triples" https://lobid.org/resources/990150876610206441

Dabei werden wie im Abschnitt zu Inhaltstypen beschrieben neben dem Format-Parameter auch URLs mit Formatendungen unterstützt:

/resources/990150876610206441.rdf

/resources/990150876610206441.ttl

/resources/990150876610206441.nt

Beispieldokumente
Diese Beispieldokumente wurden mit hypothes.is annotiert, um den Einstieg in die Datenlage zu erleichtern. Bei Klick auf einen gelbmarkierten JSON-Key geht ein Popup-Fenster auf mit Informationen zu Name, Beschreibung, Abdeckung sowie Anwendungsbeispielen des Feldes.

Springe zu: Buch, Aufsatz, Periodikum, Serienband

Buch
{
  "@context" : "http://lobid.org/resources/context.jsonld",
  "almaMmsId" : "990212549810206441",
  "hbzId" : "HT019025795",
  "deprecatedUri" : "http://lobid.org/resources/HT019025795#!",
  "isbn" : [ "9783862065752", "3862065758" ],
  "oclcNumber" : [ "1073325691" ],
  "title" : "Das Kapital",
  "otherTitleInformation" : [ "Schuld - Territorium - Utopie" ],
  "edition" : [ "1. Auflage" ],
  "publication" : [ {
    "startDate" : "2016",
    "type" : [ "PublicationEvent" ],
    "location" : [ "Dortmund" ],
    "publishedBy" : [ "Verlag Kettler" ]
  } ],
  "describedBy" : {
    "id" : "http://lobid.org/resources/990212549810206441",
    "label" : "Webseite der hbz-Ressource 990212549810206441",
    "type" : [ "BibliographicDescription" ],
    "inDataset" : {
      "id" : "http://lobid.org/resources/dataset#!",
      "label" : "lobid-resources – Der hbz-Verbundkatalog als Linked Open Data"
    },
    "resultOf" : {
      "type" : [ "CreateAction" ],
      "endTime" : "2024-03-19T03:24:39",
      "instrument" : {
        "id" : "https://github.com/hbz/lobid-resources",
        "type" : [ "SoftwareApplication" ],
        "label" : "Software lobid-resources"
      },
      "object" : {
        "id" : "https://lobid.org/marcxml/990212549810206441",
        "dateCreated" : "2021-04-05",
        "dateModified" : "2023-10-20",
        "type" : [ "DataFeedItem" ],
        "label" : "hbz-Ressource 990212549810206441 im Exportformat MARC21 XML",
        "inDataset" : {
          "id" : "https://datahub.io/dataset/hbz_unioncatalog",
          "label" : "hbz_unioncatalog"
        },
        "sourceOrganization" : {
          "id" : "http://lobid.org/organisations/DE-Due18#!",
          "label" : "Kunstakademie Düsseldorf, Bibliothek"
        },
        "provider" : {
          "id" : "http://lobid.org/organisations/DE-101#!",
          "label" : "Deutsche Nationalbibliothek"
        },
        "modifiedBy" : [ {
          "id" : "http://lobid.org/organisations/DE-Kn3#!",
          "label" : "Kunst- und Museumsbibliothek der Stadt Köln"
        } ]
      }
    },
    "license" : [ {
      "id" : "http://creativecommons.org/publicdomain/zero/1.0",
      "label" : "Creative Commons-Lizenz CC0 1.0 Universal"
    } ]
  },
  "sameAs" : [ {
    "id" : "http://hub.culturegraph.org/resource/HBZ-HT019025795",
    "label" : "Culturegraph Ressource"
  }, {
    "id" : "http://worldcat.org/oclc/1073325691",
    "label" : "OCLC Ressource"
  } ],
  "tableOfContents" : [ {
    "label" : "Inhaltsverzeichnis",
    "id" : "http://digitale-objekte.hbz-nrw.de/storage2/2017/03/04/file_118/7132111.pdf"
  } ],
  "description" : [ {
    "label" : "Inhaltstext",
    "id" : "http://deposit.d-nb.de/cgi-bin/dokserv?id=28db3e0fdf894a398b3474ca36b10311&prov=M&dok_var=1&dok_ext=htm"
  } ],
  "related" : [ {
    "note" : [ "Online-Ausgabe, Englische Version" ],
    "isbn" : [ "9783862065769", "3862065766" ]
  } ],
  "inCollection" : [ {
    "id" : "http://lobid.org/organisations/DE-655#!",
    "label" : "hbz - Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen, Netzwerkzone",
    "type" : [ "Collection" ]
  } ],
  "language" : [ {
    "id" : "http://id.loc.gov/vocabulary/iso639-2/ger",
    "label" : "Deutsch"
  } ],
  "extent" : "244 Seiten : Illustrationen",
  "note" : [ "Impresum: \"Diese Publikation erscheint anlässlich der Ausstellung Das Kapital. Schuld-Territorium-Utopie. Eine Ausstellung der Nationalgalerie im Hamburger Bahnhof - Museum für Gegenwart - Berlin, 2. Juli-6. November 2016\"" ],
  "natureOfContent" : [ {
    "label" : "Ausstellungskatalog",
    "id" : "https://d-nb.info/gnd/4135467-9"
  }, {
    "label" : "Katalog",
    "id" : "https://d-nb.info/gnd/4163417-2"
  } ],
  "subject" : [ {
    "type" : [ "Concept" ],
    "source" : {
      "label" : "Freie Verschlagwortung",
      "id" : "https://www.wikidata.org/wiki/Q47524318"
    },
    "label" : "Cathrine Nichols"
  }, {
    "type" : [ "Concept" ],
    "source" : {
      "label" : "Freie Verschlagwortung",
      "id" : "https://www.wikidata.org/wiki/Q47524318"
    },
    "label" : "Eugen Blume"
  }, {
    "type" : [ "Concept" ],
    "source" : {
      "label" : "Freie Verschlagwortung",
      "id" : "https://www.wikidata.org/wiki/Q47524318"
    },
    "label" : "Staatliche Museen zu Berlin"
  }, {
    "notation" : "700",
    "type" : [ "Concept" ],
    "source" : {
      "label" : "Sachgruppen der DNB",
      "id" : "https://bartoc.org/en/node/20049"
    },
    "label" : "Künste, Bildende Kunst allgemein"
  }, {
    "type" : [ "Concept" ],
    "source" : {
      "label" : "Dewey-Dezimalklassifikation",
      "id" : "https://d-nb.info/gnd/4149423-4"
    },
    "label" : "Künste",
    "notation" : "700",
    "version" : "sdnb"
  }, {
    "type" : [ "ComplexSubject" ],
    "label" : "Beuys, Joseph: Das Kapital Raum 1970-1977",
    "componentList" : [ {
      "type" : [ "Work" ],
      "label" : "Beuys, Joseph: Das Kapital Raum 1970-1977",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4134847-3",
      "gndIdentifier" : "4134847-3",
      "dateOfBirth" : "1921",
      "dateOfDeath" : "1986"
    } ]
  }, {
    "type" : [ "ComplexSubject" ],
    "label" : "Kunst | Kapitalismus (Motiv) | Geschichte",
    "componentList" : [ {
      "type" : [ "SubjectHeading" ],
      "label" : "Kunst",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4114333-4",
      "gndIdentifier" : "4114333-4",
      "altLabel" : [ "Bildende Kunst", "Kunstdenkmal (Kunst)" ]
    }, {
      "type" : [ "SubjectHeading" ],
      "label" : "Kapitalismus (Motiv)",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4221315-0",
      "gndIdentifier" : "4221315-0"
    }, {
      "label" : "Geschichte"
    } ]
  } ],
  "subjectslabels" : [ "Cathrine Nichols", "Eugen Blume", "Staatliche Museen zu Berlin", "Beuys, Joseph: Das Kapital Raum 1970-1977", "Kunst", "Kapitalismus (Motiv)", "Geschichte" ],
  "hasItem" : [ {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "Y3, BER 85 / 2016",
    "serialNumber" : "132543-10",
    "currentLibrary" : "X6001",
    "currentLocation" : "MAG",
    "heldBy" : {
      "isil" : "DE-Due18",
      "id" : "http://lobid.org/organisations/DE-Due18#!",
      "label" : "Kunstakademie Düsseldorf, Bibliothek"
    },
    "seeAlso" : [ "https://discovery.kunstakademie-duesseldorf.de/permalink/49HBZ_KAD/hsdblh/alma990212549810206441" ],
    "id" : "http://lobid.org/items/990212549810206441:DE-Due18:2311856120006458#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "MSM Gd 21 Kapi",
    "serialNumber" : "keinBarcode",
    "currentLibrary" : "SM001",
    "currentLocation" : "MSM",
    "heldBy" : {
      "isil" : "DE-Bed1",
      "id" : "http://lobid.org/organisations/DE-Bed1#!",
      "label" : "Museumsbibliothek der Stiftung Museum Schloss Moyland, Sammlung van der Grinten, Joseph Beuys Archiv des Landes Nordrhein-Westfalen"
    },
    "id" : "http://lobid.org/items/990212549810206441:DE-Bed1:236656600007822#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "KDWB43567",
    "serialNumber" : "DE00515463",
    "currentLibrary" : "E0001",
    "currentLocation" : "E11",
    "heldBy" : {
      "isil" : "DE-465",
      "id" : "http://lobid.org/organisations/DE-465#!",
      "label" : "Universitätsbibliothek Duisburg-Essen"
    },
    "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990212549810206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ],
    "id" : "http://lobid.org/items/990212549810206441:DE-465:23384650610006446#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "KMB/YG BERLINW 33  2016 A",
    "serialNumber" : "KMB/17/0018136",
    "currentLibrary" : "KN3",
    "currentLocation" : "KN3-KMB",
    "heldBy" : {
      "isil" : "DE-Kn3",
      "id" : "http://lobid.org/organisations/DE-Kn3#!",
      "label" : "Kunst- und Museumsbibliothek der Stadt Köln"
    },
    "seeAlso" : [ "https://katalog.ub.uni-koeln.de/portal/search.html?num=20&page=1&l=de&srt=year_desc&tab=books&hbzid=990212549810206441&fdb=uni" ],
    "id" : "http://lobid.org/items/990212549810206441:DE-Kn3:23256212970006476#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "3C 40977",
    "serialNumber" : "6-00456324-5",
    "currentLibrary" : "ZB",
    "currentLocation" : "ZB_FHM1",
    "heldBy" : {
      "isil" : "DE-6",
      "id" : "http://lobid.org/organisations/DE-6#!",
      "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek"
    },
    "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990212549810206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ],
    "id" : "http://lobid.org/items/990212549810206441:DE-6:23528442050006449#!"
  } ],
  "medium" : [ {
    "label" : "Print",
    "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010"
  } ],
  "bibliographicLevel" : {
    "label" : "Monograph/Item",
    "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item"
  },
  "type" : [ "BibliographicResource", "Book" ],
  "responsibilityStatement" : [ "für die Nationalgalerie der Staatlichen Museen zu Berlin herausgegeben von Eugen Blume und Catherine Nichols" ],
  "contribution" : [ {
    "agent" : {
      "gndIdentifier" : "1049709292",
      "id" : "https://d-nb.info/gnd/1049709292",
      "label" : "Nichols, Catherine",
      "type" : [ "Person" ],
      "dateOfBirth" : "1974"
    },
    "role" : {
      "id" : "http://id.loc.gov/vocabulary/relators/edt",
      "label" : "Herausgeber/in"
    },
    "type" : [ "Contribution" ]
  }, {
    "agent" : {
      "gndIdentifier" : "130408026",
      "id" : "https://d-nb.info/gnd/130408026",
      "label" : "Blume, Eugen",
      "type" : [ "Person" ],
      "dateOfBirth" : "1951"
    },
    "role" : {
      "id" : "http://id.loc.gov/vocabulary/relators/cur",
      "label" : "Kurator/in"
    },
    "type" : [ "Contribution" ]
  }, {
    "agent" : {
      "gndIdentifier" : "5085928-6",
      "id" : "https://d-nb.info/gnd/5085928-6",
      "label" : "Hamburger Bahnhof - Museum für Gegenwart - Berlin",
      "type" : [ "CorporateBody" ],
      "altLabel" : [ "Museum für Gegenwart Berlin", "Nationalgalerie im Hamburger Bahnhof - Museum für Gegenwart Berlin", "Nationalgalerie im Hamburger Bahnhof", "Museum Hamburger Bahnhof", "Nationalgalerie im Hamburger Bahnhof, Museum für Gegenwart", "Neue Galerie im Hamburger Bahnhof, Museum für Gegenwart Berlin" ]
    },
    "role" : {
      "id" : "http://id.loc.gov/vocabulary/relators/orm",
      "label" : "Veranstalter/in"
    },
    "type" : [ "Contribution" ]
  }, {
    "agent" : {
      "gndIdentifier" : "5014401-7",
      "id" : "https://d-nb.info/gnd/5014401-7",
      "label" : "Nationalgalerie (Berlin)",
      "type" : [ "CorporateBody" ],
      "altLabel" : [ "NG", "National-Galerie", "Staatliche Museen zu Berlin Nationalgalerie", "Staatliche Museen Nationalgalerie", "Nationalgalerie der Staatlichen Museen zu Berlin", "Königliche Nationalgalerie", "Wagenersche und Nationalgalerie", "Galería Nacional (Berlin)", "Nationalgalerie - Staatliche Museen zu Berlin" ]
    },
    "role" : {
      "id" : "http://id.loc.gov/vocabulary/relators/orm",
      "label" : "Veranstalter/in"
    },
    "type" : [ "Contribution" ]
  }, {
    "agent" : {
      "gndIdentifier" : "1064330282",
      "id" : "https://d-nb.info/gnd/1064330282",
      "label" : "DruckVerlag Kettler GmbH",
      "type" : [ "CorporateBody" ],
      "altLabel" : [ "DruckVerlag Kettler GmbH (Dortmund)" ]
    },
    "role" : {
      "id" : "http://id.loc.gov/vocabulary/relators/pbl",
      "label" : "Verlag"
    },
    "type" : [ "Contribution" ]
  } ],
  "id" : "http://lobid.org/resources/990212549810206441#!"
}
Aufsatz
{
  "@context" : "http://lobid.org/resources/context.jsonld",
  "almaMmsId" : "990119006850206441",
  "hbzId" : "HT013577568",
  "deprecatedUri" : "http://lobid.org/resources/HT013577568#!",
  "title" : "Ubier, Chatten, Bataver",
  "otherTitleInformation" : [ "Mittel- und Niederrhein ca. 70 - 71 v. Chr. anhand germanischer Münzen" ],
  "publication" : [ {
    "startDate" : "2003",
    "type" : [ "PublicationEvent" ]
  } ],
  "describedBy" : {
    "id" : "http://lobid.org/resources/990119006850206441",
    "label" : "Webseite der hbz-Ressource 990119006850206441",
    "type" : [ "BibliographicDescription" ],
    "inDataset" : {
      "id" : "http://lobid.org/resources/dataset#!",
      "label" : "lobid-resources – Der hbz-Verbundkatalog als Linked Open Data"
    },
    "resultOf" : {
      "type" : [ "CreateAction" ],
      "endTime" : "2024-03-16T12:10:23",
      "instrument" : {
        "id" : "https://github.com/hbz/lobid-resources",
        "type" : [ "SoftwareApplication" ],
        "label" : "Software lobid-resources"
      },
      "object" : {
        "id" : "https://lobid.org/marcxml/990119006850206441",
        "dateCreated" : "2021-04-05",
        "dateModified" : "2024-03-07",
        "type" : [ "DataFeedItem" ],
        "label" : "hbz-Ressource 990119006850206441 im Exportformat MARC21 XML",
        "inDataset" : {
          "id" : "https://datahub.io/dataset/hbz_unioncatalog",
          "label" : "hbz_unioncatalog"
        },
        "sourceOrganization" : {
          "id" : "http://lobid.org/organisations/DE-61#!",
          "label" : "Universitäts- und Landesbibliothek Düsseldorf"
        },
        "modifiedBy" : [ {
          "id" : "http://lobid.org/organisations/DE-6#!",
          "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek"
        } ]
      }
    },
    "license" : [ {
      "id" : "http://creativecommons.org/publicdomain/zero/1.0",
      "label" : "Creative Commons-Lizenz CC0 1.0 Universal"
    } ]
  },
  "sameAs" : [ {
    "id" : "http://hub.culturegraph.org/resource/HBZ-HT013577568",
    "label" : "Culturegraph Ressource"
  }, {
    "id" : "http://nwbib.de/990119006850206441#!",
    "label" : "NWBib-Ressource"
  } ],
  "containedIn" : [ {
    "id" : "http://lobid.org/resources/HT013538692#!",
    "label" : "lobid Ressource"
  } ],
  "inCollection" : [ {
    "id" : "http://lobid.org/organisations/DE-655#!",
    "label" : "hbz - Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen, Netzwerkzone",
    "type" : [ "Collection" ]
  }, {
    "id" : "http://lobid.org/resources/HT014176012#!",
    "label" : "Nordrhein-Westfälische Bibliographie (NWBib)",
    "type" : [ "Collection" ]
  } ],
  "language" : [ {
    "id" : "http://id.loc.gov/vocabulary/iso639-2/ger",
    "label" : "Deutsch"
  } ],
  "note" : [ "In: Kontinuität und Diskontinuität / hrsg. von Thomas Grünewald ... - Berlin [u.a.], 2003. - (Reallexikon der germanischen Altertumskunde : Ergänzungsbände ; 35). - S. [266]-344 : Ill., Kt." ],
  "bibliographicCitation" : "Kontinuität und Diskontinuität / hrsg. von Thomas Grünewald ... - Berlin [u.a.], 2003. - (Reallexikon der germanischen Altertumskunde : Ergänzungsbände ; 35). - S. [266]-344 : Ill., Kt.",
  "subject" : [ {
    "id" : "https://nwbib.de/subjects#N226040",
    "label" : "Germanen",
    "notation" : "226040",
    "type" : [ "Concept" ],
    "source" : {
      "id" : "https://nwbib.de/subjects",
      "label" : "Sachsystematik der Nordrhein-Westfälischen Bibliographie"
    }
  }, {
    "type" : [ "ComplexSubject" ],
    "label" : "Rheinland | Römerzeit | Germanen | Münze | Geschichte 71 v. Chr.-70 v. Chr",
    "componentList" : [ {
      "type" : [ "PlaceOrGeographicName" ],
      "label" : "Rheinland",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4049788-4",
      "gndIdentifier" : "4049788-4"
    }, {
      "type" : [ "SubjectHeading" ],
      "label" : "Römerzeit",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4076769-3",
      "gndIdentifier" : "4076769-3"
    }, {
      "type" : [ "SubjectHeading" ],
      "label" : "Germanen",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4020378-5",
      "gndIdentifier" : "4020378-5",
      "altLabel" : [ "Germanische Völker" ]
    }, {
      "type" : [ "SubjectHeading" ],
      "label" : "Münze",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4040629-5",
      "gndIdentifier" : "4040629-5",
      "altLabel" : [ "Metallgeld", "Münzen" ]
    }, {
      "label" : "Geschichte 71 v. Chr.-70 v. Chr"
    } ]
  }, {
    "type" : [ "ComplexSubject" ],
    "label" : "Rheinland",
    "componentList" : [ {
      "type" : [ "PlaceOrGeographicName" ],
      "label" : "Rheinland",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4049788-4",
      "gndIdentifier" : "4049788-4"
    } ]
  }, {
    "type" : [ "ComplexSubject" ],
    "label" : "Römerzeit | Münzfund | Geschichte 71 v. Chr.-70 v. Chr",
    "componentList" : [ {
      "type" : [ "SubjectHeading" ],
      "label" : "Römerzeit",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4076769-3",
      "gndIdentifier" : "4076769-3"
    }, {
      "type" : [ "SubjectHeading" ],
      "label" : "Münzfund",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4126078-8",
      "gndIdentifier" : "4126078-8",
      "altLabel" : [ "Fundmünze", "Münzschatz" ]
    }, {
      "label" : "Geschichte 71 v. Chr.-70 v. Chr"
    } ]
  } ],
  "spatial" : [ {
    "id" : "https://nwbib.de/spatial#N03",
    "label" : "Rheinland",
    "notation" : "03",
    "type" : [ "Concept" ],
    "source" : {
      "id" : "https://nwbib.de/spatial",
      "label" : "Raumsystematik der Nordrhein-Westfälischen Bibliographie"
    },
    "focus" : {
      "id" : "http://www.wikidata.org/entity/Q4236",
      "label" : "Siebengebirge",
      "type" : [ "http://www.wikidata.org/entity/Q372363", "http://www.wikidata.org/entity/Q46831", "http://www.wikidata.org/entity/Q1437459" ],
      "geo" : {
        "lat" : "50.679444444",
        "lon" : "7.248333333"
      }
    }
  } ],
  "subjectslabels" : [ "Rheinland", "Römerzeit", "Germanen", "Münze", "Geschichte 71 v. Chr.-70 v. Chr", "Münzfund" ],
  "medium" : [ {
    "label" : "Print",
    "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010"
  } ],
  "bibliographicLevel" : {
    "label" : "Monographic component part",
    "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monographic_component_part"
  },
  "type" : [ "BibliographicResource", "Article" ],
  "responsibilityStatement" : [ "von Johannes Heinrichs" ],
  "contribution" : [ {
    "agent" : {
      "label" : "Heinrichs, Johannes",
      "type" : [ "Person" ]
    },
    "role" : {
      "id" : "http://id.loc.gov/vocabulary/relators/aut",
      "label" : "Autor/in"
    },
    "type" : [ "Contribution" ]
  } ],
  "id" : "http://lobid.org/resources/990119006850206441#!"
}
Periodikum
{
  "@context" : "http://lobid.org/resources/context.jsonld",
  "almaMmsId" : "990116291950206441",
  "issn" : [ "16187792" ],
  "oclcNumber" : [ "635743319" ],
  "zdbId" : "2073588-1",
  "dnbId" : "023279338",
  "deprecatedUri" : "http://lobid.org/resources/HT013304490#!",
  "hbzId" : "HT013304490",
  "title" : "Décidé",
  "otherTitleInformation" : [ "Magazin für Frauen, Kultur & Luxus" ],
  "publication" : [ {
    "startDate" : "2002",
    "endDate" : "2002",
    "type" : [ "PublicationEvent" ],
    "location" : [ "Ulm" ],
    "publishedBy" : [ "Ebner" ],
    "publicationHistory" : "2002,1-4(März/Apr.-Nov./Dez.)",
    "frequency" : [ {
      "id" : "http://marc21rdf.info/terms/continuingfre#q",
      "label" : "vierteljährlich"
    } ],
    "note" : [ "Periodizität: vierteljährl." ]
  } ],
  "describedBy" : {
    "id" : "http://lobid.org/resources/990116291950206441",
    "label" : "Webseite der hbz-Ressource 990116291950206441",
    "type" : [ "BibliographicDescription" ],
    "inDataset" : {
      "id" : "http://lobid.org/resources/dataset#!",
      "label" : "lobid-resources – Der hbz-Verbundkatalog als Linked Open Data"
    },
    "resultOf" : {
      "type" : [ "CreateAction" ],
      "endTime" : "2024-03-16T14:20:28",
      "instrument" : {
        "id" : "https://github.com/hbz/lobid-resources",
        "type" : [ "SoftwareApplication" ],
        "label" : "Software lobid-resources"
      },
      "object" : {
        "id" : "https://lobid.org/marcxml/990116291950206441",
        "dateCreated" : "2021-04-06",
        "dateModified" : "2024-03-05",
        "type" : [ "DataFeedItem" ],
        "label" : "hbz-Ressource 990116291950206441 im Exportformat MARC21 XML",
        "inDataset" : {
          "id" : "https://datahub.io/dataset/hbz_unioncatalog",
          "label" : "hbz_unioncatalog"
        },
        "sourceOrganization" : {
          "id" : "http://lobid.org/organisations/DE-0109#!",
          "label" : "lobid Organisation"
        },
        "provider" : {
          "id" : "http://lobid.org/organisations/DE-101#!",
          "label" : "Deutsche Nationalbibliothek"
        },
        "modifiedBy" : [ {
          "id" : "http://lobid.org/organisations/DE-101#!",
          "label" : "Deutsche Nationalbibliothek"
        } ]
      }
    },
    "license" : [ {
      "id" : "http://creativecommons.org/publicdomain/zero/1.0",
      "label" : "Creative Commons-Lizenz CC0 1.0 Universal"
    } ]
  },
  "sameAs" : [ {
    "id" : "http://worldcat.org/oclc/635743319",
    "label" : "OCLC Ressource"
  }, {
    "id" : "http://ld.zdb-services.de/resource/2073588-1",
    "label" : "ZDB-Ressource"
  }, {
    "id" : "https://d-nb.info/023279338",
    "label" : "DNB-Ressource"
  } ],
  "supplement" : [ {
    "note" : [ "Suppl." ],
    "label" : "Schmuck spezial",
    "id" : "http://lobid.org/resources/ZDB-2074003-7#!"
  } ],
  "inCollection" : [ {
    "id" : "http://lobid.org/organisations/DE-655#!",
    "label" : "hbz - Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen, Netzwerkzone",
    "type" : [ "Collection" ]
  }, {
    "id" : "http://lobid.org/resources/HT014846970#!",
    "label" : "Zeitschriftendatenbank (ZDB)",
    "type" : [ "Collection" ]
  } ],
  "successor" : [ {
    "label" : "Schmuck-Magazin",
    "id" : "http://lobid.org/resources/ZDB-1362799-5#!",
    "note" : [ "Vorg. u. Forts.:" ]
  } ],
  "language" : [ {
    "id" : "http://id.loc.gov/vocabulary/iso639-2/ger",
    "label" : "Deutsch"
  } ],
  "langNote" : [ "EAN: 41958200; ZKZ: E 5209" ],
  "natureOfContent" : [ {
    "label" : "Zeitschrift",
    "id" : "https://d-nb.info/gnd/4067488-5"
  } ],
  "subject" : [ {
    "notation" : "06",
    "type" : [ "Concept" ],
    "source" : {
      "label" : "Systematik der DNB (bis 2003)",
      "id" : "https://bartoc.org/en/node/18497"
    }
  }, {
    "notation" : "050",
    "type" : [ "Concept" ],
    "source" : {
      "label" : "Sachgruppen der DNB",
      "id" : "https://bartoc.org/en/node/20049"
    },
    "label" : "Zeitschriften, fortlaufende Sammelwerke"
  }, {
    "type" : [ "Concept" ],
    "source" : {
      "label" : "Dewey-Dezimalklassifikation",
      "id" : "https://d-nb.info/gnd/4149423-4"
    },
    "label" : "Allgemeine fortlaufende Sammelwerke",
    "notation" : "050",
    "version" : "sdnb"
  }, {
    "notation" : "070",
    "type" : [ "Concept" ],
    "source" : {
      "label" : "Sachgruppen der DNB",
      "id" : "https://bartoc.org/en/node/20049"
    },
    "label" : "Nachrichtenmedien, Journalismus, Verlagswesen"
  }, {
    "type" : [ "Concept" ],
    "source" : {
      "label" : "Dewey-Dezimalklassifikation",
      "id" : "https://d-nb.info/gnd/4149423-4"
    },
    "label" : "Dokumentarische Medien, publizistische Medien, Unterrichtsmedien; Journalismus; Verlagswesen",
    "notation" : "070",
    "version" : "sdnb"
  }, {
    "notation" : "791",
    "type" : [ "Concept" ],
    "source" : {
      "label" : "Sachgruppen der DNB",
      "id" : "https://bartoc.org/en/node/20049"
    },
    "label" : "Öffentliche Darbietungen, Film, Rundfunk"
  }, {
    "type" : [ "Concept" ],
    "source" : {
      "label" : "Dewey-Dezimalklassifikation",
      "id" : "https://d-nb.info/gnd/4149423-4"
    },
    "label" : "Öffentliche Darbietungen",
    "notation" : "791",
    "version" : "sdnb"
  }, {
    "notation" : "070",
    "type" : [ "Concept" ],
    "source" : {
      "label" : "DDC-Sachgruppen der ZDB"
    },
    "label" : "Nachrichtenmedien, Journalismus, Verlagswesen"
  }, {
    "notation" : "620",
    "type" : [ "Concept" ],
    "source" : {
      "label" : "DDC-Sachgruppen der ZDB"
    },
    "label" : "Ingenieurwissenschaften und Maschinenbau"
  }, {
    "type" : [ "Concept" ],
    "source" : {
      "label" : "Dewey-Dezimalklassifikation",
      "id" : "https://d-nb.info/gnd/4149423-4"
    },
    "label" : "Ingenieurwissenschaften und zugeordnete Tätigkeiten",
    "notation" : "620",
    "version" : "sdnb"
  }, {
    "notation" : "790",
    "type" : [ "Concept" ],
    "source" : {
      "label" : "DDC-Sachgruppen der ZDB"
    },
    "label" : "Freizeitgestaltung, Darstellende Kunst"
  }, {
    "type" : [ "Concept" ],
    "source" : {
      "label" : "Dewey-Dezimalklassifikation",
      "id" : "https://d-nb.info/gnd/4149423-4"
    },
    "label" : "Freizeitgestaltung, darstellende Künste, Sport",
    "notation" : "790",
    "version" : "sdnb"
  }, {
    "type" : [ "ComplexSubject" ],
    "label" : "Schmuck | Zeitschrift",
    "componentList" : [ {
      "type" : [ "SubjectHeading" ],
      "label" : "Schmuck",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4052945-9",
      "gndIdentifier" : "4052945-9",
      "altLabel" : [ "Juwelenschmuck", "Juwelierschmuck", "Juwelen", "Schmuckware" ]
    }, {
      "type" : [ "SubjectHeading" ],
      "label" : "Zeitschrift",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4067488-5",
      "gndIdentifier" : "4067488-5",
      "altLabel" : [ "Periodikum", "Zeitschriften" ]
    } ]
  } ],
  "subjectslabels" : [ "Schmuck", "Zeitschrift" ],
  "hasItem" : [ {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysikalischerTitel" ],
    "currentLibrary" : "T0012",
    "currentLocation" : "kA",
    "heldBy" : {
      "isil" : "DE-Tr5",
      "id" : "http://lobid.org/organisations/DE-Tr5#!",
      "label" : "Hochschulbibliothek Trier"
    },
    "id" : "http://lobid.org/items/990116291950206441:DE-Tr5:228424070007820#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysikalischerTitel" ],
    "currentLibrary" : "KN3",
    "currentLocation" : "KN3-ZSMAKK",
    "callNumber" : "=Zd Decide",
    "heldBy" : {
      "isil" : "DE-Kn3",
      "id" : "http://lobid.org/organisations/DE-Kn3#!",
      "label" : "Kunst- und Museumsbibliothek der Stadt Köln"
    },
    "seeAlso" : [ "https://katalog.ub.uni-koeln.de/portal/search.html?num=20&page=1&l=de&srt=year_desc&tab=books&hbzid=990116291950206441&fdb=uni" ],
    "id" : "http://lobid.org/items/990116291950206441:DE-Kn3:22248869210006476#!"
  } ],
  "medium" : [ {
    "label" : "Print",
    "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010"
  } ],
  "bibliographicLevel" : {
    "label" : "Serial",
    "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Serial"
  },
  "type" : [ "BibliographicResource", "Periodical" ],
  "id" : "http://lobid.org/resources/990116291950206441#!"
}
Serienband
{
  "@context" : "http://lobid.org/resources/context.jsonld",
  "almaMmsId" : "990091680360206441",
  "hbzId" : "HT002888677",
  "deprecatedUri" : "http://lobid.org/resources/HT002888677#!",
  "isbn" : [ "3050002859", "9783050002859" ],
  "oclcNumber" : [ "58625597" ],
  "title" : "Männer der Revolution von 1848, 2",
  "publication" : [ {
    "startDate" : "1987",
    "type" : [ "PublicationEvent" ],
    "location" : [ "Berlin" ],
    "publishedBy" : [ "Akad.-Verl." ]
  } ],
  "describedBy" : {
    "id" : "http://lobid.org/resources/990091680360206441",
    "label" : "Webseite der hbz-Ressource 990091680360206441",
    "type" : [ "BibliographicDescription" ],
    "inDataset" : {
      "id" : "http://lobid.org/resources/dataset#!",
      "label" : "lobid-resources – Der hbz-Verbundkatalog als Linked Open Data"
    },
    "resultOf" : {
      "type" : [ "CreateAction" ],
      "endTime" : "2024-03-16T16:19:58",
      "instrument" : {
        "id" : "https://github.com/hbz/lobid-resources",
        "type" : [ "SoftwareApplication" ],
        "label" : "Software lobid-resources"
      },
      "object" : {
        "id" : "https://lobid.org/marcxml/990091680360206441",
        "dateCreated" : "2021-04-05",
        "dateModified" : "2023-12-25",
        "type" : [ "DataFeedItem" ],
        "label" : "hbz-Ressource 990091680360206441 im Exportformat MARC21 XML",
        "inDataset" : {
          "id" : "https://datahub.io/dataset/hbz_unioncatalog",
          "label" : "hbz_unioncatalog"
        },
        "sourceOrganization" : {
          "id" : "http://lobid.org/organisations/DE-467#!",
          "label" : "Universitätsbibliothek Siegen"
        },
        "provider" : {
          "id" : "http://lobid.org/organisations/DE-605#!",
          "label" : "hbz - Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen"
        },
        "modifiedBy" : [ {
          "id" : "http://lobid.org/organisations/DE-605#!",
          "label" : "hbz - Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen"
        } ]
      }
    },
    "license" : [ {
      "id" : "http://creativecommons.org/publicdomain/zero/1.0",
      "label" : "Creative Commons-Lizenz CC0 1.0 Universal"
    } ]
  },
  "sameAs" : [ {
    "id" : "http://hub.culturegraph.org/resource/HBZ-HT002888677",
    "label" : "Culturegraph Ressource"
  }, {
    "id" : "http://worldcat.org/oclc/58625597",
    "label" : "OCLC Ressource"
  }, {
    "id" : "http://nwbib.de/990091680360206441#!",
    "label" : "NWBib-Ressource"
  } ],
  "isPartOf" : [ {
    "type" : [ "IsPartOfRelation" ],
    "hasSuperordinate" : [ {
      "id" : "http://lobid.org/resources/HT002888668#!",
      "label" : "Männer der Revolution von 1848"
    } ],
    "numbering" : "2"
  }, {
    "type" : [ "IsPartOfRelation" ],
    "hasSuperordinate" : [ {
      "id" : "http://lobid.org/resources/HT001236717#!",
      "label" : "Schriften des Zentralinstituts für Geschichte"
    } ],
    "numbering" : "73"
  } ],
  "tableOfContents" : [ {
    "label" : "Inhaltsverzeichnis",
    "id" : "http://digitale-objekte.hbz-nrw.de/storage/2009/04/23/file_7/2966811.pdf"
  } ],
  "inCollection" : [ {
    "id" : "http://lobid.org/organisations/DE-655#!",
    "label" : "hbz - Hochschulbibliothekszentrum des Landes Nordrhein-Westfalen, Netzwerkzone",
    "type" : [ "Collection" ]
  }, {
    "id" : "http://lobid.org/resources/HT014176012#!",
    "label" : "Nordrhein-Westfälische Bibliographie (NWBib)",
    "type" : [ "Collection" ]
  } ],
  "language" : [ {
    "id" : "http://id.loc.gov/vocabulary/iso639-2/ger",
    "label" : "Deutsch"
  } ],
  "extent" : "536 S. : Ill.",
  "natureOfContent" : [ {
    "label" : "Biografie",
    "id" : "https://d-nb.info/gnd/4006804-3"
  } ],
  "subject" : [ {
    "notation" : "NP 2380",
    "type" : [ "Concept" ],
    "source" : {
      "label" : "RVK (Regensburger Verbundklassifikation)",
      "id" : "https://d-nb.info/gnd/4449787-8"
    }
  }, {
    "type" : [ "ComplexSubject" ],
    "label" : "Deutschland | Revolution (1848)",
    "componentList" : [ {
      "type" : [ "PlaceOrGeographicName" ],
      "label" : "Deutschland",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4011882-4",
      "gndIdentifier" : "4011882-4",
      "altLabel" : [ "Deutsche Länder", "Germany (Deutschland)", "Heiliges Römisches Reich", "Rheinbund", "Deutscher Bund", "Norddeutscher Bund", "Deutsches Reich", "Deutschland (Gebiet unter Alliierter Besatzung)", "Deutschland (Bundesrepublik, 1990-)", "BRD (1990-)", "Federal Republic of Germany (Deutschland)", "Republic of Germany (Deutschland)", "Allemagne (Deutschland)", "Ǧumhūrīyat Almāniyā al-Ittiḥādīya", "Bundesrepublik Deutschland (1990-)", "BRD", "Niemcy", "République Fédérale d'Allemagne (Deutschland)", "Repubblica Federale di Germania (Deutschland)", "Germanija", "Federativnaja Respublika Germanija", "FRG", "Deyizhi-Lianbang-Gongheguo" ]
    }, {
      "type" : [ "SubjectHeading" ],
      "label" : "Revolution (1848)",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4049688-0",
      "gndIdentifier" : "4049688-0"
    } ]
  }, {
    "type" : [ "ComplexSubject" ],
    "label" : "Revolution (1848) | Biografie",
    "componentList" : [ {
      "type" : [ "SubjectHeading" ],
      "label" : "Revolution (1848)",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4049688-0",
      "gndIdentifier" : "4049688-0"
    }, {
      "type" : [ "SubjectHeading" ],
      "label" : "Biografie",
      "source" : {
        "label" : "Gemeinsame Normdatei (GND)",
        "id" : "https://d-nb.info/gnd/7749153-1"
      },
      "id" : "https://d-nb.info/gnd/4006804-3",
      "gndIdentifier" : "4006804-3",
      "altLabel" : [ "Biographie", "Biographisches Nachschlagewerk", "Lebensbeschreibung", "Berühmte Persönlichkeit / Biografie", "Biografisches Nachschlagewerk" ]
    } ]
  } ],
  "subjectslabels" : [ "Deutschland", "Revolution (1848)", "Biografie" ],
  "hasItem" : [ {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "D 1094/30,2",
    "serialNumber" : "30155995",
    "currentLibrary" : "BR002",
    "currentLocation" : "F",
    "heldBy" : {
      "isil" : "DE-Bm3-2",
      "id" : "http://lobid.org/organisations/DE-Bm3-2#!",
      "label" : "Bibliothek des Ruhrgebiets, Bestandsabteilung Institut für soziale Bewegungen"
    },
    "id" : "http://lobid.org/items/990091680360206441:DE-Bm3-2:2316180380007508#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "90.5358",
    "serialNumber" : "keinBarcode",
    "currentLibrary" : "Z9024",
    "currentLocation" : "kA",
    "heldBy" : {
      "isil" : "DE-364",
      "id" : "http://lobid.org/organisations/DE-364#!",
      "label" : "Martin-Opitz-Bibliothek (MOB)"
    },
    "id" : "http://lobid.org/items/990091680360206441:DE-364:2364423270007816#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "AKO-42162 II",
    "serialNumber" : "keinBarcode",
    "currentLibrary" : "O9006",
    "currentLocation" : "kA",
    "heldBy" : {
      "isil" : "DE-Bo133",
      "id" : "http://lobid.org/organisations/DE-Bo133#!",
      "label" : "Bibliothek der Friedrich-Ebert-Stiftung"
    },
    "id" : "http://lobid.org/items/990091680360206441:DE-Bo133:2364423240007816#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "LNJ/BLE",
    "serialNumber" : "870947501",
    "currentLibrary" : "F0001",
    "currentLocation" : "00",
    "heldBy" : {
      "isil" : "DE-708",
      "id" : "http://lobid.org/organisations/DE-708#!",
      "label" : "Universitätsbibliothek der Fernuniversität"
    },
    "seeAlso" : [ "https://fub-hagen.digibib.net/search/katalog/record/(DE-605)HT002888677" ],
    "id" : "http://lobid.org/items/990091680360206441:DE-708:23107460180006464#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "01-18.18.1716-2",
    "serialNumber" : "01662616",
    "currentLibrary" : "LLB",
    "currentLocation" : "LLB_Magvl",
    "heldBy" : {
      "isil" : "DE-51",
      "id" : "http://lobid.org/organisations/DE-51#!",
      "label" : "Lippische Landesbibliothek - Theologische Bibliothek und Mediothek"
    },
    "seeAlso" : [ "https://det.digibib.net/search/katalog/record/(DE-605)HT002888677" ],
    "id" : "http://lobid.org/items/990091680360206441:DE-51:2382352370006480#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "02-F 68.1987-2 Literaturarchiv",
    "serialNumber" : "03643291",
    "currentLibrary" : "LLB",
    "currentLocation" : "LLB_MagLes",
    "heldBy" : {
      "isil" : "DE-51",
      "id" : "http://lobid.org/organisations/DE-51#!",
      "label" : "Lippische Landesbibliothek - Theologische Bibliothek und Mediothek"
    },
    "seeAlso" : [ "https://det.digibib.net/search/katalog/record/(DE-605)HT002888677" ],
    "id" : "http://lobid.org/items/990091680360206441:DE-51:2382352350006480#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "MA7301-73+1",
    "serialNumber" : "MA7301-73+1",
    "currentLibrary" : "ZB",
    "currentLocation" : "MAGAZIN_2",
    "heldBy" : {
      "isil" : "DE-82",
      "id" : "http://lobid.org/organisations/DE-82#!",
      "label" : "Universitätsbibliothek der RWTH Aachen"
    },
    "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990091680360206441" ],
    "id" : "http://lobid.org/items/990091680360206441:DE-82:23231863610006448#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "PL.A/w443-2",
    "serialNumber" : "0103.8820.90",
    "currentLibrary" : "T0011",
    "currentLocation" : "30",
    "heldBy" : {
      "isil" : "DE-385",
      "id" : "http://lobid.org/organisations/DE-385#!",
      "label" : "Universitätsbibliothek Trier"
    },
    "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990091680360206441" ],
    "id" : "http://lobid.org/items/990091680360206441:DE-385:23289172910006470#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "87/8068 (2)",
    "serialNumber" : "87/8068(2)",
    "currentLibrary" : "0",
    "currentLocation" : "0-Frei1",
    "heldBy" : {
      "isil" : "DE-5",
      "id" : "http://lobid.org/organisations/DE-5#!",
      "label" : "Universitäts- und Landesbibliothek Bonn"
    },
    "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990091680360206441" ],
    "id" : "http://lobid.org/items/990091680360206441:DE-5:23260304330006467#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "QXB694-2",
    "serialNumber" : "QXB694-2",
    "currentLibrary" : "UB",
    "currentLocation" : "UB_G2B1",
    "heldBy" : {
      "isil" : "DE-294",
      "id" : "http://lobid.org/organisations/DE-294#!",
      "label" : "Ruhr-Universität Bochum, Universitätsbibliothek"
    },
    "seeAlso" : [ "https://hbz-ubo.primo.exlibrisgroup.com/permalink/49HBZ_UBO/mnkbqv/alma990091680360206441" ],
    "id" : "http://lobid.org/items/990091680360206441:DE-294:23103317920006471#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "LNG61-2",
    "serialNumber" : "LNG61-2",
    "currentLibrary" : "E0001",
    "currentLocation" : "E11",
    "heldBy" : {
      "isil" : "DE-465",
      "id" : "http://lobid.org/organisations/DE-465#!",
      "label" : "Universitätsbibliothek Duisburg-Essen"
    },
    "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990091680360206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ],
    "id" : "http://lobid.org/items/990091680360206441:DE-465:23384008560006446#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "hisn446.o12",
    "serialNumber" : "078531901",
    "currentLibrary" : "X0001",
    "currentLocation" : "02",
    "heldBy" : {
      "isil" : "DE-61",
      "id" : "http://lobid.org/organisations/DE-61#!",
      "label" : "Universitäts- und Landesbibliothek Düsseldorf"
    },
    "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:990091680360206441" ],
    "id" : "http://lobid.org/items/990091680360206441:DE-61:23270691650006443#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "420/Lg391-2",
    "serialNumber" : "TEMP530646",
    "currentLibrary" : "38-420",
    "currentLocation" : "38-420-BIB",
    "heldBy" : {
      "isil" : "DE-38-420",
      "id" : "http://lobid.org/organisations/DE-38-420#!",
      "label" : "Historisches Institut, Abteilung für Mittlere und Neuere Geschichte mit Abteilung für Nationalismusforschung, Bibliothek"
    },
    "seeAlso" : [ "https://katalog.ub.uni-koeln.de/portal/search.html?num=20&page=1&l=de&srt=year_desc&tab=books&hbzid=990091680360206441&fdb=uni" ],
    "id" : "http://lobid.org/items/990091680360206441:DE-38-420:23220479600006476#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "1E9030-2",
    "serialNumber" : "1E9030-2",
    "currentLibrary" : "38",
    "currentLocation" : "38-MAG",
    "heldBy" : {
      "isil" : "DE-38",
      "id" : "http://lobid.org/organisations/DE-38#!",
      "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung"
    },
    "seeAlso" : [ "https://katalog.ub.uni-koeln.de/portal/search.html?num=20&page=1&l=de&srt=year_desc&tab=books&hbzid=990091680360206441&fdb=uni" ],
    "id" : "http://lobid.org/items/990091680360206441:DE-38:23220479620006476#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "3G 24330-2",
    "serialNumber" : "3G 24330-2",
    "currentLibrary" : "ZB",
    "currentLocation" : "ZB_FHM2",
    "heldBy" : {
      "isil" : "DE-6",
      "id" : "http://lobid.org/organisations/DE-6#!",
      "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek"
    },
    "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990091680360206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ],
    "id" : "http://lobid.org/items/990091680360206441:DE-6:23552410540006449#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysicalObject" ],
    "callNumber" : "21LNGZ1131-2",
    "serialNumber" : "21LNGZ1131-2",
    "currentLibrary" : "S0001",
    "currentLocation" : "H4",
    "heldBy" : {
      "isil" : "DE-467",
      "id" : "http://lobid.org/organisations/DE-467#!",
      "label" : "Universitätsbibliothek Siegen"
    },
    "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)HT002888677" ],
    "id" : "http://lobid.org/items/990091680360206441:DE-467:2383022310006462#!"
  }, {
    "label" : "lobid Bestandsressource",
    "type" : [ "Item", "PhysikalischerTitel" ],
    "currentLibrary" : "Z9031",
    "currentLocation" : "UNASSIGNED",
    "heldBy" : {
      "isil" : "DE-62",
      "id" : "http://lobid.org/organisations/DE-62#!",
      "label" : "Stadtbibliothek Wuppertal"
    },
    "id" : "http://lobid.org/items/990091680360206441:DE-62:2264423320007816#!"
  } ],
  "medium" : [ {
    "label" : "Print",
    "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010"
  } ],
  "bibliographicLevel" : {
    "label" : "Monograph/Item",
    "id" : "https://www.loc.gov/marc/bibliographic/bdleader.html#Monograph_Item"
  },
  "type" : [ "BibliographicResource", "Biography", "Book" ],
  "responsibilityStatement" : [ "hrsg. von Helmut Bleiber ..." ],
  "contribution" : [ {
    "agent" : {
      "gndIdentifier" : "12417521X",
      "id" : "https://d-nb.info/gnd/12417521X",
      "label" : "Bleiber, Helmut",
      "type" : [ "Person" ],
      "dateOfBirth" : "1928",
      "dateOfDeath" : "2007"
    },
    "role" : {
      "id" : "http://id.loc.gov/vocabulary/relators/edt",
      "label" : "Herausgeber/in"
    },
    "type" : [ "Contribution" ]
  } ],
  "id" : "http://lobid.org/resources/990091680360206441#!"
}