From 68d29465adbc8177f6a36fdcdcb6413d24cbb722 Mon Sep 17 00:00:00 2001 From: Fabian Steeg Date: Wed, 21 Jun 2023 15:22:21 +0200 Subject: [PATCH 01/12] Set up workflow to create a mapping of almaMmsId to rpbId (RPB-28) For records with hbzIds (`f983`) in the Allegro data Does not handle ZDB entries w/o hbzId in Alma, TODO: use `f88_` `sbt "runMain rpb.ETL conf/rpb-test-titel-to-mapping.flux"` --- conf/rpb-test-titel-to-mapping.flux | 47 +++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 conf/rpb-test-titel-to-mapping.flux diff --git a/conf/rpb-test-titel-to-mapping.flux b/conf/rpb-test-titel-to-mapping.flux new file mode 100644 index 00000000..45f7c911 --- /dev/null +++ b/conf/rpb-test-titel-to-mapping.flux @@ -0,0 +1,47 @@ +FIX = " +unless exists (f983) + reject() +end +copy_field('f983','_id') +retain(f983, f00_, _id) +"; + +FLUX_DIR + "RPB-Export_HBZ_Titel_Test.txt" +| open-file(encoding="IBM437") +| as-lines +| rpb.Decode +| fix(FIX) +| stream-to-triples(redirect="true") +| @X; + +FLUX_DIR + "RPB-Export_HBZ_Titel_Test.txt" +| open-file(encoding="IBM437") +| as-lines +| rpb.Decode +| fix(FIX) +| stream-to-triples(redirect="true") +| template("https://lobid.org/resources/${o}") +| open-http +| as-records +| filter-strings("Not found:", passMatches="false") +| decode-json +| fix(" +copy_field(hbzId, _id) +retain(almaMmsId, _id) +") +| stream-to-triples(redirect="true") +| @X; + +@X +| wait-for-inputs("2") +| sort-triples(by="subject") +| collect-triples +| fix(" +prepend(f00_, 'RPB') +paste(mapping, almaMmsId, f00_, join_char: '\t') +retain(mapping) +") +| stream-to-triples +| template("${o}") +| write(FLUX_DIR + "output/test-output-mapping.tsv") +; From 9224ef16ab12b8d1f66edd969fd3965ecbedba0b Mon Sep 17 00:00:00 2001 From: Fabian Steeg Date: Thu, 22 Jun 2023 15:16:30 +0200 Subject: [PATCH 02/12] Map almaMmsIds to rpbIds for input data with `#983` (RPB-28) Based on lobid test instance with support for looking up ZDB entries via hbzId in the Aleph data (where we still have hbzIds), see https://github.com/hbz/lobid-resources/commit/c5f8568 See instructions for setting up the input data in conf/rpb-titel-to-mapping.flux, then run: `sbt "runMain rpb.ETL conf/rpb-titel-to-mapping.flux"` --- .gitignore | 1 + app/rpb/MapAlmaToRpb.java | 49 +++++++++++++++++++++++++++++ conf/rpb-test-titel-to-mapping.flux | 44 +++----------------------- conf/rpb-titel-to-mapping.flux | 10 ++++++ 4 files changed, 65 insertions(+), 39 deletions(-) create mode 100644 app/rpb/MapAlmaToRpb.java create mode 100644 conf/rpb-titel-to-mapping.flux diff --git a/.gitignore b/.gitignore index 1914a1ea..bcca3202 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ bulk.ndjson application-log-*.gz RPB-Export_HBZ_SW.txt RPB-Export_HBZ_Tit.txt +RPB-Export_HBZ_Tit_hbzIds.txt diff --git a/app/rpb/MapAlmaToRpb.java b/app/rpb/MapAlmaToRpb.java new file mode 100644 index 00000000..711000b9 --- /dev/null +++ b/app/rpb/MapAlmaToRpb.java @@ -0,0 +1,49 @@ +/* Copyright 2023 Fabian Steeg, hbz. Licensed under the GPLv2 */ + +package rpb; + +import java.io.IOException; +import java.net.URL; +import java.net.URLConnection; + +import org.metafacture.framework.ObjectReceiver; +import org.metafacture.framework.helpers.DefaultStreamPipe; + +import com.fasterxml.jackson.databind.JsonNode; + +import play.Logger; +import play.libs.Json; + +/** + * Create a mapping for RPB Allegro export data with hbzIds: map almaMmsId to rpbId. + */ +public final class MapAlmaToRpb extends DefaultStreamPipe> { + + private String id; + @Override + public void startRecord(String identifier) { + this.id = identifier; + super.startRecord(identifier); + } + @Override + public void literal(String name, String hbzId) { + String almaMmsId = getAlmaMmsId(hbzId); + getReceiver().process(String.format("%s\tRPB%s", almaMmsId, id)); + } + private String getAlmaMmsId(String hbzId) { + String url = "https://test.lobid.org/resources/" + hbzId; + Logger.debug("Trying to get almaMmsId from: " + url); + try { + URLConnection connection = new URL(url).openConnection(); + connection.setRequestProperty("Accept", "application/json"); + connection.connect(); + JsonNode jsonNode = Json.parse(connection.getInputStream()); + Thread.sleep(100); + return jsonNode.get("almaMmsId").textValue(); + } catch (IOException | InterruptedException e) { + e.printStackTrace(); + } + return "#983: " + hbzId; + } + +} diff --git a/conf/rpb-test-titel-to-mapping.flux b/conf/rpb-test-titel-to-mapping.flux index 45f7c911..b2d4f11c 100644 --- a/conf/rpb-test-titel-to-mapping.flux +++ b/conf/rpb-test-titel-to-mapping.flux @@ -1,47 +1,13 @@ -FIX = " -unless exists (f983) - reject() -end -copy_field('f983','_id') -retain(f983, f00_, _id) -"; - -FLUX_DIR + "RPB-Export_HBZ_Titel_Test.txt" -| open-file(encoding="IBM437") -| as-lines -| rpb.Decode -| fix(FIX) -| stream-to-triples(redirect="true") -| @X; - FLUX_DIR + "RPB-Export_HBZ_Titel_Test.txt" | open-file(encoding="IBM437") | as-lines | rpb.Decode -| fix(FIX) -| stream-to-triples(redirect="true") -| template("https://lobid.org/resources/${o}") -| open-http -| as-records -| filter-strings("Not found:", passMatches="false") -| decode-json -| fix(" -copy_field(hbzId, _id) -retain(almaMmsId, _id) -") -| stream-to-triples(redirect="true") -| @X; - -@X -| wait-for-inputs("2") -| sort-triples(by="subject") -| collect-triples | fix(" -prepend(f00_, 'RPB') -paste(mapping, almaMmsId, f00_, join_char: '\t') -retain(mapping) +unless exists (f983) + reject() +end +retain(f983) ") -| stream-to-triples -| template("${o}") +| rpb.MapAlmaToRpb | write(FLUX_DIR + "output/test-output-mapping.tsv") ; diff --git a/conf/rpb-titel-to-mapping.flux b/conf/rpb-titel-to-mapping.flux new file mode 100644 index 00000000..35997350 --- /dev/null +++ b/conf/rpb-titel-to-mapping.flux @@ -0,0 +1,10 @@ +// cat conf/RPB-Export_HBZ_Tit.txt | grep '#983' > RPB-Export_HBZ_Tit_hbzIds.txt +// (but remove last line; grep with -a yields over 40k lines, some binary newline?) +FLUX_DIR + "RPB-Export_HBZ_Tit_hbzIds.txt" +| open-file(encoding="IBM437") +| as-lines +| rpb.Decode +| fix("retain(f983)") +| rpb.MapAlmaToRpb +| write(FLUX_DIR + "output/output-mapping.tsv") +; From 347399a2e85d1dd0fb3039fda7e90df95f50bf10 Mon Sep 17 00:00:00 2001 From: Fabian Steeg Date: Fri, 23 Jun 2023 14:24:16 +0200 Subject: [PATCH 03/12] Reject titles that have a hbzId / field `f983` (RPB-28) These are part of the mapping used to mark RPB in lobid (9224ef1) --- conf/output/test-output-0.json | 67 ++------------ conf/output/test-output-1.json | 67 ++------------ conf/output/test-output-10.json | 58 ++++++++++-- conf/output/test-output-11.json | 58 ++++++++++-- conf/output/test-output-12.json | 33 +++++-- conf/output/test-output-13.json | 54 +++++++++-- conf/output/test-output-14.json | 43 +++++++-- conf/output/test-output-15.json | 50 +++++++++-- conf/output/test-output-16.json | 67 ++++++++++++-- conf/output/test-output-17.json | 50 +++++++++-- conf/output/test-output-18.json | 32 +++++-- conf/output/test-output-19.json | 41 ++++----- conf/output/test-output-2.json | 100 ++------------------- conf/output/test-output-20.json | 47 +++++----- conf/output/test-output-21.json | 105 +++++++++++++++++++--- conf/output/test-output-22.json | 71 ++++++++++----- conf/output/test-output-23.json | 50 +++++++---- conf/output/test-output-24.json | 67 +++----------- conf/output/test-output-25.json | 65 ++++++-------- conf/output/test-output-26.json | 60 +++---------- conf/output/test-output-27.json | 58 +++++++++--- conf/output/test-output-28.json | 69 +++------------ conf/output/test-output-29.json | 50 +++++------ conf/output/test-output-3.json | 93 ++----------------- conf/output/test-output-30.json | 133 +++------------------------- conf/output/test-output-31.json | 72 ++++++--------- conf/output/test-output-32.json | 75 +++------------- conf/output/test-output-33.json | 65 +++++++++++--- conf/output/test-output-34.json | 76 +++------------- conf/output/test-output-35.json | 75 +++++++++++++--- conf/output/test-output-36.json | 78 +++------------- conf/output/test-output-37.json | 58 +++++++++--- conf/output/test-output-38.json | 75 +++------------- conf/output/test-output-39.json | 12 +-- conf/output/test-output-4.json | 87 +++--------------- conf/output/test-output-40.json | 56 +++++------- conf/output/test-output-41.json | 98 +++++++++++++++++--- conf/output/test-output-42.json | 47 +++++----- conf/output/test-output-43.json | 24 ----- conf/output/test-output-5.json | 67 ++------------ conf/output/test-output-6.json | 100 ++------------------- conf/output/test-output-7.json | 100 ++------------------- conf/output/test-output-8.json | 92 ++----------------- conf/output/test-output-9.json | 10 +-- conf/output/test-output-strapi.json | 15 ---- conf/rpb-titel-to-lobid.fix | 5 -- conf/rpb-titel-to-strapi.fix | 6 ++ 47 files changed, 1212 insertions(+), 1669 deletions(-) diff --git a/conf/output/test-output-0.json b/conf/output/test-output-0.json index 46c9272c..34fcee77 100644 --- a/conf/output/test-output-0.json +++ b/conf/output/test-output-0.json @@ -1,77 +1,28 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB929t112201", - "id" : "https://lobid.org/resources/RPB929t112201", - "hbzId" : "CT003010543", + "rpbId" : "RPB036t0121512", + "id" : "https://lobid.org/resources/RPB036t0121512", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Coloniensis Dioecesis [Elektronische Ressource] : [Ca. 1:1 300 000]", - "extent" : "1 Kt. : Kupferstich ; 13 x 9 cm", - "note" : [ "O oben. - Maßstab in graph. Form (Miliaria Germ.), Titelkartusche und Maßstabsleiste unten links - rückseitig lateinischer Text" ], - "responsibilityStatement" : [ "[Hondius, Jodocus]" ], + "title" : "Serenissimus befehlen zu prügeln", "publication" : [ { - "location" : [ "Amstelodami" ], - "startDate" : "1618", - "publishedBy" : [ "Judocus Hondius" ], + "startDate" : "1963", "type" : [ "PublicationEvent" ] } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n126000", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Katholische Kirche / Erzdiözese Köln | Altkarte | Online-Ressource", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/2029646-0", - "label" : "Katholische Kirche / Erzdiözese Köln", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4611904-8", - "label" : "Altkarte", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4511937-5", - "label" : "Online-Ressource", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n34", - "label" : "_r34_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn11k2200547a", - "label" : "Hondius, Jodocus (Kartograph, 1563-1612)" + "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", + "label" : "Wagner, Hermann Josef" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/oth", - "label" : "Sonstige" + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Bertius, Petrus : P. Bertii Tabularum geographicarum contractarum libri septem; 380" + "bibliographicCitation" : "Heimat am Mittelrhein. - 8 (1963), Nr. 6" } diff --git a/conf/output/test-output-1.json b/conf/output/test-output-1.json index dfe18cff..c840d2c1 100644 --- a/conf/output/test-output-1.json +++ b/conf/output/test-output-1.json @@ -1,77 +1,28 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB929t112202", - "id" : "https://lobid.org/resources/RPB929t112202", - "hbzId" : "CT003010542", + "rpbId" : "RPB036t0121513", + "id" : "https://lobid.org/resources/RPB036t0121513", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Provincia Trevirensis [Elektronische Ressource] : [Ca. 1:1 500 000]", - "extent" : "1 Kt. : Kupferstich ; 13 x 9 cm", - "note" : [ "Maßstab in graph. Form (Miliaria Germanica), Titelkartusche und Maßstabsleiste unten rechts - rückseitig lateinischer Text" ], - "responsibilityStatement" : [ "[Hondius, Jodocus]" ], + "title" : "Soldaten für Holland", "publication" : [ { - "location" : [ "Amstelodami" ], - "startDate" : "1618", - "publishedBy" : [ "Judocus Hondius" ], + "startDate" : "1957", "type" : [ "PublicationEvent" ] } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n126000", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Erzstift Trier | Altkarte | Online-Ressource", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4060882-7", - "label" : "Erzstift Trier", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4611904-8", - "label" : "Altkarte", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4511937-5", - "label" : "Online-Ressource", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n41", - "label" : "_r41_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn11k2200547a", - "label" : "Hondius, Jodocus (Kartograph, 1563-1612)" + "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", + "label" : "Wagner, Hermann Josef" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/oth", - "label" : "Sonstige" + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Bertius, Petrus : P. Bertii Tabularum geographicarum contractarum libri septem; 378" + "bibliographicCitation" : "Heimat am Mittelrhein. - 2 (1957), Nr. 6" } diff --git a/conf/output/test-output-10.json b/conf/output/test-output-10.json index c840d2c1..8f14978d 100644 --- a/conf/output/test-output-10.json +++ b/conf/output/test-output-10.json @@ -1,22 +1,66 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121513", - "id" : "https://lobid.org/resources/RPB036t0121513", + "rpbId" : "RPB107t01147869", + "id" : "https://lobid.org/resources/RPB107t01147869", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Soldaten für Holland", + "title" : "Grabmal und Taufstein - zwei spätgotische Denkmäler der Pfarrkirche in Hainfeld", + "extent" : "Ill.", "publication" : [ { - "startDate" : "1957", + "startDate" : "1984", "type" : [ "PublicationEvent" ] } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n844030", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Sankt Barbara / Hainfeld, Südliche Weinstraße | Grabplatte | Taufbecken", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/7746576-3", + "label" : "Sankt Barbara / Hainfeld, Südliche Weinstraße", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4113778-4", + "label" : "Grabplatte", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4135651-2", + "label" : "Taufbecken", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n33703036", + "label" : "o33703036", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", - "label" : "Wagner, Hermann Josef" + "id" : "https://d-nb.info/gnd/11944027X", + "label" : "Müller, Carl Werner / 1931-2018" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -24,5 +68,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 2 (1957), Nr. 6" + "bibliographicCitation" : "Archiv für mittelrheinische Kirchengeschichte. - 36 (1984), S. 47-63" } diff --git a/conf/output/test-output-11.json b/conf/output/test-output-11.json index 828fd7f2..391a2587 100644 --- a/conf/output/test-output-11.json +++ b/conf/output/test-output-11.json @@ -1,22 +1,66 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121514", - "id" : "https://lobid.org/resources/RPB036t0121514", + "rpbId" : "RPB107t01147870", + "id" : "https://lobid.org/resources/RPB107t01147870", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Sonnenuhr an der Kirche", + "title" : "¬Die¬ Herren von Hainfeld - zur Geschichte e. vorderpfälzischen Adelssitzes im Mittelalter", "publication" : [ { - "startDate" : "1958", + "startDate" : "1983", "type" : [ "PublicationEvent" ] } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n240400", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "id" : "http://purl.org/lobid/rpb#n207020", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Hainfeld / Familie | Geschichte 1100-1300", + "componentList" : [ { + "id" : "https://rpb.lobid.org/sw/00Sn01s147870528a", + "label" : "Hainfeld / Familie", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://rpb.lobid.org/sw/00Sn06k1444137a", + "label" : "Geschichte 1100-1300", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n33703036", + "label" : "o33703036", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", - "label" : "Wagner, Hermann Josef" + "id" : "https://d-nb.info/gnd/11944027X", + "label" : "Müller, Carl Werner / 1931-2018" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -24,5 +68,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 3 (1958), Nr. 11" + "bibliographicCitation" : "Historischer Verein der Pfalz: Mitteilungen des Historischen Vereins der Pfalz. - 81 (1983), S. 229-271" } diff --git a/conf/output/test-output-12.json b/conf/output/test-output-12.json index dbb7a4c0..2ed3cb77 100644 --- a/conf/output/test-output-12.json +++ b/conf/output/test-output-12.json @@ -1,22 +1,41 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121515", - "id" : "https://lobid.org/resources/RPB036t0121515", + "rpbId" : "RPB107t01147871", + "id" : "https://lobid.org/resources/RPB107t01147871", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Souvenir ...", + "title" : "Juden in Hainfeld : ein Beitrag zur Geschichte der Dorfjuden im Hochstift Speyer", + "extent" : "Ill.", "publication" : [ { - "startDate" : "1963", + "startDate" : "1983", "type" : [ "PublicationEvent" ] } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n632000", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n33703036", + "label" : "o33703036", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", - "label" : "Wagner, Hermann Josef" + "id" : "https://d-nb.info/gnd/11944027X", + "label" : "Müller, Carl Werner / 1931-2018" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -24,5 +43,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 8 (1963), Nr. 1" + "bibliographicCitation" : "Pfälzer Heimat. - 34 (1983), S. 156-167" } diff --git a/conf/output/test-output-13.json b/conf/output/test-output-13.json index 11dfdc57..bce6a7cf 100644 --- a/conf/output/test-output-13.json +++ b/conf/output/test-output-13.json @@ -1,21 +1,57 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121516", - "id" : "https://lobid.org/resources/RPB036t0121516", + "rpbId" : "RPB107t01147872", + "id" : "https://lobid.org/resources/RPB107t01147872", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Sprendlingen und das Kloster Lorsch", + "title" : "¬Der¬ Meister des Hainfelder Röhrenbrunnens und des Burgbrunnens auf Neuscharfeneck", + "extent" : "Ill.", "publication" : [ { - "startDate" : "1967", + "startDate" : "1983", "type" : [ "PublicationEvent" ] } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n844070", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Burg Neuscharfeneck / Flemlingen | Brunnen", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4595996-1", + "label" : "Burg Neuscharfeneck / Flemlingen", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4008491-7", + "label" : "Brunnen", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n339", - "label" : "o339", + "id" : "https://rpb.lobid.org/spatial#n33703036", + "label" : "o33703036", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + }, { + "id" : "https://rpb.lobid.org/spatial#n33703025", + "label" : "o33703025", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -24,8 +60,8 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", - "label" : "Wagner, Hermann Josef" + "id" : "https://d-nb.info/gnd/11944027X", + "label" : "Müller, Carl Werner / 1931-2018" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -33,5 +69,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Landkreis Bingen: Heimat-Jahrbuch. - 1967, S. 23-26" + "bibliographicCitation" : "In: Landkreis Südliche Weinstraße: Heimat-Jahrbuch .... - 5 (1983), Seite 29-36. -" } diff --git a/conf/output/test-output-14.json b/conf/output/test-output-14.json index d48cb013..60324d24 100644 --- a/conf/output/test-output-14.json +++ b/conf/output/test-output-14.json @@ -1,22 +1,51 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121517", - "id" : "https://lobid.org/resources/RPB036t0121517", + "rpbId" : "RPB107t01147873", + "id" : "https://lobid.org/resources/RPB107t01147873", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Sprendlingens Einwohnerzahl", + "title" : "¬Das¬ Hambacher Schloß.", "publication" : [ { - "startDate" : "1959", + "startDate" : "1982", "type" : [ "PublicationEvent" ] } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n844040", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Hambacher Schloss / Neustadt an der Weinstraße", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4094596-0", + "label" : "Hambacher Schloss / Neustadt an der Weinstraße", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n316000000700", + "label" : "o316000000700", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", - "label" : "Wagner, Hermann Josef" + "id" : "https://d-nb.info/gnd/119277425", + "label" : "Böcher, Otto / 1935-2020" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -24,5 +53,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 4 (1959), Nr. 1" + "bibliographicCitation" : "Ärzteblatt Rheinland-Pfalz. 35. 1982, 560, 563-65" } diff --git a/conf/output/test-output-15.json b/conf/output/test-output-15.json index df4d4e4c..59fc819e 100644 --- a/conf/output/test-output-15.json +++ b/conf/output/test-output-15.json @@ -1,22 +1,58 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121518", - "id" : "https://lobid.org/resources/RPB036t0121518", + "rpbId" : "RPB107t01147874", + "id" : "https://lobid.org/resources/RPB107t01147874", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Sprendlinger Chronik", + "title" : "¬Das¬ Hambacher Schloß als Hochzeitsgeschenk der Pfälzer an Kronprinz Maximilian von Bayern (1842)", "publication" : [ { - "startDate" : "1965", + "startDate" : "1982", "type" : [ "PublicationEvent" ] } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n844040", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Hambacher Schloss / Neustadt an der Weinstraße | Maximilian / II. / Bayern, König / 1811-1864", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4094596-0", + "label" : "Hambacher Schloss / Neustadt an der Weinstraße", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/118579347", + "label" : "Maximilian / II. / Bayern, König / 1811-1864", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n316000000700", + "label" : "o316000000700", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", - "label" : "Wagner, Hermann Josef" + "id" : "https://d-nb.info/gnd/107939061", + "label" : "Kermann, Joachim / 1942-" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -24,5 +60,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 10 (1965), Nr. 2 und Heimat am Mittelrhein 1965, S. 10" + "bibliographicCitation" : "Historischer Verein der Pfalz: Mitteilungen des Historischen Vereins der Pfalz. - 80 (1982), S. 199-240" } diff --git a/conf/output/test-output-16.json b/conf/output/test-output-16.json index 767c002b..6dcc7048 100644 --- a/conf/output/test-output-16.json +++ b/conf/output/test-output-16.json @@ -1,22 +1,75 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121519", - "id" : "https://lobid.org/resources/RPB036t0121519", + "rpbId" : "RPB107t01147875", + "id" : "https://lobid.org/resources/RPB107t01147875", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Sprendlinger kämpften unter Napoleon", + "title" : "¬Ein¬ Fest aller Deutschen : das Hambacher Schloß wird nationale Gedenkstätte", + "extent" : "Ill.", "publication" : [ { - "startDate" : "1963", + "startDate" : "1981", "type" : [ "PublicationEvent" ] } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n246500", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "id" : "http://purl.org/lobid/rpb#n844040", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Hambacher Fest | Hambacher Schloss / Neustadt an der Weinstraße", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4127289-4", + "label" : "Hambacher Fest", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4094596-0", + "label" : "Hambacher Schloss / Neustadt an der Weinstraße", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n58", + "label" : "_r58_", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + }, { + "id" : "https://rpb.lobid.org/spatial#n316000000700", + "label" : "o316000000700", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", - "label" : "Wagner, Hermann Josef" + "id" : "https://rpb.lobid.org/agent/00Pn02s0203b", + "label" : "Letzelter, Manfred" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -24,5 +77,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 8 (1963), Nr. 12" + "bibliographicCitation" : "Stimme der Pfalz. - 32 (1981), 1, S. 9-11" } diff --git a/conf/output/test-output-17.json b/conf/output/test-output-17.json index 57373064..7c36a8b3 100644 --- a/conf/output/test-output-17.json +++ b/conf/output/test-output-17.json @@ -1,28 +1,60 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121520", - "id" : "https://lobid.org/resources/RPB036t0121520", + "type" : [ "BibliographicResource", "Book" ], + "rpbId" : "RPB107t01147876", + "id" : "https://lobid.org/resources/RPB107t01147876", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Sprendlinger Stifter und ihre Familien", + "title" : "¬Die¬ Maxburg bei Hambach. (Mit e. Titelkupfer, Uebersichtsplane u. Grundrisse der Burg.)", + "extent" : "VIII, 211 S. 8°", + "note" : [ "[Hambacher Schloß]" ], "publication" : [ { - "startDate" : "1983", + "location" : [ "Mannheim" ], + "startDate" : "1844", + "publishedBy" : [ "Meininger" ], "type" : [ "PublicationEvent" ] } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n844040", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Hambacher Schloss / Neustadt an der Weinstraße", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4094596-0", + "label" : "Hambacher Schloss / Neustadt an der Weinstraße", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n316000000700", + "label" : "o316000000700", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", - "label" : "Wagner, Hermann Josef" + "id" : "https://d-nb.info/gnd/116436425", + "label" : "Remling, Franz Xaver / 1803-1873" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", "label" : "Autor/in" }, "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 1983, H. 2" + } ] } diff --git a/conf/output/test-output-18.json b/conf/output/test-output-18.json index ed42c2aa..a80cd871 100644 --- a/conf/output/test-output-18.json +++ b/conf/output/test-output-18.json @@ -1,22 +1,40 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121521", - "id" : "https://lobid.org/resources/RPB036t0121521", + "rpbId" : "RPB107t01147877", + "id" : "https://lobid.org/resources/RPB107t01147877", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Steuern in alter Zeit", + "title" : "Hambacher Schloß. Wiedergeburt 1982 [Tagebuch der Renovierung]", "publication" : [ { - "startDate" : "1957", + "startDate" : "1982", "type" : [ "PublicationEvent" ] } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n240400", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n316000000700", + "label" : "o316000000700", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", - "label" : "Wagner, Hermann Josef" + "id" : "https://d-nb.info/gnd/1123984425", + "label" : "Trautmann, Herbert / 1948-2006" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -24,5 +42,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 2 (1957), Nr. 12" + "bibliographicCitation" : "Die Rheinpfalz / Mittelhaardter Rundschau v. 17.5.1982" } diff --git a/conf/output/test-output-19.json b/conf/output/test-output-19.json index 8f14978d..f549c0ee 100644 --- a/conf/output/test-output-19.json +++ b/conf/output/test-output-19.json @@ -1,21 +1,21 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147869", - "id" : "https://lobid.org/resources/RPB107t01147869", + "rpbId" : "RPB107t01147878", + "id" : "https://lobid.org/resources/RPB107t01147878", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Grabmal und Taufstein - zwei spätgotische Denkmäler der Pfarrkirche in Hainfeld", + "title" : "Um- und Ausbau des Hambacher Schlosses von 1979 bis 1982", "extent" : "Ill.", "publication" : [ { - "startDate" : "1984", + "startDate" : "1982", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n844030", + "id" : "http://purl.org/lobid/rpb#n844040", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -24,33 +24,26 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Sankt Barbara / Hainfeld, Südliche Weinstraße | Grabplatte | Taufbecken", + "label" : "Hambacher Schloss / Neustadt an der Weinstraße | Geschichte 1979-1982", "componentList" : [ { - "id" : "https://d-nb.info/gnd/7746576-3", - "label" : "Sankt Barbara / Hainfeld, Südliche Weinstraße", + "id" : "https://d-nb.info/gnd/4094596-0", + "label" : "Hambacher Schloss / Neustadt an der Weinstraße", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://d-nb.info/gnd/4113778-4", - "label" : "Grabplatte", + "id" : "https://rpb.lobid.org/sw/00Sn01s147878357a", + "label" : "Geschichte 1979-1982", "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4135651-2", - "label" : "Taufbecken", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" } } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n33703036", - "label" : "o33703036", + "id" : "https://rpb.lobid.org/spatial#n316000000700", + "label" : "o316000000700", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -59,8 +52,8 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/11944027X", - "label" : "Müller, Carl Werner / 1931-2018" + "id" : "https://d-nb.info/gnd/1123984425", + "label" : "Trautmann, Herbert / 1948-2006" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -68,5 +61,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Archiv für mittelrheinische Kirchengeschichte. - 36 (1984), S. 47-63" + "bibliographicCitation" : "Die Pfalz am Rhein . - 55 (1982), S. 175-180" } diff --git a/conf/output/test-output-2.json b/conf/output/test-output-2.json index 3f5789b1..828fd7f2 100644 --- a/conf/output/test-output-2.json +++ b/conf/output/test-output-2.json @@ -1,110 +1,28 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "rpbId" : "RPB929t112203", - "id" : "https://lobid.org/resources/RPB929t112203", - "hbzId" : "CT003005235", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB036t0121514", + "id" : "https://lobid.org/resources/RPB036t0121514", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬The¬ Rhenish minstrel [Elektronische Ressource] : A Series of Ballads, traditional and legendary, of the Rhine", - "extent" : "[1], [21] Kunstbl. ; s/w ; 24 x 28 cm", - "note" : [ "In Fraktur ; HT010123631 Dt. Ausg. u.d.T.: Stolterfoth, Adelheid ¬von¬: Rheinischer Sagenkreis" ], - "responsibilityStatement" : [ "by Adelheid von Stolterfoth. Embellished with twenty-one lithographic sketches, by Dielmann, from the designs of A. Rethel" ], + "title" : "Sonnenuhr an der Kirche", "publication" : [ { - "location" : [ "Frankfort o/M." ], - "startDate" : "1835", - "publishedBy" : [ "Jugel" ], + "startDate" : "1958", "type" : [ "PublicationEvent" ] } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n768010", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Rethel, Alfred / 1816-1859 | Illustration | Lithografie | Stolterfoth, Adelheid ¬von¬ / 1800-1875 / Rheinischer Sagenkreis | Pressendruck", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/118744615", - "label" : "Rethel, Alfred / 1816-1859", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4123412-1", - "label" : "Illustration", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4036042-8", - "label" : "Lithografie", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/7743324-5", - "label" : "Stolterfoth, Adelheid ¬von¬ / 1800-1875 / Rheinischer Sagenkreis", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4159043-0", - "label" : "Pressendruck", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n22", - "label" : "_r22_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/116002468", - "label" : "Stolterfoth, Adelheid ¬von¬ / 1800-1875" + "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", + "label" : "Wagner, Hermann Josef" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", "label" : "Autor/in" }, "type" : [ "Contribution" ] - }, { - "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01k18744579a", - "label" : "Rethel, Alfred" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/ill", - "label" : "Illustrator" - }, - "type" : [ "Contribution" ] - }, { - "agent" : { - "id" : "https://d-nb.info/gnd/118702424", - "label" : "Dielmann, Jakob Fürchtegott / 1809-1885" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/oth", - "label" : "Sonstige" - }, - "type" : [ "Contribution" ] - } ] + } ], + "bibliographicCitation" : "Heimat am Mittelrhein. - 3 (1958), Nr. 11" } diff --git a/conf/output/test-output-20.json b/conf/output/test-output-20.json index 391a2587..bc984bc3 100644 --- a/conf/output/test-output-20.json +++ b/conf/output/test-output-20.json @@ -1,20 +1,20 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147870", - "id" : "https://lobid.org/resources/RPB107t01147870", + "rpbId" : "RPB107t982370", + "id" : "https://lobid.org/resources/RPB107t982370", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Die¬ Herren von Hainfeld - zur Geschichte e. vorderpfälzischen Adelssitzes im Mittelalter", + "title" : "\"¬Der¬ Holocaust ist immer da\": Kooperationsprojekt Offener Kanal Ludwigshafen, Vorderpfalz und Community Television, Israel", "publication" : [ { - "startDate" : "1983", + "startDate" : "1997", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n240400", + "id" : "http://purl.org/lobid/rpb#n632050", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -22,7 +22,7 @@ "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" } }, { - "id" : "http://purl.org/lobid/rpb#n207020", + "id" : "http://purl.org/lobid/rpb#n882060", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -31,26 +31,33 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Hainfeld / Familie | Geschichte 1100-1300", + "label" : "Ludwigshafen am Rhein | Offener Kanal | Judenvernichtung", "componentList" : [ { - "id" : "https://rpb.lobid.org/sw/00Sn01s147870528a", - "label" : "Hainfeld / Familie", + "id" : "https://d-nb.info/gnd/4036472-0", + "label" : "Ludwigshafen am Rhein", "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://rpb.lobid.org/sw/00Sn06k1444137a", - "label" : "Geschichte 1100-1300", + "id" : "https://d-nb.info/gnd/4172489-6", + "label" : "Offener Kanal", "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4073091-8", + "label" : "Judenvernichtung", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" } } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n33703036", - "label" : "o33703036", + "id" : "https://rpb.lobid.org/spatial#n31400000", + "label" : "o31400000", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -59,8 +66,8 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/11944027X", - "label" : "Müller, Carl Werner / 1931-2018" + "id" : "https://d-nb.info/gnd/106837800X", + "label" : "Minor, Ulrike" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -68,5 +75,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Historischer Verein der Pfalz: Mitteilungen des Historischen Vereins der Pfalz. - 81 (1983), S. 229-271" + "bibliographicCitation" : "Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 102-106" } diff --git a/conf/output/test-output-21.json b/conf/output/test-output-21.json index 2ed3cb77..a0ea6f05 100644 --- a/conf/output/test-output-21.json +++ b/conf/output/test-output-21.json @@ -1,31 +1,114 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147871", - "id" : "https://lobid.org/resources/RPB107t01147871", + "rpbId" : "RPB107t982371", + "id" : "https://lobid.org/resources/RPB107t982371", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Juden in Hainfeld : ein Beitrag zur Geschichte der Dorfjuden im Hochstift Speyer", - "extent" : "Ill.", + "title" : "Ältere Menschen machen Fernsehen : aktivierende Medienarbeit in Offenen Kanälen", + "note" : [ "Videoprojekt zwischen Volkshochschule u. Offener Kanal" ], "publication" : [ { - "startDate" : "1983", + "startDate" : "1997", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n632000", + "id" : "http://purl.org/lobid/rpb#n786000", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { "id" : "http://purl.org/lobid/rpb", "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" } + }, { + "id" : "http://purl.org/lobid/rpb#n882060", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Ludwigshafen am Rhein | Volkshochschule | Geschichte 1945-", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4036472-0", + "label" : "Ludwigshafen am Rhein", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4136151-9", + "label" : "Volkshochschule", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + }, { + "type" : [ "ComplexSubject" ], + "label" : "Ludwigshafen am Rhein | Offener Kanal | Geschichte 1945-", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4036472-0", + "label" : "Ludwigshafen am Rhein", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4172489-6", + "label" : "Offener Kanal", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + }, { + "type" : [ "ComplexSubject" ], + "label" : "Ludwigshafen am Rhein | Alter | Geschichte 1945-", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4036472-0", + "label" : "Ludwigshafen am Rhein", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4001446-0", + "label" : "Alter", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n33703036", - "label" : "o33703036", + "id" : "https://rpb.lobid.org/spatial#n31400000", + "label" : "o31400000", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -34,8 +117,8 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/11944027X", - "label" : "Müller, Carl Werner / 1931-2018" + "id" : "https://rpb.lobid.org/agent/00Pn02s0022a", + "label" : "Baum, Herbert" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -43,5 +126,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Pfälzer Heimat. - 34 (1983), S. 156-167" + "bibliographicCitation" : "Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 119-123" } diff --git a/conf/output/test-output-22.json b/conf/output/test-output-22.json index bce6a7cf..f592baa6 100644 --- a/conf/output/test-output-22.json +++ b/conf/output/test-output-22.json @@ -1,21 +1,31 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147872", - "id" : "https://lobid.org/resources/RPB107t01147872", + "rpbId" : "RPB107t982372", + "id" : "https://lobid.org/resources/RPB107t982372", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Der¬ Meister des Hainfelder Röhrenbrunnens und des Burgbrunnens auf Neuscharfeneck", - "extent" : "Ill.", + "title" : "Zur politischen Tragweite schulischer Medienarbeit : was \"lernen\" Gymnasiasten, wenn sie \"im Auftrag\" eines Berufsinformationszentrums Live-Sendungen für Schüler anderer Schularten produzieren?", + "extent" : "Graph. Darst.", + "note" : [ "Medien-AG d. Wilhelm-von-Humboldt-Gymnasiums" ], + "responsibilityStatement" : [ "Karl-Ludwig Kemen ; Gerhard Laubscher" ], "publication" : [ { - "startDate" : "1983", + "startDate" : "1997", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n844070", + "id" : "http://purl.org/lobid/rpb#n784080", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "id" : "http://purl.org/lobid/rpb#n882060", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -24,34 +34,37 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Burg Neuscharfeneck / Flemlingen | Brunnen", + "label" : "Ludwigshafen am Rhein | Offener Kanal", "componentList" : [ { - "id" : "https://d-nb.info/gnd/4595996-1", - "label" : "Burg Neuscharfeneck / Flemlingen", + "id" : "https://d-nb.info/gnd/4036472-0", + "label" : "Ludwigshafen am Rhein", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://d-nb.info/gnd/4008491-7", - "label" : "Brunnen", + "id" : "https://d-nb.info/gnd/4172489-6", + "label" : "Offener Kanal", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } } ] + }, { + "type" : [ "ComplexSubject" ], + "label" : "Wilhelm-von-Humboldt-Gymnasium / Ludwigshafen am Rhein / Medien-AG", + "componentList" : [ { + "id" : "https://rpb.lobid.org/sw/107n220353", + "label" : "Wilhelm-von-Humboldt-Gymnasium / Ludwigshafen am Rhein / Medien-AG", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n33703036", - "label" : "o33703036", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - }, { - "id" : "https://rpb.lobid.org/spatial#n33703025", - "label" : "o33703025", + "id" : "https://rpb.lobid.org/spatial#n31400000", + "label" : "o31400000", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -60,8 +73,18 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/11944027X", - "label" : "Müller, Carl Werner / 1931-2018" + "id" : "https://rpb.lobid.org/agent/00Pn98s2372a", + "label" : "Kemen, Karl-Ludwig" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "id" : "https://rpb.lobid.org/agent/00Pn98s2372b", + "label" : "Laubscher, Gerhard" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -69,5 +92,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "In: Landkreis Südliche Weinstraße: Heimat-Jahrbuch .... - 5 (1983), Seite 29-36. -" + "bibliographicCitation" : "Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 124-144" } diff --git a/conf/output/test-output-23.json b/conf/output/test-output-23.json index 60324d24..d6cc7535 100644 --- a/conf/output/test-output-23.json +++ b/conf/output/test-output-23.json @@ -1,20 +1,23 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147873", - "id" : "https://lobid.org/resources/RPB107t01147873", + "type" : [ "BibliographicResource", "MultiVolumeBook" ], + "rpbId" : "RPB107t982373", + "id" : "https://lobid.org/resources/RPB107t982373", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Das¬ Hambacher Schloß.", + "title" : "SWR-3-Clubmagazin", + "note" : [ "Vorgänger u.d.T.: On" ], "publication" : [ { - "startDate" : "1982", + "location" : [ "Baden-Baden" ], + "startDate" : "1998", + "publishedBy" : [ "Südwestrundfunk-Media-GmbH" ], "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n844040", + "id" : "http://purl.org/lobid/rpb#n882040", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -23,10 +26,24 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Hambacher Schloss / Neustadt an der Weinstraße", + "label" : "Südwestrundfunk | Geschichte 1945- | Zeitschrift", "componentList" : [ { - "id" : "https://d-nb.info/gnd/4094596-0", - "label" : "Hambacher Schloss / Neustadt an der Weinstraße", + "id" : "https://d-nb.info/gnd/5295938-7", + "label" : "Südwestrundfunk", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4067488-5", + "label" : "Zeitschrift", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" @@ -34,8 +51,8 @@ } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n316000000700", - "label" : "o316000000700", + "id" : "https://rpb.lobid.org/spatial#n01", + "label" : "_r01_", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -44,14 +61,13 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/119277425", - "label" : "Böcher, Otto / 1935-2020" + "id" : "https://d-nb.info/gnd/5331496-7", + "label" : "SWR-3-Club" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "HE Urheber" }, "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "Ärzteblatt Rheinland-Pfalz. 35. 1982, 560, 563-65" + } ] } diff --git a/conf/output/test-output-24.json b/conf/output/test-output-24.json index 59fc819e..70331c0c 100644 --- a/conf/output/test-output-24.json +++ b/conf/output/test-output-24.json @@ -1,64 +1,23 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147874", - "id" : "https://lobid.org/resources/RPB107t01147874", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982373", + "label" : "SWR-3-Clubmagazin" + } ], + "numbering" : "1998,1(Sept.) -" + } ], + "rpbId" : "RPB107t982373b1", + "id" : "https://lobid.org/resources/RPB107t982373b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Das¬ Hambacher Schloß als Hochzeitsgeschenk der Pfälzer an Kronprinz Maximilian von Bayern (1842)", + "title" : "SWR-3-Clubmagazin | 1998,1(Sept.) -", "publication" : [ { - "startDate" : "1982", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n844040", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Hambacher Schloss / Neustadt an der Weinstraße | Maximilian / II. / Bayern, König / 1811-1864", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4094596-0", - "label" : "Hambacher Schloss / Neustadt an der Weinstraße", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/118579347", - "label" : "Maximilian / II. / Bayern, König / 1811-1864", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n316000000700", - "label" : "o316000000700", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/107939061", - "label" : "Kermann, Joachim / 1942-" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" - }, - "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "Historischer Verein der Pfalz: Mitteilungen des Historischen Vereins der Pfalz. - 80 (1982), S. 199-240" + } ] } diff --git a/conf/output/test-output-25.json b/conf/output/test-output-25.json index 6dcc7048..391f1aa6 100644 --- a/conf/output/test-output-25.json +++ b/conf/output/test-output-25.json @@ -1,29 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147875", - "id" : "https://lobid.org/resources/RPB107t01147875", + "type" : [ "BibliographicResource", "MultiVolumeBook" ], + "rpbId" : "RPB107t982374", + "id" : "https://lobid.org/resources/RPB107t982374", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Ein¬ Fest aller Deutschen : das Hambacher Schloß wird nationale Gedenkstätte", - "extent" : "Ill.", + "title" : "On : SWF 3, das Magazin", + "note" : [ "Ersch. früher in: Offenburg : Opal-Verl. [1995,2]" ], + "responsibilityStatement" : [ "hrsg. von: SWF 3, Der Club" ], "publication" : [ { - "startDate" : "1981", + "location" : [ "Rastatt" ], + "startDate" : "1992", + "publishedBy" : [ "Pabel-Moewig" ], "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n246500", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n844040", + "id" : "http://purl.org/lobid/rpb#n882040", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -32,17 +27,24 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Hambacher Fest | Hambacher Schloss / Neustadt an der Weinstraße", + "label" : "SWF 3 | Geschichte 1945- | Zeitschrift", "componentList" : [ { - "id" : "https://d-nb.info/gnd/4127289-4", - "label" : "Hambacher Fest", + "id" : "https://d-nb.info/gnd/4264102-0", + "label" : "SWF 3", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://d-nb.info/gnd/4094596-0", - "label" : "Hambacher Schloss / Neustadt an der Weinstraße", + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4067488-5", + "label" : "Zeitschrift", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" @@ -50,16 +52,8 @@ } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n58", - "label" : "_r58_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - }, { - "id" : "https://rpb.lobid.org/spatial#n316000000700", - "label" : "o316000000700", + "id" : "https://rpb.lobid.org/spatial#n01", + "label" : "_r01_", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -68,14 +62,13 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn02s0203b", - "label" : "Letzelter, Manfred" + "id" : "https://d-nb.info/gnd/5166552-9", + "label" : "SWF 3, Der Club" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "NE hrsg. Körperschaft" }, "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "Stimme der Pfalz. - 32 (1981), 1, S. 9-11" + } ] } diff --git a/conf/output/test-output-26.json b/conf/output/test-output-26.json index 7c36a8b3..9e04f481 100644 --- a/conf/output/test-output-26.json +++ b/conf/output/test-output-26.json @@ -1,60 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Book" ], - "rpbId" : "RPB107t01147876", - "id" : "https://lobid.org/resources/RPB107t01147876", + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982374", + "label" : "On : SWF 3, das Magazin" + } ], + "numbering" : "1992 - 1998,2" + } ], + "rpbId" : "RPB107t982374b1", + "id" : "https://lobid.org/resources/RPB107t982374b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Die¬ Maxburg bei Hambach. (Mit e. Titelkupfer, Uebersichtsplane u. Grundrisse der Burg.)", - "extent" : "VIII, 211 S. 8°", - "note" : [ "[Hambacher Schloß]" ], + "title" : "On : SWF 3, das Magazin | 1992 - 1998,2", + "note" : [ "Damit Erscheinen eingest. - Forts. u.d.T.: SWR-3-Clubmagazin" ], "publication" : [ { - "location" : [ "Mannheim" ], - "startDate" : "1844", - "publishedBy" : [ "Meininger" ], "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n844040", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Hambacher Schloss / Neustadt an der Weinstraße", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4094596-0", - "label" : "Hambacher Schloss / Neustadt an der Weinstraße", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n316000000700", - "label" : "o316000000700", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/116436425", - "label" : "Remling, Franz Xaver / 1803-1873" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-27.json b/conf/output/test-output-27.json index a80cd871..5cfaecb6 100644 --- a/conf/output/test-output-27.json +++ b/conf/output/test-output-27.json @@ -1,30 +1,51 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147877", - "id" : "https://lobid.org/resources/RPB107t01147877", + "type" : [ "BibliographicResource", "MultiVolumeBook" ], + "rpbId" : "RPB107t982375", + "id" : "https://lobid.org/resources/RPB107t982375", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Hambacher Schloß. Wiedergeburt 1982 [Tagebuch der Renovierung]", + "title" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz", + "note" : [ "Vorgänger u.d.T.: Südwestfunk : Südwestfunk-Journal" ], "publication" : [ { - "startDate" : "1982", + "location" : [ "Stuttgart" ], + "startDate" : "1998", + "publishedBy" : [ "SWR" ], "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n240400", + "id" : "http://purl.org/lobid/rpb#n882030", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { "id" : "http://purl.org/lobid/rpb", "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Südwestrundfunk | Zeitschrift", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/5295938-7", + "label" : "Südwestrundfunk", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4067488-5", + "label" : "Zeitschrift", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n316000000700", - "label" : "o316000000700", + "id" : "https://rpb.lobid.org/spatial#n01", + "label" : "_r01_", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -33,14 +54,23 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/1123984425", - "label" : "Trautmann, Herbert / 1948-2006" + "id" : "https://d-nb.info/gnd/5295938-7", + "label" : "Südwestrundfunk" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "HE Urheber" }, "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "Die Rheinpfalz / Mittelhaardter Rundschau v. 17.5.1982" + }, { + "agent" : { + "id" : "https://d-nb.info/gnd/Südwestrundfunk", + "label" : "Südwestrundfunk" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "HE Urheber" + }, + "type" : [ "Contribution" ] + } ] } diff --git a/conf/output/test-output-28.json b/conf/output/test-output-28.json index f549c0ee..4ee2a79f 100644 --- a/conf/output/test-output-28.json +++ b/conf/output/test-output-28.json @@ -1,65 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147878", - "id" : "https://lobid.org/resources/RPB107t01147878", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982375", + "label" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz" + } ], + "numbering" : "1998,1(Sept.) - 2001,9(Sept.)" + } ], + "rpbId" : "RPB107t982375b1", + "id" : "https://lobid.org/resources/RPB107t982375b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Um- und Ausbau des Hambacher Schlosses von 1979 bis 1982", - "extent" : "Ill.", + "title" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz | 1998,1(Sept.) - 2001,9(Sept.)", + "note" : [ "Forts. u.d.T.: Doppelpfeil" ], "publication" : [ { - "startDate" : "1982", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n844040", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Hambacher Schloss / Neustadt an der Weinstraße | Geschichte 1979-1982", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4094596-0", - "label" : "Hambacher Schloss / Neustadt an der Weinstraße", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/00Sn01s147878357a", - "label" : "Geschichte 1979-1982", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n316000000700", - "label" : "o316000000700", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/1123984425", - "label" : "Trautmann, Herbert / 1948-2006" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" - }, - "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "Die Pfalz am Rhein . - 55 (1982), S. 175-180" + } ] } diff --git a/conf/output/test-output-29.json b/conf/output/test-output-29.json index bc984bc3..afbb0666 100644 --- a/conf/output/test-output-29.json +++ b/conf/output/test-output-29.json @@ -1,20 +1,22 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t982370", - "id" : "https://lobid.org/resources/RPB107t982370", + "type" : [ "BibliographicResource", "MultiVolumeBook" ], + "rpbId" : "RPB107t982376", + "id" : "https://lobid.org/resources/RPB107t982376", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "\"¬Der¬ Holocaust ist immer da\": Kooperationsprojekt Offener Kanal Ludwigshafen, Vorderpfalz und Community Television, Israel", + "title" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte", + "responsibilityStatement" : [ "Institut für Angewandte Vogelkunde, Staatliche Vogelschutzwarte für Hessen, Rheinland-Pfalz und Saarland" ], "publication" : [ { + "location" : [ "Frankfurt/Main" ], "startDate" : "1997", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n632050", + "id" : "http://purl.org/lobid/rpb#n163080", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -22,7 +24,7 @@ "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" } }, { - "id" : "http://purl.org/lobid/rpb#n882060", + "id" : "http://purl.org/lobid/rpb#n584060", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -31,24 +33,17 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Ludwigshafen am Rhein | Offener Kanal | Judenvernichtung", + "label" : "Geschichte 1945- | Zeitschrift", "componentList" : [ { - "id" : "https://d-nb.info/gnd/4036472-0", - "label" : "Ludwigshafen am Rhein", + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4172489-6", - "label" : "Offener Kanal", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" } }, { - "id" : "https://d-nb.info/gnd/4073091-8", - "label" : "Judenvernichtung", + "id" : "https://d-nb.info/gnd/4067488-5", + "label" : "Zeitschrift", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" @@ -56,8 +51,8 @@ } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n31400000", - "label" : "o31400000", + "id" : "https://rpb.lobid.org/spatial#n01", + "label" : "_r01_", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -66,14 +61,13 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/106837800X", - "label" : "Minor, Ulrike" + "id" : "https://d-nb.info/gnd/1033772-6", + "label" : "Staatliche Vogelschutzwarte für Hessen, Rheinland-Pfalz und Saarland / Frankfurt, Main" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "NE hrsg. Körperschaft" }, "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 102-106" + } ] } diff --git a/conf/output/test-output-3.json b/conf/output/test-output-3.json index 996c6a82..dbb7a4c0 100644 --- a/conf/output/test-output-3.json +++ b/conf/output/test-output-3.json @@ -1,103 +1,28 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "rpbId" : "RPB929t112204", - "id" : "https://lobid.org/resources/RPB929t112204", - "hbzId" : "CT003001337", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB036t0121515", + "id" : "https://lobid.org/resources/RPB036t0121515", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬The¬ Rhenish minstrel [Elektronische Ressource] : A Series of Ballads, traditional and legendary, of the Rhine", - "extent" : "[3] Bl., 19 S., [1] Bl., 65 S., [21] Bl. : zahlr. Ill. ; quer 4-o", - "note" : [ "In Fraktur. Titelbl., Inhaltsverz., und 19 S. Erläuterungen in Engl., Text dt. ; HT010123631 Dt. Ausg. u.d.T.: Stolterfoth, Adelheid ¬von¬: Rheinischer Sagenkreis" ], - "responsibilityStatement" : [ "by Adelheid von Stolterfoth. Embellished with twenty-one lithographic sketches, by Dielmann, from the designs of A. Rethel" ], + "title" : "Souvenir ...", "publication" : [ { - "location" : [ "Frankfort o/M." ], - "startDate" : "1835", - "publishedBy" : [ "Jugel" ], + "startDate" : "1963", "type" : [ "PublicationEvent" ] } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n768010", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Rethel, Alfred / 1816-1859 | Illustration | Lithografie | Stolterfoth, Adelheid ¬von¬ / 1800-1875 / Rheinischer Sagenkreis", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/118744615", - "label" : "Rethel, Alfred / 1816-1859", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4123412-1", - "label" : "Illustration", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4036042-8", - "label" : "Lithografie", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/7743324-5", - "label" : "Stolterfoth, Adelheid ¬von¬ / 1800-1875 / Rheinischer Sagenkreis", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n22", - "label" : "_r22_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/116002468", - "label" : "Stolterfoth, Adelheid ¬von¬ / 1800-1875" + "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", + "label" : "Wagner, Hermann Josef" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", "label" : "Autor/in" }, "type" : [ "Contribution" ] - }, { - "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01k18744579a", - "label" : "Rethel, Alfred" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/ill", - "label" : "Illustrator" - }, - "type" : [ "Contribution" ] - }, { - "agent" : { - "id" : "https://d-nb.info/gnd/118702424", - "label" : "Dielmann, Jakob Fürchtegott / 1809-1885" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/oth", - "label" : "Sonstige" - }, - "type" : [ "Contribution" ] - } ] + } ], + "bibliographicCitation" : "Heimat am Mittelrhein. - 8 (1963), Nr. 1" } diff --git a/conf/output/test-output-30.json b/conf/output/test-output-30.json index a0ea6f05..016590f8 100644 --- a/conf/output/test-output-30.json +++ b/conf/output/test-output-30.json @@ -1,130 +1,23 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t982371", - "id" : "https://lobid.org/resources/RPB107t982371", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982376", + "label" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte" + } ], + "numbering" : "Ausg. 1.1997(Dez.) -" + } ], + "rpbId" : "RPB107t982376b1", + "id" : "https://lobid.org/resources/RPB107t982376b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Ältere Menschen machen Fernsehen : aktivierende Medienarbeit in Offenen Kanälen", - "note" : [ "Videoprojekt zwischen Volkshochschule u. Offener Kanal" ], + "title" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte | Ausg. 1.1997(Dez.) -", "publication" : [ { - "startDate" : "1997", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n786000", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n882060", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Ludwigshafen am Rhein | Volkshochschule | Geschichte 1945-", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4036472-0", - "label" : "Ludwigshafen am Rhein", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4136151-9", - "label" : "Volkshochschule", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - }, { - "type" : [ "ComplexSubject" ], - "label" : "Ludwigshafen am Rhein | Offener Kanal | Geschichte 1945-", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4036472-0", - "label" : "Ludwigshafen am Rhein", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4172489-6", - "label" : "Offener Kanal", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - }, { - "type" : [ "ComplexSubject" ], - "label" : "Ludwigshafen am Rhein | Alter | Geschichte 1945-", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4036472-0", - "label" : "Ludwigshafen am Rhein", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4001446-0", - "label" : "Alter", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n31400000", - "label" : "o31400000", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn02s0022a", - "label" : "Baum, Herbert" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" - }, - "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 119-123" + } ] } diff --git a/conf/output/test-output-31.json b/conf/output/test-output-31.json index f592baa6..8bd577e5 100644 --- a/conf/output/test-output-31.json +++ b/conf/output/test-output-31.json @@ -1,23 +1,22 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t982372", - "id" : "https://lobid.org/resources/RPB107t982372", + "type" : [ "BibliographicResource", "MultiVolumeBook" ], + "rpbId" : "RPB107t982377", + "id" : "https://lobid.org/resources/RPB107t982377", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Zur politischen Tragweite schulischer Medienarbeit : was \"lernen\" Gymnasiasten, wenn sie \"im Auftrag\" eines Berufsinformationszentrums Live-Sendungen für Schüler anderer Schularten produzieren?", - "extent" : "Graph. Darst.", - "note" : [ "Medien-AG d. Wilhelm-von-Humboldt-Gymnasiums" ], - "responsibilityStatement" : [ "Karl-Ludwig Kemen ; Gerhard Laubscher" ], + "title" : "¬Der¬ Rasenspieler : das Journal zur Saison ...", + "responsibilityStatement" : [ "VFR Speyer 1950 e.V." ], "publication" : [ { - "startDate" : "1997", + "location" : [ "Speyer" ], + "startDate" : "1998", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n784080", + "id" : "http://purl.org/lobid/rpb#n736050", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -25,7 +24,7 @@ "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" } }, { - "id" : "http://purl.org/lobid/rpb#n882060", + "id" : "http://purl.org/lobid/rpb#n882026", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -34,37 +33,33 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Ludwigshafen am Rhein | Offener Kanal", + "label" : "Verein für Rasenspiele Speyer 1950 | Geschichte 1945- | Zeitschrift", "componentList" : [ { - "id" : "https://d-nb.info/gnd/4036472-0", - "label" : "Ludwigshafen am Rhein", + "id" : "https://d-nb.info/gnd/5325261-5", + "label" : "Verein für Rasenspiele Speyer 1950", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://d-nb.info/gnd/4172489-6", - "label" : "Offener Kanal", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - }, { - "type" : [ "ComplexSubject" ], - "label" : "Wilhelm-von-Humboldt-Gymnasium / Ludwigshafen am Rhein / Medien-AG", - "componentList" : [ { - "id" : "https://rpb.lobid.org/sw/107n220353", - "label" : "Wilhelm-von-Humboldt-Gymnasium / Ludwigshafen am Rhein / Medien-AG", + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", "source" : { "id" : "http://rpb.lobid.org/sw", "label" : "RPB-Sachsystematik" } + }, { + "id" : "https://d-nb.info/gnd/4067488-5", + "label" : "Zeitschrift", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n31400000", - "label" : "o31400000", + "id" : "https://rpb.lobid.org/spatial#n31800000", + "label" : "o31800000", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -73,24 +68,13 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn98s2372a", - "label" : "Kemen, Karl-Ludwig" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" - }, - "type" : [ "Contribution" ] - }, { - "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn98s2372b", - "label" : "Laubscher, Gerhard" + "id" : "https://d-nb.info/gnd/5325261-5", + "label" : "Verein für Rasenspiele Speyer 1950" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "NE hrsg. Körperschaft" }, "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 124-144" + } ] } diff --git a/conf/output/test-output-32.json b/conf/output/test-output-32.json index d6cc7535..4297a20e 100644 --- a/conf/output/test-output-32.json +++ b/conf/output/test-output-32.json @@ -1,73 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982373", - "id" : "https://lobid.org/resources/RPB107t982373", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982377", + "label" : "¬Der¬ Rasenspieler : das Journal zur Saison ..." + } ], + "numbering" : "Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03" + } ], + "rpbId" : "RPB107t982377b1", + "id" : "https://lobid.org/resources/RPB107t982377b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "SWR-3-Clubmagazin", - "note" : [ "Vorgänger u.d.T.: On" ], + "title" : "¬Der¬ Rasenspieler : das Journal zur Saison ... | Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03", + "note" : [ "Damit Erscheinen eingest." ], "publication" : [ { - "location" : [ "Baden-Baden" ], - "startDate" : "1998", - "publishedBy" : [ "Südwestrundfunk-Media-GmbH" ], "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n882040", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Südwestrundfunk | Geschichte 1945- | Zeitschrift", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/5295938-7", - "label" : "Südwestrundfunk", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n01", - "label" : "_r01_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/5331496-7", - "label" : "SWR-3-Club" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "HE Urheber" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-33.json b/conf/output/test-output-33.json index 70331c0c..094607fa 100644 --- a/conf/output/test-output-33.json +++ b/conf/output/test-output-33.json @@ -1,23 +1,64 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982373", - "label" : "SWR-3-Clubmagazin" - } ], - "numbering" : "1998,1(Sept.) -" - } ], - "rpbId" : "RPB107t982373b1", - "id" : "https://lobid.org/resources/RPB107t982373b1", + "type" : [ "BibliographicResource", "MultiVolumeBook" ], + "rpbId" : "RPB107t982378", + "id" : "https://lobid.org/resources/RPB107t982378", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "SWR-3-Clubmagazin | 1998,1(Sept.) -", + "title" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen", "publication" : [ { + "location" : [ "Ebertsheim-Rodenbach" ], + "startDate" : "1998", "type" : [ "PublicationEvent" ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n882026", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Geschichte 1945- | Zeitschrift", + "componentList" : [ { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4067488-5", + "label" : "Zeitschrift", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n332070120200", + "label" : "o332070120200", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/7832695-3", + "label" : "Ebertsheim-Rodenbach" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "NE hrsg. Körperschaft" + }, + "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-34.json b/conf/output/test-output-34.json index 391f1aa6..c204ed8b 100644 --- a/conf/output/test-output-34.json +++ b/conf/output/test-output-34.json @@ -1,74 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982374", - "id" : "https://lobid.org/resources/RPB107t982374", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982378", + "label" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen" + } ], + "numbering" : "1998,Apr." + } ], + "rpbId" : "RPB107t982378b1", + "id" : "https://lobid.org/resources/RPB107t982378b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "On : SWF 3, das Magazin", - "note" : [ "Ersch. früher in: Offenburg : Opal-Verl. [1995,2]" ], - "responsibilityStatement" : [ "hrsg. von: SWF 3, Der Club" ], + "title" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen | 1998,Apr.", + "note" : [ "Mit dieser Ausg. Erscheinen eingest." ], "publication" : [ { - "location" : [ "Rastatt" ], - "startDate" : "1992", - "publishedBy" : [ "Pabel-Moewig" ], "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n882040", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "SWF 3 | Geschichte 1945- | Zeitschrift", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4264102-0", - "label" : "SWF 3", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n01", - "label" : "_r01_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/5166552-9", - "label" : "SWF 3, Der Club" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-35.json b/conf/output/test-output-35.json index 9e04f481..121b5275 100644 --- a/conf/output/test-output-35.json +++ b/conf/output/test-output-35.json @@ -1,24 +1,73 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982374", - "label" : "On : SWF 3, das Magazin" - } ], - "numbering" : "1992 - 1998,2" - } ], - "rpbId" : "RPB107t982374b1", - "id" : "https://lobid.org/resources/RPB107t982374b1", + "type" : [ "BibliographicResource", "MultiVolumeBook" ], + "rpbId" : "RPB107t982379", + "id" : "https://lobid.org/resources/RPB107t982379", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "On : SWF 3, das Magazin | 1992 - 1998,2", - "note" : [ "Damit Erscheinen eingest. - Forts. u.d.T.: SWR-3-Clubmagazin" ], + "title" : "Wer ist wo", + "note" : [ "Adressen- u. Personenverz." ], + "responsibilityStatement" : [ "Universität Kaiserslautern" ], "publication" : [ { + "location" : [ "Kaiserslautern" ], + "startDate" : "1995", "type" : [ "PublicationEvent" ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n794010", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Technische Universität Kaiserslautern | Geschichte 1945- | Führer", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/10066624-3", + "label" : "Technische Universität Kaiserslautern", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4155569-7", + "label" : "Führer", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n31200000", + "label" : "o31200000", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/26332-1", + "label" : "Universität Kaiserslautern" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "NE hrsg. Körperschaft" + }, + "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-36.json b/conf/output/test-output-36.json index 5cfaecb6..ba36aae3 100644 --- a/conf/output/test-output-36.json +++ b/conf/output/test-output-36.json @@ -1,76 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982375", - "id" : "https://lobid.org/resources/RPB107t982375", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982379", + "label" : "Wer ist wo" + } ], + "numbering" : "1994/95(1995)" + } ], + "rpbId" : "RPB107t982379b1", + "id" : "https://lobid.org/resources/RPB107t982379b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz", - "note" : [ "Vorgänger u.d.T.: Südwestfunk : Südwestfunk-Journal" ], + "title" : "Wer ist wo | 1994/95(1995)", + "note" : [ "Letzter Jahrgang, damit Erscheinen eingestellt" ], "publication" : [ { - "location" : [ "Stuttgart" ], - "startDate" : "1998", - "publishedBy" : [ "SWR" ], "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n882030", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Südwestrundfunk | Zeitschrift", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/5295938-7", - "label" : "Südwestrundfunk", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n01", - "label" : "_r01_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/5295938-7", - "label" : "Südwestrundfunk" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "HE Urheber" - }, - "type" : [ "Contribution" ] - }, { - "agent" : { - "id" : "https://d-nb.info/gnd/Südwestrundfunk", - "label" : "Südwestrundfunk" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "HE Urheber" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-37.json b/conf/output/test-output-37.json index 4ee2a79f..b0bba0e5 100644 --- a/conf/output/test-output-37.json +++ b/conf/output/test-output-37.json @@ -1,24 +1,54 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982375", - "label" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz" - } ], - "numbering" : "1998,1(Sept.) - 2001,9(Sept.)" - } ], - "rpbId" : "RPB107t982375b1", - "id" : "https://lobid.org/resources/RPB107t982375b1", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112192", + "id" : "https://lobid.org/resources/RPB929t112192", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz | 1998,1(Sept.) - 2001,9(Sept.)", - "note" : [ "Forts. u.d.T.: Doppelpfeil" ], + "title" : "Aus der Vereinsgeschichte der KKG \"Kowelenzer Schängelcher\" 1922 e.V.", + "extent" : "Ill.", "publication" : [ { + "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n704043", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "KKG Rot-Weiß-Grün Kowelenzer Schängelcher | Geschichte 1922-2011", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/5114232-6", + "label" : "KKG Rot-Weiß-Grün Kowelenzer Schängelcher", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/00Sn11k2192145a", + "label" : "Geschichte 1922-2011", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n11100000", + "label" : "o11100000", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "bibliographicCitation" : "In: KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher: Sessionsheft. - (2011), Seite 23-33. -" } diff --git a/conf/output/test-output-38.json b/conf/output/test-output-38.json index afbb0666..03c7d4ed 100644 --- a/conf/output/test-output-38.json +++ b/conf/output/test-output-38.json @@ -1,73 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982376", - "id" : "https://lobid.org/resources/RPB107t982376", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB929t112193", + "label" : "Aktuell : das Krankenhaus in Ihrer Region" + } ], + "numbering" : "Nachgewiesen 2010 - 2012,1" + } ], + "rpbId" : "RPB929t112193b1", + "id" : "https://lobid.org/resources/RPB929t112193b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte", - "responsibilityStatement" : [ "Institut für Angewandte Vogelkunde, Staatliche Vogelschutzwarte für Hessen, Rheinland-Pfalz und Saarland" ], + "title" : "Aktuell : das Krankenhaus in Ihrer Region | Nachgewiesen 2010 - 2012,1", + "note" : [ "Nachfolger: Kaleidoskop. 2012 -" ], "publication" : [ { - "location" : [ "Frankfurt/Main" ], - "startDate" : "1997", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n163080", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n584060", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Geschichte 1945- | Zeitschrift", - "componentList" : [ { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n01", - "label" : "_r01_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/1033772-6", - "label" : "Staatliche Vogelschutzwarte für Hessen, Rheinland-Pfalz und Saarland / Frankfurt, Main" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-39.json b/conf/output/test-output-39.json index 016590f8..fc600481 100644 --- a/conf/output/test-output-39.json +++ b/conf/output/test-output-39.json @@ -4,19 +4,19 @@ "isPartOf" : [ { "type" : [ "IsPartOfRelation" ], "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982376", - "label" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte" + "id" : "https://lobid.org/resources/RPB929t112194", + "label" : "Clubzeitung" } ], - "numbering" : "Ausg. 1.1997(Dez.) -" + "numbering" : "Nachgewiesen 2006,2 -" } ], - "rpbId" : "RPB107t982376b1", - "id" : "https://lobid.org/resources/RPB107t982376b1", + "rpbId" : "RPB929t112194b1", + "id" : "https://lobid.org/resources/RPB929t112194b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte | Ausg. 1.1997(Dez.) -", + "title" : "Clubzeitung | Nachgewiesen 2006,2 -", "publication" : [ { "type" : [ "PublicationEvent" ] } ] diff --git a/conf/output/test-output-4.json b/conf/output/test-output-4.json index 0a969370..11dfdc57 100644 --- a/conf/output/test-output-4.json +++ b/conf/output/test-output-4.json @@ -1,67 +1,21 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "rpbId" : "RPB929t112205", - "id" : "https://lobid.org/resources/RPB929t112205", - "hbzId" : "CT003001334", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB036t0121516", + "id" : "https://lobid.org/resources/RPB036t0121516", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Sagas légendes des bords du Rhin [Elektronische Ressource] : orné de 8 gravures sur acier", - "extent" : "[1] Bl., VIII, 299 S., [7] Bl. : Ill.", - "note" : [ "HT003558438 Dt. Ausg. u.d.T.: Rheinlands Sagen, Geschichten und Legenden" ], - "responsibilityStatement" : [ "[Alfred von Reumont]. D'après les dessins des peintres de l' Ecole de Dusseldorf [Kretschmer del. ; Plüddemann del. ; Alfred Rethel del. ; Sonderland del.]" ], + "title" : "Sprendlingen und das Kloster Lorsch", "publication" : [ { - "location" : [ "Aix-la-Chapelle [u.a.]; Paris; Janet" ], - "publishedBy" : [ "Kohnen [u.a.]" ], + "startDate" : "1967", "type" : [ "PublicationEvent" ] } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n760100", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Rheinland | Literatur | Anthologie | Online-Ressource", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4049788-4", - "label" : "Rheinland", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4035964-5", - "label" : "Literatur", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4002214-6", - "label" : "Anthologie", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4511937-5", - "label" : "Online-Ressource", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n03", - "label" : "_r03_", + "id" : "https://rpb.lobid.org/spatial#n339", + "label" : "o339", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -70,33 +24,14 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01k18192455a", - "label" : "Reumont, Alfred ¬von¬" + "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", + "label" : "Wagner, Hermann Josef" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", "label" : "Autor/in" }, "type" : [ "Contribution" ] - }, { - "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn11k2205906a", - "label" : "Kretzschmer, Hermann" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/ill", - "label" : "Illustrator" - }, - "type" : [ "Contribution" ] - }, { - "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01k18744579a", - "label" : "Rethel, Alfred" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/ill", - "label" : "Illustrator" - }, - "type" : [ "Contribution" ] - } ] + } ], + "bibliographicCitation" : "Landkreis Bingen: Heimat-Jahrbuch. - 1967, S. 23-26" } diff --git a/conf/output/test-output-40.json b/conf/output/test-output-40.json index 8bd577e5..20c4d5ab 100644 --- a/conf/output/test-output-40.json +++ b/conf/output/test-output-40.json @@ -1,30 +1,21 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982377", - "id" : "https://lobid.org/resources/RPB107t982377", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112195", + "id" : "https://lobid.org/resources/RPB929t112195", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Der¬ Rasenspieler : das Journal zur Saison ...", - "responsibilityStatement" : [ "VFR Speyer 1950 e.V." ], + "title" : "¬Der¬ BAP kam aus Unkel", + "extent" : "Ill.", "publication" : [ { - "location" : [ "Speyer" ], - "startDate" : "1998", + "startDate" : "2011", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n736050", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n882026", + "id" : "http://purl.org/lobid/rpb#n824000", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -33,24 +24,24 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Verein für Rasenspiele Speyer 1950 | Geschichte 1945- | Zeitschrift", + "label" : "Unkel | Niedecken, Wolfgang / 1951- | Biografie", "componentList" : [ { - "id" : "https://d-nb.info/gnd/5325261-5", - "label" : "Verein für Rasenspiele Speyer 1950", + "id" : "https://d-nb.info/gnd/4061836-5", + "label" : "Unkel", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", + "id" : "https://d-nb.info/gnd/118942247", + "label" : "Niedecken, Wolfgang / 1951-", "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", + "id" : "https://d-nb.info/gnd/4006804-3", + "label" : "Biografie", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" @@ -58,8 +49,8 @@ } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n31800000", - "label" : "o31800000", + "id" : "https://rpb.lobid.org/spatial#n13807073", + "label" : "o13807073", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -68,13 +59,14 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/5325261-5", - "label" : "Verein für Rasenspiele Speyer 1950" + "id" : "https://rpb.lobid.org/agent/00Pn08k0685884a", + "label" : "Ruland, Wolfgang" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" }, "type" : [ "Contribution" ] - } ] + } ], + "bibliographicCitation" : "Der Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 16-18" } diff --git a/conf/output/test-output-41.json b/conf/output/test-output-41.json index 4297a20e..2a086099 100644 --- a/conf/output/test-output-41.json +++ b/conf/output/test-output-41.json @@ -1,24 +1,94 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982377", - "label" : "¬Der¬ Rasenspieler : das Journal zur Saison ..." - } ], - "numbering" : "Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03" - } ], - "rpbId" : "RPB107t982377b1", - "id" : "https://lobid.org/resources/RPB107t982377b1", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112196", + "id" : "https://lobid.org/resources/RPB929t112196", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Der¬ Rasenspieler : das Journal zur Saison ... | Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03", - "note" : [ "Damit Erscheinen eingest." ], + "title" : "Coming home mit Commende", + "extent" : "Ill.", "publication" : [ { + "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n844200", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "id" : "http://purl.org/lobid/rpb#n844000", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Deutscher Orden / Kommende Waldbreitbach | Denkmalschutz | Schicker, Viktor | Private Investition | Geschichte 2009-2011", + "componentList" : [ { + "id" : "https://rpb.lobid.org/sw/929n090287", + "label" : "Deutscher Orden / Kommende Waldbreitbach", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4011457-0", + "label" : "Denkmalschutz", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/00Sn09k1362487a", + "label" : "Schicker, Viktor", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4454409-1", + "label" : "Private Investition", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/00Sn09m0508511a", + "label" : "Geschichte 2009-2011", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n13809076", + "label" : "o13809076", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://rpb.lobid.org/agent/00Pn08k0685884a", + "label" : "Ruland, Wolfgang" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + } ], + "bibliographicCitation" : "Der Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 26-27" } diff --git a/conf/output/test-output-42.json b/conf/output/test-output-42.json index 094607fa..7484116b 100644 --- a/conf/output/test-output-42.json +++ b/conf/output/test-output-42.json @@ -1,21 +1,21 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982378", - "id" : "https://lobid.org/resources/RPB107t982378", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112197", + "id" : "https://lobid.org/resources/RPB929t112197", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen", + "title" : "Seit 1911 weht im Vinzenzhaus der Geist der Nächstenliebe : 100-Jahr-Feier in Gebhardshain ; vom Konvent zum Seniorenheim", + "extent" : "Ill.", "publication" : [ { - "location" : [ "Ebertsheim-Rodenbach" ], - "startDate" : "1998", + "startDate" : "2011", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n882026", + "id" : "http://purl.org/lobid/rpb#n611070", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -24,26 +24,26 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Geschichte 1945- | Zeitschrift", + "label" : "Alten- und Pflegeheim St.-Vinzenzhaus / Gebhardshain | Geschichte 1911-2011", "componentList" : [ { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", + "id" : "https://d-nb.info/gnd/16326855-1", + "label" : "Alten- und Pflegeheim St.-Vinzenzhaus / Gebhardshain", "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", + "id" : "https://rpb.lobid.org/sw/00Sn10s3817103a", + "label" : "Geschichte 1911-2011", "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" } } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n332070120200", - "label" : "o332070120200", + "id" : "https://rpb.lobid.org/spatial#n13209039", + "label" : "o13209039", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -52,13 +52,14 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/7832695-3", - "label" : "Ebertsheim-Rodenbach" + "id" : "https://rpb.lobid.org/agent/929n991002", + "label" : "Weger, Joachim" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" }, "type" : [ "Contribution" ] - } ] + } ], + "bibliographicCitation" : "In: Rhein-Zeitung, Ausg. H. - 66 (2011), 126 vom 31.05., Seite 24. -" } diff --git a/conf/output/test-output-43.json b/conf/output/test-output-43.json index c204ed8b..e69de29b 100644 --- a/conf/output/test-output-43.json +++ b/conf/output/test-output-43.json @@ -1,24 +0,0 @@ -{ - "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982378", - "label" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen" - } ], - "numbering" : "1998,Apr." - } ], - "rpbId" : "RPB107t982378b1", - "id" : "https://lobid.org/resources/RPB107t982378b1", - "inCollection" : [ { - "id" : "http://lobid.org/resources/HT013494180#!", - "type" : [ "Collection" ], - "label" : "Rheinland-Pfälzische Bibliographie" - } ], - "title" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen | 1998,Apr.", - "note" : [ "Mit dieser Ausg. Erscheinen eingest." ], - "publication" : [ { - "type" : [ "PublicationEvent" ] - } ] -} diff --git a/conf/output/test-output-5.json b/conf/output/test-output-5.json index 5895ec27..d48cb013 100644 --- a/conf/output/test-output-5.json +++ b/conf/output/test-output-5.json @@ -1,75 +1,22 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB929t112206", - "id" : "https://lobid.org/resources/RPB929t112206", + "rpbId" : "RPB036t0121517", + "id" : "https://lobid.org/resources/RPB036t0121517", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Funkeln aus dem Sonnenberg : Winzer Oliver Krupp aus Bruchhausen bearbeitet die Lage \"Unkeler Sonnenberg\"", - "extent" : "Ill.", + "title" : "Sprendlingens Einwohnerzahl", "publication" : [ { - "startDate" : "2011", + "startDate" : "1959", "type" : [ "PublicationEvent" ] } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n544322", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n544325", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Unkeler Sonnenberg | Weingut Krupp", - "componentList" : [ { - "id" : "https://rpb.lobid.org/sw/929n110302", - "label" : "Unkeler Sonnenberg", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://rpb.lobid.org/sw/929n110303", - "label" : "Weingut Krupp", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n13807073", - "label" : "o13807073", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - }, { - "id" : "https://rpb.lobid.org/spatial#n13807008", - "label" : "o13807008", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn08k0685884a", - "label" : "Ruland, Wolfgang" + "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", + "label" : "Wagner, Hermann Josef" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -77,5 +24,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Der Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 32-33" + "bibliographicCitation" : "Heimat am Mittelrhein. - 4 (1959), Nr. 1" } diff --git a/conf/output/test-output-6.json b/conf/output/test-output-6.json index 9e3146fd..df4d4e4c 100644 --- a/conf/output/test-output-6.json +++ b/conf/output/test-output-6.json @@ -1,110 +1,28 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "rpbId" : "RPB929t112207", - "id" : "https://lobid.org/resources/RPB929t112207", - "hbzId" : "CT003001222", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB036t0121518", + "id" : "https://lobid.org/resources/RPB036t0121518", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Vom deutschen Rhein [Elektronische Ressource] : Mit landschaftlichen u. architektonischen Ansichten nebst Illustrationen zu rheinischen Dichtungen, in 25 Blättern", - "extent" : "[1], [24] Bl. : überw. Ill. ; quer 4-o", - "note" : [ "Um die Hälfte reduzierte Fassung der Ansichtenfolge \"Vom deutschen Rhein\" (vgl. Schmitt 210). Das Werk erschien gleichzeitig auch bei Neubner in Köln (vgl. Schmitt 212) und 1880 abermals bei Baumann & Co. ; In Fraktur" ], - "responsibilityStatement" : [ "von Caspar Scheuren" ], + "title" : "Sprendlinger Chronik", "publication" : [ { - "location" : [ "Düsseldorf" ], - "publishedBy" : [ "Baumann" ], + "startDate" : "1965", "type" : [ "PublicationEvent" ] } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n102045", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Scheuren, Caspar / 1810-1887 | Illustration | Farblithografie | Rhein | Lyrik | Anthologie | Pressendruck | Online-Ressource", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/118607359", - "label" : "Scheuren, Caspar / 1810-1887", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4123412-1", - "label" : "Illustration", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4279198-4", - "label" : "Farblithografie", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4049739-2", - "label" : "Rhein", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4036774-5", - "label" : "Lyrik", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4002214-6", - "label" : "Anthologie", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4159043-0", - "label" : "Pressendruck", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4511937-5", - "label" : "Online-Ressource", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n03", - "label" : "_r03_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/118607359", - "label" : "Scheuren, Caspar / 1810-1887" + "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", + "label" : "Wagner, Hermann Josef" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", "label" : "Autor/in" }, "type" : [ "Contribution" ] - } ] + } ], + "bibliographicCitation" : "Heimat am Mittelrhein. - 10 (1965), Nr. 2 und Heimat am Mittelrhein 1965, S. 10" } diff --git a/conf/output/test-output-7.json b/conf/output/test-output-7.json index 3021f23b..767c002b 100644 --- a/conf/output/test-output-7.json +++ b/conf/output/test-output-7.json @@ -1,110 +1,28 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "rpbId" : "RPB929t112208", - "id" : "https://lobid.org/resources/RPB929t112208", - "hbzId" : "CT003001317", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB036t0121519", + "id" : "https://lobid.org/resources/RPB036t0121519", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Vom deutschen Rhein [Elektronische Ressource] : mit landschaftlichen u. architektonischen Ansichten nebst Illustrationen zu rheinischen Dichtungen, in 50 Blättern", - "extent" : "[1], 50 Bl. : nur Ill. : gr. quer 2-o", - "note" : [ "In Fraktur" ], - "responsibilityStatement" : [ "von Caspar Scheuren" ], + "title" : "Sprendlinger kämpften unter Napoleon", "publication" : [ { - "location" : [ "Düsseldorf" ], - "publishedBy" : [ "Breidenbach & Baumann" ], + "startDate" : "1963", "type" : [ "PublicationEvent" ] } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n102045", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Scheuren, Caspar / 1810-1887 | Illustration | Farblithografie | Rhein | Lyrik | Anthologie | Pressendruck | Online-Ressource", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/118607359", - "label" : "Scheuren, Caspar / 1810-1887", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4123412-1", - "label" : "Illustration", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4279198-4", - "label" : "Farblithografie", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4049739-2", - "label" : "Rhein", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4036774-5", - "label" : "Lyrik", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4002214-6", - "label" : "Anthologie", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4159043-0", - "label" : "Pressendruck", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4511937-5", - "label" : "Online-Ressource", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n03", - "label" : "_r03_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/118607359", - "label" : "Scheuren, Caspar / 1810-1887" + "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", + "label" : "Wagner, Hermann Josef" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", "label" : "Autor/in" }, "type" : [ "Contribution" ] - } ] + } ], + "bibliographicCitation" : "Heimat am Mittelrhein. - 8 (1963), Nr. 12" } diff --git a/conf/output/test-output-8.json b/conf/output/test-output-8.json index e009172e..57373064 100644 --- a/conf/output/test-output-8.json +++ b/conf/output/test-output-8.json @@ -1,102 +1,28 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "rpbId" : "RPB929t112209", - "id" : "https://lobid.org/resources/RPB929t112209", - "hbzId" : "CT003001333", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB036t0121520", + "id" : "https://lobid.org/resources/RPB036t0121520", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Ruins of the Rhine, their times and traditions [Elektronische Ressource]", - "extent" : "[2] Bl., IV, 356 S., [7] Bl. : Ill.", - "responsibilityStatement" : [ "[Alfred von Reumont]. Ed. by Charles White. Eight engravings after original desings by painters of the Dusseldorf School. [Herrm Kretschmer inv. ; Alfred Rethel del. ; Sonderland del. ; Plüddemann del.]" ], + "title" : "Sprendlinger Stifter und ihre Familien", "publication" : [ { - "location" : [ "Aix-La Chapelle [u.a.]" ], - "startDate" : "1838", - "publishedBy" : [ "Kohnen [u.a.]" ], + "startDate" : "1983", "type" : [ "PublicationEvent" ] } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n760100", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Rheinland | Literatur | Anthologie | Online-Ressource", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4049788-4", - "label" : "Rheinland", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4035964-5", - "label" : "Literatur", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4002214-6", - "label" : "Anthologie", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4511937-5", - "label" : "Online-Ressource", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n03", - "label" : "_r03_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01k18192455a", - "label" : "Reumont, Alfred ¬von¬" + "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", + "label" : "Wagner, Hermann Josef" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", "label" : "Autor/in" }, "type" : [ "Contribution" ] - }, { - "agent" : { - "id" : "https://d-nb.info/gnd/119468808", - "label" : "White, Charles / 1928-" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/pbl", - "label" : "Herausgeber" - }, - "type" : [ "Contribution" ] - }, { - "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn11k2205906a", - "label" : "Kretzschmer, Hermann" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/ill", - "label" : "Illustrator" - }, - "type" : [ "Contribution" ] - } ] + } ], + "bibliographicCitation" : "Heimat am Mittelrhein. - 1983, H. 2" } diff --git a/conf/output/test-output-9.json b/conf/output/test-output-9.json index 34fcee77..ed42c2aa 100644 --- a/conf/output/test-output-9.json +++ b/conf/output/test-output-9.json @@ -1,16 +1,16 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121512", - "id" : "https://lobid.org/resources/RPB036t0121512", + "rpbId" : "RPB036t0121521", + "id" : "https://lobid.org/resources/RPB036t0121521", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Serenissimus befehlen zu prügeln", + "title" : "Steuern in alter Zeit", "publication" : [ { - "startDate" : "1963", + "startDate" : "1957", "type" : [ "PublicationEvent" ] } ], "contribution" : [ { @@ -24,5 +24,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 8 (1963), Nr. 6" + "bibliographicCitation" : "Heimat am Mittelrhein. - 2 (1957), Nr. 12" } diff --git a/conf/output/test-output-strapi.json b/conf/output/test-output-strapi.json index 70054d95..4cdbec15 100644 --- a/conf/output/test-output-strapi.json +++ b/conf/output/test-output-strapi.json @@ -1,13 +1,4 @@ -{"f00_":"929t112200","f20_":"Palatinatus Rheni [Elektronische Ressource] : [Ca. 1:1 900 000]","f30_":"_sn126000_","f31_":"_r07_","f32_":"_4076031n5_ ; _4611904n8_ ; _4511937n5_","f35_":"_r07_ ; _sn126000_","f36_":"u","f37_":"_sn126000_ ; _r07_","f39_":"[Hondius, Jodocus]","f57_":"_00Pn11k2200547a_","f70_":"Bertius, Petrus : P. Bertii Tabularum geographicarum contractarum libri septem; 456","f74_":"Amstelodami","f75_":"Judocus Hondius","f76a":"1618","f76b":"1618","f77_":"1 Kt. : Kupferstich ; 13 x 9 cm","f81_":"Maßstab in graph. Form (Milliaria German.), Titelkartusche und Maßstabsleiste oben rechts - rückseitig lateinischer Text","f90e":"https://nbn-resolving.org/urn:nbn:de:hbz:061:1-68551","f95_":"20110601/09:58:59\u001FHBZ","f96_":"20171026/11:24:55\u001FSP","f983":"CT003010348","f30":[{"f30_":"_sn126000_"}],"f31":[{"f31_":"_r07_"}],"f32":[{"f32_":"_4076031n5_ ; _4611904n8_ ; _4511937n5_"}],"f81":[{"f81_":"Maßstab in graph. Form (Milliaria German.), Titelkartusche und Maßstabsleiste oben rechts - rückseitig lateinischer Text"}],"f90":[{"f90_":"https://nbn-resolving.org/urn:nbn:de:hbz:061:1-68551","n90a":"Volltext"}],"f40":[{"f40_":"_00Pn11k2200547a_","n40a":"Sonstige"}]} -{"f00_":"929t112201","f20_":"Coloniensis Dioecesis [Elektronische Ressource] : [Ca. 1:1 300 000]","f30_":"_sn126000_","f31_":"_r34_","f32_":"_2029646n0_ ; _4611904n8_ ; _4511937n5_","f35_":"_r34_ ; _sn126000_","f36_":"u","f37_":"_sn126000_ ; _r34_","f39_":"[Hondius, Jodocus]","f57_":"_00Pn11k2200547a_","f70_":"Bertius, Petrus : P. Bertii Tabularum geographicarum contractarum libri septem; 380","f74_":"Amstelodami","f75_":"Judocus Hondius","f76a":"1618","f76b":"1618","f77_":"1 Kt. : Kupferstich ; 13 x 9 cm","f81_":"O oben. - Maßstab in graph. Form (Miliaria Germ.), Titelkartusche und Maßstabsleiste unten links - rückseitig lateinischer Text","f90e":"https://nbn-resolving.org/urn:nbn:de:hbz:061:1-70507","f95_":"20110601/10:02:46\u001FHBZ","f96_":"20171026/11:24:39\u001FSP","f983":"CT003010543","f30":[{"f30_":"_sn126000_"}],"f31":[{"f31_":"_r34_"}],"f32":[{"f32_":"_2029646n0_ ; _4611904n8_ ; _4511937n5_"}],"f81":[{"f81_":"O oben. - Maßstab in graph. Form (Miliaria Germ.), Titelkartusche und Maßstabsleiste unten links - rückseitig lateinischer Text"}],"f90":[{"f90_":"https://nbn-resolving.org/urn:nbn:de:hbz:061:1-70507","n90a":"Volltext"}],"f40":[{"f40_":"_00Pn11k2200547a_","n40a":"Sonstige"}]} -{"f00_":"929t112202","f20_":"Provincia Trevirensis [Elektronische Ressource] : [Ca. 1:1 500 000]","f30_":"_sn126000_","f31_":"_r41_","f32_":"_4060882n7_ ; _4611904n8_ ; _4511937n5_","f35_":"_r41_ ; _sn126000_","f36_":"u","f37_":"_sn126000_ ; _r41_","f39_":"[Hondius, Jodocus]","f57_":"_00Pn11k2200547a_","f70_":"Bertius, Petrus : P. Bertii Tabularum geographicarum contractarum libri septem; 378","f74_":"Amstelodami","f75_":"Judocus Hondius","f76a":"1618","f76b":"1618","f77_":"1 Kt. : Kupferstich ; 13 x 9 cm","f81_":"Maßstab in graph. Form (Miliaria Germanica), Titelkartusche und Maßstabsleiste unten rechts - rückseitig lateinischer Text","f90e":"https://nbn-resolving.org/urn:nbn:de:hbz:061:1-70495","f95_":"20110601/10:37:30\u001FHBZ","f96_":"20171026/11:24:08\u001FSP","f983":"CT003010542","f30":[{"f30_":"_sn126000_"}],"f31":[{"f31_":"_r41_"}],"f32":[{"f32_":"_4060882n7_ ; _4611904n8_ ; _4511937n5_"}],"f81":[{"f81_":"Maßstab in graph. Form (Miliaria Germanica), Titelkartusche und Maßstabsleiste unten rechts - rückseitig lateinischer Text"}],"f90":[{"f90_":"https://nbn-resolving.org/urn:nbn:de:hbz:061:1-70495","n90a":"Volltext"}],"f40":[{"f40_":"_00Pn11k2200547a_","n40a":"Sonstige"}]} -{"f00_":"929t112203","f20_":"¬The¬ Rhenish minstrel [Elektronische Ressource] : A Series of Ballads, traditional and legendary, of the Rhine","f30_":"_sn768010_","f31_":"_r22_","f32_":"_118744615_ ; _4123412n1_ ; _4036042n8_ ; _7743324n5_ ; _4159043n0_","f35_":"_r22_ ; _sn768010_","f36_":"s","f37_":"_sn768010_ ; _r22_","f39_":"by Adelheid von Stolterfoth. Embellished with twenty-one lithographic sketches, by Dielmann, from the designs of A. Rethel","f40_":"_116002468_","f501":"_00Pn01k18744579a_","f57_":"_118702424_","f71_":"[Nur Ill.]","f74_":"Frankfort o/M.","f75_":"Jugel","f76a":"1835","f76b":"1835","f77_":"[1], [21] Kunstbl. ; s/w ; 24 x 28 cm","f81_":"In Fraktur ; HT010123631 Dt. Ausg. u.d.T.: Stolterfoth, Adelheid ¬von¬: Rheinischer Sagenkreis","f83_":"Stolterfoth, Adelheid ¬von¬ / 1800-1875","f90e":"https://nbn-resolving.org/urn:nbn:de:hbz:061:2-24485","f95_":"20110601/10:44:52\u001FHBZ","f96_":"20110601/11:01:24\u001FKO","f983":"CT003005235","f30":[{"f30_":"_sn768010_"}],"f31":[{"f31_":"_r22_"}],"f32":[{"f32_":"_118744615_ ; _4123412n1_ ; _4036042n8_ ; _7743324n5_ ; _4159043n0_"}],"f81":[{"f81_":"In Fraktur ; HT010123631 Dt. Ausg. u.d.T.: Stolterfoth, Adelheid ¬von¬: Rheinischer Sagenkreis"}],"f90":[{"f90_":"https://nbn-resolving.org/urn:nbn:de:hbz:061:2-24485","n90a":"Volltext"}],"f40":[{"f40_":"_116002468_","n40a":"Verfasser"},{"f40_":"_00Pn01k18744579a_","n40a":"Illustrator"},{"f40_":"_118702424_","n40a":"Sonstige"}]} -{"f00_":"929t112204","f20_":"¬The¬ Rhenish minstrel [Elektronische Ressource] : A Series of Ballads, traditional and legendary, of the Rhine","f30_":"_sn768010_","f31_":"_r22_","f32_":"_118744615_ ; _4123412n1_ ; _4036042n8_ ; _7743324n5_","f35_":"_r22_ ; _sn768010_","f36_":"s","f37_":"_sn768010_ ; _r22_","f39_":"by Adelheid von Stolterfoth. Embellished with twenty-one lithographic sketches, by Dielmann, from the designs of A. Rethel","f40_":"_116002468_","f501":"_00Pn01k18744579a_","f57_":"_118702424_","f71_":"[Ausg. Ill. mit Text]","f74_":"Frankfort o/M.","f75_":"Jugel","f76a":"1835","f76b":"1835","f77_":"[3] Bl., 19 S., [1] Bl., 65 S., [21] Bl. : zahlr. Ill. ; quer 4-o","f81_":"In Fraktur. Titelbl., Inhaltsverz., und 19 S. Erläuterungen in Engl., Text dt. ; HT010123631 Dt. Ausg. u.d.T.: Stolterfoth, Adelheid ¬von¬: Rheinischer Sagenkreis","f83_":"Stolterfoth, Adelheid ¬von¬ / 1800-1875","f90e":"https://nbn-resolving.org/urn:nbn:de:hbz:061:2-1643","f95_":"20110601/11:02:10\u001FHBZ","f96_":"20110601/11:03:41\u001FKO","f983":"CT003001337","f30":[{"f30_":"_sn768010_"}],"f31":[{"f31_":"_r22_"}],"f32":[{"f32_":"_118744615_ ; _4123412n1_ ; _4036042n8_ ; _7743324n5_"}],"f81":[{"f81_":"In Fraktur. Titelbl., Inhaltsverz., und 19 S. Erläuterungen in Engl., Text dt. ; HT010123631 Dt. Ausg. u.d.T.: Stolterfoth, Adelheid ¬von¬: Rheinischer Sagenkreis"}],"f90":[{"f90_":"https://nbn-resolving.org/urn:nbn:de:hbz:061:2-1643","n90a":"Volltext"}],"f40":[{"f40_":"_116002468_","n40a":"Verfasser"},{"f40_":"_00Pn01k18744579a_","n40a":"Illustrator"},{"f40_":"_118702424_","n40a":"Sonstige"}]} -{"f00_":"929t112205","f20_":"Sagas légendes des bords du Rhin [Elektronische Ressource] : orné de 8 gravures sur acier","f28_":"Düsseldorf","f30_":"_sn760100_","f31_":"_r03_","f32_":"_4049788n4_ ; _4035964n5_ ; _4002214n6_ ; _4511937n5_","f35_":"_r03_ ; _sn760100_","f36_":"s","f37_":"_sn760100_ ; _r03_","f39_":"[Alfred von Reumont]. D'après les dessins des peintres de l' Ecole de Dusseldorf [Kretschmer del. ; Plüddemann del. ; Alfred Rethel del. ; Sonderland del.]","f40_":"_00Pn01k18192455a_","f501":"_00Pn11k2205906a_","f502":"_00Pn01k18744579a_","f74_":"Aix-la-Chapelle [u.a.]; Paris; Janet","f75_":"Kohnen [u.a.]","f76a":"[1838]","f76b":"1838","f77_":"[1] Bl., VIII, 299 S., [7] Bl. : Ill.","f81_":"HT003558438 Dt. Ausg. u.d.T.: Rheinlands Sagen, Geschichten und Legenden","f90e":"https://nbn-resolving.org/urn:nbn:de:hbz:061:2-1616","f95_":"20110601/11:07:07\u001FHBZ","f96_":"20110601/11:08:52\u001FKO","f983":"CT003001334","f30":[{"f30_":"_sn760100_"}],"f31":[{"f31_":"_r03_"}],"f32":[{"f32_":"_4049788n4_ ; _4035964n5_ ; _4002214n6_ ; _4511937n5_"}],"f81":[{"f81_":"HT003558438 Dt. Ausg. u.d.T.: Rheinlands Sagen, Geschichten und Legenden"}],"f90":[{"f90_":"https://nbn-resolving.org/urn:nbn:de:hbz:061:2-1616","n90a":"Volltext"}],"f40":[{"f40_":"_00Pn01k18192455a_","n40a":"Verfasser"},{"f40_":"_00Pn11k2205906a_","n40a":"Illustrator"},{"f40_":"_00Pn01k18744579a_","n40a":"Illustrator"}]} {"f00_":"929t112206","f20_":"Funkeln aus dem Sonnenberg : Winzer Oliver Krupp aus Bruchhausen bearbeitet die Lage \"Unkeler Sonnenberg\"","f30_":"_sn544322_","f30a":"_sn544325_","f31_":"_r99_ _o13807073_","f31a":"_r99_ _o13807008_","f32_":"_929n110302_ ; _929n110303_","f35_":"_r99_ _o13807073_ ; _sn544322_","f35a":"_r99_ _o13807008_ ; _sn544325_","f36_":"u","f37_":"_sn544322_ ; _r99_ _o13807073_","f37a":"_sn544325_ ; _r99_ _o13807008_","f40_":"_00Pn08k0685884a_","f70_":"¬Der¬ Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 32-33","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2515501-5","f90d":"ZA 5649:2011 MAG","f95_":"20110601/11:07:28\u001FKO","f96_":"20110603/08:32:01\u001FKO","f30":[{"f30_":"_sn544322_"},{"f30_":"_sn544325_"}],"f31":[{"f31_":"_r99_ _o13807073_"},{"f31_":"_r99_ _o13807008_"}],"f32":[{"f32_":"_929n110302_ ; _929n110303_"}],"f40":[{"f40_":"_00Pn08k0685884a_","n40a":"Verfasser"}]} -{"f00_":"929t112207","f20_":"Vom deutschen Rhein [Elektronische Ressource] : Mit landschaftlichen u. architektonischen Ansichten nebst Illustrationen zu rheinischen Dichtungen, in 25 Blättern","f30_":"_sn102045_","f31_":"_r03_","f32_":"_118607359_ ; _4123412n1_ ; _4279198n4_ ; _4049739n2_ ; _4036774n5_ ; _4002214n6_ ; _4159043n0_ ; _4511937n5_","f35_":"_r03_ ; _sn102045_","f36_":"s","f37_":"_sn102045_ ; _r03_","f39_":"von Caspar Scheuren","f40_":"_118607359_","f74_":"Düsseldorf","f75_":"Baumann","f76a":"[1879]","f76b":"1879","f77_":"[1], [24] Bl. : überw. Ill. ; quer 4-o","f81_":"Um die Hälfte reduzierte Fassung der Ansichtenfolge \"Vom deutschen Rhein\" (vgl. Schmitt 210). Das Werk erschien gleichzeitig auch bei Neubner in Köln (vgl. Schmitt 212) und 1880 abermals bei Baumann & Co. ; In Fraktur","f90e":"https://nbn-resolving.org/urn:nbn:de:hbz:061:2-536","f95_":"20110601/11:13:04\u001FHBZ","f96_":"20110601/11:17:07\u001FKO","f983":"CT003001222","f30":[{"f30_":"_sn102045_"}],"f31":[{"f31_":"_r03_"}],"f32":[{"f32_":"_118607359_ ; _4123412n1_ ; _4279198n4_ ; _4049739n2_ ; _4036774n5_ ; _4002214n6_ ; _4159043n0_ ; _4511937n5_"}],"f81":[{"f81_":"Um die Hälfte reduzierte Fassung der Ansichtenfolge \"Vom deutschen Rhein\" (vgl. Schmitt 210). Das Werk erschien gleichzeitig auch bei Neubner in Köln (vgl. Schmitt 212) und 1880 abermals bei Baumann & Co. ; In Fraktur"}],"f90":[{"f90_":"https://nbn-resolving.org/urn:nbn:de:hbz:061:2-536","n90a":"Volltext"}],"f40":[{"f40_":"_118607359_","n40a":"Verfasser"}]} -{"f00_":"929t112208","f20_":"Vom deutschen Rhein [Elektronische Ressource] : mit landschaftlichen u. architektonischen Ansichten nebst Illustrationen zu rheinischen Dichtungen, in 50 Blättern","f30_":"_sn102045_","f31_":"_r03_","f32_":"_118607359_ ; _4123412n1_ ; _4279198n4_ ; _4049739n2_ ; _4036774n5_ ; _4002214n6_ ; _4159043n0_ ; _4511937n5_","f35_":"_r03_ ; _sn102045_","f36_":"s","f37_":"_sn102045_ ; _r03_","f39_":"von Caspar Scheuren","f40_":"_118607359_","f74_":"Düsseldorf","f75_":"Breidenbach & Baumann","f76a":"[1876/1877]","f76b":"1877","f77_":"[1], 50 Bl. : nur Ill. : gr. quer 2-o","f81_":"In Fraktur","f90e":"https://nbn-resolving.org/urn:nbn:de:hbz:061:2-1456","f95_":"20110601/11:19:31\u001FHBZ","f96_":"20110601/11:21:02\u001FKO","f983":"CT003001317","f30":[{"f30_":"_sn102045_"}],"f31":[{"f31_":"_r03_"}],"f32":[{"f32_":"_118607359_ ; _4123412n1_ ; _4279198n4_ ; _4049739n2_ ; _4036774n5_ ; _4002214n6_ ; _4159043n0_ ; _4511937n5_"}],"f81":[{"f81_":"In Fraktur"}],"f90":[{"f90_":"https://nbn-resolving.org/urn:nbn:de:hbz:061:2-1456","n90a":"Volltext"}],"f40":[{"f40_":"_118607359_","n40a":"Verfasser"}]} -{"f00_":"929t112209","f20_":"Ruins of the Rhine, their times and traditions [Elektronische Ressource]","f30_":"_sn760100_","f31_":"_r03_","f32_":"_4049788n4_ ; _4035964n5_ ; _4002214n6_ ; _4511937n5_","f35_":"_r03_ ; _sn760100_","f36_":"s","f37_":"_sn760100_ ; _r03_","f39_":"[Alfred von Reumont]. Ed. by Charles White. Eight engravings after original desings by painters of the Dusseldorf School. [Herrm Kretschmer inv. ; Alfred Rethel del. ; Sonderland del. ; Plüddemann del.]","f40_":"_00Pn01k18192455a_","f411":"_119468808_","f502":"_00Pn11k2205906a_","f74_":"Aix-La Chapelle [u.a.]","f75_":"Kohnen [u.a.]","f76a":"1838","f76b":"1838","f77_":"[2] Bl., IV, 356 S., [7] Bl. : Ill.","f90e":"https://nbn-resolving.org/urn:nbn:de:hbz:061:2-1602","f95_":"20110601/11:22:28\u001FHBZ","f96_":"20110601/11:25:45\u001FKO","f983":"CT003001333","f30":[{"f30_":"_sn760100_"}],"f31":[{"f31_":"_r03_"}],"f32":[{"f32_":"_4049788n4_ ; _4035964n5_ ; _4002214n6_ ; _4511937n5_"}],"f90":[{"f90_":"https://nbn-resolving.org/urn:nbn:de:hbz:061:2-1602","n90a":"Volltext"}],"f40":[{"f40_":"_00Pn01k18192455a_","n40a":"Verfasser"},{"f40_":"_119468808_","n40a":"Herausgeber"},{"f40_":"_00Pn11k2205906a_","n40a":"Illustrator"}]} {"f00_":"036t0121512","f20_":"Serenissimus befehlen zu prügeln","f36_":"u","f40_":"_00Pn01m21445842a_","f70_":"Heimat am Mittelrhein. - 8 (1963), Nr. 6","f76a":"1963","f76b":"1963","f88_":"400464-4","f90a":"Vergleiche Bibliotheks-Katalog","f95_":"ZR-20100824/00:00:00\u001FZR-ZSMR","f96_":"20120228/10:01:26\u001FSP","f97y":"Einspielung: Inhaltverzeichnisse zu Zeitschriften zum Mittelrhein","f40":[{"f40_":"_00Pn01m21445842a_","n40a":"Verfasser"}]} {"f00_":"036t0121513","f20_":"Soldaten für Holland","f36_":"u","f40_":"_00Pn01m21445842a_","f70_":"Heimat am Mittelrhein. - 2 (1957), Nr. 6","f76a":"1957","f76b":"1957","f88_":"400464-4","f90a":"Vergleiche Bibliotheks-Katalog","f95_":"ZR-20100824/00:00:00\u001FZR-ZSMR","f96_":"20120228/09:43:34\u001FSP","f97y":"Einspielung: Inhaltverzeichnisse zu Zeitschriften zum Mittelrhein","f40":[{"f40_":"_00Pn01m21445842a_","n40a":"Verfasser"}]} {"f00_":"036t0121514","f20_":"Sonnenuhr an der Kirche","f36_":"u","f40_":"_00Pn01m21445842a_","f70_":"Heimat am Mittelrhein. - 3 (1958), Nr. 11","f76a":"1958","f76b":"1958","f88_":"400464-4","f90a":"Vergleiche Bibliotheks-Katalog","f95_":"ZR-20100824/00:00:00\u001FZR-ZSMR","f96_":"20120228/09:46:11\u001FSP","f97y":"Einspielung: Inhaltverzeichnisse zu Zeitschriften zum Mittelrhein","f40":[{"f40_":"_00Pn01m21445842a_","n40a":"Verfasser"}]} @@ -45,15 +36,9 @@ {"f00_":"107t982378b1","f20ü":"¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen","f01_":"1998,Apr.","f36_":"sbd","f81_":"Mit dieser Ausg. Erscheinen eingest.","f90b":"Per. 15740/1998","f81":[{"f81_":"Mit dieser Ausg. Erscheinen eingest."}]} {"f00_":"107t982379","f20_":"Wer ist wo","f30_":"_sn794010_","f31_":"_r99_ _o31200000_","f32_":"_10066624n3_ ; _z64_ ; _4155569n7_","f35_":"_r99_ _o31200000_ ; _sn794010_","f36_":"sm","f37_":"_sn794010_ ; _r99_ _o31200000_","f39_":"Universität Kaiserslautern","f61_":"_26332n1_","f74_":"Kaiserslautern","f76a":"1995","f76b":"1995","f81_":"Adressen- u. Personenverz.","f90b":"Per. 11060","f95_":"19990705/09:44:16\u001FSP","f96_":"20120220/12:45:56\u001FSP","f97x":"per","f36t":"MultiVolumeBook","f30":[{"f30_":"_sn794010_"}],"f31":[{"f31_":"_r99_ _o31200000_"}],"f32":[{"f32_":"_10066624n3_ ; _z64_ ; _4155569n7_"}],"f81":[{"f81_":"Adressen- u. Personenverz."}],"f60":[{"f60_":"_26332n1_","n60a":"NE hrsg. Körperschaft"}]} {"f00_":"107t982379b1","f20ü":"Wer ist wo","f01_":"1994/95(1995)","f36_":"sbd","f76b":"1995","f81_":"Letzter Jahrgang, damit Erscheinen eingestellt","f90b":"Per. 11060/ 1994/95","f81":[{"f81_":"Letzter Jahrgang, damit Erscheinen eingestellt"}]} -{"f00_":"929t112190","f20_":"[Kalender] 2011","f30_":"_sn102045_","f31_":"_r22_ _4221819n6_","f32_":"_4221819n6_ ; _4029290n3_","f32a":"_4335389n7_ ; _4029290n3_","f35_":"_r22_ _4221819n6_ ; _sn102045_","f36_":"s","f37_":"_sn102045_ ; _r22_ _4221819n6_","f60_":"_10366667n9_","f60e":"[Sebapharma GmbH & Co. KG, Boppard]","f74_":"[Boppard]","f76a":"[2010]","f76b":"2010","f77_":"[13] Bl. : überw. Ill. ; 292 x 420 mm","f90d":"Kalender = K 2927","f95_":"20110531/15:47:42\u001FHBZ","f96_":"20110531/15:50:00\u001FKO","f983":"HT016832268","f30":[{"f30_":"_sn102045_"}],"f31":[{"f31_":"_r22_ _4221819n6_"}],"f32":[{"f32_":"_4221819n6_ ; _4029290n3_"},{"f32_":"_4335389n7_ ; _4029290n3_"}],"f60":[{"f60_":"_10366667n9_","n60a":"HE Urheber"},{"f60_":"[Sebapharma GmbH & Co. KG, Boppard]","n60a":"HE Urheber"}]} -{"f00_":"929t112191","f20_":"Geheimnisvolle Tierwelten : am Flüsschen Wied gesehen und photographiert ; [Kalender] 2011","f30_":"_sn848000_","f30a":"_sn163000_","f31_":"_r10_ _4119314n3_","f31a":"_r10_ _4119314n3_","f32_":"_4108127n4_ ; _4185464n0_ ; _4029290n3_","f35_":"_r10_ _4119314n3_ ; _sn848000_","f35a":"_r10_ _4119314n3_ ; _sn163000_","f36_":"s","f37_":"_sn848000_ ; _r10_ _4119314n3_","f37a":"_sn163000_ ; _r10_ _4119314n3_","f39_":"von Erich Oetz","f40_":"_00Pn11k2191236a_","f74d":"Neuwied","f75d":"Dr. Johann","f76a":"[2010]","f76b":"2010","f77_":"[14] Bl. : überw. Ill. ; 210 x 297 mm","f90d":"Kalender = K 2922","f95_":"20110531/15:55:34\u001FHBZ","f96_":"20110531/16:00:36\u001FKO","f983":"HT016831992","f30":[{"f30_":"_sn848000_"},{"f30_":"_sn163000_"}],"f31":[{"f31_":"_r10_ _4119314n3_"},{"f31_":"_r10_ _4119314n3_"}],"f32":[{"f32_":"_4108127n4_ ; _4185464n0_ ; _4029290n3_"}],"f40":[{"f40_":"_00Pn11k2191236a_","n40a":"Verfasser"}]} {"f00_":"929t112192","f20_":"Aus der Vereinsgeschichte der KKG \"Kowelenzer Schängelcher\" 1922 e.V.","f30_":"_sn704043_","f31_":"_r99_ _o11100000_","f32_":"_5114232n6_ ; _00Sn11k2192145a_","f35_":"_r99_ _o11100000_ ; _sn704043_","f36_":"u","f37_":"_sn704043_ ; _r99_ _o11100000_","f70j":"2011","f70k":"KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher","f70s":"23-33","f70t":"Sessionsheft","f70y":"KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher: Sessionsheft. - 2011, S. 23-33","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2253285-7","f90d":"Z 2287:2011","f95_":"20110531/16:02:12\u001FKO","f96_":"20110531/16:02:12\u001FKO","f30":[{"f30_":"_sn704043_"}],"f31":[{"f31_":"_r99_ _o11100000_"}],"f32":[{"f32_":"_5114232n6_ ; _00Sn11k2192145a_"}]} -{"f00_":"929t112193","f20_":"Aktuell : das Krankenhaus in Ihrer Region","f30_":"_sn534030_","f31_":"_r99_ _o14304048_","f32_":"_7741811n6_ ; _4067488n5_","f35_":"_r99_ _o14304048_ ; _sn534030_","f36_":"sm","f37_":"_sn534030_ ; _r99_ _o14304048_","f39_":"Krankenhaus der Barmherzigen Brüder Montabaur","f61_":"_5280327n2_","f74_":"Montabaur","f75_":"Krankenhaus der Barmherzigen Brüder","f76a":"2010","f76b":"2010","f88_":"2599128-0","f90d":"ZA 6062 MAG","f95_":"20110531/16:19:48\u001FHBZ","f96_":"20190606/12:38:22\u001FKO","f97x":"per","f983":"HT016746268","f36t":"MultiVolumeBook","f30":[{"f30_":"_sn534030_"}],"f31":[{"f31_":"_r99_ _o14304048_"}],"f32":[{"f32_":"_7741811n6_ ; _4067488n5_"}],"f60":[{"f60_":"_5280327n2_","n60a":"NE hrsg. Körperschaft"}]} {"f00_":"929t112193b1","f20ü":"Aktuell : das Krankenhaus in Ihrer Region","f01_":"Nachgewiesen 2010 - 2012,1","f36_":"sbd","f81_":"Nachfolger: Kaleidoskop. 2012 -","f81":[{"f81_":"Nachfolger: Kaleidoskop. 2012 -"}]} -{"f00_":"929t112194","f20_":"Clubzeitung","f30_":"_sn736050_","f31_":"_r99_ _o13800045_","f32_":"_929n110300_ ; _4067488n5_","f35_":"_r99_ _o13800045_ ; _sn736050_","f36_":"sm","f37_":"_sn736050_ ; _r99_ _o13800045_","f60_":"_16107604nX_","f60e":"VCN 77","f74_":"Neuwied","f76a":"2006","f76b":"2006","f88_":"2603143-7","f90d":"ZA 6063 MAG","f95_":"20110531/16:23:43\u001FHBZ","f96_":"20110531/16:30:15\u001FKO","f97x":"per","f983":"HT016782338","f36t":"MultiVolumeBook","f30":[{"f30_":"_sn736050_"}],"f31":[{"f31_":"_r99_ _o13800045_"}],"f32":[{"f32_":"_929n110300_ ; _4067488n5_"}],"f60":[{"f60_":"_16107604nX_","n60a":"HE Urheber"},{"f60_":"VCN 77","n60a":"HE Urheber"}]} {"f00_":"929t112194b1","f20ü":"Clubzeitung","f01_":"Nachgewiesen 2006,2 -","f36_":"sbd"} {"f00_":"929t112195","f20_":"¬Der¬ BAP kam aus Unkel","f30_":"_sn824000_","f31_":"_r99_ _o13807073_","f32_":"_4061836n5_ ; _118942247_ ; _4006804n3_","f35_":"_r99_ _o13807073_ ; _sn824000_","f36_":"u","f37_":"_sn824000_ ; _r99_ _o13807073_","f40_":"_00Pn08k0685884a_","f70_":"¬Der¬ Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 16-18","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2515501-5","f90d":"ZA 5649:2011 MAG","f95_":"20110601/08:50:59\u001FKO","f96_":"20110603/08:31:46\u001FKO","f30":[{"f30_":"_sn824000_"}],"f31":[{"f31_":"_r99_ _o13807073_"}],"f32":[{"f32_":"_4061836n5_ ; _118942247_ ; _4006804n3_"}],"f40":[{"f40_":"_00Pn08k0685884a_","n40a":"Verfasser"}]} {"f00_":"929t112196","f20_":"Coming home mit Commende","f30_":"_sn844200_","f30a":"_sn844000_","f31_":"_r99_ _o13809076_","f31a":"_r99_ _o13809076_","f32_":"_929n090287_ ; _4011457n0_ ; _00Sn09k1362487a_ ; _4454409n1_ ; _00Sn09m0508511a_","f35_":"_r99_ _o13809076_ ; _sn844200_","f35a":"_r99_ _o13809076_ ; _sn844000_","f36_":"u","f37_":"_sn844200_ ; _r99_ _o13809076_","f37a":"_sn844000_ ; _r99_ _o13809076_","f40_":"_00Pn08k0685884a_","f70_":"¬Der¬ Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 26-27","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2515501-5","f90d":"ZA 5649:2011 MAG","f95_":"20110601/08:57:45\u001FKO","f96_":"20110603/08:31:32\u001FKO","f30":[{"f30_":"_sn844200_"},{"f30_":"_sn844000_"}],"f31":[{"f31_":"_r99_ _o13809076_"},{"f31_":"_r99_ _o13809076_"}],"f32":[{"f32_":"_929n090287_ ; _4011457n0_ ; _00Sn09k1362487a_ ; _4454409n1_ ; _00Sn09m0508511a_"}],"f40":[{"f40_":"_00Pn08k0685884a_","n40a":"Verfasser"}]} {"f00_":"929t112197","f20_":"Seit 1911 weht im Vinzenzhaus der Geist der Nächstenliebe : 100-Jahr-Feier in Gebhardshain ; vom Konvent zum Seniorenheim","f30_":"_sn611070_","f31_":"_r99_ _o13209039_","f32_":"_16326855n1_ ; _00Sn10s3817103a_","f35_":"_r99_ _o13209039_ ; _sn611070_","f36_":"u","f37_":"_sn611070_ ; _r99_ _o13209039_","f40_":"_929n991002_","f70b":"66","f70h":"126 vom 31.05.","f70j":"2011","f70s":"24","f70t":"Rhein-Zeitung, Ausg. H","f70y":"Rhein-Zeitung, Ausg. H. - 66 (2011), 126 vom 31.05., S. 24","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2522761-0","f90d":"ZB 151:2011;MZ 52:2011","f95_":"20110601/09:14:31\u001FKO","f96_":"20120809/16:13:40\u001FZR","f30":[{"f30_":"_sn611070_"}],"f31":[{"f31_":"_r99_ _o13209039_"}],"f32":[{"f32_":"_16326855n1_ ; _00Sn10s3817103a_"}],"f40":[{"f40_":"_929n991002_","n40a":"Verfasser"}]} -{"f00_":"929t112198","f20_":"¬Das¬ Leben der Bilder oder die Kunst des Sehens","f30_":"_sn848000_","f31_":"_r99_ _o13203050_","f32_":"_4114333n4_ ; _4143413n4_","f32a":"_118605364_","f35_":"_r99_ _o13203050_ ; _sn848000_","f36_":"s","f37_":"_sn848000_ ; _r99_ _o13203050_","f39_":"John Berger","f40_":"_00Pn11k2198999a_","f71_":"11. Aufl.","f74_":"Berlin","f75_":"Wagenbach","f76a":"2009","f76b":"2009","f77_":"141 S. : Ill.","f81_":"Aus dem Engl. übers.","f83_":"Sander, August / 1876-1964","f85_":"Salto ; [13]","f87_":"3-8031-1114-5","f871":"978-3-8031-1114-2","f90d":"2011/1822","f95_":"20110601/09:39:26\u001FHBZ","f96_":"20110601/09:44:37\u001FKO","f983":"HT015954631","f30":[{"f30_":"_sn848000_"}],"f31":[{"f31_":"_r99_ _o13203050_"}],"f32":[{"f32_":"_4114333n4_ ; _4143413n4_"},{"f32_":"_118605364_"}],"f81":[{"f81_":"Aus dem Engl. übers."}],"f85":[{"f85_":"Salto ; [13]"}],"f40":[{"f40_":"_00Pn11k2198999a_","n40a":"Verfasser"}]} -{"f00_":"929t112199","f20_":"Charte vom Laufe des Rheins von Coblenz bis Wesel [Elektronische Ressource] : das Herzogthum Berg, die Grafschaften Wied, Nieder-Isenburg und andere Länder vorstellend : mit röm. kaiserl. allergnaed. Freyheit","f27_":"Charte vom Laufe des Rheins von Koblenz bis Wesel [Elektronische Ressource] : das Herzogthum Berg, die Grafschaften Wied, Nieder-Isenburg und andere Länder vorstellend : mit röm. kaiserl. allergnaed. Freyheit","f30_":"_sn126000_","f31_":"_r22_","f32_":"_4074902n2_ ; _4611904n8_ ; _4511937n5_","f32a":"_4042224n0_ ; _4611904n8_ ; _4511937n5_","f32b":"_4005659n4_ ; _4611904n8_ ; _4511937n5_","f35_":"_r22_ ; _sn126000_","f36_":"s","f37_":"_sn126000_ ; _r22_","f39_":"entworfen von F. L. Güssefeld ; [Stecher:] I. Rausch","f42_":"_00Gn11k2199217a_","f57_":"_178964131_","f571":"_00Pn01k23917383a_","f572":"_00Pn01t22981785a_","f74_":"Nürnberg","f75_":"Homännische Erben","f76a":"1797","f76b":"1797","f77_":"1 Kt. : Kupferst. ; 57 x 41 cm","f81_":"Nebenkarte oben rechts: \"Charte den Lauf des Rheins von Coblenz bis Unkel nebst den anliegenden Ländern enthaltend\" (16 x 23 cm). - Nullmeridian: Ferro - Maßstab in graph,. Form (Deutsche Meilen) - Titelkartusche unten links","f90e":"https://nbn-resolving.org/urn:nbn:de:hbz:061:1-42026","f95_":"20110601/09:46:34\u001FHBZ","f96_":"20110601/09:51:55\u001FKO","f983":"CT003007380","f27":[{"f27_":"Charte vom Laufe des Rheins von Koblenz bis Wesel [Elektronische Ressource] : das Herzogthum Berg, die Grafschaften Wied, Nieder-Isenburg und andere Länder vorstellend : mit röm. kaiserl. allergnaed. Freyheit"}],"f30":[{"f30_":"_sn126000_"}],"f31":[{"f31_":"_r22_"}],"f32":[{"f32_":"_4074902n2_ ; _4611904n8_ ; _4511937n5_"},{"f32_":"_4042224n0_ ; _4611904n8_ ; _4511937n5_"},{"f32_":"_4005659n4_ ; _4611904n8_ ; _4511937n5_"}],"f81":[{"f81_":"Nebenkarte oben rechts: \"Charte den Lauf des Rheins von Coblenz bis Unkel nebst den anliegenden Ländern enthaltend\" (16 x 23 cm). - Nullmeridian: Ferro - Maßstab in graph,. Form (Deutsche Meilen) - Titelkartusche unten links"}],"f90":[{"f90_":"https://nbn-resolving.org/urn:nbn:de:hbz:061:1-42026","n90a":"Volltext"}],"f40":[{"f40_":"_00Gn11k2199217a_","n40a":"Mitwirkender"},{"f40_":"_178964131_","n40a":"Sonstige"},{"f40_":"_00Pn01k23917383a_","n40a":"Sonstige"},{"f40_":"_00Pn01t22981785a_","n40a":"Sonstige"}]} diff --git a/conf/rpb-titel-to-lobid.fix b/conf/rpb-titel-to-lobid.fix index 2814cb4d..099d38bc 100644 --- a/conf/rpb-titel-to-lobid.fix +++ b/conf/rpb-titel-to-lobid.fix @@ -52,11 +52,6 @@ copy_field("rpbId", "id") prepend("id","https://lobid.org/resources/") # ------- hbzId ------- -# Remove titles that are already in lobid-resources -# -# if exists ("f983") -# reject() -# end copy_field("f983", "hbzId") diff --git a/conf/rpb-titel-to-strapi.fix b/conf/rpb-titel-to-strapi.fix index 534ddf76..605828b7 100644 --- a/conf/rpb-titel-to-strapi.fix +++ b/conf/rpb-titel-to-strapi.fix @@ -1,3 +1,9 @@ +# Remove titles that are already in lobid-resources + +if exists ("f983") + reject() +end + do put_macro("add") if exists("$[from]") set_array("_temp") From 94c77924fe40303bf9636857aa01454aaa958039 Mon Sep 17 00:00:00 2001 From: Fabian Steeg Date: Fri, 23 Jun 2023 14:41:12 +0200 Subject: [PATCH 04/12] Add index creation documentation to README (RPB-28) --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index a603bc6d..1ee317db 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,17 @@ sh validateJsonOutput.sh This validates the resulting files against the JSON schemas in `test/rpb/schemas/`. +### Index creation + +If you're not indexing into an existing lobid-resources index, make sure to create one with the proper index settings, e.g. to create `resources-rpb-20230623` from `quaoar3`: + +```bash +unset http_proxy # for putting on weywot +sol@quaoar3:~/git/rpb$ curl -XPUT -H "Content-Type: application/json" weywot5:9200/resources-rpb-20230623?pretty -d @../lobid-resources/src/main/resources/alma/index-config.json +``` + +For testing, the real index name (e.g. `resources-rpb-20230623`) is aliased by `resources-rpb-test`, which is used by https://test.lobid.org/resources / http://test.rpb.lobid.org and in the transformation. + ### Run full transformation and indexing Get full data at: http://lobid.org/download/rpb-gesamtexport/, place files in `conf/`. From b0cf60ba0e6bb45f117523d9286cfa21118f1bc2 Mon Sep 17 00:00:00 2001 From: Fabian Steeg Date: Tue, 27 Jun 2023 13:28:52 +0200 Subject: [PATCH 05/12] Only reject titles with `f983` if `f36_` is `s` or `sm` (RPB-28) --- conf/output/test-output-0.json | 67 ++++++++++++-- conf/output/test-output-1.json | 67 ++++++++++++-- conf/output/test-output-10.json | 58 ++---------- conf/output/test-output-11.json | 56 ++---------- conf/output/test-output-12.json | 33 ++----- conf/output/test-output-13.json | 37 ++++---- conf/output/test-output-14.json | 45 ++++++---- conf/output/test-output-15.json | 39 +++----- conf/output/test-output-16.json | 42 ++++----- conf/output/test-output-17.json | 21 ++--- conf/output/test-output-18.json | 32 +++++-- conf/output/test-output-19.json | 44 ++++++--- conf/output/test-output-2.json | 67 ++++++++++++-- conf/output/test-output-20.json | 55 ++++-------- conf/output/test-output-21.json | 104 +++------------------- conf/output/test-output-22.json | 63 ++++--------- conf/output/test-output-23.json | 56 ++++++------ conf/output/test-output-24.json | 133 +++++++++++++++++++++++++--- conf/output/test-output-25.json | 80 +++++++++++------ conf/output/test-output-26.json | 75 +++++++++++++--- conf/output/test-output-27.json | 77 +++------------- conf/output/test-output-28.json | 76 +++++++++++++--- conf/output/test-output-29.json | 75 +++------------- conf/output/test-output-3.json | 8 +- conf/output/test-output-30.json | 77 +++++++++++++--- conf/output/test-output-31.json | 82 +++-------------- conf/output/test-output-32.json | 75 +++++++++++++--- conf/output/test-output-33.json | 65 +++----------- conf/output/test-output-34.json | 82 ++++++++++++++--- conf/output/test-output-35.json | 75 +++------------- conf/output/test-output-36.json | 66 +++++++++++--- conf/output/test-output-37.json | 58 +++--------- conf/output/test-output-38.json | 75 +++++++++++++--- conf/output/test-output-39.json | 13 +-- conf/output/test-output-4.json | 19 ++-- conf/output/test-output-40.json | 46 +++------- conf/output/test-output-41.json | 98 +++----------------- conf/output/test-output-42.json | 68 +++----------- conf/output/test-output-43.json | 72 +++++++++++++++ conf/output/test-output-44.json | 67 +++++++++----- conf/output/test-output-45.json | 69 ++++++++++++--- conf/output/test-output-46.json | 93 ------------------- conf/output/test-output-5.json | 10 +-- conf/output/test-output-6.json | 10 +-- conf/output/test-output-7.json | 19 ++-- conf/output/test-output-8.json | 10 +-- conf/output/test-output-9.json | 10 +-- conf/output/test-output-strapi.json | 3 + conf/rpb-titel-to-strapi.fix | 6 +- 49 files changed, 1364 insertions(+), 1314 deletions(-) diff --git a/conf/output/test-output-0.json b/conf/output/test-output-0.json index 34fcee77..46c9272c 100644 --- a/conf/output/test-output-0.json +++ b/conf/output/test-output-0.json @@ -1,28 +1,77 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121512", - "id" : "https://lobid.org/resources/RPB036t0121512", + "rpbId" : "RPB929t112201", + "id" : "https://lobid.org/resources/RPB929t112201", + "hbzId" : "CT003010543", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Serenissimus befehlen zu prügeln", + "title" : "Coloniensis Dioecesis [Elektronische Ressource] : [Ca. 1:1 300 000]", + "extent" : "1 Kt. : Kupferstich ; 13 x 9 cm", + "note" : [ "O oben. - Maßstab in graph. Form (Miliaria Germ.), Titelkartusche und Maßstabsleiste unten links - rückseitig lateinischer Text" ], + "responsibilityStatement" : [ "[Hondius, Jodocus]" ], "publication" : [ { - "startDate" : "1963", + "location" : [ "Amstelodami" ], + "startDate" : "1618", + "publishedBy" : [ "Judocus Hondius" ], "type" : [ "PublicationEvent" ] } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n126000", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Katholische Kirche / Erzdiözese Köln | Altkarte | Online-Ressource", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/2029646-0", + "label" : "Katholische Kirche / Erzdiözese Köln", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4611904-8", + "label" : "Altkarte", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4511937-5", + "label" : "Online-Ressource", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n34", + "label" : "_r34_", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", - "label" : "Wagner, Hermann Josef" + "id" : "https://rpb.lobid.org/agent/00Pn11k2200547a", + "label" : "Hondius, Jodocus (Kartograph, 1563-1612)" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" + "id" : "http://id.loc.gov/vocabulary/relators/oth", + "label" : "Sonstige" }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 8 (1963), Nr. 6" + "bibliographicCitation" : "Bertius, Petrus : P. Bertii Tabularum geographicarum contractarum libri septem; 380" } diff --git a/conf/output/test-output-1.json b/conf/output/test-output-1.json index c840d2c1..dfe18cff 100644 --- a/conf/output/test-output-1.json +++ b/conf/output/test-output-1.json @@ -1,28 +1,77 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121513", - "id" : "https://lobid.org/resources/RPB036t0121513", + "rpbId" : "RPB929t112202", + "id" : "https://lobid.org/resources/RPB929t112202", + "hbzId" : "CT003010542", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Soldaten für Holland", + "title" : "Provincia Trevirensis [Elektronische Ressource] : [Ca. 1:1 500 000]", + "extent" : "1 Kt. : Kupferstich ; 13 x 9 cm", + "note" : [ "Maßstab in graph. Form (Miliaria Germanica), Titelkartusche und Maßstabsleiste unten rechts - rückseitig lateinischer Text" ], + "responsibilityStatement" : [ "[Hondius, Jodocus]" ], "publication" : [ { - "startDate" : "1957", + "location" : [ "Amstelodami" ], + "startDate" : "1618", + "publishedBy" : [ "Judocus Hondius" ], "type" : [ "PublicationEvent" ] } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n126000", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Erzstift Trier | Altkarte | Online-Ressource", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4060882-7", + "label" : "Erzstift Trier", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4611904-8", + "label" : "Altkarte", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4511937-5", + "label" : "Online-Ressource", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n41", + "label" : "_r41_", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", - "label" : "Wagner, Hermann Josef" + "id" : "https://rpb.lobid.org/agent/00Pn11k2200547a", + "label" : "Hondius, Jodocus (Kartograph, 1563-1612)" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" + "id" : "http://id.loc.gov/vocabulary/relators/oth", + "label" : "Sonstige" }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 2 (1957), Nr. 6" + "bibliographicCitation" : "Bertius, Petrus : P. Bertii Tabularum geographicarum contractarum libri septem; 378" } diff --git a/conf/output/test-output-10.json b/conf/output/test-output-10.json index 8f14978d..767c002b 100644 --- a/conf/output/test-output-10.json +++ b/conf/output/test-output-10.json @@ -1,66 +1,22 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147869", - "id" : "https://lobid.org/resources/RPB107t01147869", + "rpbId" : "RPB036t0121519", + "id" : "https://lobid.org/resources/RPB036t0121519", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Grabmal und Taufstein - zwei spätgotische Denkmäler der Pfarrkirche in Hainfeld", - "extent" : "Ill.", + "title" : "Sprendlinger kämpften unter Napoleon", "publication" : [ { - "startDate" : "1984", + "startDate" : "1963", "type" : [ "PublicationEvent" ] } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n844030", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Sankt Barbara / Hainfeld, Südliche Weinstraße | Grabplatte | Taufbecken", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/7746576-3", - "label" : "Sankt Barbara / Hainfeld, Südliche Weinstraße", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4113778-4", - "label" : "Grabplatte", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4135651-2", - "label" : "Taufbecken", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n33703036", - "label" : "o33703036", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/11944027X", - "label" : "Müller, Carl Werner / 1931-2018" + "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", + "label" : "Wagner, Hermann Josef" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -68,5 +24,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Archiv für mittelrheinische Kirchengeschichte. - 36 (1984), S. 47-63" + "bibliographicCitation" : "Heimat am Mittelrhein. - 8 (1963), Nr. 12" } diff --git a/conf/output/test-output-11.json b/conf/output/test-output-11.json index 391a2587..57373064 100644 --- a/conf/output/test-output-11.json +++ b/conf/output/test-output-11.json @@ -1,66 +1,22 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147870", - "id" : "https://lobid.org/resources/RPB107t01147870", + "rpbId" : "RPB036t0121520", + "id" : "https://lobid.org/resources/RPB036t0121520", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Die¬ Herren von Hainfeld - zur Geschichte e. vorderpfälzischen Adelssitzes im Mittelalter", + "title" : "Sprendlinger Stifter und ihre Familien", "publication" : [ { "startDate" : "1983", "type" : [ "PublicationEvent" ] } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n240400", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n207020", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Hainfeld / Familie | Geschichte 1100-1300", - "componentList" : [ { - "id" : "https://rpb.lobid.org/sw/00Sn01s147870528a", - "label" : "Hainfeld / Familie", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://rpb.lobid.org/sw/00Sn06k1444137a", - "label" : "Geschichte 1100-1300", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n33703036", - "label" : "o33703036", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/11944027X", - "label" : "Müller, Carl Werner / 1931-2018" + "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", + "label" : "Wagner, Hermann Josef" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -68,5 +24,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Historischer Verein der Pfalz: Mitteilungen des Historischen Vereins der Pfalz. - 81 (1983), S. 229-271" + "bibliographicCitation" : "Heimat am Mittelrhein. - 1983, H. 2" } diff --git a/conf/output/test-output-12.json b/conf/output/test-output-12.json index 2ed3cb77..ed42c2aa 100644 --- a/conf/output/test-output-12.json +++ b/conf/output/test-output-12.json @@ -1,41 +1,22 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147871", - "id" : "https://lobid.org/resources/RPB107t01147871", + "rpbId" : "RPB036t0121521", + "id" : "https://lobid.org/resources/RPB036t0121521", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Juden in Hainfeld : ein Beitrag zur Geschichte der Dorfjuden im Hochstift Speyer", - "extent" : "Ill.", + "title" : "Steuern in alter Zeit", "publication" : [ { - "startDate" : "1983", + "startDate" : "1957", "type" : [ "PublicationEvent" ] } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n632000", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n33703036", - "label" : "o33703036", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/11944027X", - "label" : "Müller, Carl Werner / 1931-2018" + "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", + "label" : "Wagner, Hermann Josef" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -43,5 +24,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Pfälzer Heimat. - 34 (1983), S. 156-167" + "bibliographicCitation" : "Heimat am Mittelrhein. - 2 (1957), Nr. 12" } diff --git a/conf/output/test-output-13.json b/conf/output/test-output-13.json index bce6a7cf..8f14978d 100644 --- a/conf/output/test-output-13.json +++ b/conf/output/test-output-13.json @@ -1,21 +1,21 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147872", - "id" : "https://lobid.org/resources/RPB107t01147872", + "rpbId" : "RPB107t01147869", + "id" : "https://lobid.org/resources/RPB107t01147869", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Der¬ Meister des Hainfelder Röhrenbrunnens und des Burgbrunnens auf Neuscharfeneck", + "title" : "Grabmal und Taufstein - zwei spätgotische Denkmäler der Pfarrkirche in Hainfeld", "extent" : "Ill.", "publication" : [ { - "startDate" : "1983", + "startDate" : "1984", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n844070", + "id" : "http://purl.org/lobid/rpb#n844030", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -24,17 +24,24 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Burg Neuscharfeneck / Flemlingen | Brunnen", + "label" : "Sankt Barbara / Hainfeld, Südliche Weinstraße | Grabplatte | Taufbecken", "componentList" : [ { - "id" : "https://d-nb.info/gnd/4595996-1", - "label" : "Burg Neuscharfeneck / Flemlingen", + "id" : "https://d-nb.info/gnd/7746576-3", + "label" : "Sankt Barbara / Hainfeld, Südliche Weinstraße", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://d-nb.info/gnd/4008491-7", - "label" : "Brunnen", + "id" : "https://d-nb.info/gnd/4113778-4", + "label" : "Grabplatte", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4135651-2", + "label" : "Taufbecken", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" @@ -49,14 +56,6 @@ "id" : "https://rpb.lobid.org/spatial", "label" : "RPB-Raumsystematik" } - }, { - "id" : "https://rpb.lobid.org/spatial#n33703025", - "label" : "o33703025", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } } ], "contribution" : [ { "agent" : { @@ -69,5 +68,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "In: Landkreis Südliche Weinstraße: Heimat-Jahrbuch .... - 5 (1983), Seite 29-36. -" + "bibliographicCitation" : "Archiv für mittelrheinische Kirchengeschichte. - 36 (1984), S. 47-63" } diff --git a/conf/output/test-output-14.json b/conf/output/test-output-14.json index 60324d24..391a2587 100644 --- a/conf/output/test-output-14.json +++ b/conf/output/test-output-14.json @@ -1,20 +1,28 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147873", - "id" : "https://lobid.org/resources/RPB107t01147873", + "rpbId" : "RPB107t01147870", + "id" : "https://lobid.org/resources/RPB107t01147870", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Das¬ Hambacher Schloß.", + "title" : "¬Die¬ Herren von Hainfeld - zur Geschichte e. vorderpfälzischen Adelssitzes im Mittelalter", "publication" : [ { - "startDate" : "1982", + "startDate" : "1983", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n844040", + "id" : "http://purl.org/lobid/rpb#n240400", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "id" : "http://purl.org/lobid/rpb#n207020", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -23,19 +31,26 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Hambacher Schloss / Neustadt an der Weinstraße", + "label" : "Hainfeld / Familie | Geschichte 1100-1300", "componentList" : [ { - "id" : "https://d-nb.info/gnd/4094596-0", - "label" : "Hambacher Schloss / Neustadt an der Weinstraße", + "id" : "https://rpb.lobid.org/sw/00Sn01s147870528a", + "label" : "Hainfeld / Familie", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://rpb.lobid.org/sw/00Sn06k1444137a", + "label" : "Geschichte 1100-1300", "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" } } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n316000000700", - "label" : "o316000000700", + "id" : "https://rpb.lobid.org/spatial#n33703036", + "label" : "o33703036", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -44,8 +59,8 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/119277425", - "label" : "Böcher, Otto / 1935-2020" + "id" : "https://d-nb.info/gnd/11944027X", + "label" : "Müller, Carl Werner / 1931-2018" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -53,5 +68,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Ärzteblatt Rheinland-Pfalz. 35. 1982, 560, 563-65" + "bibliographicCitation" : "Historischer Verein der Pfalz: Mitteilungen des Historischen Vereins der Pfalz. - 81 (1983), S. 229-271" } diff --git a/conf/output/test-output-15.json b/conf/output/test-output-15.json index 59fc819e..2ed3cb77 100644 --- a/conf/output/test-output-15.json +++ b/conf/output/test-output-15.json @@ -1,48 +1,31 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147874", - "id" : "https://lobid.org/resources/RPB107t01147874", + "rpbId" : "RPB107t01147871", + "id" : "https://lobid.org/resources/RPB107t01147871", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Das¬ Hambacher Schloß als Hochzeitsgeschenk der Pfälzer an Kronprinz Maximilian von Bayern (1842)", + "title" : "Juden in Hainfeld : ein Beitrag zur Geschichte der Dorfjuden im Hochstift Speyer", + "extent" : "Ill.", "publication" : [ { - "startDate" : "1982", + "startDate" : "1983", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n844040", + "id" : "http://purl.org/lobid/rpb#n632000", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { "id" : "http://purl.org/lobid/rpb", "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Hambacher Schloss / Neustadt an der Weinstraße | Maximilian / II. / Bayern, König / 1811-1864", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4094596-0", - "label" : "Hambacher Schloss / Neustadt an der Weinstraße", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/118579347", - "label" : "Maximilian / II. / Bayern, König / 1811-1864", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n316000000700", - "label" : "o316000000700", + "id" : "https://rpb.lobid.org/spatial#n33703036", + "label" : "o33703036", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -51,8 +34,8 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/107939061", - "label" : "Kermann, Joachim / 1942-" + "id" : "https://d-nb.info/gnd/11944027X", + "label" : "Müller, Carl Werner / 1931-2018" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -60,5 +43,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Historischer Verein der Pfalz: Mitteilungen des Historischen Vereins der Pfalz. - 80 (1982), S. 199-240" + "bibliographicCitation" : "Pfälzer Heimat. - 34 (1983), S. 156-167" } diff --git a/conf/output/test-output-16.json b/conf/output/test-output-16.json index 6dcc7048..bce6a7cf 100644 --- a/conf/output/test-output-16.json +++ b/conf/output/test-output-16.json @@ -1,29 +1,21 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147875", - "id" : "https://lobid.org/resources/RPB107t01147875", + "rpbId" : "RPB107t01147872", + "id" : "https://lobid.org/resources/RPB107t01147872", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Ein¬ Fest aller Deutschen : das Hambacher Schloß wird nationale Gedenkstätte", + "title" : "¬Der¬ Meister des Hainfelder Röhrenbrunnens und des Burgbrunnens auf Neuscharfeneck", "extent" : "Ill.", "publication" : [ { - "startDate" : "1981", + "startDate" : "1983", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n246500", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n844040", + "id" : "http://purl.org/lobid/rpb#n844070", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -32,17 +24,17 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Hambacher Fest | Hambacher Schloss / Neustadt an der Weinstraße", + "label" : "Burg Neuscharfeneck / Flemlingen | Brunnen", "componentList" : [ { - "id" : "https://d-nb.info/gnd/4127289-4", - "label" : "Hambacher Fest", + "id" : "https://d-nb.info/gnd/4595996-1", + "label" : "Burg Neuscharfeneck / Flemlingen", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://d-nb.info/gnd/4094596-0", - "label" : "Hambacher Schloss / Neustadt an der Weinstraße", + "id" : "https://d-nb.info/gnd/4008491-7", + "label" : "Brunnen", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" @@ -50,16 +42,16 @@ } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n58", - "label" : "_r58_", + "id" : "https://rpb.lobid.org/spatial#n33703036", + "label" : "o33703036", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", "label" : "RPB-Raumsystematik" } }, { - "id" : "https://rpb.lobid.org/spatial#n316000000700", - "label" : "o316000000700", + "id" : "https://rpb.lobid.org/spatial#n33703025", + "label" : "o33703025", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -68,8 +60,8 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn02s0203b", - "label" : "Letzelter, Manfred" + "id" : "https://d-nb.info/gnd/11944027X", + "label" : "Müller, Carl Werner / 1931-2018" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -77,5 +69,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Stimme der Pfalz. - 32 (1981), 1, S. 9-11" + "bibliographicCitation" : "In: Landkreis Südliche Weinstraße: Heimat-Jahrbuch .... - 5 (1983), Seite 29-36. -" } diff --git a/conf/output/test-output-17.json b/conf/output/test-output-17.json index 7c36a8b3..60324d24 100644 --- a/conf/output/test-output-17.json +++ b/conf/output/test-output-17.json @@ -1,20 +1,16 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "rpbId" : "RPB107t01147876", - "id" : "https://lobid.org/resources/RPB107t01147876", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB107t01147873", + "id" : "https://lobid.org/resources/RPB107t01147873", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Die¬ Maxburg bei Hambach. (Mit e. Titelkupfer, Uebersichtsplane u. Grundrisse der Burg.)", - "extent" : "VIII, 211 S. 8°", - "note" : [ "[Hambacher Schloß]" ], + "title" : "¬Das¬ Hambacher Schloß.", "publication" : [ { - "location" : [ "Mannheim" ], - "startDate" : "1844", - "publishedBy" : [ "Meininger" ], + "startDate" : "1982", "type" : [ "PublicationEvent" ] } ], "subject" : [ { @@ -48,13 +44,14 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/116436425", - "label" : "Remling, Franz Xaver / 1803-1873" + "id" : "https://d-nb.info/gnd/119277425", + "label" : "Böcher, Otto / 1935-2020" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", "label" : "Autor/in" }, "type" : [ "Contribution" ] - } ] + } ], + "bibliographicCitation" : "Ärzteblatt Rheinland-Pfalz. 35. 1982, 560, 563-65" } diff --git a/conf/output/test-output-18.json b/conf/output/test-output-18.json index a80cd871..59fc819e 100644 --- a/conf/output/test-output-18.json +++ b/conf/output/test-output-18.json @@ -1,26 +1,44 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147877", - "id" : "https://lobid.org/resources/RPB107t01147877", + "rpbId" : "RPB107t01147874", + "id" : "https://lobid.org/resources/RPB107t01147874", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Hambacher Schloß. Wiedergeburt 1982 [Tagebuch der Renovierung]", + "title" : "¬Das¬ Hambacher Schloß als Hochzeitsgeschenk der Pfälzer an Kronprinz Maximilian von Bayern (1842)", "publication" : [ { "startDate" : "1982", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n240400", + "id" : "http://purl.org/lobid/rpb#n844040", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { "id" : "http://purl.org/lobid/rpb", "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Hambacher Schloss / Neustadt an der Weinstraße | Maximilian / II. / Bayern, König / 1811-1864", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4094596-0", + "label" : "Hambacher Schloss / Neustadt an der Weinstraße", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/118579347", + "label" : "Maximilian / II. / Bayern, König / 1811-1864", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] } ], "spatial" : [ { "id" : "https://rpb.lobid.org/spatial#n316000000700", @@ -33,8 +51,8 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/1123984425", - "label" : "Trautmann, Herbert / 1948-2006" + "id" : "https://d-nb.info/gnd/107939061", + "label" : "Kermann, Joachim / 1942-" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -42,5 +60,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Die Rheinpfalz / Mittelhaardter Rundschau v. 17.5.1982" + "bibliographicCitation" : "Historischer Verein der Pfalz: Mitteilungen des Historischen Vereins der Pfalz. - 80 (1982), S. 199-240" } diff --git a/conf/output/test-output-19.json b/conf/output/test-output-19.json index f549c0ee..6dcc7048 100644 --- a/conf/output/test-output-19.json +++ b/conf/output/test-output-19.json @@ -1,20 +1,28 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t01147878", - "id" : "https://lobid.org/resources/RPB107t01147878", + "rpbId" : "RPB107t01147875", + "id" : "https://lobid.org/resources/RPB107t01147875", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Um- und Ausbau des Hambacher Schlosses von 1979 bis 1982", + "title" : "¬Ein¬ Fest aller Deutschen : das Hambacher Schloß wird nationale Gedenkstätte", "extent" : "Ill.", "publication" : [ { - "startDate" : "1982", + "startDate" : "1981", "type" : [ "PublicationEvent" ] } ], "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n246500", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { "id" : "http://purl.org/lobid/rpb#n844040", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], @@ -24,24 +32,32 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Hambacher Schloss / Neustadt an der Weinstraße | Geschichte 1979-1982", + "label" : "Hambacher Fest | Hambacher Schloss / Neustadt an der Weinstraße", "componentList" : [ { - "id" : "https://d-nb.info/gnd/4094596-0", - "label" : "Hambacher Schloss / Neustadt an der Weinstraße", + "id" : "https://d-nb.info/gnd/4127289-4", + "label" : "Hambacher Fest", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://rpb.lobid.org/sw/00Sn01s147878357a", - "label" : "Geschichte 1979-1982", + "id" : "https://d-nb.info/gnd/4094596-0", + "label" : "Hambacher Schloss / Neustadt an der Weinstraße", "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" } } ] } ], "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n58", + "label" : "_r58_", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + }, { "id" : "https://rpb.lobid.org/spatial#n316000000700", "label" : "o316000000700", "type" : [ "Concept" ], @@ -52,8 +68,8 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/1123984425", - "label" : "Trautmann, Herbert / 1948-2006" + "id" : "https://rpb.lobid.org/agent/00Pn02s0203b", + "label" : "Letzelter, Manfred" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -61,5 +77,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Die Pfalz am Rhein . - 55 (1982), S. 175-180" + "bibliographicCitation" : "Stimme der Pfalz. - 32 (1981), 1, S. 9-11" } diff --git a/conf/output/test-output-2.json b/conf/output/test-output-2.json index 828fd7f2..5895ec27 100644 --- a/conf/output/test-output-2.json +++ b/conf/output/test-output-2.json @@ -1,22 +1,75 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121514", - "id" : "https://lobid.org/resources/RPB036t0121514", + "rpbId" : "RPB929t112206", + "id" : "https://lobid.org/resources/RPB929t112206", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Sonnenuhr an der Kirche", + "title" : "Funkeln aus dem Sonnenberg : Winzer Oliver Krupp aus Bruchhausen bearbeitet die Lage \"Unkeler Sonnenberg\"", + "extent" : "Ill.", "publication" : [ { - "startDate" : "1958", + "startDate" : "2011", "type" : [ "PublicationEvent" ] } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n544322", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "id" : "http://purl.org/lobid/rpb#n544325", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Unkeler Sonnenberg | Weingut Krupp", + "componentList" : [ { + "id" : "https://rpb.lobid.org/sw/929n110302", + "label" : "Unkeler Sonnenberg", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://rpb.lobid.org/sw/929n110303", + "label" : "Weingut Krupp", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n13807073", + "label" : "o13807073", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + }, { + "id" : "https://rpb.lobid.org/spatial#n13807008", + "label" : "o13807008", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", - "label" : "Wagner, Hermann Josef" + "id" : "https://rpb.lobid.org/agent/00Pn08k0685884a", + "label" : "Ruland, Wolfgang" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -24,5 +77,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 3 (1958), Nr. 11" + "bibliographicCitation" : "Der Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 32-33" } diff --git a/conf/output/test-output-20.json b/conf/output/test-output-20.json index bc984bc3..7c36a8b3 100644 --- a/conf/output/test-output-20.json +++ b/conf/output/test-output-20.json @@ -1,28 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t982370", - "id" : "https://lobid.org/resources/RPB107t982370", + "type" : [ "BibliographicResource", "Book" ], + "rpbId" : "RPB107t01147876", + "id" : "https://lobid.org/resources/RPB107t01147876", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "\"¬Der¬ Holocaust ist immer da\": Kooperationsprojekt Offener Kanal Ludwigshafen, Vorderpfalz und Community Television, Israel", + "title" : "¬Die¬ Maxburg bei Hambach. (Mit e. Titelkupfer, Uebersichtsplane u. Grundrisse der Burg.)", + "extent" : "VIII, 211 S. 8°", + "note" : [ "[Hambacher Schloß]" ], "publication" : [ { - "startDate" : "1997", + "location" : [ "Mannheim" ], + "startDate" : "1844", + "publishedBy" : [ "Meininger" ], "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n632050", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n882060", + "id" : "http://purl.org/lobid/rpb#n844040", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -31,24 +27,10 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Ludwigshafen am Rhein | Offener Kanal | Judenvernichtung", + "label" : "Hambacher Schloss / Neustadt an der Weinstraße", "componentList" : [ { - "id" : "https://d-nb.info/gnd/4036472-0", - "label" : "Ludwigshafen am Rhein", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4172489-6", - "label" : "Offener Kanal", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4073091-8", - "label" : "Judenvernichtung", + "id" : "https://d-nb.info/gnd/4094596-0", + "label" : "Hambacher Schloss / Neustadt an der Weinstraße", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" @@ -56,8 +38,8 @@ } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n31400000", - "label" : "o31400000", + "id" : "https://rpb.lobid.org/spatial#n316000000700", + "label" : "o316000000700", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -66,14 +48,13 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/106837800X", - "label" : "Minor, Ulrike" + "id" : "https://d-nb.info/gnd/116436425", + "label" : "Remling, Franz Xaver / 1803-1873" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", "label" : "Autor/in" }, "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 102-106" + } ] } diff --git a/conf/output/test-output-21.json b/conf/output/test-output-21.json index a0ea6f05..a80cd871 100644 --- a/conf/output/test-output-21.json +++ b/conf/output/test-output-21.json @@ -1,114 +1,30 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t982371", - "id" : "https://lobid.org/resources/RPB107t982371", + "rpbId" : "RPB107t01147877", + "id" : "https://lobid.org/resources/RPB107t01147877", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Ältere Menschen machen Fernsehen : aktivierende Medienarbeit in Offenen Kanälen", - "note" : [ "Videoprojekt zwischen Volkshochschule u. Offener Kanal" ], + "title" : "Hambacher Schloß. Wiedergeburt 1982 [Tagebuch der Renovierung]", "publication" : [ { - "startDate" : "1997", + "startDate" : "1982", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n786000", + "id" : "http://purl.org/lobid/rpb#n240400", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { "id" : "http://purl.org/lobid/rpb", "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" } - }, { - "id" : "http://purl.org/lobid/rpb#n882060", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Ludwigshafen am Rhein | Volkshochschule | Geschichte 1945-", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4036472-0", - "label" : "Ludwigshafen am Rhein", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4136151-9", - "label" : "Volkshochschule", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - }, { - "type" : [ "ComplexSubject" ], - "label" : "Ludwigshafen am Rhein | Offener Kanal | Geschichte 1945-", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4036472-0", - "label" : "Ludwigshafen am Rhein", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4172489-6", - "label" : "Offener Kanal", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - }, { - "type" : [ "ComplexSubject" ], - "label" : "Ludwigshafen am Rhein | Alter | Geschichte 1945-", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4036472-0", - "label" : "Ludwigshafen am Rhein", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4001446-0", - "label" : "Alter", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n31400000", - "label" : "o31400000", + "id" : "https://rpb.lobid.org/spatial#n316000000700", + "label" : "o316000000700", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -117,8 +33,8 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn02s0022a", - "label" : "Baum, Herbert" + "id" : "https://d-nb.info/gnd/1123984425", + "label" : "Trautmann, Herbert / 1948-2006" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -126,5 +42,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 119-123" + "bibliographicCitation" : "Die Rheinpfalz / Mittelhaardter Rundschau v. 17.5.1982" } diff --git a/conf/output/test-output-22.json b/conf/output/test-output-22.json index f592baa6..f549c0ee 100644 --- a/conf/output/test-output-22.json +++ b/conf/output/test-output-22.json @@ -1,31 +1,21 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB107t982372", - "id" : "https://lobid.org/resources/RPB107t982372", + "rpbId" : "RPB107t01147878", + "id" : "https://lobid.org/resources/RPB107t01147878", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Zur politischen Tragweite schulischer Medienarbeit : was \"lernen\" Gymnasiasten, wenn sie \"im Auftrag\" eines Berufsinformationszentrums Live-Sendungen für Schüler anderer Schularten produzieren?", - "extent" : "Graph. Darst.", - "note" : [ "Medien-AG d. Wilhelm-von-Humboldt-Gymnasiums" ], - "responsibilityStatement" : [ "Karl-Ludwig Kemen ; Gerhard Laubscher" ], + "title" : "Um- und Ausbau des Hambacher Schlosses von 1979 bis 1982", + "extent" : "Ill.", "publication" : [ { - "startDate" : "1997", + "startDate" : "1982", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n784080", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n882060", + "id" : "http://purl.org/lobid/rpb#n844040", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -34,28 +24,17 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Ludwigshafen am Rhein | Offener Kanal", + "label" : "Hambacher Schloss / Neustadt an der Weinstraße | Geschichte 1979-1982", "componentList" : [ { - "id" : "https://d-nb.info/gnd/4036472-0", - "label" : "Ludwigshafen am Rhein", + "id" : "https://d-nb.info/gnd/4094596-0", + "label" : "Hambacher Schloss / Neustadt an der Weinstraße", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://d-nb.info/gnd/4172489-6", - "label" : "Offener Kanal", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - }, { - "type" : [ "ComplexSubject" ], - "label" : "Wilhelm-von-Humboldt-Gymnasium / Ludwigshafen am Rhein / Medien-AG", - "componentList" : [ { - "id" : "https://rpb.lobid.org/sw/107n220353", - "label" : "Wilhelm-von-Humboldt-Gymnasium / Ludwigshafen am Rhein / Medien-AG", + "id" : "https://rpb.lobid.org/sw/00Sn01s147878357a", + "label" : "Geschichte 1979-1982", "source" : { "id" : "http://rpb.lobid.org/sw", "label" : "RPB-Sachsystematik" @@ -63,8 +42,8 @@ } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n31400000", - "label" : "o31400000", + "id" : "https://rpb.lobid.org/spatial#n316000000700", + "label" : "o316000000700", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -73,18 +52,8 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn98s2372a", - "label" : "Kemen, Karl-Ludwig" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" - }, - "type" : [ "Contribution" ] - }, { - "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn98s2372b", - "label" : "Laubscher, Gerhard" + "id" : "https://d-nb.info/gnd/1123984425", + "label" : "Trautmann, Herbert / 1948-2006" }, "role" : { "id" : "http://id.loc.gov/vocabulary/relators/aut", @@ -92,5 +61,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 124-144" + "bibliographicCitation" : "Die Pfalz am Rhein . - 55 (1982), S. 175-180" } diff --git a/conf/output/test-output-23.json b/conf/output/test-output-23.json index d6cc7535..bc984bc3 100644 --- a/conf/output/test-output-23.json +++ b/conf/output/test-output-23.json @@ -1,23 +1,28 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982373", - "id" : "https://lobid.org/resources/RPB107t982373", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB107t982370", + "id" : "https://lobid.org/resources/RPB107t982370", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "SWR-3-Clubmagazin", - "note" : [ "Vorgänger u.d.T.: On" ], + "title" : "\"¬Der¬ Holocaust ist immer da\": Kooperationsprojekt Offener Kanal Ludwigshafen, Vorderpfalz und Community Television, Israel", "publication" : [ { - "location" : [ "Baden-Baden" ], - "startDate" : "1998", - "publishedBy" : [ "Südwestrundfunk-Media-GmbH" ], + "startDate" : "1997", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n882040", + "id" : "http://purl.org/lobid/rpb#n632050", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "id" : "http://purl.org/lobid/rpb#n882060", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -26,24 +31,24 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Südwestrundfunk | Geschichte 1945- | Zeitschrift", + "label" : "Ludwigshafen am Rhein | Offener Kanal | Judenvernichtung", "componentList" : [ { - "id" : "https://d-nb.info/gnd/5295938-7", - "label" : "Südwestrundfunk", + "id" : "https://d-nb.info/gnd/4036472-0", + "label" : "Ludwigshafen am Rhein", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", + "id" : "https://d-nb.info/gnd/4172489-6", + "label" : "Offener Kanal", "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", + "id" : "https://d-nb.info/gnd/4073091-8", + "label" : "Judenvernichtung", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" @@ -51,8 +56,8 @@ } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n01", - "label" : "_r01_", + "id" : "https://rpb.lobid.org/spatial#n31400000", + "label" : "o31400000", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -61,13 +66,14 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/5331496-7", - "label" : "SWR-3-Club" + "id" : "https://d-nb.info/gnd/106837800X", + "label" : "Minor, Ulrike" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "HE Urheber" + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" }, "type" : [ "Contribution" ] - } ] + } ], + "bibliographicCitation" : "Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 102-106" } diff --git a/conf/output/test-output-24.json b/conf/output/test-output-24.json index 70331c0c..a0ea6f05 100644 --- a/conf/output/test-output-24.json +++ b/conf/output/test-output-24.json @@ -1,23 +1,130 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982373", - "label" : "SWR-3-Clubmagazin" - } ], - "numbering" : "1998,1(Sept.) -" - } ], - "rpbId" : "RPB107t982373b1", - "id" : "https://lobid.org/resources/RPB107t982373b1", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB107t982371", + "id" : "https://lobid.org/resources/RPB107t982371", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "SWR-3-Clubmagazin | 1998,1(Sept.) -", + "title" : "Ältere Menschen machen Fernsehen : aktivierende Medienarbeit in Offenen Kanälen", + "note" : [ "Videoprojekt zwischen Volkshochschule u. Offener Kanal" ], "publication" : [ { + "startDate" : "1997", "type" : [ "PublicationEvent" ] - } ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n786000", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "id" : "http://purl.org/lobid/rpb#n882060", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Ludwigshafen am Rhein | Volkshochschule | Geschichte 1945-", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4036472-0", + "label" : "Ludwigshafen am Rhein", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4136151-9", + "label" : "Volkshochschule", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + }, { + "type" : [ "ComplexSubject" ], + "label" : "Ludwigshafen am Rhein | Offener Kanal | Geschichte 1945-", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4036472-0", + "label" : "Ludwigshafen am Rhein", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4172489-6", + "label" : "Offener Kanal", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + }, { + "type" : [ "ComplexSubject" ], + "label" : "Ludwigshafen am Rhein | Alter | Geschichte 1945-", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4036472-0", + "label" : "Ludwigshafen am Rhein", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4001446-0", + "label" : "Alter", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n31400000", + "label" : "o31400000", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://rpb.lobid.org/agent/00Pn02s0022a", + "label" : "Baum, Herbert" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + } ], + "bibliographicCitation" : "Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 119-123" } diff --git a/conf/output/test-output-25.json b/conf/output/test-output-25.json index 391f1aa6..f592baa6 100644 --- a/conf/output/test-output-25.json +++ b/conf/output/test-output-25.json @@ -1,24 +1,31 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982374", - "id" : "https://lobid.org/resources/RPB107t982374", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB107t982372", + "id" : "https://lobid.org/resources/RPB107t982372", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "On : SWF 3, das Magazin", - "note" : [ "Ersch. früher in: Offenburg : Opal-Verl. [1995,2]" ], - "responsibilityStatement" : [ "hrsg. von: SWF 3, Der Club" ], + "title" : "Zur politischen Tragweite schulischer Medienarbeit : was \"lernen\" Gymnasiasten, wenn sie \"im Auftrag\" eines Berufsinformationszentrums Live-Sendungen für Schüler anderer Schularten produzieren?", + "extent" : "Graph. Darst.", + "note" : [ "Medien-AG d. Wilhelm-von-Humboldt-Gymnasiums" ], + "responsibilityStatement" : [ "Karl-Ludwig Kemen ; Gerhard Laubscher" ], "publication" : [ { - "location" : [ "Rastatt" ], - "startDate" : "1992", - "publishedBy" : [ "Pabel-Moewig" ], + "startDate" : "1997", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n882040", + "id" : "http://purl.org/lobid/rpb#n784080", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "id" : "http://purl.org/lobid/rpb#n882060", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -27,33 +34,37 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "SWF 3 | Geschichte 1945- | Zeitschrift", + "label" : "Ludwigshafen am Rhein | Offener Kanal", "componentList" : [ { - "id" : "https://d-nb.info/gnd/4264102-0", - "label" : "SWF 3", + "id" : "https://d-nb.info/gnd/4036472-0", + "label" : "Ludwigshafen am Rhein", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", + "id" : "https://d-nb.info/gnd/4172489-6", + "label" : "Offener Kanal", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } } ] + }, { + "type" : [ "ComplexSubject" ], + "label" : "Wilhelm-von-Humboldt-Gymnasium / Ludwigshafen am Rhein / Medien-AG", + "componentList" : [ { + "id" : "https://rpb.lobid.org/sw/107n220353", + "label" : "Wilhelm-von-Humboldt-Gymnasium / Ludwigshafen am Rhein / Medien-AG", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n01", - "label" : "_r01_", + "id" : "https://rpb.lobid.org/spatial#n31400000", + "label" : "o31400000", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -62,13 +73,24 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/5166552-9", - "label" : "SWF 3, Der Club" + "id" : "https://rpb.lobid.org/agent/00Pn98s2372a", + "label" : "Kemen, Karl-Ludwig" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" }, "type" : [ "Contribution" ] - } ] + }, { + "agent" : { + "id" : "https://rpb.lobid.org/agent/00Pn98s2372b", + "label" : "Laubscher, Gerhard" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + } ], + "bibliographicCitation" : "Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 124-144" } diff --git a/conf/output/test-output-26.json b/conf/output/test-output-26.json index 9e04f481..d6cc7535 100644 --- a/conf/output/test-output-26.json +++ b/conf/output/test-output-26.json @@ -1,24 +1,73 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982374", - "label" : "On : SWF 3, das Magazin" - } ], - "numbering" : "1992 - 1998,2" - } ], - "rpbId" : "RPB107t982374b1", - "id" : "https://lobid.org/resources/RPB107t982374b1", + "type" : [ "BibliographicResource", "MultiVolumeBook" ], + "rpbId" : "RPB107t982373", + "id" : "https://lobid.org/resources/RPB107t982373", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "On : SWF 3, das Magazin | 1992 - 1998,2", - "note" : [ "Damit Erscheinen eingest. - Forts. u.d.T.: SWR-3-Clubmagazin" ], + "title" : "SWR-3-Clubmagazin", + "note" : [ "Vorgänger u.d.T.: On" ], "publication" : [ { + "location" : [ "Baden-Baden" ], + "startDate" : "1998", + "publishedBy" : [ "Südwestrundfunk-Media-GmbH" ], "type" : [ "PublicationEvent" ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n882040", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Südwestrundfunk | Geschichte 1945- | Zeitschrift", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/5295938-7", + "label" : "Südwestrundfunk", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4067488-5", + "label" : "Zeitschrift", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n01", + "label" : "_r01_", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/5331496-7", + "label" : "SWR-3-Club" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "HE Urheber" + }, + "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-27.json b/conf/output/test-output-27.json index 5cfaecb6..70331c0c 100644 --- a/conf/output/test-output-27.json +++ b/conf/output/test-output-27.json @@ -1,76 +1,23 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982375", - "id" : "https://lobid.org/resources/RPB107t982375", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982373", + "label" : "SWR-3-Clubmagazin" + } ], + "numbering" : "1998,1(Sept.) -" + } ], + "rpbId" : "RPB107t982373b1", + "id" : "https://lobid.org/resources/RPB107t982373b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz", - "note" : [ "Vorgänger u.d.T.: Südwestfunk : Südwestfunk-Journal" ], + "title" : "SWR-3-Clubmagazin | 1998,1(Sept.) -", "publication" : [ { - "location" : [ "Stuttgart" ], - "startDate" : "1998", - "publishedBy" : [ "SWR" ], "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n882030", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Südwestrundfunk | Zeitschrift", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/5295938-7", - "label" : "Südwestrundfunk", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n01", - "label" : "_r01_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/5295938-7", - "label" : "Südwestrundfunk" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "HE Urheber" - }, - "type" : [ "Contribution" ] - }, { - "agent" : { - "id" : "https://d-nb.info/gnd/Südwestrundfunk", - "label" : "Südwestrundfunk" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "HE Urheber" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-28.json b/conf/output/test-output-28.json index 4ee2a79f..391f1aa6 100644 --- a/conf/output/test-output-28.json +++ b/conf/output/test-output-28.json @@ -1,24 +1,74 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982375", - "label" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz" - } ], - "numbering" : "1998,1(Sept.) - 2001,9(Sept.)" - } ], - "rpbId" : "RPB107t982375b1", - "id" : "https://lobid.org/resources/RPB107t982375b1", + "type" : [ "BibliographicResource", "MultiVolumeBook" ], + "rpbId" : "RPB107t982374", + "id" : "https://lobid.org/resources/RPB107t982374", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz | 1998,1(Sept.) - 2001,9(Sept.)", - "note" : [ "Forts. u.d.T.: Doppelpfeil" ], + "title" : "On : SWF 3, das Magazin", + "note" : [ "Ersch. früher in: Offenburg : Opal-Verl. [1995,2]" ], + "responsibilityStatement" : [ "hrsg. von: SWF 3, Der Club" ], "publication" : [ { + "location" : [ "Rastatt" ], + "startDate" : "1992", + "publishedBy" : [ "Pabel-Moewig" ], "type" : [ "PublicationEvent" ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n882040", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "SWF 3 | Geschichte 1945- | Zeitschrift", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4264102-0", + "label" : "SWF 3", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4067488-5", + "label" : "Zeitschrift", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n01", + "label" : "_r01_", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/5166552-9", + "label" : "SWF 3, Der Club" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "NE hrsg. Körperschaft" + }, + "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-29.json b/conf/output/test-output-29.json index afbb0666..9e04f481 100644 --- a/conf/output/test-output-29.json +++ b/conf/output/test-output-29.json @@ -1,73 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982376", - "id" : "https://lobid.org/resources/RPB107t982376", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982374", + "label" : "On : SWF 3, das Magazin" + } ], + "numbering" : "1992 - 1998,2" + } ], + "rpbId" : "RPB107t982374b1", + "id" : "https://lobid.org/resources/RPB107t982374b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte", - "responsibilityStatement" : [ "Institut für Angewandte Vogelkunde, Staatliche Vogelschutzwarte für Hessen, Rheinland-Pfalz und Saarland" ], + "title" : "On : SWF 3, das Magazin | 1992 - 1998,2", + "note" : [ "Damit Erscheinen eingest. - Forts. u.d.T.: SWR-3-Clubmagazin" ], "publication" : [ { - "location" : [ "Frankfurt/Main" ], - "startDate" : "1997", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n163080", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n584060", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Geschichte 1945- | Zeitschrift", - "componentList" : [ { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n01", - "label" : "_r01_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/1033772-6", - "label" : "Staatliche Vogelschutzwarte für Hessen, Rheinland-Pfalz und Saarland / Frankfurt, Main" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-3.json b/conf/output/test-output-3.json index dbb7a4c0..34fcee77 100644 --- a/conf/output/test-output-3.json +++ b/conf/output/test-output-3.json @@ -1,14 +1,14 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121515", - "id" : "https://lobid.org/resources/RPB036t0121515", + "rpbId" : "RPB036t0121512", + "id" : "https://lobid.org/resources/RPB036t0121512", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Souvenir ...", + "title" : "Serenissimus befehlen zu prügeln", "publication" : [ { "startDate" : "1963", "type" : [ "PublicationEvent" ] @@ -24,5 +24,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 8 (1963), Nr. 1" + "bibliographicCitation" : "Heimat am Mittelrhein. - 8 (1963), Nr. 6" } diff --git a/conf/output/test-output-30.json b/conf/output/test-output-30.json index 016590f8..5cfaecb6 100644 --- a/conf/output/test-output-30.json +++ b/conf/output/test-output-30.json @@ -1,23 +1,76 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982376", - "label" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte" - } ], - "numbering" : "Ausg. 1.1997(Dez.) -" - } ], - "rpbId" : "RPB107t982376b1", - "id" : "https://lobid.org/resources/RPB107t982376b1", + "type" : [ "BibliographicResource", "MultiVolumeBook" ], + "rpbId" : "RPB107t982375", + "id" : "https://lobid.org/resources/RPB107t982375", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte | Ausg. 1.1997(Dez.) -", + "title" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz", + "note" : [ "Vorgänger u.d.T.: Südwestfunk : Südwestfunk-Journal" ], "publication" : [ { + "location" : [ "Stuttgart" ], + "startDate" : "1998", + "publishedBy" : [ "SWR" ], "type" : [ "PublicationEvent" ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n882030", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Südwestrundfunk | Zeitschrift", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/5295938-7", + "label" : "Südwestrundfunk", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4067488-5", + "label" : "Zeitschrift", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n01", + "label" : "_r01_", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/5295938-7", + "label" : "Südwestrundfunk" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "HE Urheber" + }, + "type" : [ "Contribution" ] + }, { + "agent" : { + "id" : "https://d-nb.info/gnd/Südwestrundfunk", + "label" : "Südwestrundfunk" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "HE Urheber" + }, + "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-31.json b/conf/output/test-output-31.json index 8bd577e5..4ee2a79f 100644 --- a/conf/output/test-output-31.json +++ b/conf/output/test-output-31.json @@ -1,80 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982377", - "id" : "https://lobid.org/resources/RPB107t982377", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982375", + "label" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz" + } ], + "numbering" : "1998,1(Sept.) - 2001,9(Sept.)" + } ], + "rpbId" : "RPB107t982375b1", + "id" : "https://lobid.org/resources/RPB107t982375b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Der¬ Rasenspieler : das Journal zur Saison ...", - "responsibilityStatement" : [ "VFR Speyer 1950 e.V." ], + "title" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz | 1998,1(Sept.) - 2001,9(Sept.)", + "note" : [ "Forts. u.d.T.: Doppelpfeil" ], "publication" : [ { - "location" : [ "Speyer" ], - "startDate" : "1998", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n736050", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n882026", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Verein für Rasenspiele Speyer 1950 | Geschichte 1945- | Zeitschrift", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/5325261-5", - "label" : "Verein für Rasenspiele Speyer 1950", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n31800000", - "label" : "o31800000", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/5325261-5", - "label" : "Verein für Rasenspiele Speyer 1950" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-32.json b/conf/output/test-output-32.json index 4297a20e..afbb0666 100644 --- a/conf/output/test-output-32.json +++ b/conf/output/test-output-32.json @@ -1,24 +1,73 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982377", - "label" : "¬Der¬ Rasenspieler : das Journal zur Saison ..." - } ], - "numbering" : "Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03" - } ], - "rpbId" : "RPB107t982377b1", - "id" : "https://lobid.org/resources/RPB107t982377b1", + "type" : [ "BibliographicResource", "MultiVolumeBook" ], + "rpbId" : "RPB107t982376", + "id" : "https://lobid.org/resources/RPB107t982376", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Der¬ Rasenspieler : das Journal zur Saison ... | Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03", - "note" : [ "Damit Erscheinen eingest." ], + "title" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte", + "responsibilityStatement" : [ "Institut für Angewandte Vogelkunde, Staatliche Vogelschutzwarte für Hessen, Rheinland-Pfalz und Saarland" ], "publication" : [ { + "location" : [ "Frankfurt/Main" ], + "startDate" : "1997", "type" : [ "PublicationEvent" ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n163080", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "id" : "http://purl.org/lobid/rpb#n584060", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Geschichte 1945- | Zeitschrift", + "componentList" : [ { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4067488-5", + "label" : "Zeitschrift", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n01", + "label" : "_r01_", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/1033772-6", + "label" : "Staatliche Vogelschutzwarte für Hessen, Rheinland-Pfalz und Saarland / Frankfurt, Main" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "NE hrsg. Körperschaft" + }, + "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-33.json b/conf/output/test-output-33.json index 094607fa..016590f8 100644 --- a/conf/output/test-output-33.json +++ b/conf/output/test-output-33.json @@ -1,64 +1,23 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982378", - "id" : "https://lobid.org/resources/RPB107t982378", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982376", + "label" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte" + } ], + "numbering" : "Ausg. 1.1997(Dez.) -" + } ], + "rpbId" : "RPB107t982376b1", + "id" : "https://lobid.org/resources/RPB107t982376b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen", + "title" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte | Ausg. 1.1997(Dez.) -", "publication" : [ { - "location" : [ "Ebertsheim-Rodenbach" ], - "startDate" : "1998", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n882026", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Geschichte 1945- | Zeitschrift", - "componentList" : [ { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n332070120200", - "label" : "o332070120200", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/7832695-3", - "label" : "Ebertsheim-Rodenbach" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-34.json b/conf/output/test-output-34.json index c204ed8b..8bd577e5 100644 --- a/conf/output/test-output-34.json +++ b/conf/output/test-output-34.json @@ -1,24 +1,80 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982378", - "label" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen" - } ], - "numbering" : "1998,Apr." - } ], - "rpbId" : "RPB107t982378b1", - "id" : "https://lobid.org/resources/RPB107t982378b1", + "type" : [ "BibliographicResource", "MultiVolumeBook" ], + "rpbId" : "RPB107t982377", + "id" : "https://lobid.org/resources/RPB107t982377", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen | 1998,Apr.", - "note" : [ "Mit dieser Ausg. Erscheinen eingest." ], + "title" : "¬Der¬ Rasenspieler : das Journal zur Saison ...", + "responsibilityStatement" : [ "VFR Speyer 1950 e.V." ], "publication" : [ { + "location" : [ "Speyer" ], + "startDate" : "1998", "type" : [ "PublicationEvent" ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n736050", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "id" : "http://purl.org/lobid/rpb#n882026", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Verein für Rasenspiele Speyer 1950 | Geschichte 1945- | Zeitschrift", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/5325261-5", + "label" : "Verein für Rasenspiele Speyer 1950", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4067488-5", + "label" : "Zeitschrift", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n31800000", + "label" : "o31800000", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/5325261-5", + "label" : "Verein für Rasenspiele Speyer 1950" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "NE hrsg. Körperschaft" + }, + "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-35.json b/conf/output/test-output-35.json index 121b5275..4297a20e 100644 --- a/conf/output/test-output-35.json +++ b/conf/output/test-output-35.json @@ -1,73 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982379", - "id" : "https://lobid.org/resources/RPB107t982379", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982377", + "label" : "¬Der¬ Rasenspieler : das Journal zur Saison ..." + } ], + "numbering" : "Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03" + } ], + "rpbId" : "RPB107t982377b1", + "id" : "https://lobid.org/resources/RPB107t982377b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Wer ist wo", - "note" : [ "Adressen- u. Personenverz." ], - "responsibilityStatement" : [ "Universität Kaiserslautern" ], + "title" : "¬Der¬ Rasenspieler : das Journal zur Saison ... | Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03", + "note" : [ "Damit Erscheinen eingest." ], "publication" : [ { - "location" : [ "Kaiserslautern" ], - "startDate" : "1995", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n794010", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Technische Universität Kaiserslautern | Geschichte 1945- | Führer", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/10066624-3", - "label" : "Technische Universität Kaiserslautern", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4155569-7", - "label" : "Führer", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n31200000", - "label" : "o31200000", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/26332-1", - "label" : "Universität Kaiserslautern" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-36.json b/conf/output/test-output-36.json index ba36aae3..094607fa 100644 --- a/conf/output/test-output-36.json +++ b/conf/output/test-output-36.json @@ -1,24 +1,64 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982379", - "label" : "Wer ist wo" - } ], - "numbering" : "1994/95(1995)" - } ], - "rpbId" : "RPB107t982379b1", - "id" : "https://lobid.org/resources/RPB107t982379b1", + "type" : [ "BibliographicResource", "MultiVolumeBook" ], + "rpbId" : "RPB107t982378", + "id" : "https://lobid.org/resources/RPB107t982378", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Wer ist wo | 1994/95(1995)", - "note" : [ "Letzter Jahrgang, damit Erscheinen eingestellt" ], + "title" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen", "publication" : [ { + "location" : [ "Ebertsheim-Rodenbach" ], + "startDate" : "1998", "type" : [ "PublicationEvent" ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n882026", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Geschichte 1945- | Zeitschrift", + "componentList" : [ { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4067488-5", + "label" : "Zeitschrift", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n332070120200", + "label" : "o332070120200", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/7832695-3", + "label" : "Ebertsheim-Rodenbach" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "NE hrsg. Körperschaft" + }, + "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-37.json b/conf/output/test-output-37.json index b0bba0e5..c204ed8b 100644 --- a/conf/output/test-output-37.json +++ b/conf/output/test-output-37.json @@ -1,54 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB929t112192", - "id" : "https://lobid.org/resources/RPB929t112192", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982378", + "label" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen" + } ], + "numbering" : "1998,Apr." + } ], + "rpbId" : "RPB107t982378b1", + "id" : "https://lobid.org/resources/RPB107t982378b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Aus der Vereinsgeschichte der KKG \"Kowelenzer Schängelcher\" 1922 e.V.", - "extent" : "Ill.", + "title" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen | 1998,Apr.", + "note" : [ "Mit dieser Ausg. Erscheinen eingest." ], "publication" : [ { - "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n704043", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "KKG Rot-Weiß-Grün Kowelenzer Schängelcher | Geschichte 1922-2011", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/5114232-6", - "label" : "KKG Rot-Weiß-Grün Kowelenzer Schängelcher", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/00Sn11k2192145a", - "label" : "Geschichte 1922-2011", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n11100000", - "label" : "o11100000", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "bibliographicCitation" : "In: KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher: Sessionsheft. - (2011), Seite 23-33. -" + } ] } diff --git a/conf/output/test-output-38.json b/conf/output/test-output-38.json index 03c7d4ed..121b5275 100644 --- a/conf/output/test-output-38.json +++ b/conf/output/test-output-38.json @@ -1,24 +1,73 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB929t112193", - "label" : "Aktuell : das Krankenhaus in Ihrer Region" - } ], - "numbering" : "Nachgewiesen 2010 - 2012,1" - } ], - "rpbId" : "RPB929t112193b1", - "id" : "https://lobid.org/resources/RPB929t112193b1", + "type" : [ "BibliographicResource", "MultiVolumeBook" ], + "rpbId" : "RPB107t982379", + "id" : "https://lobid.org/resources/RPB107t982379", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Aktuell : das Krankenhaus in Ihrer Region | Nachgewiesen 2010 - 2012,1", - "note" : [ "Nachfolger: Kaleidoskop. 2012 -" ], + "title" : "Wer ist wo", + "note" : [ "Adressen- u. Personenverz." ], + "responsibilityStatement" : [ "Universität Kaiserslautern" ], "publication" : [ { + "location" : [ "Kaiserslautern" ], + "startDate" : "1995", "type" : [ "PublicationEvent" ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n794010", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Technische Universität Kaiserslautern | Geschichte 1945- | Führer", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/10066624-3", + "label" : "Technische Universität Kaiserslautern", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/z64", + "label" : "Geschichte 1945-", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4155569-7", + "label" : "Führer", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n31200000", + "label" : "o31200000", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://d-nb.info/gnd/26332-1", + "label" : "Universität Kaiserslautern" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/isb", + "label" : "NE hrsg. Körperschaft" + }, + "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-39.json b/conf/output/test-output-39.json index fc600481..ba36aae3 100644 --- a/conf/output/test-output-39.json +++ b/conf/output/test-output-39.json @@ -4,19 +4,20 @@ "isPartOf" : [ { "type" : [ "IsPartOfRelation" ], "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB929t112194", - "label" : "Clubzeitung" + "id" : "https://lobid.org/resources/RPB107t982379", + "label" : "Wer ist wo" } ], - "numbering" : "Nachgewiesen 2006,2 -" + "numbering" : "1994/95(1995)" } ], - "rpbId" : "RPB929t112194b1", - "id" : "https://lobid.org/resources/RPB929t112194b1", + "rpbId" : "RPB107t982379b1", + "id" : "https://lobid.org/resources/RPB107t982379b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Clubzeitung | Nachgewiesen 2006,2 -", + "title" : "Wer ist wo | 1994/95(1995)", + "note" : [ "Letzter Jahrgang, damit Erscheinen eingestellt" ], "publication" : [ { "type" : [ "PublicationEvent" ] } ] diff --git a/conf/output/test-output-4.json b/conf/output/test-output-4.json index 11dfdc57..c840d2c1 100644 --- a/conf/output/test-output-4.json +++ b/conf/output/test-output-4.json @@ -1,27 +1,18 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121516", - "id" : "https://lobid.org/resources/RPB036t0121516", + "rpbId" : "RPB036t0121513", + "id" : "https://lobid.org/resources/RPB036t0121513", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Sprendlingen und das Kloster Lorsch", + "title" : "Soldaten für Holland", "publication" : [ { - "startDate" : "1967", + "startDate" : "1957", "type" : [ "PublicationEvent" ] } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n339", - "label" : "o339", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], "contribution" : [ { "agent" : { "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", @@ -33,5 +24,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Landkreis Bingen: Heimat-Jahrbuch. - 1967, S. 23-26" + "bibliographicCitation" : "Heimat am Mittelrhein. - 2 (1957), Nr. 6" } diff --git a/conf/output/test-output-40.json b/conf/output/test-output-40.json index 20c4d5ab..b0bba0e5 100644 --- a/conf/output/test-output-40.json +++ b/conf/output/test-output-40.json @@ -1,21 +1,21 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB929t112195", - "id" : "https://lobid.org/resources/RPB929t112195", + "rpbId" : "RPB929t112192", + "id" : "https://lobid.org/resources/RPB929t112192", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Der¬ BAP kam aus Unkel", + "title" : "Aus der Vereinsgeschichte der KKG \"Kowelenzer Schängelcher\" 1922 e.V.", "extent" : "Ill.", "publication" : [ { "startDate" : "2011", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n824000", + "id" : "http://purl.org/lobid/rpb#n704043", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -24,49 +24,31 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Unkel | Niedecken, Wolfgang / 1951- | Biografie", + "label" : "KKG Rot-Weiß-Grün Kowelenzer Schängelcher | Geschichte 1922-2011", "componentList" : [ { - "id" : "https://d-nb.info/gnd/4061836-5", - "label" : "Unkel", + "id" : "https://d-nb.info/gnd/5114232-6", + "label" : "KKG Rot-Weiß-Grün Kowelenzer Schängelcher", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://d-nb.info/gnd/118942247", - "label" : "Niedecken, Wolfgang / 1951-", + "id" : "https://rpb.lobid.org/sw/00Sn11k2192145a", + "label" : "Geschichte 1922-2011", "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4006804-3", - "label" : "Biografie", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" } } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n13807073", - "label" : "o13807073", + "id" : "https://rpb.lobid.org/spatial#n11100000", + "label" : "o11100000", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", "label" : "RPB-Raumsystematik" } } ], - "contribution" : [ { - "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn08k0685884a", - "label" : "Ruland, Wolfgang" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" - }, - "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "Der Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 16-18" + "bibliographicCitation" : "In: KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher: Sessionsheft. - (2011), Seite 23-33. -" } diff --git a/conf/output/test-output-41.json b/conf/output/test-output-41.json index 2a086099..03c7d4ed 100644 --- a/conf/output/test-output-41.json +++ b/conf/output/test-output-41.json @@ -1,94 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB929t112196", - "id" : "https://lobid.org/resources/RPB929t112196", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB929t112193", + "label" : "Aktuell : das Krankenhaus in Ihrer Region" + } ], + "numbering" : "Nachgewiesen 2010 - 2012,1" + } ], + "rpbId" : "RPB929t112193b1", + "id" : "https://lobid.org/resources/RPB929t112193b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Coming home mit Commende", - "extent" : "Ill.", + "title" : "Aktuell : das Krankenhaus in Ihrer Region | Nachgewiesen 2010 - 2012,1", + "note" : [ "Nachfolger: Kaleidoskop. 2012 -" ], "publication" : [ { - "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n844200", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n844000", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Deutscher Orden / Kommende Waldbreitbach | Denkmalschutz | Schicker, Viktor | Private Investition | Geschichte 2009-2011", - "componentList" : [ { - "id" : "https://rpb.lobid.org/sw/929n090287", - "label" : "Deutscher Orden / Kommende Waldbreitbach", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4011457-0", - "label" : "Denkmalschutz", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/00Sn09k1362487a", - "label" : "Schicker, Viktor", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4454409-1", - "label" : "Private Investition", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/00Sn09m0508511a", - "label" : "Geschichte 2009-2011", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n13809076", - "label" : "o13809076", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn08k0685884a", - "label" : "Ruland, Wolfgang" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" - }, - "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "Der Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 26-27" + } ] } diff --git a/conf/output/test-output-42.json b/conf/output/test-output-42.json index 7484116b..fc600481 100644 --- a/conf/output/test-output-42.json +++ b/conf/output/test-output-42.json @@ -1,65 +1,23 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB929t112197", - "id" : "https://lobid.org/resources/RPB929t112197", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB929t112194", + "label" : "Clubzeitung" + } ], + "numbering" : "Nachgewiesen 2006,2 -" + } ], + "rpbId" : "RPB929t112194b1", + "id" : "https://lobid.org/resources/RPB929t112194b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Seit 1911 weht im Vinzenzhaus der Geist der Nächstenliebe : 100-Jahr-Feier in Gebhardshain ; vom Konvent zum Seniorenheim", - "extent" : "Ill.", + "title" : "Clubzeitung | Nachgewiesen 2006,2 -", "publication" : [ { - "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n611070", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Alten- und Pflegeheim St.-Vinzenzhaus / Gebhardshain | Geschichte 1911-2011", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/16326855-1", - "label" : "Alten- und Pflegeheim St.-Vinzenzhaus / Gebhardshain", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/00Sn10s3817103a", - "label" : "Geschichte 1911-2011", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n13209039", - "label" : "o13209039", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://rpb.lobid.org/agent/929n991002", - "label" : "Weger, Joachim" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" - }, - "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "In: Rhein-Zeitung, Ausg. H. - 66 (2011), 126 vom 31.05., Seite 24. -" + } ] } diff --git a/conf/output/test-output-43.json b/conf/output/test-output-43.json index e69de29b..20c4d5ab 100644 --- a/conf/output/test-output-43.json +++ b/conf/output/test-output-43.json @@ -0,0 +1,72 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112195", + "id" : "https://lobid.org/resources/RPB929t112195", + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "type" : [ "Collection" ], + "label" : "Rheinland-Pfälzische Bibliographie" + } ], + "title" : "¬Der¬ BAP kam aus Unkel", + "extent" : "Ill.", + "publication" : [ { + "startDate" : "2011", + "type" : [ "PublicationEvent" ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n824000", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Unkel | Niedecken, Wolfgang / 1951- | Biografie", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4061836-5", + "label" : "Unkel", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/118942247", + "label" : "Niedecken, Wolfgang / 1951-", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4006804-3", + "label" : "Biografie", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n13807073", + "label" : "o13807073", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://rpb.lobid.org/agent/00Pn08k0685884a", + "label" : "Ruland, Wolfgang" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + } ], + "bibliographicCitation" : "Der Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 16-18" +} diff --git a/conf/output/test-output-44.json b/conf/output/test-output-44.json index 121b5275..2a086099 100644 --- a/conf/output/test-output-44.json +++ b/conf/output/test-output-44.json @@ -1,23 +1,29 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982379", - "id" : "https://lobid.org/resources/RPB107t982379", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112196", + "id" : "https://lobid.org/resources/RPB929t112196", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Wer ist wo", - "note" : [ "Adressen- u. Personenverz." ], - "responsibilityStatement" : [ "Universität Kaiserslautern" ], + "title" : "Coming home mit Commende", + "extent" : "Ill.", "publication" : [ { - "location" : [ "Kaiserslautern" ], - "startDate" : "1995", + "startDate" : "2011", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n794010", + "id" : "http://purl.org/lobid/rpb#n844200", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "id" : "http://purl.org/lobid/rpb#n844000", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -26,33 +32,47 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Technische Universität Kaiserslautern | Geschichte 1945- | Führer", + "label" : "Deutscher Orden / Kommende Waldbreitbach | Denkmalschutz | Schicker, Viktor | Private Investition | Geschichte 2009-2011", "componentList" : [ { - "id" : "https://d-nb.info/gnd/10066624-3", - "label" : "Technische Universität Kaiserslautern", + "id" : "https://rpb.lobid.org/sw/929n090287", + "label" : "Deutscher Orden / Kommende Waldbreitbach", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4011457-0", + "label" : "Denkmalschutz", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", + "id" : "https://rpb.lobid.org/sw/00Sn09k1362487a", + "label" : "Schicker, Viktor", "source" : { "id" : "http://rpb.lobid.org/sw", "label" : "RPB-Sachsystematik" } }, { - "id" : "https://d-nb.info/gnd/4155569-7", - "label" : "Führer", + "id" : "https://d-nb.info/gnd/4454409-1", + "label" : "Private Investition", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } + }, { + "id" : "https://rpb.lobid.org/sw/00Sn09m0508511a", + "label" : "Geschichte 2009-2011", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n31200000", - "label" : "o31200000", + "id" : "https://rpb.lobid.org/spatial#n13809076", + "label" : "o13809076", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -61,13 +81,14 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/26332-1", - "label" : "Universität Kaiserslautern" + "id" : "https://rpb.lobid.org/agent/00Pn08k0685884a", + "label" : "Ruland, Wolfgang" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" }, "type" : [ "Contribution" ] - } ] + } ], + "bibliographicCitation" : "Der Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 26-27" } diff --git a/conf/output/test-output-45.json b/conf/output/test-output-45.json index ba36aae3..7484116b 100644 --- a/conf/output/test-output-45.json +++ b/conf/output/test-output-45.json @@ -1,24 +1,65 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982379", - "label" : "Wer ist wo" - } ], - "numbering" : "1994/95(1995)" - } ], - "rpbId" : "RPB107t982379b1", - "id" : "https://lobid.org/resources/RPB107t982379b1", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112197", + "id" : "https://lobid.org/resources/RPB929t112197", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Wer ist wo | 1994/95(1995)", - "note" : [ "Letzter Jahrgang, damit Erscheinen eingestellt" ], + "title" : "Seit 1911 weht im Vinzenzhaus der Geist der Nächstenliebe : 100-Jahr-Feier in Gebhardshain ; vom Konvent zum Seniorenheim", + "extent" : "Ill.", "publication" : [ { + "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n611070", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Alten- und Pflegeheim St.-Vinzenzhaus / Gebhardshain | Geschichte 1911-2011", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/16326855-1", + "label" : "Alten- und Pflegeheim St.-Vinzenzhaus / Gebhardshain", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/00Sn10s3817103a", + "label" : "Geschichte 1911-2011", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n13209039", + "label" : "o13209039", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://rpb.lobid.org/agent/929n991002", + "label" : "Weger, Joachim" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + } ], + "bibliographicCitation" : "In: Rhein-Zeitung, Ausg. H. - 66 (2011), 126 vom 31.05., Seite 24. -" } diff --git a/conf/output/test-output-46.json b/conf/output/test-output-46.json index 465a6097..e69de29b 100644 --- a/conf/output/test-output-46.json +++ b/conf/output/test-output-46.json @@ -1,93 +0,0 @@ -{ - "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "rpbId" : "RPB929t112190", - "id" : "https://lobid.org/resources/RPB929t112190", - "hbzId" : "HT016832268", - "inCollection" : [ { - "id" : "http://lobid.org/resources/HT013494180#!", - "type" : [ "Collection" ], - "label" : "Rheinland-Pfälzische Bibliographie" - } ], - "title" : "[Kalender] 2011", - "extent" : "[13] Bl. : überw. Ill. ; 292 x 420 mm", - "publication" : [ { - "location" : [ "[Boppard]" ], - "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n102045", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Mittelrheintal / Süd | Kalender", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4221819-6", - "label" : "Mittelrheintal / Süd", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4029290-3", - "label" : "Kalender", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - }, { - "type" : [ "ComplexSubject" ], - "label" : "Briefmarkenserie | Kalender", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4335389-7", - "label" : "Briefmarkenserie", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4029290-3", - "label" : "Kalender", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://d-nb.info/gnd/4221819-6", - "label" : "Mittelrheintal / Süd", - "type" : [ "PlaceOrGeographicName" ], - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/10366667-9", - "label" : "Sebapharma GmbH & Co. KG / Boppard" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "HE Urheber" - }, - "type" : [ "Contribution" ] - }, { - "agent" : { - "id" : "https://d-nb.info/gnd/[Sebapharma GmbH & Co. KG, Boppard]", - "label" : "[Sebapharma GmbH & Co. KG, Boppard]" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "HE Urheber" - }, - "type" : [ "Contribution" ] - } ] -} diff --git a/conf/output/test-output-5.json b/conf/output/test-output-5.json index d48cb013..828fd7f2 100644 --- a/conf/output/test-output-5.json +++ b/conf/output/test-output-5.json @@ -1,16 +1,16 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121517", - "id" : "https://lobid.org/resources/RPB036t0121517", + "rpbId" : "RPB036t0121514", + "id" : "https://lobid.org/resources/RPB036t0121514", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Sprendlingens Einwohnerzahl", + "title" : "Sonnenuhr an der Kirche", "publication" : [ { - "startDate" : "1959", + "startDate" : "1958", "type" : [ "PublicationEvent" ] } ], "contribution" : [ { @@ -24,5 +24,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 4 (1959), Nr. 1" + "bibliographicCitation" : "Heimat am Mittelrhein. - 3 (1958), Nr. 11" } diff --git a/conf/output/test-output-6.json b/conf/output/test-output-6.json index df4d4e4c..dbb7a4c0 100644 --- a/conf/output/test-output-6.json +++ b/conf/output/test-output-6.json @@ -1,16 +1,16 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121518", - "id" : "https://lobid.org/resources/RPB036t0121518", + "rpbId" : "RPB036t0121515", + "id" : "https://lobid.org/resources/RPB036t0121515", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Sprendlinger Chronik", + "title" : "Souvenir ...", "publication" : [ { - "startDate" : "1965", + "startDate" : "1963", "type" : [ "PublicationEvent" ] } ], "contribution" : [ { @@ -24,5 +24,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 10 (1965), Nr. 2 und Heimat am Mittelrhein 1965, S. 10" + "bibliographicCitation" : "Heimat am Mittelrhein. - 8 (1963), Nr. 1" } diff --git a/conf/output/test-output-7.json b/conf/output/test-output-7.json index 767c002b..11dfdc57 100644 --- a/conf/output/test-output-7.json +++ b/conf/output/test-output-7.json @@ -1,18 +1,27 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121519", - "id" : "https://lobid.org/resources/RPB036t0121519", + "rpbId" : "RPB036t0121516", + "id" : "https://lobid.org/resources/RPB036t0121516", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Sprendlinger kämpften unter Napoleon", + "title" : "Sprendlingen und das Kloster Lorsch", "publication" : [ { - "startDate" : "1963", + "startDate" : "1967", "type" : [ "PublicationEvent" ] } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n339", + "label" : "o339", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], "contribution" : [ { "agent" : { "id" : "https://rpb.lobid.org/agent/00Pn01m21445842a", @@ -24,5 +33,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 8 (1963), Nr. 12" + "bibliographicCitation" : "Landkreis Bingen: Heimat-Jahrbuch. - 1967, S. 23-26" } diff --git a/conf/output/test-output-8.json b/conf/output/test-output-8.json index 57373064..d48cb013 100644 --- a/conf/output/test-output-8.json +++ b/conf/output/test-output-8.json @@ -1,16 +1,16 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121520", - "id" : "https://lobid.org/resources/RPB036t0121520", + "rpbId" : "RPB036t0121517", + "id" : "https://lobid.org/resources/RPB036t0121517", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Sprendlinger Stifter und ihre Familien", + "title" : "Sprendlingens Einwohnerzahl", "publication" : [ { - "startDate" : "1983", + "startDate" : "1959", "type" : [ "PublicationEvent" ] } ], "contribution" : [ { @@ -24,5 +24,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 1983, H. 2" + "bibliographicCitation" : "Heimat am Mittelrhein. - 4 (1959), Nr. 1" } diff --git a/conf/output/test-output-9.json b/conf/output/test-output-9.json index ed42c2aa..df4d4e4c 100644 --- a/conf/output/test-output-9.json +++ b/conf/output/test-output-9.json @@ -1,16 +1,16 @@ { "@context" : "http://lobid.org/resources/context.jsonld", "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB036t0121521", - "id" : "https://lobid.org/resources/RPB036t0121521", + "rpbId" : "RPB036t0121518", + "id" : "https://lobid.org/resources/RPB036t0121518", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Steuern in alter Zeit", + "title" : "Sprendlinger Chronik", "publication" : [ { - "startDate" : "1957", + "startDate" : "1965", "type" : [ "PublicationEvent" ] } ], "contribution" : [ { @@ -24,5 +24,5 @@ }, "type" : [ "Contribution" ] } ], - "bibliographicCitation" : "Heimat am Mittelrhein. - 2 (1957), Nr. 12" + "bibliographicCitation" : "Heimat am Mittelrhein. - 10 (1965), Nr. 2 und Heimat am Mittelrhein 1965, S. 10" } diff --git a/conf/output/test-output-strapi.json b/conf/output/test-output-strapi.json index 4cdbec15..0abbeb12 100644 --- a/conf/output/test-output-strapi.json +++ b/conf/output/test-output-strapi.json @@ -1,3 +1,6 @@ +{"f00_":"929t112200","f20_":"Palatinatus Rheni [Elektronische Ressource] : [Ca. 1:1 900 000]","f30_":"_sn126000_","f31_":"_r07_","f32_":"_4076031n5_ ; _4611904n8_ ; _4511937n5_","f35_":"_r07_ ; _sn126000_","f36_":"u","f37_":"_sn126000_ ; _r07_","f39_":"[Hondius, Jodocus]","f57_":"_00Pn11k2200547a_","f70_":"Bertius, Petrus : P. Bertii Tabularum geographicarum contractarum libri septem; 456","f74_":"Amstelodami","f75_":"Judocus Hondius","f76a":"1618","f76b":"1618","f77_":"1 Kt. : Kupferstich ; 13 x 9 cm","f81_":"Maßstab in graph. Form (Milliaria German.), Titelkartusche und Maßstabsleiste oben rechts - rückseitig lateinischer Text","f90e":"https://nbn-resolving.org/urn:nbn:de:hbz:061:1-68551","f95_":"20110601/09:58:59\u001FHBZ","f96_":"20171026/11:24:55\u001FSP","f983":"CT003010348","f30":[{"f30_":"_sn126000_"}],"f31":[{"f31_":"_r07_"}],"f32":[{"f32_":"_4076031n5_ ; _4611904n8_ ; _4511937n5_"}],"f81":[{"f81_":"Maßstab in graph. Form (Milliaria German.), Titelkartusche und Maßstabsleiste oben rechts - rückseitig lateinischer Text"}],"f90":[{"f90_":"https://nbn-resolving.org/urn:nbn:de:hbz:061:1-68551","n90a":"Volltext"}],"f40":[{"f40_":"_00Pn11k2200547a_","n40a":"Sonstige"}]} +{"f00_":"929t112201","f20_":"Coloniensis Dioecesis [Elektronische Ressource] : [Ca. 1:1 300 000]","f30_":"_sn126000_","f31_":"_r34_","f32_":"_2029646n0_ ; _4611904n8_ ; _4511937n5_","f35_":"_r34_ ; _sn126000_","f36_":"u","f37_":"_sn126000_ ; _r34_","f39_":"[Hondius, Jodocus]","f57_":"_00Pn11k2200547a_","f70_":"Bertius, Petrus : P. Bertii Tabularum geographicarum contractarum libri septem; 380","f74_":"Amstelodami","f75_":"Judocus Hondius","f76a":"1618","f76b":"1618","f77_":"1 Kt. : Kupferstich ; 13 x 9 cm","f81_":"O oben. - Maßstab in graph. Form (Miliaria Germ.), Titelkartusche und Maßstabsleiste unten links - rückseitig lateinischer Text","f90e":"https://nbn-resolving.org/urn:nbn:de:hbz:061:1-70507","f95_":"20110601/10:02:46\u001FHBZ","f96_":"20171026/11:24:39\u001FSP","f983":"CT003010543","f30":[{"f30_":"_sn126000_"}],"f31":[{"f31_":"_r34_"}],"f32":[{"f32_":"_2029646n0_ ; _4611904n8_ ; _4511937n5_"}],"f81":[{"f81_":"O oben. - Maßstab in graph. Form (Miliaria Germ.), Titelkartusche und Maßstabsleiste unten links - rückseitig lateinischer Text"}],"f90":[{"f90_":"https://nbn-resolving.org/urn:nbn:de:hbz:061:1-70507","n90a":"Volltext"}],"f40":[{"f40_":"_00Pn11k2200547a_","n40a":"Sonstige"}]} +{"f00_":"929t112202","f20_":"Provincia Trevirensis [Elektronische Ressource] : [Ca. 1:1 500 000]","f30_":"_sn126000_","f31_":"_r41_","f32_":"_4060882n7_ ; _4611904n8_ ; _4511937n5_","f35_":"_r41_ ; _sn126000_","f36_":"u","f37_":"_sn126000_ ; _r41_","f39_":"[Hondius, Jodocus]","f57_":"_00Pn11k2200547a_","f70_":"Bertius, Petrus : P. Bertii Tabularum geographicarum contractarum libri septem; 378","f74_":"Amstelodami","f75_":"Judocus Hondius","f76a":"1618","f76b":"1618","f77_":"1 Kt. : Kupferstich ; 13 x 9 cm","f81_":"Maßstab in graph. Form (Miliaria Germanica), Titelkartusche und Maßstabsleiste unten rechts - rückseitig lateinischer Text","f90e":"https://nbn-resolving.org/urn:nbn:de:hbz:061:1-70495","f95_":"20110601/10:37:30\u001FHBZ","f96_":"20171026/11:24:08\u001FSP","f983":"CT003010542","f30":[{"f30_":"_sn126000_"}],"f31":[{"f31_":"_r41_"}],"f32":[{"f32_":"_4060882n7_ ; _4611904n8_ ; _4511937n5_"}],"f81":[{"f81_":"Maßstab in graph. Form (Miliaria Germanica), Titelkartusche und Maßstabsleiste unten rechts - rückseitig lateinischer Text"}],"f90":[{"f90_":"https://nbn-resolving.org/urn:nbn:de:hbz:061:1-70495","n90a":"Volltext"}],"f40":[{"f40_":"_00Pn11k2200547a_","n40a":"Sonstige"}]} {"f00_":"929t112206","f20_":"Funkeln aus dem Sonnenberg : Winzer Oliver Krupp aus Bruchhausen bearbeitet die Lage \"Unkeler Sonnenberg\"","f30_":"_sn544322_","f30a":"_sn544325_","f31_":"_r99_ _o13807073_","f31a":"_r99_ _o13807008_","f32_":"_929n110302_ ; _929n110303_","f35_":"_r99_ _o13807073_ ; _sn544322_","f35a":"_r99_ _o13807008_ ; _sn544325_","f36_":"u","f37_":"_sn544322_ ; _r99_ _o13807073_","f37a":"_sn544325_ ; _r99_ _o13807008_","f40_":"_00Pn08k0685884a_","f70_":"¬Der¬ Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 32-33","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2515501-5","f90d":"ZA 5649:2011 MAG","f95_":"20110601/11:07:28\u001FKO","f96_":"20110603/08:32:01\u001FKO","f30":[{"f30_":"_sn544322_"},{"f30_":"_sn544325_"}],"f31":[{"f31_":"_r99_ _o13807073_"},{"f31_":"_r99_ _o13807008_"}],"f32":[{"f32_":"_929n110302_ ; _929n110303_"}],"f40":[{"f40_":"_00Pn08k0685884a_","n40a":"Verfasser"}]} {"f00_":"036t0121512","f20_":"Serenissimus befehlen zu prügeln","f36_":"u","f40_":"_00Pn01m21445842a_","f70_":"Heimat am Mittelrhein. - 8 (1963), Nr. 6","f76a":"1963","f76b":"1963","f88_":"400464-4","f90a":"Vergleiche Bibliotheks-Katalog","f95_":"ZR-20100824/00:00:00\u001FZR-ZSMR","f96_":"20120228/10:01:26\u001FSP","f97y":"Einspielung: Inhaltverzeichnisse zu Zeitschriften zum Mittelrhein","f40":[{"f40_":"_00Pn01m21445842a_","n40a":"Verfasser"}]} {"f00_":"036t0121513","f20_":"Soldaten für Holland","f36_":"u","f40_":"_00Pn01m21445842a_","f70_":"Heimat am Mittelrhein. - 2 (1957), Nr. 6","f76a":"1957","f76b":"1957","f88_":"400464-4","f90a":"Vergleiche Bibliotheks-Katalog","f95_":"ZR-20100824/00:00:00\u001FZR-ZSMR","f96_":"20120228/09:43:34\u001FSP","f97y":"Einspielung: Inhaltverzeichnisse zu Zeitschriften zum Mittelrhein","f40":[{"f40_":"_00Pn01m21445842a_","n40a":"Verfasser"}]} diff --git a/conf/rpb-titel-to-strapi.fix b/conf/rpb-titel-to-strapi.fix index 605828b7..83665594 100644 --- a/conf/rpb-titel-to-strapi.fix +++ b/conf/rpb-titel-to-strapi.fix @@ -1,7 +1,9 @@ # Remove titles that are already in lobid-resources - +# (see https://jira.hbz-nrw.de/browse/RPB-28) if exists ("f983") - reject() + if all_match("f36_","s|sm") + reject() + end end do put_macro("add") From fe1d3652a52bc91468b050946e10e7947ae1d4ff Mon Sep 17 00:00:00 2001 From: Fabian Steeg Date: Thu, 29 Jun 2023 14:58:03 +0200 Subject: [PATCH 06/12] Set MultiVolumeBook only if the record contains `#36 sbd` (RPB-28) --- app/rpb/Decode.java | 4 +++- test/rpb/DecodeTest.java | 7 ++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/app/rpb/Decode.java b/app/rpb/Decode.java index 3aa02d41..4b83ce17 100644 --- a/app/rpb/Decode.java +++ b/app/rpb/Decode.java @@ -17,9 +17,11 @@ public final class Decode extends DefaultObjectPipe { private String recordId; private String recordTitle; private boolean inMultiVolumeRecord; + private String currentRecord; @Override public void process(final String obj) { + currentRecord = obj; LOG.debug("Process record: " + obj); final String[] vals = obj.split("\\[/\\]"); recordId = getId(obj, vals); @@ -47,7 +49,7 @@ private void processFields(final String[] vals) { if("#36 ".equals(k) && "sm".equals(v)) { inMultiVolumeRecord = true; } else if(inMultiVolumeRecord && "#01 ".equals(k)) { - if(volumeCounter == 0) { + if(volumeCounter == 0 && currentRecord.contains("#36 sbd")) { // s. RPB-28 // we're still in the main (multi volume) record, so we mark that here: getReceiver().literal(fieldName("#36t"), "MultiVolumeBook"); } diff --git a/test/rpb/DecodeTest.java b/test/rpb/DecodeTest.java index cc4c30db..3b720a2f 100644 --- a/test/rpb/DecodeTest.java +++ b/test/rpb/DecodeTest.java @@ -64,9 +64,9 @@ public void processRecord() { @Test public void processRecordWithMultipleVolumes() { - // 'sm' in '#01 ' -> treat as multiple volumes with their own titles + // 'sm' & 'sbd' in '#36 ' -> treat as multiple volumes with their own titles test("[/]#00 929t124030[/]#20 Deutsche Binnenwasserstraßen[/]#36 sm[/]" - + "#01 6/2022[/]#20 Der Rhein - Rheinfelden bis Koblenz[/]" + + "#01 6/2022[/]#36 sbd[/]#20 Der Rhein - Rheinfelden bis Koblenz[/]" + "#01 7. Band 2022[/]#20 Der Rhein - Koblenz bis Tolkamer[/]" + "#01 Nachgewiesen 2007 -[/]#20 [/]" + "#01 Nachgewiesen 2008 -[/]", @@ -82,6 +82,7 @@ public void processRecordWithMultipleVolumes() { ordered.verify(receiver).literal("f00_", "929t124030b1"); ordered.verify(receiver).literal("f20ü", "Deutsche Binnenwasserstraßen"); ordered.verify(receiver).literal("f01_", "6/2022"); + ordered.verify(receiver).literal("f36_", "sbd"); ordered.verify(receiver).literal("f20_", "Der Rhein - Rheinfelden bis Koblenz"); ordered.verify(receiver).endRecord(); ordered.verify(receiver).startRecord("929t124030b2"); @@ -107,7 +108,7 @@ public void processRecordWithMultipleVolumes() { @Test public void processRecordWithMultipleTitles() { - // No 'sm' in '#01 ' -> treat as multiple titles of single volume + // No 'sm' in '#36 ' -> treat as multiple titles of single volume test("[/]#00 929t124030[/]#20 Deutsche Binnenwasserstraßen[/]#36 TEST[/]" + "#01 6[/]#20 Der Rhein - Rheinfelden bis Koblenz[/]" + "#01 7[/]#20 Der Rhein - Koblenz bis Tolkamer[/]", () -> { From c6700ce9ce2a8871abab046a08021b4c97d791c6 Mon Sep 17 00:00:00 2001 From: Fabian Steeg Date: Fri, 30 Jun 2023 13:58:21 +0200 Subject: [PATCH 07/12] Reject all records listed in `almaMmsId2rpbId.tsv` (RPB-28) Update metafacture dependency for http map and multi-col lookup --- .github/workflows/build.yml | 9 ++- build.sbt | 16 ++--- conf/output/test-output-26.json | 74 ++++------------------ conf/output/test-output-27.json | 13 ++-- conf/output/test-output-28.json | 76 ++++------------------ conf/output/test-output-29.json | 13 ++-- conf/output/test-output-30.json | 78 ++++------------------- conf/output/test-output-31.json | 14 ++--- conf/output/test-output-32.json | 75 ++++------------------ conf/output/test-output-33.json | 57 +++++++++++++---- conf/output/test-output-34.json | 82 ++++-------------------- conf/output/test-output-35.json | 13 ++-- conf/output/test-output-36.json | 50 ++++++++------- conf/output/test-output-37.json | 98 ++++++++++++++++++++++++----- conf/output/test-output-38.json | 48 ++++++-------- conf/output/test-output-39.json | 24 ------- conf/output/test-output-strapi.json | 7 --- conf/rpb-titel-to-strapi.fix | 9 +++ 18 files changed, 288 insertions(+), 468 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b3b68a62..e06f5793 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,16 +11,15 @@ jobs: uses: actions/setup-java@v1 with: java-version: 1.8 - - name: Install metafacture-core-5.5.1-rc1 + - name: Install metafacture-core 5.7.0-rc1 run: | - git clone https://github.com/metafacture/metafacture-core.git + git clone https://github.com/metafacture/metafacture-core.git -b 5.7.0-rc1 cd metafacture-core - git checkout metafacture-core-5.5.1-rc1 ./gradlew publishToMavenLocal cd .. - - name: Install metafacture-fix 0.5.1 + - name: Install metafacture-fix 0.6.0-rc3 run: | - git clone https://github.com/metafacture/metafacture-fix.git -b 0.5.1 + git clone https://github.com/metafacture/metafacture-fix.git -b 0.6.0-rc3 cd metafacture-fix ./gradlew publishToMavenLocal cd .. diff --git a/build.sbt b/build.sbt index bf1c624b..446d7399 100644 --- a/build.sbt +++ b/build.sbt @@ -10,14 +10,14 @@ libraryDependencies ++= Seq( cache, javaWs, "com.typesafe.play" % "play-test_2.11" % "2.4.11", - "org.metafacture" % "metafacture-elasticsearch" % "5.5.1-rc1", - "org.metafacture" % "metafacture-io" % "5.5.1-rc1", - "org.metafacture" % "metafacture-strings" % "5.5.1-rc1", - "org.metafacture" % "metafacture-json" % "5.5.1-rc1", - "org.metafacture" % "metafacture-flux" % "5.5.1-rc1", - "org.metafacture" % "metafacture-triples" % "5.5.1-rc1", - "org.metafacture" % "metafacture-formatting" % "5.5.1-rc1", - "org.metafacture" % "metafix" % "0.5.1", + "org.metafacture" % "metafacture-elasticsearch" % "5.7.0-rc1", + "org.metafacture" % "metafacture-io" % "5.7.0-rc1", + "org.metafacture" % "metafacture-strings" % "5.7.0-rc1", + "org.metafacture" % "metafacture-json" % "5.7.0-rc1", + "org.metafacture" % "metafacture-flux" % "5.7.0-rc1", + "org.metafacture" % "metafacture-triples" % "5.7.0-rc1", + "org.metafacture" % "metafacture-formatting" % "5.7.0-rc1", + "org.metafacture" % "metafix" % "0.6.0-rc3", "org.elasticsearch" % "elasticsearch" % "1.7.5" withSources(), "com.github.jsonld-java" % "jsonld-java" % "0.5.0", "org.apache.commons" % "commons-rdf-jena" % "0.5.0", diff --git a/conf/output/test-output-26.json b/conf/output/test-output-26.json index d6cc7535..70331c0c 100644 --- a/conf/output/test-output-26.json +++ b/conf/output/test-output-26.json @@ -1,73 +1,23 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982373", - "id" : "https://lobid.org/resources/RPB107t982373", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982373", + "label" : "SWR-3-Clubmagazin" + } ], + "numbering" : "1998,1(Sept.) -" + } ], + "rpbId" : "RPB107t982373b1", + "id" : "https://lobid.org/resources/RPB107t982373b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "SWR-3-Clubmagazin", - "note" : [ "Vorgänger u.d.T.: On" ], + "title" : "SWR-3-Clubmagazin | 1998,1(Sept.) -", "publication" : [ { - "location" : [ "Baden-Baden" ], - "startDate" : "1998", - "publishedBy" : [ "Südwestrundfunk-Media-GmbH" ], "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n882040", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Südwestrundfunk | Geschichte 1945- | Zeitschrift", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/5295938-7", - "label" : "Südwestrundfunk", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n01", - "label" : "_r01_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/5331496-7", - "label" : "SWR-3-Club" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "HE Urheber" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-27.json b/conf/output/test-output-27.json index 70331c0c..9e04f481 100644 --- a/conf/output/test-output-27.json +++ b/conf/output/test-output-27.json @@ -4,19 +4,20 @@ "isPartOf" : [ { "type" : [ "IsPartOfRelation" ], "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982373", - "label" : "SWR-3-Clubmagazin" + "id" : "https://lobid.org/resources/RPB107t982374", + "label" : "On : SWF 3, das Magazin" } ], - "numbering" : "1998,1(Sept.) -" + "numbering" : "1992 - 1998,2" } ], - "rpbId" : "RPB107t982373b1", - "id" : "https://lobid.org/resources/RPB107t982373b1", + "rpbId" : "RPB107t982374b1", + "id" : "https://lobid.org/resources/RPB107t982374b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "SWR-3-Clubmagazin | 1998,1(Sept.) -", + "title" : "On : SWF 3, das Magazin | 1992 - 1998,2", + "note" : [ "Damit Erscheinen eingest. - Forts. u.d.T.: SWR-3-Clubmagazin" ], "publication" : [ { "type" : [ "PublicationEvent" ] } ] diff --git a/conf/output/test-output-28.json b/conf/output/test-output-28.json index 391f1aa6..4ee2a79f 100644 --- a/conf/output/test-output-28.json +++ b/conf/output/test-output-28.json @@ -1,74 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982374", - "id" : "https://lobid.org/resources/RPB107t982374", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982375", + "label" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz" + } ], + "numbering" : "1998,1(Sept.) - 2001,9(Sept.)" + } ], + "rpbId" : "RPB107t982375b1", + "id" : "https://lobid.org/resources/RPB107t982375b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "On : SWF 3, das Magazin", - "note" : [ "Ersch. früher in: Offenburg : Opal-Verl. [1995,2]" ], - "responsibilityStatement" : [ "hrsg. von: SWF 3, Der Club" ], + "title" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz | 1998,1(Sept.) - 2001,9(Sept.)", + "note" : [ "Forts. u.d.T.: Doppelpfeil" ], "publication" : [ { - "location" : [ "Rastatt" ], - "startDate" : "1992", - "publishedBy" : [ "Pabel-Moewig" ], "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n882040", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "SWF 3 | Geschichte 1945- | Zeitschrift", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4264102-0", - "label" : "SWF 3", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n01", - "label" : "_r01_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/5166552-9", - "label" : "SWF 3, Der Club" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-29.json b/conf/output/test-output-29.json index 9e04f481..016590f8 100644 --- a/conf/output/test-output-29.json +++ b/conf/output/test-output-29.json @@ -4,20 +4,19 @@ "isPartOf" : [ { "type" : [ "IsPartOfRelation" ], "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982374", - "label" : "On : SWF 3, das Magazin" + "id" : "https://lobid.org/resources/RPB107t982376", + "label" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte" } ], - "numbering" : "1992 - 1998,2" + "numbering" : "Ausg. 1.1997(Dez.) -" } ], - "rpbId" : "RPB107t982374b1", - "id" : "https://lobid.org/resources/RPB107t982374b1", + "rpbId" : "RPB107t982376b1", + "id" : "https://lobid.org/resources/RPB107t982376b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "On : SWF 3, das Magazin | 1992 - 1998,2", - "note" : [ "Damit Erscheinen eingest. - Forts. u.d.T.: SWR-3-Clubmagazin" ], + "title" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte | Ausg. 1.1997(Dez.) -", "publication" : [ { "type" : [ "PublicationEvent" ] } ] diff --git a/conf/output/test-output-30.json b/conf/output/test-output-30.json index 5cfaecb6..4297a20e 100644 --- a/conf/output/test-output-30.json +++ b/conf/output/test-output-30.json @@ -1,76 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982375", - "id" : "https://lobid.org/resources/RPB107t982375", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982377", + "label" : "¬Der¬ Rasenspieler : das Journal zur Saison ..." + } ], + "numbering" : "Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03" + } ], + "rpbId" : "RPB107t982377b1", + "id" : "https://lobid.org/resources/RPB107t982377b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz", - "note" : [ "Vorgänger u.d.T.: Südwestfunk : Südwestfunk-Journal" ], + "title" : "¬Der¬ Rasenspieler : das Journal zur Saison ... | Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03", + "note" : [ "Damit Erscheinen eingest." ], "publication" : [ { - "location" : [ "Stuttgart" ], - "startDate" : "1998", - "publishedBy" : [ "SWR" ], "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n882030", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Südwestrundfunk | Zeitschrift", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/5295938-7", - "label" : "Südwestrundfunk", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n01", - "label" : "_r01_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/5295938-7", - "label" : "Südwestrundfunk" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "HE Urheber" - }, - "type" : [ "Contribution" ] - }, { - "agent" : { - "id" : "https://d-nb.info/gnd/Südwestrundfunk", - "label" : "Südwestrundfunk" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "HE Urheber" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-31.json b/conf/output/test-output-31.json index 4ee2a79f..c204ed8b 100644 --- a/conf/output/test-output-31.json +++ b/conf/output/test-output-31.json @@ -4,20 +4,20 @@ "isPartOf" : [ { "type" : [ "IsPartOfRelation" ], "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982375", - "label" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz" + "id" : "https://lobid.org/resources/RPB107t982378", + "label" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen" } ], - "numbering" : "1998,1(Sept.) - 2001,9(Sept.)" + "numbering" : "1998,Apr." } ], - "rpbId" : "RPB107t982375b1", - "id" : "https://lobid.org/resources/RPB107t982375b1", + "rpbId" : "RPB107t982378b1", + "id" : "https://lobid.org/resources/RPB107t982378b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz | 1998,1(Sept.) - 2001,9(Sept.)", - "note" : [ "Forts. u.d.T.: Doppelpfeil" ], + "title" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen | 1998,Apr.", + "note" : [ "Mit dieser Ausg. Erscheinen eingest." ], "publication" : [ { "type" : [ "PublicationEvent" ] } ] diff --git a/conf/output/test-output-32.json b/conf/output/test-output-32.json index afbb0666..ba36aae3 100644 --- a/conf/output/test-output-32.json +++ b/conf/output/test-output-32.json @@ -1,73 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982376", - "id" : "https://lobid.org/resources/RPB107t982376", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982379", + "label" : "Wer ist wo" + } ], + "numbering" : "1994/95(1995)" + } ], + "rpbId" : "RPB107t982379b1", + "id" : "https://lobid.org/resources/RPB107t982379b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte", - "responsibilityStatement" : [ "Institut für Angewandte Vogelkunde, Staatliche Vogelschutzwarte für Hessen, Rheinland-Pfalz und Saarland" ], + "title" : "Wer ist wo | 1994/95(1995)", + "note" : [ "Letzter Jahrgang, damit Erscheinen eingestellt" ], "publication" : [ { - "location" : [ "Frankfurt/Main" ], - "startDate" : "1997", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n163080", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n584060", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Geschichte 1945- | Zeitschrift", - "componentList" : [ { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n01", - "label" : "_r01_", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/1033772-6", - "label" : "Staatliche Vogelschutzwarte für Hessen, Rheinland-Pfalz und Saarland / Frankfurt, Main" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-33.json b/conf/output/test-output-33.json index 016590f8..b0bba0e5 100644 --- a/conf/output/test-output-33.json +++ b/conf/output/test-output-33.json @@ -1,23 +1,54 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982376", - "label" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte" - } ], - "numbering" : "Ausg. 1.1997(Dez.) -" - } ], - "rpbId" : "RPB107t982376b1", - "id" : "https://lobid.org/resources/RPB107t982376b1", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112192", + "id" : "https://lobid.org/resources/RPB929t112192", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte | Ausg. 1.1997(Dez.) -", + "title" : "Aus der Vereinsgeschichte der KKG \"Kowelenzer Schängelcher\" 1922 e.V.", + "extent" : "Ill.", "publication" : [ { + "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n704043", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "KKG Rot-Weiß-Grün Kowelenzer Schängelcher | Geschichte 1922-2011", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/5114232-6", + "label" : "KKG Rot-Weiß-Grün Kowelenzer Schängelcher", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/00Sn11k2192145a", + "label" : "Geschichte 1922-2011", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n11100000", + "label" : "o11100000", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "bibliographicCitation" : "In: KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher: Sessionsheft. - (2011), Seite 23-33. -" } diff --git a/conf/output/test-output-34.json b/conf/output/test-output-34.json index 8bd577e5..03c7d4ed 100644 --- a/conf/output/test-output-34.json +++ b/conf/output/test-output-34.json @@ -1,80 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982377", - "id" : "https://lobid.org/resources/RPB107t982377", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB929t112193", + "label" : "Aktuell : das Krankenhaus in Ihrer Region" + } ], + "numbering" : "Nachgewiesen 2010 - 2012,1" + } ], + "rpbId" : "RPB929t112193b1", + "id" : "https://lobid.org/resources/RPB929t112193b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Der¬ Rasenspieler : das Journal zur Saison ...", - "responsibilityStatement" : [ "VFR Speyer 1950 e.V." ], + "title" : "Aktuell : das Krankenhaus in Ihrer Region | Nachgewiesen 2010 - 2012,1", + "note" : [ "Nachfolger: Kaleidoskop. 2012 -" ], "publication" : [ { - "location" : [ "Speyer" ], - "startDate" : "1998", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n736050", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n882026", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Verein für Rasenspiele Speyer 1950 | Geschichte 1945- | Zeitschrift", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/5325261-5", - "label" : "Verein für Rasenspiele Speyer 1950", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n31800000", - "label" : "o31800000", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://d-nb.info/gnd/5325261-5", - "label" : "Verein für Rasenspiele Speyer 1950" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" - }, - "type" : [ "Contribution" ] } ] } diff --git a/conf/output/test-output-35.json b/conf/output/test-output-35.json index 4297a20e..fc600481 100644 --- a/conf/output/test-output-35.json +++ b/conf/output/test-output-35.json @@ -4,20 +4,19 @@ "isPartOf" : [ { "type" : [ "IsPartOfRelation" ], "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982377", - "label" : "¬Der¬ Rasenspieler : das Journal zur Saison ..." + "id" : "https://lobid.org/resources/RPB929t112194", + "label" : "Clubzeitung" } ], - "numbering" : "Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03" + "numbering" : "Nachgewiesen 2006,2 -" } ], - "rpbId" : "RPB107t982377b1", - "id" : "https://lobid.org/resources/RPB107t982377b1", + "rpbId" : "RPB929t112194b1", + "id" : "https://lobid.org/resources/RPB929t112194b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Der¬ Rasenspieler : das Journal zur Saison ... | Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03", - "note" : [ "Damit Erscheinen eingest." ], + "title" : "Clubzeitung | Nachgewiesen 2006,2 -", "publication" : [ { "type" : [ "PublicationEvent" ] } ] diff --git a/conf/output/test-output-36.json b/conf/output/test-output-36.json index 094607fa..20c4d5ab 100644 --- a/conf/output/test-output-36.json +++ b/conf/output/test-output-36.json @@ -1,21 +1,21 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982378", - "id" : "https://lobid.org/resources/RPB107t982378", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112195", + "id" : "https://lobid.org/resources/RPB929t112195", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen", + "title" : "¬Der¬ BAP kam aus Unkel", + "extent" : "Ill.", "publication" : [ { - "location" : [ "Ebertsheim-Rodenbach" ], - "startDate" : "1998", + "startDate" : "2011", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n882026", + "id" : "http://purl.org/lobid/rpb#n824000", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -24,17 +24,24 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Geschichte 1945- | Zeitschrift", + "label" : "Unkel | Niedecken, Wolfgang / 1951- | Biografie", "componentList" : [ { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", + "id" : "https://d-nb.info/gnd/4061836-5", + "label" : "Unkel", "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/118942247", + "label" : "Niedecken, Wolfgang / 1951-", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://d-nb.info/gnd/4067488-5", - "label" : "Zeitschrift", + "id" : "https://d-nb.info/gnd/4006804-3", + "label" : "Biografie", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" @@ -42,8 +49,8 @@ } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n332070120200", - "label" : "o332070120200", + "id" : "https://rpb.lobid.org/spatial#n13807073", + "label" : "o13807073", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -52,13 +59,14 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/7832695-3", - "label" : "Ebertsheim-Rodenbach" + "id" : "https://rpb.lobid.org/agent/00Pn08k0685884a", + "label" : "Ruland, Wolfgang" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" }, "type" : [ "Contribution" ] - } ] + } ], + "bibliographicCitation" : "Der Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 16-18" } diff --git a/conf/output/test-output-37.json b/conf/output/test-output-37.json index c204ed8b..2a086099 100644 --- a/conf/output/test-output-37.json +++ b/conf/output/test-output-37.json @@ -1,24 +1,94 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982378", - "label" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen" - } ], - "numbering" : "1998,Apr." - } ], - "rpbId" : "RPB107t982378b1", - "id" : "https://lobid.org/resources/RPB107t982378b1", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112196", + "id" : "https://lobid.org/resources/RPB929t112196", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen | 1998,Apr.", - "note" : [ "Mit dieser Ausg. Erscheinen eingest." ], + "title" : "Coming home mit Commende", + "extent" : "Ill.", "publication" : [ { + "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n844200", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "id" : "http://purl.org/lobid/rpb#n844000", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Deutscher Orden / Kommende Waldbreitbach | Denkmalschutz | Schicker, Viktor | Private Investition | Geschichte 2009-2011", + "componentList" : [ { + "id" : "https://rpb.lobid.org/sw/929n090287", + "label" : "Deutscher Orden / Kommende Waldbreitbach", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4011457-0", + "label" : "Denkmalschutz", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/00Sn09k1362487a", + "label" : "Schicker, Viktor", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4454409-1", + "label" : "Private Investition", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/00Sn09m0508511a", + "label" : "Geschichte 2009-2011", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n13809076", + "label" : "o13809076", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://rpb.lobid.org/agent/00Pn08k0685884a", + "label" : "Ruland, Wolfgang" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + } ], + "bibliographicCitation" : "Der Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 26-27" } diff --git a/conf/output/test-output-38.json b/conf/output/test-output-38.json index 121b5275..7484116b 100644 --- a/conf/output/test-output-38.json +++ b/conf/output/test-output-38.json @@ -1,23 +1,21 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "MultiVolumeBook" ], - "rpbId" : "RPB107t982379", - "id" : "https://lobid.org/resources/RPB107t982379", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112197", + "id" : "https://lobid.org/resources/RPB929t112197", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Wer ist wo", - "note" : [ "Adressen- u. Personenverz." ], - "responsibilityStatement" : [ "Universität Kaiserslautern" ], + "title" : "Seit 1911 weht im Vinzenzhaus der Geist der Nächstenliebe : 100-Jahr-Feier in Gebhardshain ; vom Konvent zum Seniorenheim", + "extent" : "Ill.", "publication" : [ { - "location" : [ "Kaiserslautern" ], - "startDate" : "1995", + "startDate" : "2011", "type" : [ "PublicationEvent" ] } ], "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n794010", + "id" : "http://purl.org/lobid/rpb#n611070", "label" : "Platzhalter Schlagwortlabel", "type" : [ "Concept" ], "source" : { @@ -26,33 +24,26 @@ } }, { "type" : [ "ComplexSubject" ], - "label" : "Technische Universität Kaiserslautern | Geschichte 1945- | Führer", + "label" : "Alten- und Pflegeheim St.-Vinzenzhaus / Gebhardshain | Geschichte 1911-2011", "componentList" : [ { - "id" : "https://d-nb.info/gnd/10066624-3", - "label" : "Technische Universität Kaiserslautern", + "id" : "https://d-nb.info/gnd/16326855-1", + "label" : "Alten- und Pflegeheim St.-Vinzenzhaus / Gebhardshain", "source" : { "id" : "https://d-nb.info/gnd/7749153-1", "label" : "Gemeinsame Normdatei (GND)" } }, { - "id" : "https://rpb.lobid.org/sw/z64", - "label" : "Geschichte 1945-", + "id" : "https://rpb.lobid.org/sw/00Sn10s3817103a", + "label" : "Geschichte 1911-2011", "source" : { "id" : "http://rpb.lobid.org/sw", "label" : "RPB-Sachsystematik" } - }, { - "id" : "https://d-nb.info/gnd/4155569-7", - "label" : "Führer", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } } ] } ], "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n31200000", - "label" : "o31200000", + "id" : "https://rpb.lobid.org/spatial#n13209039", + "label" : "o13209039", "type" : [ "Concept" ], "source" : { "id" : "https://rpb.lobid.org/spatial", @@ -61,13 +52,14 @@ } ], "contribution" : [ { "agent" : { - "id" : "https://d-nb.info/gnd/26332-1", - "label" : "Universität Kaiserslautern" + "id" : "https://rpb.lobid.org/agent/929n991002", + "label" : "Weger, Joachim" }, "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/isb", - "label" : "NE hrsg. Körperschaft" + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" }, "type" : [ "Contribution" ] - } ] + } ], + "bibliographicCitation" : "In: Rhein-Zeitung, Ausg. H. - 66 (2011), 126 vom 31.05., Seite 24. -" } diff --git a/conf/output/test-output-39.json b/conf/output/test-output-39.json index ba36aae3..e69de29b 100644 --- a/conf/output/test-output-39.json +++ b/conf/output/test-output-39.json @@ -1,24 +0,0 @@ -{ - "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982379", - "label" : "Wer ist wo" - } ], - "numbering" : "1994/95(1995)" - } ], - "rpbId" : "RPB107t982379b1", - "id" : "https://lobid.org/resources/RPB107t982379b1", - "inCollection" : [ { - "id" : "http://lobid.org/resources/HT013494180#!", - "type" : [ "Collection" ], - "label" : "Rheinland-Pfälzische Bibliographie" - } ], - "title" : "Wer ist wo | 1994/95(1995)", - "note" : [ "Letzter Jahrgang, damit Erscheinen eingestellt" ], - "publication" : [ { - "type" : [ "PublicationEvent" ] - } ] -} diff --git a/conf/output/test-output-strapi.json b/conf/output/test-output-strapi.json index 0abbeb12..599b0176 100644 --- a/conf/output/test-output-strapi.json +++ b/conf/output/test-output-strapi.json @@ -25,19 +25,12 @@ {"f00_":"107t982370","f20_":"\"¬Der¬ Holocaust ist immer da\": Kooperationsprojekt Offener Kanal Ludwigshafen, Vorderpfalz und Community Television, Israel","f30_":"_sn632050_","f30a":"_sn882060_","f31_":"_r99_ _o31400000_","f31a":"_r99_ _o31400000_","f32_":"_4036472n0_ ; _4172489n6_ ; _4073091n8_","f35_":"_r99_ _o31400000_ ; _sn632050_","f35a":"_r99_ _o31400000_ ; _sn882060_","f36_":"u","f37_":"_sn632050_ ; _r99_ _o31400000_","f37a":"_sn882060_ ; _r99_ _o31400000_","f40_":"_106837800X_","f70_":"Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 102-106","f76a":"1997","f76b":"1997","f87_":"3-89331-303-6","f90b":"3a 5094","f95_":"19990702/13:46:41\u001FSP","f96_":"20060111/13:16:43\u001FSP","f30":[{"f30_":"_sn632050_"},{"f30_":"_sn882060_"}],"f31":[{"f31_":"_r99_ _o31400000_"},{"f31_":"_r99_ _o31400000_"}],"f32":[{"f32_":"_4036472n0_ ; _4172489n6_ ; _4073091n8_"}],"f40":[{"f40_":"_106837800X_","n40a":"Verfasser"}]} {"f00_":"107t982371","f20_":"Ältere Menschen machen Fernsehen : aktivierende Medienarbeit in Offenen Kanälen","f30_":"_sn786000_","f30a":"_sn882060_","f31_":"_r99_ _o31400000_","f31a":"_r99_ _o31400000_","f32_":"_4036472n0_ ; _4136151n9_ ; _z64_","f32a":"_4036472n0_ ; _4172489n6_ ; _z64_","f32b":"_4036472n0_ ; _4001446n0_ ; _z64_","f35_":"_r99_ _o31400000_ ; _sn786000_","f35a":"_r99_ _o31400000_ ; _sn882060_","f36_":"u","f37_":"_sn786000_ ; _r99_ _o31400000_","f37a":"_sn882060_ ; _r99_ _o31400000_","f40_":"_00Pn02s0022a_","f70_":"Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 119-123","f76a":"1997","f76b":"1997","f81_":"Videoprojekt zwischen Volkshochschule u. Offener Kanal","f87_":"3-89331-303-6","f90b":"3a 5094","f95_":"19991008/16:58:26\u001FSP","f96_":"19991008/16:58:26\u001FSP","f30":[{"f30_":"_sn786000_"},{"f30_":"_sn882060_"}],"f31":[{"f31_":"_r99_ _o31400000_"},{"f31_":"_r99_ _o31400000_"}],"f32":[{"f32_":"_4036472n0_ ; _4136151n9_ ; _z64_"},{"f32_":"_4036472n0_ ; _4172489n6_ ; _z64_"},{"f32_":"_4036472n0_ ; _4001446n0_ ; _z64_"}],"f81":[{"f81_":"Videoprojekt zwischen Volkshochschule u. Offener Kanal"}],"f40":[{"f40_":"_00Pn02s0022a_","n40a":"Verfasser"}]} {"f00_":"107t982372","f20_":"Zur politischen Tragweite schulischer Medienarbeit : was \"lernen\" Gymnasiasten, wenn sie \"im Auftrag\" eines Berufsinformationszentrums Live-Sendungen für Schüler anderer Schularten produzieren?","f30_":"_sn784080_","f30a":"_sn882060_","f31_":"_r99_ _o31400000_","f31a":"_r99_ _o31400000_","f32_":"_4036472n0_ ; _4172489n6_","f32a":"_107n220353_","f35_":"_r99_ _o31400000_ ; _sn784080_","f35a":"_r99_ _o31400000_ ; _sn882060_","f36_":"u","f37_":"_sn784080_ ; _r99_ _o31400000_","f37a":"_sn882060_ ; _r99_ _o31400000_","f39_":"Karl-Ludwig Kemen ; Gerhard Laubscher","f40_":"_00Pn98s2372a_","f401":"_00Pn98s2372b_","f70_":"Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 124-144","f76a":"1997","f76b":"1997","f77_":"Graph. Darst.","f81_":"Medien-AG d. Wilhelm-von-Humboldt-Gymnasiums","f87_":"3-89331-303-6","f90b":"3a 5094","f95_":"19990702/14:55:39\u001FSP","f96_":"20220826/12:03:41\u001FSP","f30":[{"f30_":"_sn784080_"},{"f30_":"_sn882060_"}],"f31":[{"f31_":"_r99_ _o31400000_"},{"f31_":"_r99_ _o31400000_"}],"f32":[{"f32_":"_4036472n0_ ; _4172489n6_"},{"f32_":"_107n220353_"}],"f81":[{"f81_":"Medien-AG d. Wilhelm-von-Humboldt-Gymnasiums"}],"f40":[{"f40_":"_00Pn98s2372a_","n40a":"Verfasser"},{"f40_":"_00Pn98s2372b_","n40a":"Verfasser"}]} -{"f00_":"107t982373","f20_":"SWR-3-Clubmagazin","f27_":"SWR-Drei-Clubmagazin","f271":"SWR-3-Clubmagazin","f30_":"_sn882040_","f31_":"_r01_","f32_":"_5295938n7_ ; _z64_ ; _4067488n5_","f35_":"_r01_ ; _sn882040_","f36_":"sm","f36a":"z","f37_":"_sn882040_ ; _r01_","f60_":"_5331496n7_","f74_":"Baden-Baden","f75_":"Südwestrundfunk-Media-GmbH","f76a":"1998","f76b":"1998","f81_":"Vorgänger u.d.T.: On","f90b":"Per. 15621","f95_":"19990702/15:28:40\u001FSP","f96_":"20120221/13:09:28\u001FSP","f97x":"per","f36t":"MultiVolumeBook","f27":[{"f27_":"SWR-Drei-Clubmagazin"},{"f27_":"SWR-3-Clubmagazin"}],"f30":[{"f30_":"_sn882040_"}],"f31":[{"f31_":"_r01_"}],"f32":[{"f32_":"_5295938n7_ ; _z64_ ; _4067488n5_"}],"f81":[{"f81_":"Vorgänger u.d.T.: On"}],"f60":[{"f60_":"_5331496n7_","n60a":"HE Urheber"}]} {"f00_":"107t982373b1","f20ü":"SWR-3-Clubmagazin","f01_":"1998,1(Sept.) -","f36_":"sbd","f90b":"Per. 15621/1998-"} -{"f00_":"107t982374","f20_":"On : SWF 3, das Magazin","f30_":"_sn882040_","f31_":"_r01_","f32_":"_4264102n0_ ; _z64_ ; _4067488n5_","f35_":"_r01_ ; _sn882040_","f36_":"sm","f36a":"z","f37_":"_sn882040_ ; _r01_","f39_":"hrsg. von: SWF 3, Der Club","f61_":"_5166552n9_","f74_":"Rastatt","f75_":"Pabel-Moewig","f76a":"1992","f76b":"1992","f81_":"Ersch. früher in: Offenburg : Opal-Verl. [1995,2]","f90b":"Per. 14726","f95_":"19990702/16:44:27\u001FSP","f96_":"20120221/12:54:31\u001FSP","f97x":"per","f36t":"MultiVolumeBook","f30":[{"f30_":"_sn882040_"}],"f31":[{"f31_":"_r01_"}],"f32":[{"f32_":"_4264102n0_ ; _z64_ ; _4067488n5_"}],"f81":[{"f81_":"Ersch. früher in: Offenburg : Opal-Verl. [1995,2]"}],"f60":[{"f60_":"_5166552n9_","n60a":"NE hrsg. Körperschaft"}]} {"f00_":"107t982374b1","f20ü":"On : SWF 3, das Magazin","f01_":"1992 - 1998,2","f36_":"sbd","f81_":"Damit Erscheinen eingest. - Forts. u.d.T.: SWR-3-Clubmagazin","f90b":"Per. 14726/1995-1998,2","f81":[{"f81_":"Damit Erscheinen eingest. - Forts. u.d.T.: SWR-3-Clubmagazin"}]} -{"f00_":"107t982375","f19_":"¬Die¬ Zeitschrift / Rheinland-Pfalz","f20_":"¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz","f23_":"SWR - Die Zeitschrift","f27_":"Südwestfunk : Südwestfunk-Journal","f30_":"_sn882030_","f31_":"_r01_","f32_":"_5295938n7_ ; _4067488n5_","f35_":"_r01_ ; _sn882030_","f36_":"sm","f36a":"z","f37_":"_sn882030_ ; _r01_","f60_":"_5295938n7_","f60e":"Südwestrundfunk","f74_":"Stuttgart","f75_":"SWR","f76a":"1998","f76b":"1998","f81_":"Vorgänger u.d.T.: Südwestfunk : Südwestfunk-Journal","f90b":"Per. 15620","f95_":"19990803/15:52:59\u001FSP","f96_":"20120221/13:09:28\u001FSP","f97x":"per","f36t":"MultiVolumeBook","f27":[{"f27_":"Südwestfunk : Südwestfunk-Journal"}],"f30":[{"f30_":"_sn882030_"}],"f31":[{"f31_":"_r01_"}],"f32":[{"f32_":"_5295938n7_ ; _4067488n5_"}],"f81":[{"f81_":"Vorgänger u.d.T.: Südwestfunk : Südwestfunk-Journal"}],"f60":[{"f60_":"_5295938n7_","n60a":"HE Urheber"},{"f60_":"Südwestrundfunk","n60a":"HE Urheber"}]} {"f00_":"107t982375b1","f20ü":"¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz","f01_":"1998,1(Sept.) - 2001,9(Sept.)","f36_":"sbd","f81_":"Forts. u.d.T.: Doppelpfeil","f90b":"Per. 15620/1998,1-2001,9","f81":[{"f81_":"Forts. u.d.T.: Doppelpfeil"}]} -{"f00_":"107t982376","f20_":"Flieg und flatter : Aktuelles aus der Vogelschutzwarte","f30_":"_sn163080_","f30a":"_sn584060_","f31_":"_r01_","f31a":"_r01_","f32_":"_z64_ ; _4067488n5_","f35_":"_r01_ ; _sn163080_","f35a":"_r01_ ; _sn584060_","f36_":"sm","f36a":"z","f37_":"_sn163080_ ; _r01_","f37a":"_sn584060_ ; _r01_","f39_":"Institut für Angewandte Vogelkunde, Staatliche Vogelschutzwarte für Hessen, Rheinland-Pfalz und Saarland","f61_":"_1033772n6_","f74_":"Frankfurt/Main","f76a":"1997","f76b":"1997","f90b":"Per. 15655","f95_":"19990702/17:27:17\u001FSP","f96_":"20120221/13:09:28\u001FSP","f97x":"per","f36t":"MultiVolumeBook","f30":[{"f30_":"_sn163080_"},{"f30_":"_sn584060_"}],"f31":[{"f31_":"_r01_"},{"f31_":"_r01_"}],"f32":[{"f32_":"_z64_ ; _4067488n5_"}],"f60":[{"f60_":"_1033772n6_","n60a":"NE hrsg. Körperschaft"}]} {"f00_":"107t982376b1","f20ü":"Flieg und flatter : Aktuelles aus der Vogelschutzwarte","f01_":"Ausg. 1.1997(Dez.) -","f36_":"sbd","f90b":"Per. 15655/1.1997-"} -{"f00_":"107t982377","f20_":"¬Der¬ Rasenspieler : das Journal zur Saison ...","f30_":"_sn736050_","f30a":"_sn882026_","f31_":"_r99_ _o31800000_","f31a":"_r99_ _o31800000_","f32_":"_5325261n5_ ; _z64_ ; _4067488n5_","f35_":"_r99_ _o31800000_ ; _sn736050_","f35a":"_r99_ _o31800000_ ; _sn882026_","f36_":"sm","f36a":"z","f37_":"_sn736050_ ; _r99_ _o31800000_","f37a":"_sn882026_ ; _r99_ _o31800000_","f39_":"VFR Speyer 1950 e.V.","f61_":"_5325261n5_","f74_":"Speyer","f76a":"1998","f76b":"1998","f90b":"Per. 15748;Per. 17032","f95_":"19990702/17:40:34\u001FSP","f96_":"20120221/14:03:16\u001FSP","f97x":"per","f36t":"MultiVolumeBook","f30":[{"f30_":"_sn736050_"},{"f30_":"_sn882026_"}],"f31":[{"f31_":"_r99_ _o31800000_"},{"f31_":"_r99_ _o31800000_"}],"f32":[{"f32_":"_5325261n5_ ; _z64_ ; _4067488n5_"}],"f60":[{"f60_":"_5325261n5_","n60a":"NE hrsg. Körperschaft"}]} {"f00_":"107t982377b1","f20ü":"¬Der¬ Rasenspieler : das Journal zur Saison ...","f01_":"Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03","f36_":"sbd","f81_":"Damit Erscheinen eingest.","f90b":"Per. 15748/1998/99-2000/01;Per. 17032/2001/02-2002/03","f81":[{"f81_":"Damit Erscheinen eingest."}]} -{"f00_":"107t982378","f20_":"¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen","f30_":"_sn882026_","f31_":"_r99_ _o332070120200_","f32_":"_z64_ ; _4067488n5_","f35_":"_r99_ _o332070120200_ ; _sn882026_","f36_":"sm","f36a":"z","f37_":"_sn882026_ ; _r99_ _o332070120200_","f61_":"_7832695n3_","f74_":"Ebertsheim-Rodenbach","f76a":"1998","f76b":"1998","f90b":"Per. 15740","f95_":"19990702/17:18:42\u001FSP","f96_":"20120221/13:09:28\u001FSP","f97x":"per","f36t":"MultiVolumeBook","f30":[{"f30_":"_sn882026_"}],"f31":[{"f31_":"_r99_ _o332070120200_"}],"f32":[{"f32_":"_z64_ ; _4067488n5_"}],"f60":[{"f60_":"_7832695n3_","n60a":"NE hrsg. Körperschaft"}]} {"f00_":"107t982378b1","f20ü":"¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen","f01_":"1998,Apr.","f36_":"sbd","f81_":"Mit dieser Ausg. Erscheinen eingest.","f90b":"Per. 15740/1998","f81":[{"f81_":"Mit dieser Ausg. Erscheinen eingest."}]} -{"f00_":"107t982379","f20_":"Wer ist wo","f30_":"_sn794010_","f31_":"_r99_ _o31200000_","f32_":"_10066624n3_ ; _z64_ ; _4155569n7_","f35_":"_r99_ _o31200000_ ; _sn794010_","f36_":"sm","f37_":"_sn794010_ ; _r99_ _o31200000_","f39_":"Universität Kaiserslautern","f61_":"_26332n1_","f74_":"Kaiserslautern","f76a":"1995","f76b":"1995","f81_":"Adressen- u. Personenverz.","f90b":"Per. 11060","f95_":"19990705/09:44:16\u001FSP","f96_":"20120220/12:45:56\u001FSP","f97x":"per","f36t":"MultiVolumeBook","f30":[{"f30_":"_sn794010_"}],"f31":[{"f31_":"_r99_ _o31200000_"}],"f32":[{"f32_":"_10066624n3_ ; _z64_ ; _4155569n7_"}],"f81":[{"f81_":"Adressen- u. Personenverz."}],"f60":[{"f60_":"_26332n1_","n60a":"NE hrsg. Körperschaft"}]} {"f00_":"107t982379b1","f20ü":"Wer ist wo","f01_":"1994/95(1995)","f36_":"sbd","f76b":"1995","f81_":"Letzter Jahrgang, damit Erscheinen eingestellt","f90b":"Per. 11060/ 1994/95","f81":[{"f81_":"Letzter Jahrgang, damit Erscheinen eingestellt"}]} {"f00_":"929t112192","f20_":"Aus der Vereinsgeschichte der KKG \"Kowelenzer Schängelcher\" 1922 e.V.","f30_":"_sn704043_","f31_":"_r99_ _o11100000_","f32_":"_5114232n6_ ; _00Sn11k2192145a_","f35_":"_r99_ _o11100000_ ; _sn704043_","f36_":"u","f37_":"_sn704043_ ; _r99_ _o11100000_","f70j":"2011","f70k":"KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher","f70s":"23-33","f70t":"Sessionsheft","f70y":"KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher: Sessionsheft. - 2011, S. 23-33","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2253285-7","f90d":"Z 2287:2011","f95_":"20110531/16:02:12\u001FKO","f96_":"20110531/16:02:12\u001FKO","f30":[{"f30_":"_sn704043_"}],"f31":[{"f31_":"_r99_ _o11100000_"}],"f32":[{"f32_":"_5114232n6_ ; _00Sn11k2192145a_"}]} {"f00_":"929t112193b1","f20ü":"Aktuell : das Krankenhaus in Ihrer Region","f01_":"Nachgewiesen 2010 - 2012,1","f36_":"sbd","f81_":"Nachfolger: Kaleidoskop. 2012 -","f81":[{"f81_":"Nachfolger: Kaleidoskop. 2012 -"}]} diff --git a/conf/rpb-titel-to-strapi.fix b/conf/rpb-titel-to-strapi.fix index 83665594..4b2310de 100644 --- a/conf/rpb-titel-to-strapi.fix +++ b/conf/rpb-titel-to-strapi.fix @@ -5,6 +5,15 @@ if exists ("f983") reject() end end +do once() + put_filemap("https://github.com/hbz/lookup-tables/raw/master/data/almaMmsId2rpbId.tsv", + "rpbId2almaMmsId", "key_column": "1", "value_column": "0", "sep_char": "\t") +end +paste("inLobid", "~RPB", "f00_", "join_char": "") +lookup("inLobid", "rpbId2almaMmsId", "delete": "true") +if exists("inLobid") + reject() +end do put_macro("add") if exists("$[from]") From 04cb5e35b50307a85ca7037f29ccde2c5ea226c2 Mon Sep 17 00:00:00 2001 From: Fabian Steeg Date: Fri, 30 Jun 2023 16:06:14 +0200 Subject: [PATCH 08/12] Add `929t111801` to examples (RPB-28) Should be filtered in full index, but also missing rpbId in lobid http://test.rpb.lobid.org/search?q=_exists_:hbzId&t=MultiVolumeBook (Removed test-output-40.json seems to be a duplicate of 33) --- conf/RPB-Export_HBZ_Titel_Test.txt | 1 + conf/output/test-output-39.json | 23 ++++++++++++ conf/output/test-output-40.json | 54 ----------------------------- conf/output/test-output-strapi.json | 1 + 4 files changed, 25 insertions(+), 54 deletions(-) diff --git a/conf/RPB-Export_HBZ_Titel_Test.txt b/conf/RPB-Export_HBZ_Titel_Test.txt index 3b086873..9b6078a9 100644 --- a/conf/RPB-Export_HBZ_Titel_Test.txt +++ b/conf/RPB-Export_HBZ_Titel_Test.txt @@ -48,3 +48,4 @@ [/]#00 929t112197[/]#20 Seit 1911 weht im Vinzenzhaus der Geist der Nchstenliebe : 100-Jahr-Feier in Gebhardshain ; vom Konvent zum Seniorenheim[/]#30 _sn611070_[/]#31 _r99_ _o13209039_[/]#32 _16326855n1_ ; _00Sn10s3817103a_[/]#35 _r99_ _o13209039_ ; _sn611070_[/]#36 u[/]#37 _sn611070_ ; _r99_ _o13209039_[/]#40 _929n991002_[/]#70b66[/]#70h126 vom 31.05.[/]#70j2011[/]#70s24[/]#70tRhein-Zeitung, Ausg. H[/]#70yRhein-Zeitung, Ausg. H. - 66 (2011), 126 vom 31.05., S. 24[/]#76a2011[/]#76b2011[/]#77 Ill.[/]#88 2522761-0[/]#90dZB 151:2011;MZ 52:2011[/]#95 20110601/09:14:31KO[/]#96 20120809/16:13:40ZR[/] [/]#00 929t112198[/]#20 Das Leben der Bilder oder die Kunst des Sehens[/]#30 _sn848000_[/]#31 _r99_ _o13203050_[/]#32 _4114333n4_ ; _4143413n4_[/]#32a_118605364_[/]#35 _r99_ _o13203050_ ; _sn848000_[/]#36 s[/]#37 _sn848000_ ; _r99_ _o13203050_[/]#39 John Berger[/]#40 _00Pn11k2198999a_[/]#71 11. Aufl.[/]#74 Berlin[/]#75 Wagenbach[/]#76a2009[/]#76b2009[/]#77 141 S. : Ill.[/]#81 Aus dem Engl. bers.[/]#83 Sander, August / 1876-1964[/]#85 Salto ; [13][/]#87 3-8031-1114-5[/]#871978-3-8031-1114-2[/]#90d2011/1822[/]#95 20110601/09:39:26HBZ[/]#96 20110601/09:44:37KO[/]#983HT015954631[/] [/]#00 929t112199[/]#20 Charte vom Laufe des Rheins von Coblenz bis Wesel [Elektronische Ressource] : das Herzogthum Berg, die Grafschaften Wied, Nieder-Isenburg und andere Lnder vorstellend : mit rm. kaiserl. allergnaed. Freyheit[/]#27 Charte vom Laufe des Rheins von Koblenz bis Wesel [Elektronische Ressource] : das Herzogthum Berg, die Grafschaften Wied, Nieder-Isenburg und andere Lnder vorstellend : mit rm. kaiserl. allergnaed. Freyheit[/]#30 _sn126000_[/]#31 _r22_[/]#32 _4074902n2_ ; _4611904n8_ ; _4511937n5_[/]#32a_4042224n0_ ; _4611904n8_ ; _4511937n5_[/]#32b_4005659n4_ ; _4611904n8_ ; _4511937n5_[/]#35 _r22_ ; _sn126000_[/]#36 s[/]#37 _sn126000_ ; _r22_[/]#39 entworfen von F. L. Gssefeld ; [Stecher:] I. Rausch[/]#42 _00Gn11k2199217a_[/]#57 _178964131_[/]#571_00Pn01k23917383a_[/]#572_00Pn01t22981785a_[/]#74 Nrnberg[/]#75 Homnnische Erben[/]#76a1797[/]#76b1797[/]#77 1 Kt. : Kupferst. ; 57 x 41 cm[/]#81 Nebenkarte oben rechts: "Charte den Lauf des Rheins von Coblenz bis Unkel nebst den anliegenden Lndern enthaltend" (16 x 23 cm). - Nullmeridian: Ferro - Mastab in graph,. Form (Deutsche Meilen) - Titelkartusche unten links[/]#90ehttps://nbn-resolving.org/urn:nbn:de:hbz:061:1-42026[/]#95 20110601/09:46:34HBZ[/]#96 20110601/09:51:55KO[/]#983CT003007380[/] +[/]#00 929t111801[/]#19 Rhein-Zeitung / C[/]#20 Rhein-Zeitung : unabhngige Tageszeitung[/]#23 Ausg. C, Andernach/Mayen[/]#30 _sn882026_[/]#31 _r99_ _o137_[/]#32 _4038117n1_ ; _4067510n5_[/]#35 _r99_ _o137_ ; _sn882026_[/]#36 sm[/]#37 _sn882026_ ; _r99_ _o137_[/]#74 Koblenz[/]#75 Mittelrhein-Verl.[/]#76a2011[/]#76b2011[/]#81 Vorg. u.d.T.: Rhein-Zeitung / CA. - Vorg. u.d.T.: Rhein-Zeitung / CM[/]#88 2602949-2[/]#90dZB 32 MAG[/]#95 20110503/12:48:18HBZ[/]#96 20110503/13:09:46ZR[/]#97xper[/]#983HT016782154[/]#01 66.2011,77(1.Apr.) -[/]#36 sbd[/] diff --git a/conf/output/test-output-39.json b/conf/output/test-output-39.json index e69de29b..c32d6da4 100644 --- a/conf/output/test-output-39.json +++ b/conf/output/test-output-39.json @@ -0,0 +1,23 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB929t111801", + "label" : "Rhein-Zeitung : unabhängige Tageszeitung" + } ], + "numbering" : "66.2011,77(1.Apr.) -" + } ], + "rpbId" : "RPB929t111801b1", + "id" : "https://lobid.org/resources/RPB929t111801b1", + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "type" : [ "Collection" ], + "label" : "Rheinland-Pfälzische Bibliographie" + } ], + "title" : "Rhein-Zeitung : unabhängige Tageszeitung | 66.2011,77(1.Apr.) -", + "publication" : [ { + "type" : [ "PublicationEvent" ] + } ] +} diff --git a/conf/output/test-output-40.json b/conf/output/test-output-40.json index b0bba0e5..e69de29b 100644 --- a/conf/output/test-output-40.json +++ b/conf/output/test-output-40.json @@ -1,54 +0,0 @@ -{ - "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB929t112192", - "id" : "https://lobid.org/resources/RPB929t112192", - "inCollection" : [ { - "id" : "http://lobid.org/resources/HT013494180#!", - "type" : [ "Collection" ], - "label" : "Rheinland-Pfälzische Bibliographie" - } ], - "title" : "Aus der Vereinsgeschichte der KKG \"Kowelenzer Schängelcher\" 1922 e.V.", - "extent" : "Ill.", - "publication" : [ { - "startDate" : "2011", - "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n704043", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "KKG Rot-Weiß-Grün Kowelenzer Schängelcher | Geschichte 1922-2011", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/5114232-6", - "label" : "KKG Rot-Weiß-Grün Kowelenzer Schängelcher", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/00Sn11k2192145a", - "label" : "Geschichte 1922-2011", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n11100000", - "label" : "o11100000", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "bibliographicCitation" : "In: KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher: Sessionsheft. - (2011), Seite 23-33. -" -} diff --git a/conf/output/test-output-strapi.json b/conf/output/test-output-strapi.json index 599b0176..8a55f48f 100644 --- a/conf/output/test-output-strapi.json +++ b/conf/output/test-output-strapi.json @@ -38,3 +38,4 @@ {"f00_":"929t112195","f20_":"¬Der¬ BAP kam aus Unkel","f30_":"_sn824000_","f31_":"_r99_ _o13807073_","f32_":"_4061836n5_ ; _118942247_ ; _4006804n3_","f35_":"_r99_ _o13807073_ ; _sn824000_","f36_":"u","f37_":"_sn824000_ ; _r99_ _o13807073_","f40_":"_00Pn08k0685884a_","f70_":"¬Der¬ Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 16-18","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2515501-5","f90d":"ZA 5649:2011 MAG","f95_":"20110601/08:50:59\u001FKO","f96_":"20110603/08:31:46\u001FKO","f30":[{"f30_":"_sn824000_"}],"f31":[{"f31_":"_r99_ _o13807073_"}],"f32":[{"f32_":"_4061836n5_ ; _118942247_ ; _4006804n3_"}],"f40":[{"f40_":"_00Pn08k0685884a_","n40a":"Verfasser"}]} {"f00_":"929t112196","f20_":"Coming home mit Commende","f30_":"_sn844200_","f30a":"_sn844000_","f31_":"_r99_ _o13809076_","f31a":"_r99_ _o13809076_","f32_":"_929n090287_ ; _4011457n0_ ; _00Sn09k1362487a_ ; _4454409n1_ ; _00Sn09m0508511a_","f35_":"_r99_ _o13809076_ ; _sn844200_","f35a":"_r99_ _o13809076_ ; _sn844000_","f36_":"u","f37_":"_sn844200_ ; _r99_ _o13809076_","f37a":"_sn844000_ ; _r99_ _o13809076_","f40_":"_00Pn08k0685884a_","f70_":"¬Der¬ Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 26-27","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2515501-5","f90d":"ZA 5649:2011 MAG","f95_":"20110601/08:57:45\u001FKO","f96_":"20110603/08:31:32\u001FKO","f30":[{"f30_":"_sn844200_"},{"f30_":"_sn844000_"}],"f31":[{"f31_":"_r99_ _o13809076_"},{"f31_":"_r99_ _o13809076_"}],"f32":[{"f32_":"_929n090287_ ; _4011457n0_ ; _00Sn09k1362487a_ ; _4454409n1_ ; _00Sn09m0508511a_"}],"f40":[{"f40_":"_00Pn08k0685884a_","n40a":"Verfasser"}]} {"f00_":"929t112197","f20_":"Seit 1911 weht im Vinzenzhaus der Geist der Nächstenliebe : 100-Jahr-Feier in Gebhardshain ; vom Konvent zum Seniorenheim","f30_":"_sn611070_","f31_":"_r99_ _o13209039_","f32_":"_16326855n1_ ; _00Sn10s3817103a_","f35_":"_r99_ _o13209039_ ; _sn611070_","f36_":"u","f37_":"_sn611070_ ; _r99_ _o13209039_","f40_":"_929n991002_","f70b":"66","f70h":"126 vom 31.05.","f70j":"2011","f70s":"24","f70t":"Rhein-Zeitung, Ausg. H","f70y":"Rhein-Zeitung, Ausg. H. - 66 (2011), 126 vom 31.05., S. 24","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2522761-0","f90d":"ZB 151:2011;MZ 52:2011","f95_":"20110601/09:14:31\u001FKO","f96_":"20120809/16:13:40\u001FZR","f30":[{"f30_":"_sn611070_"}],"f31":[{"f31_":"_r99_ _o13209039_"}],"f32":[{"f32_":"_16326855n1_ ; _00Sn10s3817103a_"}],"f40":[{"f40_":"_929n991002_","n40a":"Verfasser"}]} +{"f00_":"929t111801b1","f20ü":"Rhein-Zeitung : unabhängige Tageszeitung","f01_":"66.2011,77(1.Apr.) -","f36_":"sbd"} From 3a199e0de2da205f46dbf3542deeb48a99477fee Mon Sep 17 00:00:00 2001 From: Fabian Steeg Date: Fri, 7 Jul 2023 12:51:45 +0200 Subject: [PATCH 09/12] Set `Periodical`, not `MultiVolumeBook` if `#88 ` exists (RPB-28) --- app/rpb/Decode.java | 3 ++- test/rpb/DecodeTest.java | 26 +++++++++++++++++++++++++- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/app/rpb/Decode.java b/app/rpb/Decode.java index 4b83ce17..645cb22d 100644 --- a/app/rpb/Decode.java +++ b/app/rpb/Decode.java @@ -51,7 +51,8 @@ private void processFields(final String[] vals) { } else if(inMultiVolumeRecord && "#01 ".equals(k)) { if(volumeCounter == 0 && currentRecord.contains("#36 sbd")) { // s. RPB-28 // we're still in the main (multi volume) record, so we mark that here: - getReceiver().literal(fieldName("#36t"), "MultiVolumeBook"); + getReceiver().literal(fieldName("#36t"), + currentRecord.contains("#88 ") ? "Periodical" : "MultiVolumeBook"); } getReceiver().endRecord(); // first time, we end main record, then each volume volumeCounter++; diff --git a/test/rpb/DecodeTest.java b/test/rpb/DecodeTest.java index 3b720a2f..3f4081da 100644 --- a/test/rpb/DecodeTest.java +++ b/test/rpb/DecodeTest.java @@ -64,7 +64,7 @@ public void processRecord() { @Test public void processRecordWithMultipleVolumes() { - // 'sm' & 'sbd' in '#36 ' -> treat as multiple volumes with their own titles + // 'sm' & 'sbd' in '#36 ' -> treat as MultiVolumeBook with their own titles test("[/]#00 929t124030[/]#20 Deutsche Binnenwasserstraßen[/]#36 sm[/]" + "#01 6/2022[/]#36 sbd[/]#20 Der Rhein - Rheinfelden bis Koblenz[/]" + "#01 7. Band 2022[/]#20 Der Rhein - Koblenz bis Tolkamer[/]" @@ -106,6 +106,30 @@ public void processRecordWithMultipleVolumes() { }); } + @Test + public void processPeriodicalWithMultipleVolumes() { + // 'sm' & 'sbd' in '#36 ' & '#88 ' -> treat as Periodical with their own titles + test("[/]#00 929t111930[/]#20 Sommerspiele Koblenz : Operette auf dem Rhein[/]#36 sm[/]#88 1201241-5[/]" + + "#01 1958 - 1968 nachgewiesen[/]#36 sbd[/]", + () -> { + final InOrder ordered = inOrder(receiver); + ordered.verify(receiver).startRecord("929t111930"); + ordered.verify(receiver).literal("f00_", "929t111930"); + ordered.verify(receiver).literal("f20_", "Sommerspiele Koblenz : Operette auf dem Rhein"); + ordered.verify(receiver).literal("f36_", "sm"); + ordered.verify(receiver).literal("f88_", "1201241-5"); + ordered.verify(receiver).literal("f36t", "Periodical"); + ordered.verify(receiver).endRecord(); + ordered.verify(receiver).startRecord("929t111930b1"); + ordered.verify(receiver).literal("f00_", "929t111930b1"); + ordered.verify(receiver).literal("f20ü", "Sommerspiele Koblenz : Operette auf dem Rhein"); + ordered.verify(receiver).literal("f01_", "1958 - 1968 nachgewiesen"); + ordered.verify(receiver).literal("f36_", "sbd"); + ordered.verify(receiver).endRecord(); + ordered.verifyNoMoreInteractions(); + }); + } + @Test public void processRecordWithMultipleTitles() { // No 'sm' in '#36 ' -> treat as multiple titles of single volume From 6e3fd5feaba01889afe4038f69f7c018cf85d491 Mon Sep 17 00:00:00 2001 From: Fabian Steeg Date: Tue, 11 Jul 2023 13:03:33 +0200 Subject: [PATCH 10/12] Show `publicationHistory` in details view (RPB-28) --- app/views/tags/result_doc.scala.html | 1 + 1 file changed, 1 insertion(+) diff --git a/app/views/tags/result_doc.scala.html b/app/views/tags/result_doc.scala.html index f06c7559..f13a593c 100644 --- a/app/views/tags/result_doc.scala.html +++ b/app/views/tags/result_doc.scala.html @@ -51,6 +51,7 @@ @((pub\"frequency").asOpt[Seq[JsValue]].map { freq => optional("Erscheinungsweise", "label", freq.head) }) + @optional("Erscheinungsverlauf", "publicationHistory", pub) } From f7e65bbe29ea29d9f083fccf6fc72c6a9db0597e Mon Sep 17 00:00:00 2001 From: Fabian Steeg Date: Tue, 8 Aug 2023 10:55:39 +0200 Subject: [PATCH 11/12] Reject subordinate records where superordinate is in lobid (RPB-28) --- conf/output/test-output-26.json | 57 +++++++++++++---- conf/output/test-output-27.json | 14 ++--- conf/output/test-output-28.json | 76 +++++++++++++++++----- conf/output/test-output-29.json | 97 +++++++++++++++++++++++++---- conf/output/test-output-30.json | 69 +++++++++++++++----- conf/output/test-output-31.json | 13 ++-- conf/output/test-output-32.json | 24 ------- conf/output/test-output-strapi.json | 8 --- conf/rpb-titel-to-strapi.fix | 1 + 9 files changed, 259 insertions(+), 100 deletions(-) diff --git a/conf/output/test-output-26.json b/conf/output/test-output-26.json index 70331c0c..b0bba0e5 100644 --- a/conf/output/test-output-26.json +++ b/conf/output/test-output-26.json @@ -1,23 +1,54 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982373", - "label" : "SWR-3-Clubmagazin" - } ], - "numbering" : "1998,1(Sept.) -" - } ], - "rpbId" : "RPB107t982373b1", - "id" : "https://lobid.org/resources/RPB107t982373b1", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112192", + "id" : "https://lobid.org/resources/RPB929t112192", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "SWR-3-Clubmagazin | 1998,1(Sept.) -", + "title" : "Aus der Vereinsgeschichte der KKG \"Kowelenzer Schängelcher\" 1922 e.V.", + "extent" : "Ill.", "publication" : [ { + "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n704043", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "KKG Rot-Weiß-Grün Kowelenzer Schängelcher | Geschichte 1922-2011", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/5114232-6", + "label" : "KKG Rot-Weiß-Grün Kowelenzer Schängelcher", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/00Sn11k2192145a", + "label" : "Geschichte 1922-2011", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n11100000", + "label" : "o11100000", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "bibliographicCitation" : "In: KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher: Sessionsheft. - (2011), Seite 23-33. -" } diff --git a/conf/output/test-output-27.json b/conf/output/test-output-27.json index 9e04f481..03c7d4ed 100644 --- a/conf/output/test-output-27.json +++ b/conf/output/test-output-27.json @@ -4,20 +4,20 @@ "isPartOf" : [ { "type" : [ "IsPartOfRelation" ], "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982374", - "label" : "On : SWF 3, das Magazin" + "id" : "https://lobid.org/resources/RPB929t112193", + "label" : "Aktuell : das Krankenhaus in Ihrer Region" } ], - "numbering" : "1992 - 1998,2" + "numbering" : "Nachgewiesen 2010 - 2012,1" } ], - "rpbId" : "RPB107t982374b1", - "id" : "https://lobid.org/resources/RPB107t982374b1", + "rpbId" : "RPB929t112193b1", + "id" : "https://lobid.org/resources/RPB929t112193b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "On : SWF 3, das Magazin | 1992 - 1998,2", - "note" : [ "Damit Erscheinen eingest. - Forts. u.d.T.: SWR-3-Clubmagazin" ], + "title" : "Aktuell : das Krankenhaus in Ihrer Region | Nachgewiesen 2010 - 2012,1", + "note" : [ "Nachfolger: Kaleidoskop. 2012 -" ], "publication" : [ { "type" : [ "PublicationEvent" ] } ] diff --git a/conf/output/test-output-28.json b/conf/output/test-output-28.json index 4ee2a79f..20c4d5ab 100644 --- a/conf/output/test-output-28.json +++ b/conf/output/test-output-28.json @@ -1,24 +1,72 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982375", - "label" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz" - } ], - "numbering" : "1998,1(Sept.) - 2001,9(Sept.)" - } ], - "rpbId" : "RPB107t982375b1", - "id" : "https://lobid.org/resources/RPB107t982375b1", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112195", + "id" : "https://lobid.org/resources/RPB929t112195", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz | 1998,1(Sept.) - 2001,9(Sept.)", - "note" : [ "Forts. u.d.T.: Doppelpfeil" ], + "title" : "¬Der¬ BAP kam aus Unkel", + "extent" : "Ill.", "publication" : [ { + "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n824000", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Unkel | Niedecken, Wolfgang / 1951- | Biografie", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/4061836-5", + "label" : "Unkel", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/118942247", + "label" : "Niedecken, Wolfgang / 1951-", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://d-nb.info/gnd/4006804-3", + "label" : "Biografie", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n13807073", + "label" : "o13807073", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://rpb.lobid.org/agent/00Pn08k0685884a", + "label" : "Ruland, Wolfgang" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + } ], + "bibliographicCitation" : "Der Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 16-18" } diff --git a/conf/output/test-output-29.json b/conf/output/test-output-29.json index 016590f8..2a086099 100644 --- a/conf/output/test-output-29.json +++ b/conf/output/test-output-29.json @@ -1,23 +1,94 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982376", - "label" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte" - } ], - "numbering" : "Ausg. 1.1997(Dez.) -" - } ], - "rpbId" : "RPB107t982376b1", - "id" : "https://lobid.org/resources/RPB107t982376b1", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112196", + "id" : "https://lobid.org/resources/RPB929t112196", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte | Ausg. 1.1997(Dez.) -", + "title" : "Coming home mit Commende", + "extent" : "Ill.", "publication" : [ { + "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n844200", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "id" : "http://purl.org/lobid/rpb#n844000", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Deutscher Orden / Kommende Waldbreitbach | Denkmalschutz | Schicker, Viktor | Private Investition | Geschichte 2009-2011", + "componentList" : [ { + "id" : "https://rpb.lobid.org/sw/929n090287", + "label" : "Deutscher Orden / Kommende Waldbreitbach", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4011457-0", + "label" : "Denkmalschutz", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/00Sn09k1362487a", + "label" : "Schicker, Viktor", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + }, { + "id" : "https://d-nb.info/gnd/4454409-1", + "label" : "Private Investition", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/00Sn09m0508511a", + "label" : "Geschichte 2009-2011", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n13809076", + "label" : "o13809076", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://rpb.lobid.org/agent/00Pn08k0685884a", + "label" : "Ruland, Wolfgang" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + } ], + "bibliographicCitation" : "Der Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 26-27" } diff --git a/conf/output/test-output-30.json b/conf/output/test-output-30.json index 4297a20e..7484116b 100644 --- a/conf/output/test-output-30.json +++ b/conf/output/test-output-30.json @@ -1,24 +1,65 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982377", - "label" : "¬Der¬ Rasenspieler : das Journal zur Saison ..." - } ], - "numbering" : "Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03" - } ], - "rpbId" : "RPB107t982377b1", - "id" : "https://lobid.org/resources/RPB107t982377b1", + "type" : [ "BibliographicResource", "Article" ], + "rpbId" : "RPB929t112197", + "id" : "https://lobid.org/resources/RPB929t112197", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Der¬ Rasenspieler : das Journal zur Saison ... | Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03", - "note" : [ "Damit Erscheinen eingest." ], + "title" : "Seit 1911 weht im Vinzenzhaus der Geist der Nächstenliebe : 100-Jahr-Feier in Gebhardshain ; vom Konvent zum Seniorenheim", + "extent" : "Ill.", "publication" : [ { + "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ] + } ], + "subject" : [ { + "id" : "http://purl.org/lobid/rpb#n611070", + "label" : "Platzhalter Schlagwortlabel", + "type" : [ "Concept" ], + "source" : { + "id" : "http://purl.org/lobid/rpb", + "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" + } + }, { + "type" : [ "ComplexSubject" ], + "label" : "Alten- und Pflegeheim St.-Vinzenzhaus / Gebhardshain | Geschichte 1911-2011", + "componentList" : [ { + "id" : "https://d-nb.info/gnd/16326855-1", + "label" : "Alten- und Pflegeheim St.-Vinzenzhaus / Gebhardshain", + "source" : { + "id" : "https://d-nb.info/gnd/7749153-1", + "label" : "Gemeinsame Normdatei (GND)" + } + }, { + "id" : "https://rpb.lobid.org/sw/00Sn10s3817103a", + "label" : "Geschichte 1911-2011", + "source" : { + "id" : "http://rpb.lobid.org/sw", + "label" : "RPB-Sachsystematik" + } + } ] + } ], + "spatial" : [ { + "id" : "https://rpb.lobid.org/spatial#n13209039", + "label" : "o13209039", + "type" : [ "Concept" ], + "source" : { + "id" : "https://rpb.lobid.org/spatial", + "label" : "RPB-Raumsystematik" + } + } ], + "contribution" : [ { + "agent" : { + "id" : "https://rpb.lobid.org/agent/929n991002", + "label" : "Weger, Joachim" + }, + "role" : { + "id" : "http://id.loc.gov/vocabulary/relators/aut", + "label" : "Autor/in" + }, + "type" : [ "Contribution" ] + } ], + "bibliographicCitation" : "In: Rhein-Zeitung, Ausg. H. - 66 (2011), 126 vom 31.05., Seite 24. -" } diff --git a/conf/output/test-output-31.json b/conf/output/test-output-31.json index c204ed8b..c32d6da4 100644 --- a/conf/output/test-output-31.json +++ b/conf/output/test-output-31.json @@ -4,20 +4,19 @@ "isPartOf" : [ { "type" : [ "IsPartOfRelation" ], "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982378", - "label" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen" + "id" : "https://lobid.org/resources/RPB929t111801", + "label" : "Rhein-Zeitung : unabhängige Tageszeitung" } ], - "numbering" : "1998,Apr." + "numbering" : "66.2011,77(1.Apr.) -" } ], - "rpbId" : "RPB107t982378b1", - "id" : "https://lobid.org/resources/RPB107t982378b1", + "rpbId" : "RPB929t111801b1", + "id" : "https://lobid.org/resources/RPB929t111801b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen | 1998,Apr.", - "note" : [ "Mit dieser Ausg. Erscheinen eingest." ], + "title" : "Rhein-Zeitung : unabhängige Tageszeitung | 66.2011,77(1.Apr.) -", "publication" : [ { "type" : [ "PublicationEvent" ] } ] diff --git a/conf/output/test-output-32.json b/conf/output/test-output-32.json index ba36aae3..e69de29b 100644 --- a/conf/output/test-output-32.json +++ b/conf/output/test-output-32.json @@ -1,24 +0,0 @@ -{ - "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Book" ], - "isPartOf" : [ { - "type" : [ "IsPartOfRelation" ], - "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB107t982379", - "label" : "Wer ist wo" - } ], - "numbering" : "1994/95(1995)" - } ], - "rpbId" : "RPB107t982379b1", - "id" : "https://lobid.org/resources/RPB107t982379b1", - "inCollection" : [ { - "id" : "http://lobid.org/resources/HT013494180#!", - "type" : [ "Collection" ], - "label" : "Rheinland-Pfälzische Bibliographie" - } ], - "title" : "Wer ist wo | 1994/95(1995)", - "note" : [ "Letzter Jahrgang, damit Erscheinen eingestellt" ], - "publication" : [ { - "type" : [ "PublicationEvent" ] - } ] -} diff --git a/conf/output/test-output-strapi.json b/conf/output/test-output-strapi.json index 8a55f48f..c5cfe84b 100644 --- a/conf/output/test-output-strapi.json +++ b/conf/output/test-output-strapi.json @@ -25,16 +25,8 @@ {"f00_":"107t982370","f20_":"\"¬Der¬ Holocaust ist immer da\": Kooperationsprojekt Offener Kanal Ludwigshafen, Vorderpfalz und Community Television, Israel","f30_":"_sn632050_","f30a":"_sn882060_","f31_":"_r99_ _o31400000_","f31a":"_r99_ _o31400000_","f32_":"_4036472n0_ ; _4172489n6_ ; _4073091n8_","f35_":"_r99_ _o31400000_ ; _sn632050_","f35a":"_r99_ _o31400000_ ; _sn882060_","f36_":"u","f37_":"_sn632050_ ; _r99_ _o31400000_","f37a":"_sn882060_ ; _r99_ _o31400000_","f40_":"_106837800X_","f70_":"Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 102-106","f76a":"1997","f76b":"1997","f87_":"3-89331-303-6","f90b":"3a 5094","f95_":"19990702/13:46:41\u001FSP","f96_":"20060111/13:16:43\u001FSP","f30":[{"f30_":"_sn632050_"},{"f30_":"_sn882060_"}],"f31":[{"f31_":"_r99_ _o31400000_"},{"f31_":"_r99_ _o31400000_"}],"f32":[{"f32_":"_4036472n0_ ; _4172489n6_ ; _4073091n8_"}],"f40":[{"f40_":"_106837800X_","n40a":"Verfasser"}]} {"f00_":"107t982371","f20_":"Ältere Menschen machen Fernsehen : aktivierende Medienarbeit in Offenen Kanälen","f30_":"_sn786000_","f30a":"_sn882060_","f31_":"_r99_ _o31400000_","f31a":"_r99_ _o31400000_","f32_":"_4036472n0_ ; _4136151n9_ ; _z64_","f32a":"_4036472n0_ ; _4172489n6_ ; _z64_","f32b":"_4036472n0_ ; _4001446n0_ ; _z64_","f35_":"_r99_ _o31400000_ ; _sn786000_","f35a":"_r99_ _o31400000_ ; _sn882060_","f36_":"u","f37_":"_sn786000_ ; _r99_ _o31400000_","f37a":"_sn882060_ ; _r99_ _o31400000_","f40_":"_00Pn02s0022a_","f70_":"Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 119-123","f76a":"1997","f76b":"1997","f81_":"Videoprojekt zwischen Volkshochschule u. Offener Kanal","f87_":"3-89331-303-6","f90b":"3a 5094","f95_":"19991008/16:58:26\u001FSP","f96_":"19991008/16:58:26\u001FSP","f30":[{"f30_":"_sn786000_"},{"f30_":"_sn882060_"}],"f31":[{"f31_":"_r99_ _o31400000_"},{"f31_":"_r99_ _o31400000_"}],"f32":[{"f32_":"_4036472n0_ ; _4136151n9_ ; _z64_"},{"f32_":"_4036472n0_ ; _4172489n6_ ; _z64_"},{"f32_":"_4036472n0_ ; _4001446n0_ ; _z64_"}],"f81":[{"f81_":"Videoprojekt zwischen Volkshochschule u. Offener Kanal"}],"f40":[{"f40_":"_00Pn02s0022a_","n40a":"Verfasser"}]} {"f00_":"107t982372","f20_":"Zur politischen Tragweite schulischer Medienarbeit : was \"lernen\" Gymnasiasten, wenn sie \"im Auftrag\" eines Berufsinformationszentrums Live-Sendungen für Schüler anderer Schularten produzieren?","f30_":"_sn784080_","f30a":"_sn882060_","f31_":"_r99_ _o31400000_","f31a":"_r99_ _o31400000_","f32_":"_4036472n0_ ; _4172489n6_","f32a":"_107n220353_","f35_":"_r99_ _o31400000_ ; _sn784080_","f35a":"_r99_ _o31400000_ ; _sn882060_","f36_":"u","f37_":"_sn784080_ ; _r99_ _o31400000_","f37a":"_sn882060_ ; _r99_ _o31400000_","f39_":"Karl-Ludwig Kemen ; Gerhard Laubscher","f40_":"_00Pn98s2372a_","f401":"_00Pn98s2372b_","f70_":"Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 124-144","f76a":"1997","f76b":"1997","f77_":"Graph. Darst.","f81_":"Medien-AG d. Wilhelm-von-Humboldt-Gymnasiums","f87_":"3-89331-303-6","f90b":"3a 5094","f95_":"19990702/14:55:39\u001FSP","f96_":"20220826/12:03:41\u001FSP","f30":[{"f30_":"_sn784080_"},{"f30_":"_sn882060_"}],"f31":[{"f31_":"_r99_ _o31400000_"},{"f31_":"_r99_ _o31400000_"}],"f32":[{"f32_":"_4036472n0_ ; _4172489n6_"},{"f32_":"_107n220353_"}],"f81":[{"f81_":"Medien-AG d. Wilhelm-von-Humboldt-Gymnasiums"}],"f40":[{"f40_":"_00Pn98s2372a_","n40a":"Verfasser"},{"f40_":"_00Pn98s2372b_","n40a":"Verfasser"}]} -{"f00_":"107t982373b1","f20ü":"SWR-3-Clubmagazin","f01_":"1998,1(Sept.) -","f36_":"sbd","f90b":"Per. 15621/1998-"} -{"f00_":"107t982374b1","f20ü":"On : SWF 3, das Magazin","f01_":"1992 - 1998,2","f36_":"sbd","f81_":"Damit Erscheinen eingest. - Forts. u.d.T.: SWR-3-Clubmagazin","f90b":"Per. 14726/1995-1998,2","f81":[{"f81_":"Damit Erscheinen eingest. - Forts. u.d.T.: SWR-3-Clubmagazin"}]} -{"f00_":"107t982375b1","f20ü":"¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz","f01_":"1998,1(Sept.) - 2001,9(Sept.)","f36_":"sbd","f81_":"Forts. u.d.T.: Doppelpfeil","f90b":"Per. 15620/1998,1-2001,9","f81":[{"f81_":"Forts. u.d.T.: Doppelpfeil"}]} -{"f00_":"107t982376b1","f20ü":"Flieg und flatter : Aktuelles aus der Vogelschutzwarte","f01_":"Ausg. 1.1997(Dez.) -","f36_":"sbd","f90b":"Per. 15655/1.1997-"} -{"f00_":"107t982377b1","f20ü":"¬Der¬ Rasenspieler : das Journal zur Saison ...","f01_":"Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03","f36_":"sbd","f81_":"Damit Erscheinen eingest.","f90b":"Per. 15748/1998/99-2000/01;Per. 17032/2001/02-2002/03","f81":[{"f81_":"Damit Erscheinen eingest."}]} -{"f00_":"107t982378b1","f20ü":"¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen","f01_":"1998,Apr.","f36_":"sbd","f81_":"Mit dieser Ausg. Erscheinen eingest.","f90b":"Per. 15740/1998","f81":[{"f81_":"Mit dieser Ausg. Erscheinen eingest."}]} -{"f00_":"107t982379b1","f20ü":"Wer ist wo","f01_":"1994/95(1995)","f36_":"sbd","f76b":"1995","f81_":"Letzter Jahrgang, damit Erscheinen eingestellt","f90b":"Per. 11060/ 1994/95","f81":[{"f81_":"Letzter Jahrgang, damit Erscheinen eingestellt"}]} {"f00_":"929t112192","f20_":"Aus der Vereinsgeschichte der KKG \"Kowelenzer Schängelcher\" 1922 e.V.","f30_":"_sn704043_","f31_":"_r99_ _o11100000_","f32_":"_5114232n6_ ; _00Sn11k2192145a_","f35_":"_r99_ _o11100000_ ; _sn704043_","f36_":"u","f37_":"_sn704043_ ; _r99_ _o11100000_","f70j":"2011","f70k":"KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher","f70s":"23-33","f70t":"Sessionsheft","f70y":"KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher: Sessionsheft. - 2011, S. 23-33","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2253285-7","f90d":"Z 2287:2011","f95_":"20110531/16:02:12\u001FKO","f96_":"20110531/16:02:12\u001FKO","f30":[{"f30_":"_sn704043_"}],"f31":[{"f31_":"_r99_ _o11100000_"}],"f32":[{"f32_":"_5114232n6_ ; _00Sn11k2192145a_"}]} {"f00_":"929t112193b1","f20ü":"Aktuell : das Krankenhaus in Ihrer Region","f01_":"Nachgewiesen 2010 - 2012,1","f36_":"sbd","f81_":"Nachfolger: Kaleidoskop. 2012 -","f81":[{"f81_":"Nachfolger: Kaleidoskop. 2012 -"}]} -{"f00_":"929t112194b1","f20ü":"Clubzeitung","f01_":"Nachgewiesen 2006,2 -","f36_":"sbd"} {"f00_":"929t112195","f20_":"¬Der¬ BAP kam aus Unkel","f30_":"_sn824000_","f31_":"_r99_ _o13807073_","f32_":"_4061836n5_ ; _118942247_ ; _4006804n3_","f35_":"_r99_ _o13807073_ ; _sn824000_","f36_":"u","f37_":"_sn824000_ ; _r99_ _o13807073_","f40_":"_00Pn08k0685884a_","f70_":"¬Der¬ Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 16-18","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2515501-5","f90d":"ZA 5649:2011 MAG","f95_":"20110601/08:50:59\u001FKO","f96_":"20110603/08:31:46\u001FKO","f30":[{"f30_":"_sn824000_"}],"f31":[{"f31_":"_r99_ _o13807073_"}],"f32":[{"f32_":"_4061836n5_ ; _118942247_ ; _4006804n3_"}],"f40":[{"f40_":"_00Pn08k0685884a_","n40a":"Verfasser"}]} {"f00_":"929t112196","f20_":"Coming home mit Commende","f30_":"_sn844200_","f30a":"_sn844000_","f31_":"_r99_ _o13809076_","f31a":"_r99_ _o13809076_","f32_":"_929n090287_ ; _4011457n0_ ; _00Sn09k1362487a_ ; _4454409n1_ ; _00Sn09m0508511a_","f35_":"_r99_ _o13809076_ ; _sn844200_","f35a":"_r99_ _o13809076_ ; _sn844000_","f36_":"u","f37_":"_sn844200_ ; _r99_ _o13809076_","f37a":"_sn844000_ ; _r99_ _o13809076_","f40_":"_00Pn08k0685884a_","f70_":"¬Der¬ Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 26-27","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2515501-5","f90d":"ZA 5649:2011 MAG","f95_":"20110601/08:57:45\u001FKO","f96_":"20110603/08:31:32\u001FKO","f30":[{"f30_":"_sn844200_"},{"f30_":"_sn844000_"}],"f31":[{"f31_":"_r99_ _o13809076_"},{"f31_":"_r99_ _o13809076_"}],"f32":[{"f32_":"_929n090287_ ; _4011457n0_ ; _00Sn09k1362487a_ ; _4454409n1_ ; _00Sn09m0508511a_"}],"f40":[{"f40_":"_00Pn08k0685884a_","n40a":"Verfasser"}]} {"f00_":"929t112197","f20_":"Seit 1911 weht im Vinzenzhaus der Geist der Nächstenliebe : 100-Jahr-Feier in Gebhardshain ; vom Konvent zum Seniorenheim","f30_":"_sn611070_","f31_":"_r99_ _o13209039_","f32_":"_16326855n1_ ; _00Sn10s3817103a_","f35_":"_r99_ _o13209039_ ; _sn611070_","f36_":"u","f37_":"_sn611070_ ; _r99_ _o13209039_","f40_":"_929n991002_","f70b":"66","f70h":"126 vom 31.05.","f70j":"2011","f70s":"24","f70t":"Rhein-Zeitung, Ausg. H","f70y":"Rhein-Zeitung, Ausg. H. - 66 (2011), 126 vom 31.05., S. 24","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2522761-0","f90d":"ZB 151:2011;MZ 52:2011","f95_":"20110601/09:14:31\u001FKO","f96_":"20120809/16:13:40\u001FZR","f30":[{"f30_":"_sn611070_"}],"f31":[{"f31_":"_r99_ _o13209039_"}],"f32":[{"f32_":"_16326855n1_ ; _00Sn10s3817103a_"}],"f40":[{"f40_":"_929n991002_","n40a":"Verfasser"}]} diff --git a/conf/rpb-titel-to-strapi.fix b/conf/rpb-titel-to-strapi.fix index 4b2310de..ef9946c6 100644 --- a/conf/rpb-titel-to-strapi.fix +++ b/conf/rpb-titel-to-strapi.fix @@ -10,6 +10,7 @@ do once() "rpbId2almaMmsId", "key_column": "1", "value_column": "0", "sep_char": "\t") end paste("inLobid", "~RPB", "f00_", "join_char": "") +replace_all("inLobid", "(.+)b\\d+$", "$1") lookup("inLobid", "rpbId2almaMmsId", "delete": "true") if exists("inLobid") reject() From 72f78e1660ede674129b314d265599b4025e8bf8 Mon Sep 17 00:00:00 2001 From: Fabian Steeg Date: Tue, 8 Aug 2023 15:35:00 +0200 Subject: [PATCH 12/12] Revert rejecting records where superordinate is in lobid (RPB-28) --- conf/output/test-output-26.json | 57 ++++------------- conf/output/test-output-27.json | 14 ++--- conf/output/test-output-28.json | 76 +++++----------------- conf/output/test-output-29.json | 97 ++++------------------------- conf/output/test-output-30.json | 69 +++++--------------- conf/output/test-output-31.json | 13 ++-- conf/output/test-output-32.json | 24 +++++++ conf/output/test-output-strapi.json | 8 +++ conf/rpb-titel-to-strapi.fix | 1 - 9 files changed, 100 insertions(+), 259 deletions(-) diff --git a/conf/output/test-output-26.json b/conf/output/test-output-26.json index b0bba0e5..70331c0c 100644 --- a/conf/output/test-output-26.json +++ b/conf/output/test-output-26.json @@ -1,54 +1,23 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB929t112192", - "id" : "https://lobid.org/resources/RPB929t112192", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982373", + "label" : "SWR-3-Clubmagazin" + } ], + "numbering" : "1998,1(Sept.) -" + } ], + "rpbId" : "RPB107t982373b1", + "id" : "https://lobid.org/resources/RPB107t982373b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Aus der Vereinsgeschichte der KKG \"Kowelenzer Schängelcher\" 1922 e.V.", - "extent" : "Ill.", + "title" : "SWR-3-Clubmagazin | 1998,1(Sept.) -", "publication" : [ { - "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n704043", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "KKG Rot-Weiß-Grün Kowelenzer Schängelcher | Geschichte 1922-2011", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/5114232-6", - "label" : "KKG Rot-Weiß-Grün Kowelenzer Schängelcher", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/00Sn11k2192145a", - "label" : "Geschichte 1922-2011", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n11100000", - "label" : "o11100000", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "bibliographicCitation" : "In: KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher: Sessionsheft. - (2011), Seite 23-33. -" + } ] } diff --git a/conf/output/test-output-27.json b/conf/output/test-output-27.json index 03c7d4ed..9e04f481 100644 --- a/conf/output/test-output-27.json +++ b/conf/output/test-output-27.json @@ -4,20 +4,20 @@ "isPartOf" : [ { "type" : [ "IsPartOfRelation" ], "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB929t112193", - "label" : "Aktuell : das Krankenhaus in Ihrer Region" + "id" : "https://lobid.org/resources/RPB107t982374", + "label" : "On : SWF 3, das Magazin" } ], - "numbering" : "Nachgewiesen 2010 - 2012,1" + "numbering" : "1992 - 1998,2" } ], - "rpbId" : "RPB929t112193b1", - "id" : "https://lobid.org/resources/RPB929t112193b1", + "rpbId" : "RPB107t982374b1", + "id" : "https://lobid.org/resources/RPB107t982374b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Aktuell : das Krankenhaus in Ihrer Region | Nachgewiesen 2010 - 2012,1", - "note" : [ "Nachfolger: Kaleidoskop. 2012 -" ], + "title" : "On : SWF 3, das Magazin | 1992 - 1998,2", + "note" : [ "Damit Erscheinen eingest. - Forts. u.d.T.: SWR-3-Clubmagazin" ], "publication" : [ { "type" : [ "PublicationEvent" ] } ] diff --git a/conf/output/test-output-28.json b/conf/output/test-output-28.json index 20c4d5ab..4ee2a79f 100644 --- a/conf/output/test-output-28.json +++ b/conf/output/test-output-28.json @@ -1,72 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB929t112195", - "id" : "https://lobid.org/resources/RPB929t112195", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982375", + "label" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz" + } ], + "numbering" : "1998,1(Sept.) - 2001,9(Sept.)" + } ], + "rpbId" : "RPB107t982375b1", + "id" : "https://lobid.org/resources/RPB107t982375b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "¬Der¬ BAP kam aus Unkel", - "extent" : "Ill.", + "title" : "¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz | 1998,1(Sept.) - 2001,9(Sept.)", + "note" : [ "Forts. u.d.T.: Doppelpfeil" ], "publication" : [ { - "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n824000", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Unkel | Niedecken, Wolfgang / 1951- | Biografie", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/4061836-5", - "label" : "Unkel", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/118942247", - "label" : "Niedecken, Wolfgang / 1951-", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://d-nb.info/gnd/4006804-3", - "label" : "Biografie", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n13807073", - "label" : "o13807073", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn08k0685884a", - "label" : "Ruland, Wolfgang" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" - }, - "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "Der Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 16-18" + } ] } diff --git a/conf/output/test-output-29.json b/conf/output/test-output-29.json index 2a086099..016590f8 100644 --- a/conf/output/test-output-29.json +++ b/conf/output/test-output-29.json @@ -1,94 +1,23 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB929t112196", - "id" : "https://lobid.org/resources/RPB929t112196", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982376", + "label" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte" + } ], + "numbering" : "Ausg. 1.1997(Dez.) -" + } ], + "rpbId" : "RPB107t982376b1", + "id" : "https://lobid.org/resources/RPB107t982376b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Coming home mit Commende", - "extent" : "Ill.", + "title" : "Flieg und flatter : Aktuelles aus der Vogelschutzwarte | Ausg. 1.1997(Dez.) -", "publication" : [ { - "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n844200", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "id" : "http://purl.org/lobid/rpb#n844000", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Deutscher Orden / Kommende Waldbreitbach | Denkmalschutz | Schicker, Viktor | Private Investition | Geschichte 2009-2011", - "componentList" : [ { - "id" : "https://rpb.lobid.org/sw/929n090287", - "label" : "Deutscher Orden / Kommende Waldbreitbach", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4011457-0", - "label" : "Denkmalschutz", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/00Sn09k1362487a", - "label" : "Schicker, Viktor", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - }, { - "id" : "https://d-nb.info/gnd/4454409-1", - "label" : "Private Investition", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/00Sn09m0508511a", - "label" : "Geschichte 2009-2011", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n13809076", - "label" : "o13809076", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://rpb.lobid.org/agent/00Pn08k0685884a", - "label" : "Ruland, Wolfgang" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" - }, - "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "Der Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 26-27" + } ] } diff --git a/conf/output/test-output-30.json b/conf/output/test-output-30.json index 7484116b..4297a20e 100644 --- a/conf/output/test-output-30.json +++ b/conf/output/test-output-30.json @@ -1,65 +1,24 @@ { "@context" : "http://lobid.org/resources/context.jsonld", - "type" : [ "BibliographicResource", "Article" ], - "rpbId" : "RPB929t112197", - "id" : "https://lobid.org/resources/RPB929t112197", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982377", + "label" : "¬Der¬ Rasenspieler : das Journal zur Saison ..." + } ], + "numbering" : "Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03" + } ], + "rpbId" : "RPB107t982377b1", + "id" : "https://lobid.org/resources/RPB107t982377b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Seit 1911 weht im Vinzenzhaus der Geist der Nächstenliebe : 100-Jahr-Feier in Gebhardshain ; vom Konvent zum Seniorenheim", - "extent" : "Ill.", + "title" : "¬Der¬ Rasenspieler : das Journal zur Saison ... | Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03", + "note" : [ "Damit Erscheinen eingest." ], "publication" : [ { - "startDate" : "2011", "type" : [ "PublicationEvent" ] - } ], - "subject" : [ { - "id" : "http://purl.org/lobid/rpb#n611070", - "label" : "Platzhalter Schlagwortlabel", - "type" : [ "Concept" ], - "source" : { - "id" : "http://purl.org/lobid/rpb", - "label" : "Systematik der Rheinland-Pfälzischen Bibliographie" - } - }, { - "type" : [ "ComplexSubject" ], - "label" : "Alten- und Pflegeheim St.-Vinzenzhaus / Gebhardshain | Geschichte 1911-2011", - "componentList" : [ { - "id" : "https://d-nb.info/gnd/16326855-1", - "label" : "Alten- und Pflegeheim St.-Vinzenzhaus / Gebhardshain", - "source" : { - "id" : "https://d-nb.info/gnd/7749153-1", - "label" : "Gemeinsame Normdatei (GND)" - } - }, { - "id" : "https://rpb.lobid.org/sw/00Sn10s3817103a", - "label" : "Geschichte 1911-2011", - "source" : { - "id" : "http://rpb.lobid.org/sw", - "label" : "RPB-Sachsystematik" - } - } ] - } ], - "spatial" : [ { - "id" : "https://rpb.lobid.org/spatial#n13209039", - "label" : "o13209039", - "type" : [ "Concept" ], - "source" : { - "id" : "https://rpb.lobid.org/spatial", - "label" : "RPB-Raumsystematik" - } - } ], - "contribution" : [ { - "agent" : { - "id" : "https://rpb.lobid.org/agent/929n991002", - "label" : "Weger, Joachim" - }, - "role" : { - "id" : "http://id.loc.gov/vocabulary/relators/aut", - "label" : "Autor/in" - }, - "type" : [ "Contribution" ] - } ], - "bibliographicCitation" : "In: Rhein-Zeitung, Ausg. H. - 66 (2011), 126 vom 31.05., Seite 24. -" + } ] } diff --git a/conf/output/test-output-31.json b/conf/output/test-output-31.json index c32d6da4..c204ed8b 100644 --- a/conf/output/test-output-31.json +++ b/conf/output/test-output-31.json @@ -4,19 +4,20 @@ "isPartOf" : [ { "type" : [ "IsPartOfRelation" ], "hasSuperordinate" : [ { - "id" : "https://lobid.org/resources/RPB929t111801", - "label" : "Rhein-Zeitung : unabhängige Tageszeitung" + "id" : "https://lobid.org/resources/RPB107t982378", + "label" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen" } ], - "numbering" : "66.2011,77(1.Apr.) -" + "numbering" : "1998,Apr." } ], - "rpbId" : "RPB929t111801b1", - "id" : "https://lobid.org/resources/RPB929t111801b1", + "rpbId" : "RPB107t982378b1", + "id" : "https://lobid.org/resources/RPB107t982378b1", "inCollection" : [ { "id" : "http://lobid.org/resources/HT013494180#!", "type" : [ "Collection" ], "label" : "Rheinland-Pfälzische Bibliographie" } ], - "title" : "Rhein-Zeitung : unabhängige Tageszeitung | 66.2011,77(1.Apr.) -", + "title" : "¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen | 1998,Apr.", + "note" : [ "Mit dieser Ausg. Erscheinen eingest." ], "publication" : [ { "type" : [ "PublicationEvent" ] } ] diff --git a/conf/output/test-output-32.json b/conf/output/test-output-32.json index e69de29b..ba36aae3 100644 --- a/conf/output/test-output-32.json +++ b/conf/output/test-output-32.json @@ -0,0 +1,24 @@ +{ + "@context" : "http://lobid.org/resources/context.jsonld", + "type" : [ "BibliographicResource", "Book" ], + "isPartOf" : [ { + "type" : [ "IsPartOfRelation" ], + "hasSuperordinate" : [ { + "id" : "https://lobid.org/resources/RPB107t982379", + "label" : "Wer ist wo" + } ], + "numbering" : "1994/95(1995)" + } ], + "rpbId" : "RPB107t982379b1", + "id" : "https://lobid.org/resources/RPB107t982379b1", + "inCollection" : [ { + "id" : "http://lobid.org/resources/HT013494180#!", + "type" : [ "Collection" ], + "label" : "Rheinland-Pfälzische Bibliographie" + } ], + "title" : "Wer ist wo | 1994/95(1995)", + "note" : [ "Letzter Jahrgang, damit Erscheinen eingestellt" ], + "publication" : [ { + "type" : [ "PublicationEvent" ] + } ] +} diff --git a/conf/output/test-output-strapi.json b/conf/output/test-output-strapi.json index c5cfe84b..8a55f48f 100644 --- a/conf/output/test-output-strapi.json +++ b/conf/output/test-output-strapi.json @@ -25,8 +25,16 @@ {"f00_":"107t982370","f20_":"\"¬Der¬ Holocaust ist immer da\": Kooperationsprojekt Offener Kanal Ludwigshafen, Vorderpfalz und Community Television, Israel","f30_":"_sn632050_","f30a":"_sn882060_","f31_":"_r99_ _o31400000_","f31a":"_r99_ _o31400000_","f32_":"_4036472n0_ ; _4172489n6_ ; _4073091n8_","f35_":"_r99_ _o31400000_ ; _sn632050_","f35a":"_r99_ _o31400000_ ; _sn882060_","f36_":"u","f37_":"_sn632050_ ; _r99_ _o31400000_","f37a":"_sn882060_ ; _r99_ _o31400000_","f40_":"_106837800X_","f70_":"Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 102-106","f76a":"1997","f76b":"1997","f87_":"3-89331-303-6","f90b":"3a 5094","f95_":"19990702/13:46:41\u001FSP","f96_":"20060111/13:16:43\u001FSP","f30":[{"f30_":"_sn632050_"},{"f30_":"_sn882060_"}],"f31":[{"f31_":"_r99_ _o31400000_"},{"f31_":"_r99_ _o31400000_"}],"f32":[{"f32_":"_4036472n0_ ; _4172489n6_ ; _4073091n8_"}],"f40":[{"f40_":"_106837800X_","n40a":"Verfasser"}]} {"f00_":"107t982371","f20_":"Ältere Menschen machen Fernsehen : aktivierende Medienarbeit in Offenen Kanälen","f30_":"_sn786000_","f30a":"_sn882060_","f31_":"_r99_ _o31400000_","f31a":"_r99_ _o31400000_","f32_":"_4036472n0_ ; _4136151n9_ ; _z64_","f32a":"_4036472n0_ ; _4172489n6_ ; _z64_","f32b":"_4036472n0_ ; _4001446n0_ ; _z64_","f35_":"_r99_ _o31400000_ ; _sn786000_","f35a":"_r99_ _o31400000_ ; _sn882060_","f36_":"u","f37_":"_sn786000_ ; _r99_ _o31400000_","f37a":"_sn882060_ ; _r99_ _o31400000_","f40_":"_00Pn02s0022a_","f70_":"Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 119-123","f76a":"1997","f76b":"1997","f81_":"Videoprojekt zwischen Volkshochschule u. Offener Kanal","f87_":"3-89331-303-6","f90b":"3a 5094","f95_":"19991008/16:58:26\u001FSP","f96_":"19991008/16:58:26\u001FSP","f30":[{"f30_":"_sn786000_"},{"f30_":"_sn882060_"}],"f31":[{"f31_":"_r99_ _o31400000_"},{"f31_":"_r99_ _o31400000_"}],"f32":[{"f32_":"_4036472n0_ ; _4136151n9_ ; _z64_"},{"f32_":"_4036472n0_ ; _4172489n6_ ; _z64_"},{"f32_":"_4036472n0_ ; _4001446n0_ ; _z64_"}],"f81":[{"f81_":"Videoprojekt zwischen Volkshochschule u. Offener Kanal"}],"f40":[{"f40_":"_00Pn02s0022a_","n40a":"Verfasser"}]} {"f00_":"107t982372","f20_":"Zur politischen Tragweite schulischer Medienarbeit : was \"lernen\" Gymnasiasten, wenn sie \"im Auftrag\" eines Berufsinformationszentrums Live-Sendungen für Schüler anderer Schularten produzieren?","f30_":"_sn784080_","f30a":"_sn882060_","f31_":"_r99_ _o31400000_","f31a":"_r99_ _o31400000_","f32_":"_4036472n0_ ; _4172489n6_","f32a":"_107n220353_","f35_":"_r99_ _o31400000_ ; _sn784080_","f35a":"_r99_ _o31400000_ ; _sn882060_","f36_":"u","f37_":"_sn784080_ ; _r99_ _o31400000_","f37a":"_sn882060_ ; _r99_ _o31400000_","f39_":"Karl-Ludwig Kemen ; Gerhard Laubscher","f40_":"_00Pn98s2372a_","f401":"_00Pn98s2372b_","f70_":"Handbuch Medien: Offene Kanäle / Bundeszentrale für Politische Bildung. Hrsg.: Ulrich Kamp. - Bonn, 1997. - ISBN 3-89331-303-6. - S. 124-144","f76a":"1997","f76b":"1997","f77_":"Graph. Darst.","f81_":"Medien-AG d. Wilhelm-von-Humboldt-Gymnasiums","f87_":"3-89331-303-6","f90b":"3a 5094","f95_":"19990702/14:55:39\u001FSP","f96_":"20220826/12:03:41\u001FSP","f30":[{"f30_":"_sn784080_"},{"f30_":"_sn882060_"}],"f31":[{"f31_":"_r99_ _o31400000_"},{"f31_":"_r99_ _o31400000_"}],"f32":[{"f32_":"_4036472n0_ ; _4172489n6_"},{"f32_":"_107n220353_"}],"f81":[{"f81_":"Medien-AG d. Wilhelm-von-Humboldt-Gymnasiums"}],"f40":[{"f40_":"_00Pn98s2372a_","n40a":"Verfasser"},{"f40_":"_00Pn98s2372b_","n40a":"Verfasser"}]} +{"f00_":"107t982373b1","f20ü":"SWR-3-Clubmagazin","f01_":"1998,1(Sept.) -","f36_":"sbd","f90b":"Per. 15621/1998-"} +{"f00_":"107t982374b1","f20ü":"On : SWF 3, das Magazin","f01_":"1992 - 1998,2","f36_":"sbd","f81_":"Damit Erscheinen eingest. - Forts. u.d.T.: SWR-3-Clubmagazin","f90b":"Per. 14726/1995-1998,2","f81":[{"f81_":"Damit Erscheinen eingest. - Forts. u.d.T.: SWR-3-Clubmagazin"}]} +{"f00_":"107t982375b1","f20ü":"¬Die¬ Zeitschrift : der Südwestrundfunk und seine Programme. Rheinland-Pfalz","f01_":"1998,1(Sept.) - 2001,9(Sept.)","f36_":"sbd","f81_":"Forts. u.d.T.: Doppelpfeil","f90b":"Per. 15620/1998,1-2001,9","f81":[{"f81_":"Forts. u.d.T.: Doppelpfeil"}]} +{"f00_":"107t982376b1","f20ü":"Flieg und flatter : Aktuelles aus der Vogelschutzwarte","f01_":"Ausg. 1.1997(Dez.) -","f36_":"sbd","f90b":"Per. 15655/1.1997-"} +{"f00_":"107t982377b1","f20ü":"¬Der¬ Rasenspieler : das Journal zur Saison ...","f01_":"Nachgewiesen 1998/99(1998) - 2000/01; 2001/02 - 2002/03","f36_":"sbd","f81_":"Damit Erscheinen eingest.","f90b":"Per. 15748/1998/99-2000/01;Per. 17032/2001/02-2002/03","f81":[{"f81_":"Damit Erscheinen eingest."}]} +{"f00_":"107t982378b1","f20ü":"¬'s¬ Derfsche : Ebertsheim-Rodenbach, das Dorf im Grünen","f01_":"1998,Apr.","f36_":"sbd","f81_":"Mit dieser Ausg. Erscheinen eingest.","f90b":"Per. 15740/1998","f81":[{"f81_":"Mit dieser Ausg. Erscheinen eingest."}]} +{"f00_":"107t982379b1","f20ü":"Wer ist wo","f01_":"1994/95(1995)","f36_":"sbd","f76b":"1995","f81_":"Letzter Jahrgang, damit Erscheinen eingestellt","f90b":"Per. 11060/ 1994/95","f81":[{"f81_":"Letzter Jahrgang, damit Erscheinen eingestellt"}]} {"f00_":"929t112192","f20_":"Aus der Vereinsgeschichte der KKG \"Kowelenzer Schängelcher\" 1922 e.V.","f30_":"_sn704043_","f31_":"_r99_ _o11100000_","f32_":"_5114232n6_ ; _00Sn11k2192145a_","f35_":"_r99_ _o11100000_ ; _sn704043_","f36_":"u","f37_":"_sn704043_ ; _r99_ _o11100000_","f70j":"2011","f70k":"KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher","f70s":"23-33","f70t":"Sessionsheft","f70y":"KKG Rot-Weiss-Gruen Kowelenzer Schaengelcher: Sessionsheft. - 2011, S. 23-33","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2253285-7","f90d":"Z 2287:2011","f95_":"20110531/16:02:12\u001FKO","f96_":"20110531/16:02:12\u001FKO","f30":[{"f30_":"_sn704043_"}],"f31":[{"f31_":"_r99_ _o11100000_"}],"f32":[{"f32_":"_5114232n6_ ; _00Sn11k2192145a_"}]} {"f00_":"929t112193b1","f20ü":"Aktuell : das Krankenhaus in Ihrer Region","f01_":"Nachgewiesen 2010 - 2012,1","f36_":"sbd","f81_":"Nachfolger: Kaleidoskop. 2012 -","f81":[{"f81_":"Nachfolger: Kaleidoskop. 2012 -"}]} +{"f00_":"929t112194b1","f20ü":"Clubzeitung","f01_":"Nachgewiesen 2006,2 -","f36_":"sbd"} {"f00_":"929t112195","f20_":"¬Der¬ BAP kam aus Unkel","f30_":"_sn824000_","f31_":"_r99_ _o13807073_","f32_":"_4061836n5_ ; _118942247_ ; _4006804n3_","f35_":"_r99_ _o13807073_ ; _sn824000_","f36_":"u","f37_":"_sn824000_ ; _r99_ _o13807073_","f40_":"_00Pn08k0685884a_","f70_":"¬Der¬ Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 16-18","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2515501-5","f90d":"ZA 5649:2011 MAG","f95_":"20110601/08:50:59\u001FKO","f96_":"20110603/08:31:46\u001FKO","f30":[{"f30_":"_sn824000_"}],"f31":[{"f31_":"_r99_ _o13807073_"}],"f32":[{"f32_":"_4061836n5_ ; _118942247_ ; _4006804n3_"}],"f40":[{"f40_":"_00Pn08k0685884a_","n40a":"Verfasser"}]} {"f00_":"929t112196","f20_":"Coming home mit Commende","f30_":"_sn844200_","f30a":"_sn844000_","f31_":"_r99_ _o13809076_","f31a":"_r99_ _o13809076_","f32_":"_929n090287_ ; _4011457n0_ ; _00Sn09k1362487a_ ; _4454409n1_ ; _00Sn09m0508511a_","f35_":"_r99_ _o13809076_ ; _sn844200_","f35a":"_r99_ _o13809076_ ; _sn844000_","f36_":"u","f37_":"_sn844200_ ; _r99_ _o13809076_","f37a":"_sn844000_ ; _r99_ _o13809076_","f40_":"_00Pn08k0685884a_","f70_":"¬Der¬ Rheinländer : das Heimatmagazin. - 4 (2011), Juni = H. 34, S. 26-27","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2515501-5","f90d":"ZA 5649:2011 MAG","f95_":"20110601/08:57:45\u001FKO","f96_":"20110603/08:31:32\u001FKO","f30":[{"f30_":"_sn844200_"},{"f30_":"_sn844000_"}],"f31":[{"f31_":"_r99_ _o13809076_"},{"f31_":"_r99_ _o13809076_"}],"f32":[{"f32_":"_929n090287_ ; _4011457n0_ ; _00Sn09k1362487a_ ; _4454409n1_ ; _00Sn09m0508511a_"}],"f40":[{"f40_":"_00Pn08k0685884a_","n40a":"Verfasser"}]} {"f00_":"929t112197","f20_":"Seit 1911 weht im Vinzenzhaus der Geist der Nächstenliebe : 100-Jahr-Feier in Gebhardshain ; vom Konvent zum Seniorenheim","f30_":"_sn611070_","f31_":"_r99_ _o13209039_","f32_":"_16326855n1_ ; _00Sn10s3817103a_","f35_":"_r99_ _o13209039_ ; _sn611070_","f36_":"u","f37_":"_sn611070_ ; _r99_ _o13209039_","f40_":"_929n991002_","f70b":"66","f70h":"126 vom 31.05.","f70j":"2011","f70s":"24","f70t":"Rhein-Zeitung, Ausg. H","f70y":"Rhein-Zeitung, Ausg. H. - 66 (2011), 126 vom 31.05., S. 24","f76a":"2011","f76b":"2011","f77_":"Ill.","f88_":"2522761-0","f90d":"ZB 151:2011;MZ 52:2011","f95_":"20110601/09:14:31\u001FKO","f96_":"20120809/16:13:40\u001FZR","f30":[{"f30_":"_sn611070_"}],"f31":[{"f31_":"_r99_ _o13209039_"}],"f32":[{"f32_":"_16326855n1_ ; _00Sn10s3817103a_"}],"f40":[{"f40_":"_929n991002_","n40a":"Verfasser"}]} diff --git a/conf/rpb-titel-to-strapi.fix b/conf/rpb-titel-to-strapi.fix index ef9946c6..4b2310de 100644 --- a/conf/rpb-titel-to-strapi.fix +++ b/conf/rpb-titel-to-strapi.fix @@ -10,7 +10,6 @@ do once() "rpbId2almaMmsId", "key_column": "1", "value_column": "0", "sep_char": "\t") end paste("inLobid", "~RPB", "f00_", "join_char": "") -replace_all("inLobid", "(.+)b\\d+$", "$1") lookup("inLobid", "rpbId2almaMmsId", "delete": "true") if exists("inLobid") reject()