API-Grundlagen

HTTP GET
/resources/HT018472857
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/HT018472857

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/HT018472857?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/HT018472857.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/HT018472857

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/HT018472857

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

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

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

/resources/HT018472857.rdf

/resources/HT018472857.ttl

/resources/HT018472857.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
{
  "type" : [ "BibliographicResource", "Book" ],
  "contribution" : [ {
    "type" : [ "Contribution" ],
    "agent" : {
      "id" : "https://d-nb.info/gnd/1049709292",
      "type" : [ "Person" ],
      "label" : "Nichols, Catherine",
      "dateOfBirth" : "1974",
      "gndIdentifier" : "1049709292"
    },
    "role" : {
      "id" : "http://id.loc.gov/vocabulary/relators/edt",
      "label" : "Herausgeber/in"
    }
  }, {
    "type" : [ "Contribution" ],
    "agent" : {
      "id" : "https://d-nb.info/gnd/130408026",
      "type" : [ "Person" ],
      "label" : "Blume, Eugen",
      "dateOfBirth" : "1951",
      "gndIdentifier" : "130408026"
    },
    "role" : {
      "id" : "http://id.loc.gov/vocabulary/relators/ctb",
      "label" : "Beitragende/r"
    }
  }, {
    "type" : [ "Contribution" ],
    "agent" : {
      "id" : "https://d-nb.info/gnd/5085928-6",
      "type" : [ "CorporateBody" ],
      "label" : "Hamburger Bahnhof - Museum für Gegenwart - Berlin",
      "altLabel" : [ "Neue Galerie im Hamburger Bahnhof, Museum für Gegenwart Berlin", "Nationalgalerie im Hamburger Bahnhof, Museum für Gegenwart", "Museum Hamburger Bahnhof", "Nationalgalerie im Hamburger Bahnhof", "Nationalgalerie im Hamburger Bahnhof - Museum für Gegenwart Berlin", "Museum für Gegenwart Berlin" ],
      "gndIdentifier" : "5085928-6"
    },
    "role" : {
      "id" : "http://id.loc.gov/vocabulary/relators/orm",
      "label" : "Veranstalter/in"
    }
  }, {
    "type" : [ "Contribution" ],
    "agent" : {
      "id" : "https://d-nb.info/gnd/5014401-7",
      "type" : [ "CorporateBody" ],
      "label" : "Nationalgalerie (Berlin)",
      "altLabel" : [ "Nationalgalerie der Staatlichen Museen zu Berlin", "National-Galerie", "Galería Nacional. Berlin", "NG", "Königliche Nationalgalerie", "Staatliche Museen zu Berlin Nationalgalerie", "Staatliche Museen Nationalgalerie", "Wagenersche und Nationalgalerie" ],
      "gndIdentifier" : "5014401-7"
    },
    "role" : {
      "id" : "http://id.loc.gov/vocabulary/relators/orm",
      "label" : "Veranstalter/in"
    }
  } ],
  "extent" : "244 Seiten",
  "hasItem" : [ {
    "id" : "http://lobid.org/items/HT019025795:DE-Kn3:KMB%2FYG%20BERLINW%2033%20%202016%20A#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-Kn3#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "00020050" ],
    "callNumber" : "KMB/YG BERLINW 33  2016 A",
    "label" : "KMB/YG BERLINW 33  2016 A"
  }, {
    "id" : "http://lobid.org/items/HT019025795:DE-Bed1:MSM%20Gd%2021%20Kapi#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-Bed1#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "MSM" ],
    "callNumber" : "MSM Gd 21 Kapi",
    "label" : "MSM Gd 21 Kapi"
  }, {
    "id" : "http://lobid.org/items/HT019025795:DE-6:3C%2040977#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-6#!",
      "label" : "lobid Organisation"
    },
    "callNumber" : "3C 40977",
    "label" : "3C 40977"
  }, {
    "id" : "http://lobid.org/items/HT019025795:DE-465:KDWB43567#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-465#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "E11" ],
    "callNumber" : "KDWB43567",
    "label" : "KDWB43567"
  }, {
    "id" : "http://lobid.org/items/HT019025795:DE-Due18:Y3,%20BER%2085%20%2F%202016#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-Due18#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "MAG" ],
    "callNumber" : "Y3, BER 85 / 2016",
    "label" : "Y3, BER 85 / 2016"
  } ],
  "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\"" ],
  "responsibilityStatement" : [ "für die Nationalgalerie der Staatlichen Museen zu Berlin herausgegeben von Eugen Blume und Catherine Nichols" ],
  "description" : [ {
    "id" : "http://deposit.d-nb.de/cgi-bin/dokserv?id=28db3e0fdf894a398b3474ca36b10311&prov=M&dok_var=1&dok_ext=htm",
    "label" : "Klappentext"
  } ],
  "language" : [ {
    "id" : "http://id.loc.gov/vocabulary/iso639-2/deu",
    "label" : "Deutsch"
  } ],
  "medium" : [ {
    "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010",
    "label" : "Print"
  } ],
  "subject" : [ {
    "type" : [ "ComplexSubject" ],
    "componentList" : [ {
      "id" : "https://d-nb.info/gnd/4134847-3",
      "type" : [ "Work" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Beuys, Joseph: Das Kapital Raum 1970-1977",
      "gndIdentifier" : "4134847-3"
    } ],
    "label" : "Beuys, Joseph: Das Kapital Raum 1970-1977"
  }, {
    "type" : [ "ComplexSubject" ],
    "componentList" : [ {
      "id" : "https://d-nb.info/gnd/4114333-4",
      "type" : [ "SubjectHeading" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Kunst",
      "gndIdentifier" : "4114333-4"
    }, {
      "id" : "https://d-nb.info/gnd/4221315-0",
      "type" : [ "SubjectHeading" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Kapitalismus, Motiv",
      "gndIdentifier" : "4221315-0"
    }, {
      "type" : [ "SubjectHeading" ],
      "label" : "Geschichte"
    } ],
    "label" : "Kunst | Kapitalismus, Motiv | Geschichte"
  } ],
  "tableOfContents" : [ {
    "id" : "http://digitale-objekte.hbz-nrw.de/storage2/2017/03/04/file_118/7132111.pdf",
    "label" : "7132111.pdf"
  } ],
  "title" : "Das Kapital",
  "hbzId" : "HT019025795",
  "subjectAltLabel" : [ "Bildende Kunst", "Kunstdenkmal (Kunst)" ],
  "edition" : [ "1. Auflage" ],
  "isbn" : [ "9783862065752" ],
  "oclcNumber" : [ "1073325691" ],
  "otherTitleInformation" : [ "Schuld - Territorium - Utopie" ],
  "natureOfContent" : [ {
    "id" : "https://d-nb.info/gnd/4163417-2",
    "label" : "Katalog"
  }, {
    "id" : "https://d-nb.info/gnd/4135467-9",
    "label" : "Ausstellungskatalog"
  } ],
  "publication" : [ {
    "type" : [ "PublicationEvent" ],
    "location" : "Dortmund",
    "publishedBy" : "Verlag Kettler",
    "startDate" : "2016"
  } ],
  "sameAs" : [ {
    "id" : "http://worldcat.org/oclc/1073325691",
    "label" : "1073325691"
  }, {
    "id" : "http://hub.culturegraph.org/resource/HBZ-HT019025795",
    "label" : "Culturegraph Ressource"
  } ],
  "similar" : [ {
    "note" : [ "Erscheint auch als" ],
    "isbn" : [ "9783862065769" ]
  } ],
  "describedBy" : {
    "id" : "http://lobid.org/resources/HT019025795",
    "type" : [ "BibliographicDescription" ],
    "modifiedBy" : {
      "id" : "http://lobid.org/organisations/DE-Kn3#!",
      "label" : "lobid Organisation"
    },
    "dateCreated" : "20160706",
    "dateModified" : "20170920",
    "inDataset" : {
      "id" : "http://lobid.org/resources/dataset#!",
      "label" : "lobid-resources – Der hbz-Verbundkatalog als Linked Open Data"
    },
    "resultOf" : {
      "type" : [ "CreateAction" ],
      "endTime" : "2023-04-16T08:00:21",
      "instrument" : {
        "id" : "https://github.com/hbz/lobid-resources",
        "type" : [ "SoftwareApplication" ],
        "label" : "Software lobid-resources"
      },
      "object" : {
        "id" : "http://lobid.org/hbz01/HT019025795",
        "type" : [ "DataFeedItem" ],
        "inDataset" : {
          "id" : "https://datahub.io/dataset/hbz_unioncatalog",
          "label" : "hbz_unioncatalog"
        },
        "label" : "hbz-Ressource HT019025795 im Exportformat MAB2-XML"
      }
    },
    "license" : [ {
      "id" : "http://creativecommons.org/publicdomain/zero/1.0",
      "label" : "Creative Commons-Lizenz CC0 1.0 Universal"
    } ],
    "provider" : {
      "id" : "http://lobid.org/organisations/DE-101#!",
      "label" : "lobid Organisation"
    },
    "sourceOrganization" : {
      "id" : "http://lobid.org/organisations/DE-Due18#!",
      "label" : "lobid Organisation"
    },
    "label" : "Webseite der hbz-Ressource HT019025795"
  },
  "@context" : "http://lobid.org/resources/context.jsonld",
  "id" : "http://lobid.org/resources/HT019025795#!"
}
Aufsatz
{
  "type" : [ "Article", "BibliographicResource" ],
  "contribution" : [ {
    "type" : [ "Contribution" ],
    "agent" : {
      "type" : [ "Person" ],
      "label" : "Heinrichs, Johannes"
    },
    "role" : {
      "id" : "http://id.loc.gov/vocabulary/relators/aut",
      "label" : "Autor/in"
    }
  } ],
  "responsibilityStatement" : [ "von Johannes Heinrichs" ],
  "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.",
  "language" : [ {
    "id" : "http://id.loc.gov/vocabulary/iso639-2/deu",
    "label" : "Deutsch"
  } ],
  "medium" : [ {
    "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010",
    "label" : "Print"
  } ],
  "spatial" : [ {
    "id" : "https://nwbib.de/spatial#N03",
    "type" : [ "Concept" ],
    "source" : {
      "id" : "https://nwbib.de/spatial",
      "label" : "Raumsystematik der Nordrhein-Westfälischen Bibliographie"
    },
    "label" : "Rheinland",
    "notation" : "03",
    "focus" : {
      "id" : "http://www.wikidata.org/entity/Q152243",
      "type" : [ "http://www.wikidata.org/entity/Q82794" ],
      "geo" : {
        "lat" : "50.276989",
        "lon" : "6.860735"
      },
      "label" : "Rheinland"
    }
  } ],
  "subject" : [ {
    "type" : [ "ComplexSubject" ],
    "componentList" : [ {
      "id" : "https://d-nb.info/gnd/4049788-4",
      "type" : [ "PlaceOrGeographicName" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Rheinland",
      "gndIdentifier" : "4049788-4"
    } ],
    "label" : "Rheinland"
  }, {
    "type" : [ "ComplexSubject" ],
    "componentList" : [ {
      "id" : "https://d-nb.info/gnd/4076769-3",
      "type" : [ "SubjectHeading" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Römerzeit",
      "gndIdentifier" : "4076769-3"
    }, {
      "id" : "https://d-nb.info/gnd/4126078-8",
      "type" : [ "SubjectHeading" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Münzfund",
      "gndIdentifier" : "4126078-8"
    }, {
      "type" : [ "SubjectHeading" ],
      "label" : "Geschichte 71 v. Chr.-70 v. Chr"
    } ],
    "label" : "Römerzeit | Münzfund | Geschichte 71 v. Chr.-70 v. Chr  "
  }, {
    "type" : [ "ComplexSubject" ],
    "componentList" : [ {
      "id" : "https://d-nb.info/gnd/4049788-4",
      "type" : [ "PlaceOrGeographicName" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Rheinland",
      "gndIdentifier" : "4049788-4"
    }, {
      "id" : "https://d-nb.info/gnd/4076769-3",
      "type" : [ "SubjectHeading" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Römerzeit",
      "gndIdentifier" : "4076769-3"
    }, {
      "id" : "https://d-nb.info/gnd/4020378-5",
      "type" : [ "SubjectHeading" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Germanen",
      "gndIdentifier" : "4020378-5"
    }, {
      "id" : "https://d-nb.info/gnd/4040629-5",
      "type" : [ "SubjectHeading" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Münze",
      "gndIdentifier" : "4040629-5"
    }, {
      "type" : [ "SubjectHeading" ],
      "label" : "Geschichte 71 v. Chr.-70 v. Chr"
    } ],
    "label" : "Rheinland | Römerzeit | Germanen | Münze | Geschichte 71 v. Chr.-70 v. Chr  "
  }, {
    "id" : "https://nwbib.de/subjects#N226040",
    "source" : {
      "id" : "https://nwbib.de/subjects",
      "label" : "Sachsystematik der Nordrhein-Westfälischen Bibliographie"
    },
    "notation" : "226040",
    "label" : "Germanen"
  } ],
  "title" : "Ubier, Chatten, Bataver",
  "containedIn" : [ {
    "id" : "http://lobid.org/resources/HT013538692#!",
    "label" : "lobid Ressource"
  } ],
  "hbzId" : "HT013577568",
  "inCollection" : [ {
    "id" : "http://lobid.org/resources/HT014176012#!",
    "type" : [ "Collection" ],
    "label" : "Nordrhein-Westfälische Bibliographie (NWBib)"
  } ],
  "subjectAltLabel" : [ "Rheinlande (im engeren Sinn)", "Metallgeld", "Münzschatz", "Germanische Völker", "Fundmünze", "Römische Zeit", "Münzen" ],
  "otherTitleInformation" : [ "Mittel- und Niederrhein ca. 70 - 71 v. Chr. anhand germanischer Münzen" ],
  "publication" : [ {
    "type" : [ "PublicationEvent" ],
    "startDate" : "2003"
  } ],
  "sameAs" : [ {
    "id" : "http://hub.culturegraph.org/resource/HBZ-HT013577568",
    "label" : "Culturegraph Ressource"
  } ],
  "describedBy" : {
    "id" : "http://lobid.org/resources/HT013577568",
    "type" : [ "BibliographicDescription" ],
    "modifiedBy" : {
      "id" : "http://lobid.org/organisations/DE-6#!",
      "label" : "lobid Organisation"
    },
    "dateCreated" : "20030212",
    "dateModified" : "20200408",
    "inDataset" : {
      "id" : "http://lobid.org/resources/dataset#!",
      "label" : "lobid-resources – Der hbz-Verbundkatalog als Linked Open Data"
    },
    "resultOf" : {
      "type" : [ "CreateAction" ],
      "endTime" : "2023-04-16T04:51:42",
      "instrument" : {
        "id" : "https://github.com/hbz/lobid-resources",
        "type" : [ "SoftwareApplication" ],
        "label" : "Software lobid-resources"
      },
      "object" : {
        "id" : "http://lobid.org/hbz01/HT013577568",
        "type" : [ "DataFeedItem" ],
        "inDataset" : {
          "id" : "https://datahub.io/dataset/hbz_unioncatalog",
          "label" : "hbz_unioncatalog"
        },
        "label" : "hbz-Ressource HT013577568 im Exportformat MAB2-XML"
      }
    },
    "license" : [ {
      "id" : "http://creativecommons.org/publicdomain/zero/1.0",
      "label" : "Creative Commons-Lizenz CC0 1.0 Universal"
    } ],
    "sourceOrganization" : {
      "id" : "http://lobid.org/organisations/DE-61#!",
      "label" : "lobid Organisation"
    },
    "label" : "Webseite der hbz-Ressource HT013577568"
  },
  "@context" : "http://lobid.org/resources/context.jsonld",
  "id" : "http://lobid.org/resources/HT013577568#!"
}
Periodikum
{
  "type" : [ "BibliographicResource", "Periodical" ],
  "hasItem" : [ {
    "id" : "http://lobid.org/items/HT013304490:DE-Kn3:=Zd%20Decide#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-Kn3#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "MAK" ],
    "callNumber" : "=Zd Decide",
    "label" : "=Zd Decide"
  }, {
    "id" : "http://lobid.org/items/HT013304490:DE-Tr5:#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-Tr5#!",
      "label" : "lobid Organisation"
    },
    "label" : "lobid Bestandsressource"
  } ],
  "supplement" : [ {
    "id" : "http://lobid.org/resources/HT013304885#!",
    "label" : "Schmuck spezial"
  } ],
  "language" : [ {
    "id" : "http://id.loc.gov/vocabulary/iso639-2/deu",
    "label" : "Deutsch"
  } ],
  "medium" : [ {
    "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010",
    "label" : "Print"
  } ],
  "subject" : [ {
    "source" : {
      "id" : "https://d-nb.info/gnd/4149423-4",
      "label" : "Dewey-Dezimalklassifikation"
    },
    "label" : "Ingenieurwissenschaften und zugeordnete Tätigkeiten",
    "notation" : "620"
  }, {
    "source" : {
      "id" : "https://d-nb.info/gnd/4149423-4",
      "label" : "Dewey-Dezimalklassifikation"
    },
    "label" : "Dokumentarische Medien, publizistische Medien, Unterrichtsmedien; Journalismus; Verlagswesen",
    "notation" : "070"
  }, {
    "source" : {
      "id" : "https://d-nb.info/gnd/4149423-4",
      "label" : "Dewey-Dezimalklassifikation"
    },
    "label" : "Freizeitgestaltung, darstellende Künste, Sport",
    "notation" : "790"
  }, {
    "type" : [ "ComplexSubject" ],
    "componentList" : [ {
      "id" : "https://d-nb.info/gnd/4052945-9",
      "type" : [ "SubjectHeading" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Schmuck",
      "gndIdentifier" : "4052945-9"
    }, {
      "id" : "https://d-nb.info/gnd/4067488-5",
      "type" : [ "SubjectHeading" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Zeitschrift",
      "gndIdentifier" : "4067488-5"
    } ],
    "label" : "Schmuck | Zeitschrift"
  } ],
  "title" : "Décidé",
  "hbzId" : "HT013304490",
  "inCollection" : [ {
    "id" : "http://lobid.org/resources/HT014846970#!",
    "type" : [ "Collection" ],
    "label" : "Zeitschriftendatenbank (ZDB)"
  } ],
  "subjectAltLabel" : [ "Juwelenschmuck", "Juwelen", "Juwelierschmuck", "Schmuckware", "Zeitschriften", "Periodikum" ],
  "zdbId" : "2073588-1",
  "issn" : [ "16187792" ],
  "oclcNumber" : [ "635743319" ],
  "otherTitleInformation" : [ "Magazin für Frauen, Kultur & Luxus" ],
  "publication" : [ {
    "type" : [ "PublicationEvent" ],
    "frequency" : [ {
      "id" : "http://marc21rdf.info/terms/continuingfre#q",
      "label" : "vierteljährlich"
    } ],
    "note" : [ "Periodizität: vierteljährl." ],
    "publicationHistory" : "2002,1-4(März/Apr.-Nov./Dez.)",
    "endDate" : "2002",
    "location" : "Ulm",
    "publishedBy" : "Ebner",
    "startDate" : "2002"
  } ],
  "sameAs" : [ {
    "id" : "http://hub.culturegraph.org/resource/HBZ-HT013304490",
    "label" : "Culturegraph Ressource"
  }, {
    "id" : "http://ld.zdb-services.de/resource/2073588-1",
    "label" : "ZDB-Ressource"
  }, {
    "id" : "http://worldcat.org/oclc/635743319",
    "label" : "635743319"
  } ],
  "describedBy" : {
    "id" : "http://lobid.org/resources/HT013304490",
    "type" : [ "BibliographicDescription" ],
    "modifiedBy" : {
      "id" : "http://lobid.org/organisations/DE-9999#!",
      "label" : "lobid Organisation"
    },
    "dateCreated" : "20020301",
    "dateModified" : "20210408",
    "inDataset" : {
      "id" : "http://lobid.org/resources/dataset#!",
      "label" : "lobid-resources – Der hbz-Verbundkatalog als Linked Open Data"
    },
    "resultOf" : {
      "type" : [ "CreateAction" ],
      "endTime" : "2023-04-16T04:29:46",
      "instrument" : {
        "id" : "https://github.com/hbz/lobid-resources",
        "type" : [ "SoftwareApplication" ],
        "label" : "Software lobid-resources"
      },
      "object" : {
        "id" : "http://lobid.org/hbz01/HT013304490",
        "type" : [ "DataFeedItem" ],
        "inDataset" : {
          "id" : "https://datahub.io/dataset/hbz_unioncatalog",
          "label" : "hbz_unioncatalog"
        },
        "label" : "hbz-Ressource HT013304490 im Exportformat MAB2-XML"
      }
    },
    "license" : [ {
      "id" : "http://creativecommons.org/publicdomain/zero/1.0",
      "label" : "Creative Commons-Lizenz CC0 1.0 Universal"
    } ],
    "provider" : {
      "id" : "http://lobid.org/organisations/DE-101#!",
      "label" : "lobid Organisation"
    },
    "sourceOrganization" : {
      "id" : "http://lobid.org/organisations/DE-109#!",
      "label" : "lobid Organisation"
    },
    "label" : "Webseite der hbz-Ressource HT013304490"
  },
  "@context" : "http://lobid.org/resources/context.jsonld",
  "id" : "http://lobid.org/resources/HT013304490#!"
}
Serienband
{
  "type" : [ "BibliographicResource", "Book", "Biography" ],
  "contribution" : [ {
    "type" : [ "Contribution" ],
    "agent" : {
      "id" : "https://d-nb.info/gnd/12417521X",
      "type" : [ "Person" ],
      "label" : "Bleiber, Helmut",
      "dateOfBirth" : "1928",
      "dateOfDeath" : "2007",
      "gndIdentifier" : "12417521X"
    },
    "role" : {
      "id" : "http://id.loc.gov/vocabulary/relators/edt",
      "label" : "Herausgeber/in"
    }
  } ],
  "extent" : "536 S.",
  "hasItem" : [ {
    "id" : "http://lobid.org/items/HT002888677:DE-61:hisn446.o12#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-61#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "02" ],
    "callNumber" : "hisn446.o12",
    "label" : "hisn446.o12"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-Bo133:AKO-42162%20II#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-Bo133#!",
      "label" : "lobid Organisation"
    },
    "callNumber" : "AKO-42162 II",
    "label" : "AKO-42162 II"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-385:PL.A%2Fw443-2#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-385#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "30" ],
    "callNumber" : "PL.A/w443-2",
    "label" : "PL.A/w443-2"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-38:1E9030-2#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-38#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "00000001" ],
    "callNumber" : "1E9030-2",
    "label" : "1E9030-2"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-465:LNG61-2#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-465#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "E11" ],
    "callNumber" : "LNG61-2",
    "label" : "LNG61-2"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-38-420:420%2FLg391-2#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-38-420#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "00420001" ],
    "callNumber" : "420/Lg391-2",
    "label" : "420/Lg391-2"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-708:LNJ%2FBLE#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-708#!",
      "label" : "lobid Organisation"
    },
    "callNumber" : "LNJ/BLE",
    "label" : "LNJ/BLE"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-294:QXB694-2#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-294#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "00000021" ],
    "callNumber" : "QXB694-2",
    "label" : "QXB694-2"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-364:90.5358#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-364#!",
      "label" : "lobid Organisation"
    },
    "callNumber" : "90.5358",
    "label" : "90.5358"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-6:3G%2024330-2#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-6#!",
      "label" : "lobid Organisation"
    },
    "callNumber" : "3G 24330-2",
    "label" : "3G 24330-2"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-Bm3-2:D%201094%2F30,2#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-Bm3-2#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "F" ],
    "callNumber" : "D 1094/30,2",
    "label" : "D 1094/30,2"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-62:hisn446.o12#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-62#!",
      "label" : "lobid Organisation"
    },
    "label" : "lobid Bestandsressource"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-5:87%2F8068%20(2)#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-5#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "00000010" ],
    "callNumber" : "87/8068 (2)",
    "label" : "87/8068 (2)"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-51:01-18.18.1716-2#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-51#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "00000000" ],
    "callNumber" : "01-18.18.1716-2",
    "label" : "01-18.18.1716-2"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-51:02-F%2068.1987-2%20Literaturarchiv#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-51#!",
      "label" : "lobid Organisation"
    },
    "note" : [ "00000000" ],
    "callNumber" : "02-F 68.1987-2 Literaturarchiv",
    "label" : "02-F 68.1987-2 Literaturarchiv"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-467:21LNGZ1131-2#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-467#!",
      "label" : "lobid Organisation"
    },
    "callNumber" : "21LNGZ1131-2",
    "label" : "21LNGZ1131-2"
  }, {
    "id" : "http://lobid.org/items/HT002888677:DE-82:MA7301-73%2B1#!",
    "type" : [ "Item" ],
    "heldBy" : {
      "id" : "http://lobid.org/organisations/DE-82#!",
      "label" : "lobid Organisation"
    },
    "callNumber" : "MA7301-73+1",
    "label" : "MA7301-73+1"
  } ],
  "responsibilityStatement" : [ "hrsg. von Helmut Bleiber ..." ],
  "language" : [ {
    "id" : "http://id.loc.gov/vocabulary/iso639-2/deu",
    "label" : "Deutsch"
  } ],
  "medium" : [ {
    "id" : "http://rdaregistry.info/termList/RDAproductionMethod/1010",
    "label" : "Print"
  } ],
  "subject" : [ {
    "type" : [ "ComplexSubject" ],
    "componentList" : [ {
      "id" : "https://d-nb.info/gnd/4011882-4",
      "type" : [ "PlaceOrGeographicName" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Deutschland",
      "gndIdentifier" : "4011882-4"
    }, {
      "id" : "https://d-nb.info/gnd/4049688-0",
      "type" : [ "SubjectHeading" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Revolution, 1848",
      "gndIdentifier" : "4049688-0"
    } ],
    "label" : "Deutschland | Revolution, 1848"
  }, {
    "type" : [ "ComplexSubject" ],
    "componentList" : [ {
      "id" : "https://d-nb.info/gnd/4049688-0",
      "type" : [ "SubjectHeading" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Revolution, 1848",
      "gndIdentifier" : "4049688-0"
    } ],
    "label" : "Revolution, 1848"
  }, {
    "type" : [ "ComplexSubject" ],
    "componentList" : [ {
      "id" : "https://d-nb.info/gnd/4049688-0",
      "type" : [ "SubjectHeading" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Revolution, 1848",
      "gndIdentifier" : "4049688-0"
    }, {
      "id" : "https://d-nb.info/gnd/4006804-3",
      "type" : [ "SubjectHeading" ],
      "source" : {
        "id" : "https://d-nb.info/gnd/7749153-1",
        "label" : "Gemeinsame Normdatei (GND)"
      },
      "label" : "Biografie",
      "gndIdentifier" : "4006804-3"
    } ],
    "label" : "Revolution, Biografie"
  } ],
  "tableOfContents" : [ {
    "id" : "http://digitale-objekte.hbz-nrw.de/storage/2009/04/23/file_7/2966811.pdf",
    "label" : "2966811.pdf"
  } ],
  "title" : "Männer der Revolution von 1848, 2",
  "hbzId" : "HT002888677",
  "inCollection" : [ {
    "id" : "http://lobid.org/resources/HT014176012#!",
    "type" : [ "Collection" ],
    "label" : "Nordrhein-Westfälische Bibliographie (NWBib)"
  } ],
  "isPartOf" : [ {
    "type" : [ "IsPartOfRelation" ],
    "hasSuperordinate" : [ {
      "id" : "http://lobid.org/resources/HT001236717#!",
      "label" : "Schriften des Zentralinstituts für Geschichte"
    } ],
    "numbering" : "73"
  }, {
    "type" : [ "IsPartOfRelation" ],
    "hasSuperordinate" : [ {
      "id" : "http://lobid.org/resources/HT002888668#!",
      "label" : "lobid Ressource"
    } ],
    "numbering" : "2"
  } ],
  "subjectAltLabel" : [ "Federal Republic of Germany (Deutschland)", "Repubblica Federale di Germania (Deutschland)", "Achtzehnhundertachtundvierzig", "Berühmte Persönlichkeit / Biografie", "Deutschland (Bundesrepublik, 1990-)", "Lebensbeschreibung", "Deutsche Länder", "Deutscher Bund", "Allemagne (Deutschland)", "FRG", "BRD (1990-)", "Federativnaja Respublika Germanija", "République Fédérale d'Allemagne (Deutschland)", "Biografisches Nachschlagewerk", "BRD", "Rheinbund", "Heiliges Römisches Reich", "Republic of Germany (Deutschland)", "Norddeutscher Bund", "Deyizhi-Lianbang-Gongheguo", "Germanija", "Biographie", "Märzrevolution (1848)", "Niemcy", "Germany (Deutschland)", "Biographisches Nachschlagewerk", "Bundesrepublik Deutschland (1990-)", "Deutsches Reich", "Deutschland (Gebiet unter Alliierter Besatzung)", "Februarrevolution (1848)", "Ǧumhūrīyat Almāniyā al-Ittiḥādīya" ],
  "isbn" : [ "3050002859", "9783050002859" ],
  "oclcNumber" : [ "1067625908", "58625597" ],
  "natureOfContent" : [ {
    "id" : "https://d-nb.info/gnd/4006804-3",
    "type" : [ "SubjectHeading" ],
    "source" : {
      "id" : "https://d-nb.info/gnd/7749153-1",
      "label" : "Gemeinsame Normdatei (GND)"
    },
    "label" : "Biografie",
    "gndIdentifier" : "4006804-3"
  } ],
  "publication" : [ {
    "type" : [ "PublicationEvent" ],
    "location" : "Berlin",
    "publishedBy" : "Akad.-Verl.",
    "startDate" : "1987"
  } ],
  "sameAs" : [ {
    "id" : "http://worldcat.org/oclc/58625597",
    "label" : "58625597"
  }, {
    "id" : "http://hub.culturegraph.org/resource/HBZ-HT002888677",
    "label" : "Culturegraph Ressource"
  }, {
    "id" : "http://worldcat.org/oclc/1067625908",
    "label" : "1067625908"
  } ],
  "describedBy" : {
    "id" : "http://lobid.org/resources/HT002888677",
    "type" : [ "BibliographicDescription" ],
    "modifiedBy" : {
      "id" : "http://lobid.org/organisations/DE-605#!",
      "label" : "lobid Organisation"
    },
    "dateCreated" : "19930727",
    "dateModified" : "20221110",
    "inDataset" : {
      "id" : "http://lobid.org/resources/dataset#!",
      "label" : "lobid-resources – Der hbz-Verbundkatalog als Linked Open Data"
    },
    "resultOf" : {
      "type" : [ "CreateAction" ],
      "endTime" : "2023-04-16T08:00:08",
      "instrument" : {
        "id" : "https://github.com/hbz/lobid-resources",
        "type" : [ "SoftwareApplication" ],
        "label" : "Software lobid-resources"
      },
      "object" : {
        "id" : "http://lobid.org/hbz01/HT002888677",
        "type" : [ "DataFeedItem" ],
        "inDataset" : {
          "id" : "https://datahub.io/dataset/hbz_unioncatalog",
          "label" : "hbz_unioncatalog"
        },
        "label" : "hbz-Ressource HT002888677 im Exportformat MAB2-XML"
      }
    },
    "license" : [ {
      "id" : "http://creativecommons.org/publicdomain/zero/1.0",
      "label" : "Creative Commons-Lizenz CC0 1.0 Universal"
    } ],
    "sourceOrganization" : {
      "id" : "http://lobid.org/organisations/DE-467#!",
      "label" : "lobid Organisation"
    },
    "label" : "Webseite der hbz-Ressource HT002888677"
  },
  "@context" : "http://lobid.org/resources/context.jsonld",
  "id" : "http://lobid.org/resources/HT002888677#!"
}