From 225091b1943a5f05cc0ccee4cc66c5ea569d7a25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20B=C3=BClte?= Date: Mon, 25 Sep 2023 14:15:26 +0200 Subject: [PATCH 01/23] Intoduce a variable for the ALMA IZ #1888 --- src/main/resources/alma/fix/item.fix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/main/resources/alma/fix/item.fix b/src/main/resources/alma/fix/item.fix index ae2e6fc94..101780b7e 100644 --- a/src/main/resources/alma/fix/item.fix +++ b/src/main/resources/alma/fix/item.fix @@ -18,6 +18,9 @@ do list(path:"ITM ", "var": "$i") copy_field("$i.b", "hasItem[].$last.serialNumber") copy_field("$i.w","hasItem[].$last.currentLibrary") copy_field("$i.x","hasItem[].$last.currentLocation") + copy_field("$i.a", "$i.@iz") + replace_all("$i.@iz",".*(\\d{4})$","$1") + lookup("$i.@iz", "alma-institution-code-to-isil") copy_field("$i.w","$i.@sublibraryIsil") lookup("$i.@sublibraryIsil", "hbzowner2sigel",delete:"true") lookup("$i.@sublibraryIsil", "sigel2isilMap",delete:"true") @@ -30,9 +33,7 @@ do list(path:"ITM ", "var": "$i") copy_field("$i.@sublibraryIsil", "hasItem[].$last.heldBy.id") # if no mapping for a sublocation code is provided or no sublocation code exists ($i.w) the main library ISIL is used. else - copy_field("$i.a", "hasItem[].$last.heldBy.id") - replace_all("hasItem[].$last.heldBy.id",".*(\\d{4})$","$1") - lookup("hasItem[].$last.heldBy.id", "alma-institution-code-to-isil") + copy_field("$i.@iz", "hasItem[].$last.heldBy.id") end copy_field("hasItem[].$last.heldBy.id","hasItem[].$last.heldBy.isil") prepend("hasItem[].$last.heldBy.id", "http://lobid.org/organisations/") @@ -58,6 +59,9 @@ do list(path: "HOL ", "var": "$i") copy_field("$H52.b","hasItem[].$last.currentLibrary") copy_field("$H52.c","hasItem[].$last.currentLocation") copy_field("$H52.h", "hasItem[].$last.callNumber") + copy_field("$i.8", "$i.@iz") + replace_all("$i.@iz",".*(\\d{4})$","$1") + lookup("$i.@iz", "alma-institution-code-to-isil") copy_field("$H52.b","$i.@sublibraryIsil") lookup("$i.@sublibraryIsil", "hbzowner2sigel",delete:"true") lookup("$i.@sublibraryIsil", "sigel2isilMap",delete:"true") @@ -70,9 +74,7 @@ do list(path: "HOL ", "var": "$i") copy_field("$i.@sublibraryIsil", "hasItem[].$last.heldBy.id") # if no mapping for a sublocation code is provided or no sublocation code exists ($i.w) the main library ISIL is used. else - copy_field("$i.8", "hasItem[].$last.heldBy.id") - replace_all("hasItem[].$last.heldBy.id",".*(\\d{4})$","$1") - lookup("hasItem[].$last.heldBy.id", "alma-institution-code-to-isil") + copy_field("$i.@iz", "hasItem[].$last.heldBy.id") end copy_field("hasItem[].$last.heldBy.id","hasItem[].$last.heldBy.isil") prepend("hasItem[].$last.heldBy.id", "http://lobid.org/organisations/") From ce0346b110024deb0299a47b567228043f00ca1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20B=C3=BClte?= Date: Mon, 25 Sep 2023 14:34:30 +0200 Subject: [PATCH 02/23] Draft opac link lookup #1888 --- .../run/AlmaMarcXmlFix2lobidJsonEs.java | 5 + src/main/resources/alma/fix/item.fix | 2 + src/main/resources/alma/fix/macros.fix | 19 ++ src/main/resources/alma/fix/maps.fix | 7 + .../resources/alma/maps/isil2opac_hbzId.tsv | 185 ++++++++++++++ .../resources/alma/maps/isil2opac_isbn.tsv | 228 ++++++++++++++++++ .../resources/alma/maps/isil2opac_issn.tsv | 228 ++++++++++++++++++ .../resources/alma/maps/isil2opac_zdbId.tsv | 71 ++++++ .../AlmaMarc21XmlToLobidJsonMetafixTest.java | 4 + 9 files changed, 749 insertions(+) create mode 100644 src/main/resources/alma/maps/isil2opac_hbzId.tsv create mode 100644 src/main/resources/alma/maps/isil2opac_isbn.tsv create mode 100644 src/main/resources/alma/maps/isil2opac_issn.tsv create mode 100644 src/main/resources/alma/maps/isil2opac_zdbId.tsv diff --git a/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java b/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java index 6dc66c4ed..afa71e4b3 100644 --- a/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java +++ b/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java @@ -133,6 +133,11 @@ public void run() { fixVariables.put("rpb-spatial.ttl", "./maps/rpb-spatial.ttl"); fixVariables.put("rpb.ttl", "./maps/rpb.ttl"); fixVariables.put("hbzId2zdbId.tsv", "./maps/hbzId2zdbId.tsv.gz"); + fixVariables.put("isil2opac_hbzId.tsv", "./maps/isil2opac_hbzId.tsv"); + fixVariables.put("isil2opac_isbn.tsv", "./maps/isil2opac_hbzId.tsv"); + fixVariables.put("isil2opac_issn.tsv", "./maps/isil2opac_hbzId.tsv"); + fixVariables.put("isil2opac_zdbId.tsv", "./maps/isil2opac_hbzId.tsv"); + XmlElementSplitter xmlElementSplitter = new XmlElementSplitter(); xmlElementSplitter.setElementName("record"); diff --git a/src/main/resources/alma/fix/item.fix b/src/main/resources/alma/fix/item.fix index 101780b7e..2253f81a1 100644 --- a/src/main/resources/alma/fix/item.fix +++ b/src/main/resources/alma/fix/item.fix @@ -19,6 +19,7 @@ do list(path:"ITM ", "var": "$i") copy_field("$i.w","hasItem[].$last.currentLibrary") copy_field("$i.x","hasItem[].$last.currentLocation") copy_field("$i.a", "$i.@iz") + call_macro("opacLink") replace_all("$i.@iz",".*(\\d{4})$","$1") lookup("$i.@iz", "alma-institution-code-to-isil") copy_field("$i.w","$i.@sublibraryIsil") @@ -60,6 +61,7 @@ do list(path: "HOL ", "var": "$i") copy_field("$H52.c","hasItem[].$last.currentLocation") copy_field("$H52.h", "hasItem[].$last.callNumber") copy_field("$i.8", "$i.@iz") + call_macro("opacLink") replace_all("$i.@iz",".*(\\d{4})$","$1") lookup("$i.@iz", "alma-institution-code-to-isil") copy_field("$H52.b","$i.@sublibraryIsil") diff --git a/src/main/resources/alma/fix/macros.fix b/src/main/resources/alma/fix/macros.fix index 08d819bb3..df5d0d9cc 100644 --- a/src/main/resources/alma/fix/macros.fix +++ b/src/main/resources/alma/fix/macros.fix @@ -252,6 +252,25 @@ do put_macro("provenanceLinks") append("$[field]", "#!") end +# opacLink + +do put_macro("opacLink") + copy_field("$.@iz", "$i.@opacLink") + if exists("zdbId") + lookup("$i.@opacLink","isil2opac_zdbId", delete:"true") + split_field("$i.@opacLink","{zdbid}") + if exists("$i.@opacLink.1") + paste("hasItem[].$last.opacLink","$i.@opacLink.1","zdbId","$i.@opacLink.2",join_char:"") + end + else + lookup("$i.@opacLink","isil2opac_hbzId", delete:"true") + split_field("$i.@opacLink","{hbzid}") + if exists("$i.@opacLink.1") + paste("hasItem[].$last.opacLink","$i.@opacLink.1","hbzId","$i.@opacLink.2",join_char:"") + end + end +end + # for Schlagwortfolgen do put_macro("schlagwortfolge") diff --git a/src/main/resources/alma/fix/maps.fix b/src/main/resources/alma/fix/maps.fix index 21aa9eb9c..0011c3d82 100644 --- a/src/main/resources/alma/fix/maps.fix +++ b/src/main/resources/alma/fix/maps.fix @@ -41,6 +41,13 @@ put_filemap("$[almaMmsId2rpbId]","almaMmsId2rpbId", sep_char:"\t",key_column:"0" # map zdbId to old hbzId(HT Nummer) based on the last aleph transformation put_filemap("$[hbzId2zdbId.tsv]","zdbId2oldHbzId", sep_char:"\t",key_column:"1",value_column:"0",expected_columns:"-1") +# opac links +put_filemap("$[isil2opac_hbzId.tsv]","isil2opac_hbzId", sep_char:"\t") +put_filemap("$[isil2opac_isbn.tsv]","isil2opac_isbn", sep_char:"\t") +put_filemap("$[isil2opac_issn.tsv]","isil2opac_issn", sep_char:"\t") +put_filemap("$[isil2opac_zdbId.tsv]","isil2opac_zdbId", sep_char:"\t") + + put_map("rswk-indicator", "p": "Person", "b": "CorporateBody", diff --git a/src/main/resources/alma/maps/isil2opac_hbzId.tsv b/src/main/resources/alma/maps/isil2opac_hbzId.tsv new file mode 100644 index 000000000..c87c051ce --- /dev/null +++ b/src/main/resources/alma/maps/isil2opac_hbzId.tsv @@ -0,0 +1,185 @@ +DE-1010 http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID={hbzid} +DE-5 https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid} +DE-6 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-001 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-005 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-006 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-007 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-011 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-015 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-016 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-017 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-020 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-021 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-022 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-023 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-026 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-032 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-033 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-034 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-035 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-036 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-037 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-038 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-039 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-040 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-044 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-047 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-049 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-050 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-052 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-053 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-054 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-056 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-057 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-058 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-069 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-096 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-097 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-115 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-117 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-118 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-119 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-121 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-122 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-123 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-125 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-134 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-136 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-139a https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-139b https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-151 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-152 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-153 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-154 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-155 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-156 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-157 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-158 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-161 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-162 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-163 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-164 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-165 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-166 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-168 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-169 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-171 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-172 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-175 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-177 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-178 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-179 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-180 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-182 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-183 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-185 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-186 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-187 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-190 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-191 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-192 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-193 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-194 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-210 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-211 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-213 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-216 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-218 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-219 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-222 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-228 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-230 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-234 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-235 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-236 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-242 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-244 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-246 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-248 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-249 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-250 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-254 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-255 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-256 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-257 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-258 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-259 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-260 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-264 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-267 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-271 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-272 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-274 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-275 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-276 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-277 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-279 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-282 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-284 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-285 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-286 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-290 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-293 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-295 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-296 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-298 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-303 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-308 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-309 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-311 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-314 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-318 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-319 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-321 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-325 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-326 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-328 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-331 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-332 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-334 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-335 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-336 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-337 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-338 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-A https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-M https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-N https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-P https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-Z https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-38 http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid} +DE-61 https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid} +DE-82 https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0 +DE-98 http://www.medpilot.de/?ID={hbzid} +DE-107 https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22{hbzid}%22 +DE-121 https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01 +DE-290 https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22 +DE-385 http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid} +DE-386 https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid} +DE-464 https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0 +DE-465 https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0 +DE-466 https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid} +DE-467 https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid} +DE-468 https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid} +DE-575 https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHD01&doc_001_number={hbzid}&local_base=MHD01 +DE-708 http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2= +DE-743 http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22 +DE-829 http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22 +DE-832 http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid} +DE-836 https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid} +DE-929 http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0 +DE-1044 https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22 +DE-1105 http://www.hs-koblenz.de/RACwebOPAC/start.do?Login=webopac&Query=0010=%22{hbzid}%22 +DE-1116 http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID={hbzid} +DE-1156 https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01 +DE-1393 https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22{hbzid}%22 +DE-1393-BOT https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22{hbzid}%22 +DE-Bi10 https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22{hbzid}%22 +DE-Bm40 http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid} +DE-Dm13 http://193.25.18.8/webOPACClient/start.do?Query=0010=%22{hbzid}%22 +DE-Due62 http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID={hbzid} +DE-Kn38 https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number={hbzid}&local_base=MHK01 +DE-Kn41 https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01 +DE-Kob7 http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2= +DE-Lan1 http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2= +DE-Zw1 http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=2 \ No newline at end of file diff --git a/src/main/resources/alma/maps/isil2opac_isbn.tsv b/src/main/resources/alma/maps/isil2opac_isbn.tsv new file mode 100644 index 000000000..d14c56dc8 --- /dev/null +++ b/src/main/resources/alma/maps/isil2opac_isbn.tsv @@ -0,0 +1,228 @@ +DE-5 https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0540=%22{isbn}%22 +DE-6 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-001 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-005 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-006 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-007 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-011 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-015 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-016 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-017 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-020 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-021 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-022 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-023 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-026 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-032 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-033 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-034 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-035 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-036 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-037 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-038 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-039 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-040 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-044 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-047 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-049 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-050 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-052 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-053 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-054 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-056 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-057 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-058 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-069 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-096 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-097 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-115 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-117 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-118 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-119 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-121 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-122 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-123 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-125 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-134 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-136 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-139a http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-139b http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-151 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-152 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-153 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-154 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-155 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-156 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-157 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-158 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-161 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-162 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-163 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-164 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-165 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-166 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-168 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-169 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-171 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-172 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-175 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-177 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-178 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-179 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-180 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-182 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-183 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-185 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-186 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-187 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-190 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-191 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-192 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-193 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-194 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-210 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-211 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-213 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-216 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-218 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-219 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-222 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-228 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-230 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-234 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-235 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-236 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-242 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-244 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-246 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-248 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-249 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-250 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-254 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-255 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-256 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-257 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-258 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-259 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-260 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-264 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-267 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-271 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-272 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-274 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-275 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-276 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-277 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-279 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-282 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-284 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-285 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-286 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-290 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-293 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-295 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-296 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-298 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-303 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-308 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-309 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-311 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-314 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-318 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-319 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-321 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-325 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-326 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-328 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-331 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-332 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-334 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-335 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-336 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-337 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-338 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-A http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-M http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-N http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-P http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-6-Z http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-61 https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D={isbn} +DE-107 https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0540=%22{isbn}%22 +DE-290 https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0540=%22{isbn}%22 +DE-294 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-7 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-8 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-9 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-10 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-11 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-13 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-14 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-15 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-16 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-17 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-18 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-19 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-20 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-21 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-22 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-23 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-24 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-25 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-26 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-27 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-28 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-29 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-30 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-31 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-32 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-33 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-34 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-35 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-36 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-37 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-38 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-39 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-42 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-43 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-45 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-46 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-47 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-48 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-49 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-50 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-51 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-52 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-53 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-55 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-56 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-57 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-58 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-59 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-60 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-61 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-62 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-63 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-64 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-66 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-67 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-68 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-70 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-71 https://suchen.ub.rub.de/isbn/{isbn} +DE-294-140 https://suchen.ub.rub.de/isbn/{isbn} +DE-361 http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1={isbn}&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10 +DE-385 http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} +DE-464 http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29={isbn} +DE-465 http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29={isbn} +DE-466 https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=isbn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D={isbn}&scope=catalog&sf=rank +DE-467 http://obelix.ub.uni-siegen.de/F/?func=find-b&request={isbn}&find_code=IBN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2= +DE-708 http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={isbn}&find_code=IBN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2= +DE-829 http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0540=%22{isbn}%22 +DE-836 https://hb063.fh-muenster.de/webOPACClient/start.do?Query=0540=%22{isbn}%22 +DE-1044 https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0540=%22{isbn}%22 +DE-1393 https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0540=%22{isbn}%22 +DE-1393-BOT https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0540=%22{isbn}%22 +DE-A96 https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=0540=%22{isbn}%22 +DE-Bi10 https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=0540=%22{isbn}%22 +DE-Dm13 http://193.25.18.8/webOPACClient/start.do?Query=0540=%22{isbn}%22 +DE-Kob7 http://aleph1.uni-koblenz.de/F/?func=find-b&request={isbn}&find_code=IBN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2= +DE-Lan1 http://aleph1.uni-koblenz.de/F/?func=find-b&request={isbn}&find_code=IBN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2= \ No newline at end of file diff --git a/src/main/resources/alma/maps/isil2opac_issn.tsv b/src/main/resources/alma/maps/isil2opac_issn.tsv new file mode 100644 index 000000000..b42c06233 --- /dev/null +++ b/src/main/resources/alma/maps/isil2opac_issn.tsv @@ -0,0 +1,228 @@ +DE-5 https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%22{issn}%22 +DE-6 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-001 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-005 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-006 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-007 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-011 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-015 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-016 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-017 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-020 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-021 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-022 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-023 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-026 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-032 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-033 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-034 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-035 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-036 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-037 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-038 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-039 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-040 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-044 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-047 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-049 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-050 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-052 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-053 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-054 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-056 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-057 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-058 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-069 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-096 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-097 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-115 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-117 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-118 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-119 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-121 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-122 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-123 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-125 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-134 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-136 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-139a http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-139b http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-151 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-152 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-153 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-154 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-155 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-156 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-157 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-158 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-161 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-162 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-163 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-164 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-165 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-166 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-168 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-169 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-171 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-172 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-175 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-177 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-178 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-179 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-180 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-182 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-183 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-185 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-186 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-187 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-190 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-191 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-192 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-193 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-194 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-210 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-211 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-213 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-216 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-218 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-219 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-222 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-228 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-230 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-234 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-235 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-236 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-242 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-244 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-246 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-248 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-249 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-250 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-254 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-255 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-256 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-257 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-258 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-259 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-260 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-264 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-267 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-271 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-272 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-274 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-275 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-276 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-277 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-279 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-282 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-284 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-285 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-286 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-290 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-293 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-295 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-296 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-298 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-303 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-308 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-309 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-311 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-314 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-318 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-319 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-321 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-325 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-326 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-328 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-331 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-332 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-334 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-335 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-336 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-337 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-338 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-A http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-M http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-N http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-P http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-6-Z http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-61 https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D={issn} +DE-107 https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0543=%22{issn}%22 +DE-290 https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0543=%22{issn}%22 +DE-294 https://suchen.ub.rub.de/issn/{issn} +DE-294-7 https://suchen.ub.rub.de/issn/{issn} +DE-294-8 https://suchen.ub.rub.de/issn/{issn} +DE-294-9 https://suchen.ub.rub.de/issn/{issn} +DE-294-10 https://suchen.ub.rub.de/issn/{issn} +DE-294-11 https://suchen.ub.rub.de/issn/{issn} +DE-294-13 https://suchen.ub.rub.de/issn/{issn} +DE-294-14 https://suchen.ub.rub.de/issn/{issn} +DE-294-15 https://suchen.ub.rub.de/issn/{issn} +DE-294-16 https://suchen.ub.rub.de/issn/{issn} +DE-294-17 https://suchen.ub.rub.de/issn/{issn} +DE-294-18 https://suchen.ub.rub.de/issn/{issn} +DE-294-19 https://suchen.ub.rub.de/issn/{issn} +DE-294-20 https://suchen.ub.rub.de/issn/{issn} +DE-294-21 https://suchen.ub.rub.de/issn/{issn} +DE-294-22 https://suchen.ub.rub.de/issn/{issn} +DE-294-23 https://suchen.ub.rub.de/issn/{issn} +DE-294-24 https://suchen.ub.rub.de/issn/{issn} +DE-294-25 https://suchen.ub.rub.de/issn/{issn} +DE-294-26 https://suchen.ub.rub.de/issn/{issn} +DE-294-27 https://suchen.ub.rub.de/issn/{issn} +DE-294-28 https://suchen.ub.rub.de/issn/{issn} +DE-294-29 https://suchen.ub.rub.de/issn/{issn} +DE-294-30 https://suchen.ub.rub.de/issn/{issn} +DE-294-31 https://suchen.ub.rub.de/issn/{issn} +DE-294-32 https://suchen.ub.rub.de/issn/{issn} +DE-294-33 https://suchen.ub.rub.de/issn/{issn} +DE-294-34 https://suchen.ub.rub.de/issn/{issn} +DE-294-35 https://suchen.ub.rub.de/issn/{issn} +DE-294-36 https://suchen.ub.rub.de/issn/{issn} +DE-294-37 https://suchen.ub.rub.de/issn/{issn} +DE-294-38 https://suchen.ub.rub.de/issn/{issn} +DE-294-39 https://suchen.ub.rub.de/issn/{issn} +DE-294-42 https://suchen.ub.rub.de/issn/{issn} +DE-294-43 https://suchen.ub.rub.de/issn/{issn} +DE-294-45 https://suchen.ub.rub.de/issn/{issn} +DE-294-46 https://suchen.ub.rub.de/issn/{issn} +DE-294-47 https://suchen.ub.rub.de/issn/{issn} +DE-294-48 https://suchen.ub.rub.de/issn/{issn} +DE-294-49 https://suchen.ub.rub.de/issn/{issn} +DE-294-50 https://suchen.ub.rub.de/issn/{issn} +DE-294-51 https://suchen.ub.rub.de/issn/{issn} +DE-294-52 https://suchen.ub.rub.de/issn/{issn} +DE-294-53 https://suchen.ub.rub.de/issn/{issn} +DE-294-55 https://suchen.ub.rub.de/issn/{issn} +DE-294-56 https://suchen.ub.rub.de/issn/{issn} +DE-294-57 https://suchen.ub.rub.de/issn/{issn} +DE-294-58 https://suchen.ub.rub.de/issn/{issn} +DE-294-59 https://suchen.ub.rub.de/issn/{issn} +DE-294-60 https://suchen.ub.rub.de/issn/{issn} +DE-294-61 https://suchen.ub.rub.de/issn/{issn} +DE-294-62 https://suchen.ub.rub.de/issn/{issn} +DE-294-63 https://suchen.ub.rub.de/issn/{issn} +DE-294-64 https://suchen.ub.rub.de/issn/{issn} +DE-294-66 https://suchen.ub.rub.de/issn/{issn} +DE-294-67 https://suchen.ub.rub.de/issn/{issn} +DE-294-68 https://suchen.ub.rub.de/issn/{issn} +DE-294-70 https://suchen.ub.rub.de/issn/{issn} +DE-294-71 https://suchen.ub.rub.de/issn/{issn} +DE-294-140 https://suchen.ub.rub.de/issn/{issn} +DE-361 http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1={issn}&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10 +DE-385 http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} +DE-464 http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29={issn} +DE-465 http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29={issn} +DE-466 https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D={issn}&scope=catalog&sf=rank +DE-467 http://obelix.ub.uni-siegen.de/F/?func=find-b&request={issn}&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2= +DE-708 http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={issn}&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2= +DE-829 http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0543=%22{issn}%22 +DE-836 https://hb063.fh-muenster.de/webOPACClient/start.do?Query=0543=%22{issn}%22 +DE-1044 https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0543=%22{issn}%22 +DE-1393 https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0543=%22{issn}%22 +DE-1393-BOT https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0543=%22{issn}%22 +DE-A96 https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=0543=%22{issn}%22 +DE-Bi10 https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=0543=%22{issn}%22 +DE-Dm13 http://193.25.18.8/webOPACClient/start.do?Query=0543=%22{issn}%22 +DE-Kob7 http://aleph1.uni-koblenz.de/F/?func=find-b&request={issn}&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2= +DE-Lan1 http://aleph1.uni-koblenz.de/F/?func=find-b&request={issn}&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2= diff --git a/src/main/resources/alma/maps/isil2opac_zdbId.tsv b/src/main/resources/alma/maps/isil2opac_zdbId.tsv new file mode 100644 index 000000000..7c7146db4 --- /dev/null +++ b/src/main/resources/alma/maps/isil2opac_zdbId.tsv @@ -0,0 +1,71 @@ +DE-5 https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22{zdbid}%22 +DE-107 https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=-1=%22{zdbid}%22 +DE-290 https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22{zdbid}%22 +DE-294 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-7 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-8 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-9 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-10 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-11 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-13 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-14 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-15 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-16 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-17 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-18 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-19 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-20 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-21 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-22 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-23 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-24 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-25 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-26 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-27 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-28 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-29 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-30 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-31 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-32 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-33 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-34 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-35 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-36 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-37 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-38 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-39 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-42 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-43 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-45 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-46 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-47 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-48 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-49 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-50 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-51 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-52 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-53 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-55 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-56 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-57 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-58 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-59 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-60 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-61 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-62 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-63 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-64 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-66 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-67 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-68 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-70 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-71 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-294-140 https://suchen.ub.rub.de/zdbid/{zdbid} +DE-829 http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=-1=%22{zdbid}%22 +DE-836 https://hb063.fh-muenster.de/webOPACClient/start.do?Query=-1=%22{zdbid}%22 +DE-1044 https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22{zdbid}%22 +DE-1393 https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=-1=%22{zdbid}%22 +DE-1393-BOT https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=-1=%22{zdbid}%22 +DE-A96 https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22{zdbid}%22 +DE-Bi10 https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%22{zdbid}%22 +DE-Dm13 http://193.25.18.8/webOPACClient/start.do?Query=-1=%22{zdbid}%22 \ No newline at end of file diff --git a/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java b/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java index 652cee43d..ac0331cf2 100644 --- a/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java +++ b/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java @@ -77,6 +77,10 @@ public void setup() { fixVariables.put("rpb-spatial.ttl", "src/main/resources/alma/maps/rpb-spatial.ttl"); fixVariables.put("rpb.ttl", "src/main/resources/alma/maps/rpb.ttl"); fixVariables.put("hbzId2zdbId.tsv", "src/main/resources/alma/maps/hbzId2zdbId.tsv.gz"); + fixVariables.put("isil2opac_hbzId.tsv", "src/main/resources/alma/maps/isil2opac_hbzId.tsv"); + fixVariables.put("isil2opac_isbn.tsv", "src/main/resources/alma/maps/isil2opac_hbzId.tsv"); + fixVariables.put("isil2opac_issn.tsv", "src/main/resources/alma/maps/isil2opac_hbzId.tsv"); + fixVariables.put("isil2opac_zdbId.tsv", "src/main/resources/alma/maps/isil2opac_hbzId.tsv"); } /** From c2e348bf1c175a473716ca46c1f2cfa97d886dcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20B=C3=BClte?= Date: Mon, 25 Sep 2023 15:28:03 +0200 Subject: [PATCH 03/23] Adjust opac link lookup #1888 --- src/main/resources/alma/fix/macros.fix | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/src/main/resources/alma/fix/macros.fix b/src/main/resources/alma/fix/macros.fix index df5d0d9cc..2935a4718 100644 --- a/src/main/resources/alma/fix/macros.fix +++ b/src/main/resources/alma/fix/macros.fix @@ -255,20 +255,17 @@ end # opacLink do put_macro("opacLink") - copy_field("$.@iz", "$i.@opacLink") - if exists("zdbId") - lookup("$i.@opacLink","isil2opac_zdbId", delete:"true") - split_field("$i.@opacLink","{zdbid}") - if exists("$i.@opacLink.1") - paste("hasItem[].$last.opacLink","$i.@opacLink.1","zdbId","$i.@opacLink.2",join_char:"") - end - else - lookup("$i.@opacLink","isil2opac_hbzId", delete:"true") - split_field("$i.@opacLink","{hbzid}") - if exists("$i.@opacLink.1") - paste("hasItem[].$last.opacLink","$i.@opacLink.1","hbzId","$i.@opacLink.2",join_char:"") - end - end + copy_field("$i.@iz", "$i.@opacLinkZdbId") + lookup("$i.@opacLinkZdbId","isil2opac_zdbId", delete:"true") + split_field("$i.@opacLinkZdbId","\\{zdbid\\}") + copy_field("$i.@iz", "$i.@opacLinkHbzId") + lookup("$i.@opacLinkHbzId","isil2opac_hbzId", delete:"true") + split_field("$i.@opacLinkHbzId","\\{hbzId\\}") + if exists("$i.@opacLinkZdbId.1") + paste("hasItem[].$last.opacLink","$i.@opacLinkZdbId.1","zdbId","$i.@opacLinkZdbId.2",join_char:"") + elsif exists("$i.@opacLinkHbzId.1") + paste("hasItem[].$last.opacLink","$i.@opacLinkHbzId.1","hbzId","$i.@opacLinkHbzId.2",join_char:"") + end end # for Schlagwortfolgen From d0e37453131b19b2e2db81695059c9375f1c3752 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20B=C3=BClte?= Date: Mon, 25 Sep 2023 17:11:06 +0200 Subject: [PATCH 04/23] Call the macro later in item.fix #1888 --- src/main/resources/alma/fix/item.fix | 4 +- .../alma-fix/990001412590206441.json | 14 +++++ .../alma-fix/990011470300206441.json | 3 + .../alma-fix/990014830510206441.json | 4 ++ .../alma-fix/990016782920206441.json | 3 + .../alma-fix/990021367710206441.json | 4 ++ .../alma-fix/990021974470206441.json | 5 ++ .../alma-fix/990026405480206441.json | 7 +++ .../alma-fix/990030574430206441.json | 2 + .../alma-fix/990035016180206441.json | 9 +++ .../alma-fix/990041403870206441.json | 2 + .../alma-fix/990050000600206441.json | 6 ++ .../alma-fix/990051708340206441.json | 1 + .../alma-fix/990052965140206441.json | 2 + .../alma-fix/990053976760206441.json | 20 +++++++ .../alma-fix/990054215550206441.json | 2 + .../alma-fix/990054301770206441.json | 4 ++ .../alma-fix/990054345550206441.json | 34 +++++++++++ .../alma-fix/990055981810206441.json | 5 ++ .../alma-fix/990058434730206441.json | 22 +++++++ .../alma-fix/990058567920206441.json | 36 +++++++++++ .../alma-fix/990059571560206441.json | 3 + .../alma-fix/990063549080206441.json | 4 ++ .../alma-fix/990065341720206441.json | 1 + .../alma-fix/990075429930206441.json | 13 ++++ .../alma-fix/990075538650206441.json | 3 + .../alma-fix/990103899140206441.json | 1 + .../alma-fix/990108873860206441.json | 2 + .../alma-fix/990109712970206441.json | 25 ++++++++ .../alma-fix/990114098170206441.json | 1 + .../alma-fix/990114617880206441.json | 1 + .../alma-fix/990118562160206441.json | 1 + .../alma-fix/990122511970206441.json | 1 + .../alma-fix/990126276700206441.json | 12 ++++ .../alma-fix/990136041660206441.json | 1 + .../alma-fix/990139686910206441.json | 1 + .../alma-fix/990141342350206441.json | 1 + .../alma-fix/990143325070206441.json | 2 + .../alma-fix/990156060190206441.json | 33 +++++++++++ .../alma-fix/990167595410206441.json | 2 + .../alma-fix/990171142550206441.json | 5 ++ .../alma-fix/990173811970206441.json | 1 + .../alma-fix/990181275760206441.json | 12 ++++ .../alma-fix/990182814750206441.json | 1 + .../alma-fix/990183054020206441.json | 1 + .../alma-fix/990183958380206441.json | 4 ++ .../alma-fix/990185607520206441.json | 1 + .../alma-fix/990185619180206441.json | 1 + .../alma-fix/990189160110206441.json | 19 ++++++ .../alma-fix/990193094010206441.json | 2 + .../alma-fix/990193806600206441.json | 1 + .../alma-fix/990194668760206441.json | 1 + .../alma-fix/990194744870206441.json | 3 + .../alma-fix/990198383780206441.json | 1 + .../alma-fix/990202474680206441.json | 2 + .../alma-fix/990204246530206441.json | 3 + .../alma-fix/990207668220206441.json | 1 + .../alma-fix/990209515320206441.json | 1 + .../alma-fix/990209817770206441.json | 1 + .../alma-fix/990210237770206441.json | 59 +++++++++++++++++++ .../alma-fix/990210285400206441.json | 1 + .../alma-fix/990210950050206441.json | 1 + .../alma-fix/990217478660206441.json | 29 +++++++++ .../alma-fix/990218189790206441.json | 1 + .../alma-fix/990220027540206441.json | 1 + .../alma-fix/990223521400206441.json | 23 ++++++++ .../alma-fix/990225056670206441.json | 1 + .../alma-fix/990366394400206441.json | 1 + .../alma-fix/990367731740206441.json | 1 + .../alma-fix/990367761810206441.json | 1 + .../alma-fix/990368743120206441.json | 1 + .../resources/alma-fix/99370771475306441.json | 8 +++ .../resources/alma-fix/99370782520706441.json | 23 ++++++++ .../resources/alma-fix/99371014448006441.json | 1 + .../resources/alma-fix/99371050452706441.json | 1 + .../resources/alma-fix/99371530278506441.json | 1 + .../resources/alma-fix/99372423490706441.json | 1 + 77 files changed, 511 insertions(+), 2 deletions(-) diff --git a/src/main/resources/alma/fix/item.fix b/src/main/resources/alma/fix/item.fix index 2253f81a1..255aaddc7 100644 --- a/src/main/resources/alma/fix/item.fix +++ b/src/main/resources/alma/fix/item.fix @@ -19,9 +19,9 @@ do list(path:"ITM ", "var": "$i") copy_field("$i.w","hasItem[].$last.currentLibrary") copy_field("$i.x","hasItem[].$last.currentLocation") copy_field("$i.a", "$i.@iz") - call_macro("opacLink") replace_all("$i.@iz",".*(\\d{4})$","$1") lookup("$i.@iz", "alma-institution-code-to-isil") + call_macro("opacLink") copy_field("$i.w","$i.@sublibraryIsil") lookup("$i.@sublibraryIsil", "hbzowner2sigel",delete:"true") lookup("$i.@sublibraryIsil", "sigel2isilMap",delete:"true") @@ -61,9 +61,9 @@ do list(path: "HOL ", "var": "$i") copy_field("$H52.c","hasItem[].$last.currentLocation") copy_field("$H52.h", "hasItem[].$last.callNumber") copy_field("$i.8", "$i.@iz") - call_macro("opacLink") replace_all("$i.@iz",".*(\\d{4})$","$1") lookup("$i.@iz", "alma-institution-code-to-isil") + call_macro("opacLink") copy_field("$H52.b","$i.@sublibraryIsil") lookup("$i.@sublibraryIsil", "hbzowner2sigel",delete:"true") lookup("$i.@sublibraryIsil", "sigel2isilMap",delete:"true") diff --git a/src/test/resources/alma-fix/990001412590206441.json b/src/test/resources/alma-fix/990001412590206441.json index e21c422b2..97606303b 100644 --- a/src/test/resources/alma-fix/990001412590206441.json +++ b/src/test/resources/alma-fix/990001412590206441.json @@ -114,6 +114,7 @@ "serialNumber" : "W00348898", "currentLibrary" : "W0001", "currentLocation" : "04", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -127,6 +128,7 @@ "serialNumber" : "881294001", "currentLibrary" : "F0001", "currentLocation" : "03", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -140,6 +142,7 @@ "serialNumber" : "02922183", "currentLibrary" : "R0001", "currentLocation" : "00000000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -153,6 +156,7 @@ "serialNumber" : "02922177", "currentLibrary" : "R0001", "currentLocation" : "00000000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -166,6 +170,7 @@ "serialNumber" : "0130003X", "currentLibrary" : "R0001", "currentLocation" : "00000000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -179,6 +184,7 @@ "serialNumber" : ":94002663930", "currentLibrary" : "T0010", "currentLocation" : "kA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", @@ -192,6 +198,7 @@ "serialNumber" : "50860674", "currentLibrary" : "EFB", "currentLocation" : "Freihand", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -205,6 +212,7 @@ "serialNumber" : "B1252/640", "currentLibrary" : "0", "currentLocation" : "0-MagAlt", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -231,6 +239,7 @@ "serialNumber" : "408422401", "currentLibrary" : "X0001", "currentLocation" : "00L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -244,6 +253,7 @@ "serialNumber" : "PP4/111", "currentLibrary" : "38", "currentLocation" : "38-MAG", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -257,6 +267,7 @@ "serialNumber" : "48 QU 313", "currentLibrary" : "ZB", "currentLocation" : "ZB_GMAG", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -270,6 +281,7 @@ "serialNumber" : "20ICM1270", "currentLibrary" : "S0001", "currentLocation" : "ERW", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -283,6 +295,7 @@ "serialNumber" : "ICM1034", "currentLibrary" : "P0001", "currentLocation" : "11", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -294,6 +307,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990011470300206441.json b/src/test/resources/alma-fix/990011470300206441.json index 4a6c5b6a7..c0f7db56d 100644 --- a/src/test/resources/alma-fix/990011470300206441.json +++ b/src/test/resources/alma-fix/990011470300206441.json @@ -96,6 +96,7 @@ "serialNumber" : "0102.3750.19", "currentLibrary" : "T0011", "currentLocation" : "38", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -109,6 +110,7 @@ "serialNumber" : "Z17-045835", "currentLibrary" : "PHIL", "currentLocation" : "PHIL_PBIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", @@ -120,6 +122,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990014830510206441.json b/src/test/resources/alma-fix/990014830510206441.json index 57383b644..9acd753c6 100644 --- a/src/test/resources/alma-fix/990014830510206441.json +++ b/src/test/resources/alma-fix/990014830510206441.json @@ -99,6 +99,7 @@ "serialNumber" : "0017.4679.62", "currentLibrary" : "T0011", "currentLocation" : "21", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -112,6 +113,7 @@ "serialNumber" : "SK-201407", "currentLibrary" : "SM", "currentLocation" : "SM-Frei", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", @@ -125,6 +127,7 @@ "serialNumber" : "KNLC1469", "currentLibrary" : "E0001", "currentLocation" : "E07IM", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -136,6 +139,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990016782920206441.json b/src/test/resources/alma-fix/990016782920206441.json index 984dd214c..5216e40ea 100644 --- a/src/test/resources/alma-fix/990016782920206441.json +++ b/src/test/resources/alma-fix/990016782920206441.json @@ -88,6 +88,7 @@ "serialNumber" : "E1000000037300", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -114,6 +115,7 @@ "serialNumber" : "012979677107", "currentLibrary" : "R0003", "currentLocation" : "00001000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -127,6 +129,7 @@ "serialNumber" : "Z156-011049", "currentLibrary" : "MUPA", "currentLocation" : "MUPA_BIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-286#!", "isil" : "DE-6-286", diff --git a/src/test/resources/alma-fix/990021367710206441.json b/src/test/resources/alma-fix/990021367710206441.json index 8da7b0f4e..285ae9185 100644 --- a/src/test/resources/alma-fix/990021367710206441.json +++ b/src/test/resources/alma-fix/990021367710206441.json @@ -95,6 +95,7 @@ "serialNumber" : "20098056", "currentLibrary" : "SFS", "currentLocation" : "Freihand", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -108,6 +109,7 @@ "serialNumber" : "186573", "currentLibrary" : "ZB", "currentLocation" : "Freihand", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -121,6 +123,7 @@ "serialNumber" : "0012.7330.22", "currentLibrary" : "T0011", "currentLocation" : "MAG", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -145,6 +148,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990021974470206441.json b/src/test/resources/alma-fix/990021974470206441.json index 711f74184..3b84d3a75 100644 --- a/src/test/resources/alma-fix/990021974470206441.json +++ b/src/test/resources/alma-fix/990021974470206441.json @@ -107,6 +107,7 @@ "serialNumber" : "604:016874", "currentLibrary" : "604", "currentLocation" : "0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-604#!", "isil" : "DE-82-604", @@ -120,6 +121,7 @@ "serialNumber" : "0166.4021.80", "currentLibrary" : "T0011", "currentLocation" : "MAG", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -159,6 +161,7 @@ "serialNumber" : "Gc757", "currentLibrary" : "38", "currentLocation" : "38-MAG", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -172,6 +175,7 @@ "serialNumber" : "208/0032920", "currentLibrary" : "38-208", "currentLocation" : "38-208-VR", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-208#!", "isil" : "DE-38-208", @@ -185,6 +189,7 @@ "serialNumber" : "Z25-033835", "currentLibrary" : "RWS1", "currentLocation" : "RWS1_BIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-016#!", "isil" : "DE-6-016", diff --git a/src/test/resources/alma-fix/990026405480206441.json b/src/test/resources/alma-fix/990026405480206441.json index e3365567a..51aad765b 100644 --- a/src/test/resources/alma-fix/990026405480206441.json +++ b/src/test/resources/alma-fix/990026405480206441.json @@ -97,6 +97,7 @@ "serialNumber" : "40275409", "currentLibrary" : "SIE", "currentLocation" : "SIE_PRAES", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Sie5#!", "isil" : "DE-Sie5", @@ -110,6 +111,7 @@ "serialNumber" : "006392301", "currentLibrary" : "cdd", "currentLocation" : "HB", + "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", @@ -123,6 +125,7 @@ "serialNumber" : "06542653", "currentLibrary" : "R0002", "currentLocation" : "00002000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Zw1#!", "isil" : "DE-Zw1", @@ -136,6 +139,7 @@ "serialNumber" : "07258981", "currentLibrary" : "R0002", "currentLocation" : "00002000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Zw1#!", "isil" : "DE-Zw1", @@ -162,6 +166,7 @@ "serialNumber" : "420/030051", "currentLibrary" : "38-420", "currentLocation" : "38-420-MAG", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-420#!", "isil" : "DE-38-420", @@ -175,6 +180,7 @@ "serialNumber" : "WUJ1407(3)", "currentLibrary" : "P0001", "currentLocation" : "51", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -186,6 +192,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990030574430206441.json b/src/test/resources/alma-fix/990030574430206441.json index e086ae3f6..ea4e6c7e4 100644 --- a/src/test/resources/alma-fix/990030574430206441.json +++ b/src/test/resources/alma-fix/990030574430206441.json @@ -72,6 +72,7 @@ "serialNumber" : "SL-031324", "currentLibrary" : "SG", "currentLocation" : "SG-Frei", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-13#!", "isil" : "DE-5-13", @@ -85,6 +86,7 @@ "serialNumber" : "65/7293", "currentLibrary" : "0", "currentLocation" : "0-Mag", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", diff --git a/src/test/resources/alma-fix/990035016180206441.json b/src/test/resources/alma-fix/990035016180206441.json index 2d08fc47d..b3bd909a0 100644 --- a/src/test/resources/alma-fix/990035016180206441.json +++ b/src/test/resources/alma-fix/990035016180206441.json @@ -85,6 +85,7 @@ "serialNumber" : "456292-10", "currentLibrary" : "W0001", "currentLocation" : "06", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -98,6 +99,7 @@ "serialNumber" : "TEMP55788", "currentLibrary" : "EFB", "currentLocation" : "BibDtLit", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -137,6 +139,7 @@ "serialNumber" : "CJU1482_D", "currentLibrary" : "D0001", "currentLocation" : "D98", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -150,6 +153,7 @@ "serialNumber" : "DDZR1026", "currentLibrary" : "E0001", "currentLocation" : "E06", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -163,6 +167,7 @@ "serialNumber" : "LS/0039447", "currentLibrary" : "38", "currentLocation" : "38-LS", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -176,6 +181,7 @@ "serialNumber" : "YB 442-19760", "currentLibrary" : "ZUP", "currentLocation" : "ZUP_MIKRO", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-Z#!", "isil" : "DE-6-Z", @@ -189,6 +195,7 @@ "serialNumber" : "786164-10", "currentLibrary" : "S0001", "currentLocation" : "ARMED", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -202,6 +209,7 @@ "serialNumber" : "734866-10", "currentLibrary" : "P0001", "currentLocation" : "93", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -213,6 +221,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990041403870206441.json b/src/test/resources/alma-fix/990041403870206441.json index 586e2ba23..830c1e85c 100644 --- a/src/test/resources/alma-fix/990041403870206441.json +++ b/src/test/resources/alma-fix/990041403870206441.json @@ -70,6 +70,7 @@ "serialNumber" : "P99/228", "currentLibrary" : "0", "currentLocation" : "0-Speich", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -83,6 +84,7 @@ "serialNumber" : "11M1706", "currentLibrary" : "38-HLS", "currentLocation" : "38-HLS-MAG", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", diff --git a/src/test/resources/alma-fix/990050000600206441.json b/src/test/resources/alma-fix/990050000600206441.json index bc1e46207..d5fb4b89c 100644 --- a/src/test/resources/alma-fix/990050000600206441.json +++ b/src/test/resources/alma-fix/990050000600206441.json @@ -170,6 +170,7 @@ "callNumber" : "mat 03-252/", "currentLibrary" : "RL002", "currentLocation" : "ALLLD", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -183,6 +184,7 @@ "serialNumber" : "657775-10", "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -206,6 +208,7 @@ "currentLibrary" : "R3042", "currentLocation" : "ALL42", "callNumber" : "MAS 024/012", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -218,6 +221,7 @@ "currentLibrary" : "R3048", "currentLocation" : "ALL48", "callNumber" : "MAT Furl", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -230,6 +234,7 @@ "currentLibrary" : "E0001", "currentLocation" : "EHS", "callNumber" : "TBM1318 <>", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -242,6 +247,7 @@ "currentLibrary" : "D0001", "currentLocation" : "DHS", "callNumber" : "TBM1318_d <>", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", diff --git a/src/test/resources/alma-fix/990051708340206441.json b/src/test/resources/alma-fix/990051708340206441.json index 4ecc74ec9..6623cc99a 100644 --- a/src/test/resources/alma-fix/990051708340206441.json +++ b/src/test/resources/alma-fix/990051708340206441.json @@ -67,6 +67,7 @@ "serialNumber" : "115266-10", "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990052965140206441.json b/src/test/resources/alma-fix/990052965140206441.json index 24e720bee..907dec1df 100644 --- a/src/test/resources/alma-fix/990052965140206441.json +++ b/src/test/resources/alma-fix/990052965140206441.json @@ -129,6 +129,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -140,6 +141,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990053976760206441.json b/src/test/resources/alma-fix/990053976760206441.json index bcf4f8808..d592c0ab6 100644 --- a/src/test/resources/alma-fix/990053976760206441.json +++ b/src/test/resources/alma-fix/990053976760206441.json @@ -221,6 +221,7 @@ "serialNumber" : "1148014-10", "currentLibrary" : "D0001", "currentLocation" : "D30", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -234,6 +235,7 @@ "serialNumber" : "M08 7898", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -247,6 +249,7 @@ "serialNumber" : "M08 7893", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -260,6 +263,7 @@ "serialNumber" : "M08 7897", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -273,6 +277,7 @@ "serialNumber" : "M08 7895", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -286,6 +291,7 @@ "serialNumber" : "M08 7896", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -299,6 +305,7 @@ "serialNumber" : "M08 7894", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -312,6 +319,7 @@ "serialNumber" : "9089785-10", "currentLibrary" : "S0001", "currentLocation" : "FMZS", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -324,6 +332,7 @@ "currentLibrary" : "W0001", "currentLocation" : "04", "callNumber" : "67P9", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -336,6 +345,7 @@ "currentLibrary" : "R3048", "currentLocation" : "ZSPHY", "callNumber" : "PHY Z 1646", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -348,6 +358,7 @@ "currentLibrary" : "R3048", "currentLocation" : "ZSPHY", "callNumber" : "PHY Z 1646", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -360,6 +371,7 @@ "currentLibrary" : "RL002", "currentLocation" : "FZSLD", "callNumber" : "fys 02-3", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -372,6 +384,7 @@ "currentLibrary" : "ZB", "currentLocation" : "0", "callNumber" : "Z5725", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -384,6 +397,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZS", "callNumber" : "ZN 535", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -420,6 +434,7 @@ "currentLibrary" : "X0001", "currentLocation" : "03P", "callNumber" : "phy z p 455", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -432,6 +447,7 @@ "currentLibrary" : "38-HWA", "currentLocation" : "38-HWA-ZMA", "callNumber" : "EWA Z666", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -444,6 +460,7 @@ "currentLibrary" : "PHY", "currentLocation" : "PHY_ZS", "callNumber" : "DP", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-023#!", "isil" : "DE-6-023", @@ -456,6 +473,7 @@ "currentLibrary" : "BEK", "currentLocation" : "BEK_ZS", "callNumber" : "Z 1011", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-123#!", "isil" : "DE-6-123", @@ -468,6 +486,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_ZS", "callNumber" : "Z Qu 4447", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -480,6 +499,7 @@ "currentLibrary" : "P0001", "currentLocation" : "40", "callNumber" : "67p54", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990054215550206441.json b/src/test/resources/alma-fix/990054215550206441.json index c5a368399..22a6108e7 100644 --- a/src/test/resources/alma-fix/990054215550206441.json +++ b/src/test/resources/alma-fix/990054215550206441.json @@ -150,6 +150,7 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "callNumber" : "Z 4' 66/103", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}1257-9", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -174,6 +175,7 @@ "currentLibrary" : "38", "currentLocation" : "38-ZS", "callNumber" : "Sh13", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}1257-9", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", diff --git a/src/test/resources/alma-fix/990054301770206441.json b/src/test/resources/alma-fix/990054301770206441.json index b6e52507b..b71cdaf9b 100644 --- a/src/test/resources/alma-fix/990054301770206441.json +++ b/src/test/resources/alma-fix/990054301770206441.json @@ -205,6 +205,7 @@ "currentLibrary" : "R0003", "currentLocation" : "kA", "callNumber" : "Per. 5502", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0133469-4", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -217,6 +218,7 @@ "currentLibrary" : "T0010", "currentLocation" : "kA", "callNumber" : "Z 1703", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01133469-4", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", @@ -229,6 +231,7 @@ "currentLibrary" : "38", "currentLocation" : "38-ZS", "callNumber" : "EkFOL577", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}133469-4", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -241,6 +244,7 @@ "currentLibrary" : "ALKU", "currentLocation" : "ALKU_ZS", "callNumber" : "Fr 88", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0133469-4", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-139a#!", "isil" : "DE-6-139a", diff --git a/src/test/resources/alma-fix/990054345550206441.json b/src/test/resources/alma-fix/990054345550206441.json index 82b155e7c..e4bd6573b 100644 --- a/src/test/resources/alma-fix/990054345550206441.json +++ b/src/test/resources/alma-fix/990054345550206441.json @@ -229,6 +229,7 @@ "callNumber" : "Einzelsign.", "currentLibrary" : "ZB", "currentLocation" : "0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -242,6 +243,7 @@ "serialNumber" : "497335801", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -255,6 +257,7 @@ "serialNumber" : "497047701", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -267,6 +270,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -280,6 +284,7 @@ "serialNumber" : "496523801", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -293,6 +298,7 @@ "serialNumber" : "496976701", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -305,6 +311,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -317,6 +324,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -329,6 +337,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -341,6 +350,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -353,6 +363,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -365,6 +376,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -377,6 +389,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -389,6 +402,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -402,6 +416,7 @@ "serialNumber" : "496805001", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -414,6 +429,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -427,6 +443,7 @@ "serialNumber" : "496725001", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -440,6 +457,7 @@ "serialNumber" : "497056301", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -452,6 +470,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -464,6 +483,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -477,6 +497,7 @@ "serialNumber" : "496626601", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -490,6 +511,7 @@ "serialNumber" : "497168401", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -503,6 +525,7 @@ "serialNumber" : "496523701", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -515,6 +538,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -527,6 +551,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -539,6 +564,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -551,6 +577,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -563,6 +590,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -575,6 +603,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -598,6 +627,7 @@ "currentLibrary" : "ZB", "currentLocation" : "0", "callNumber" : "Md5099", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -610,6 +640,7 @@ "currentLibrary" : "R0001", "currentLocation" : "kA", "callNumber" : "Z 5354", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -622,6 +653,7 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "callNumber" : "Z 95/130", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -634,6 +666,7 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "callNumber" : "Z 95/130", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -646,6 +679,7 @@ "currentLibrary" : "38-445", "currentLocation" : "38-445-ZS", "callNumber" : "Ff 176/52", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}619424-2", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-445#!", "isil" : "DE-38-445", diff --git a/src/test/resources/alma-fix/990055981810206441.json b/src/test/resources/alma-fix/990055981810206441.json index 28659d6d7..c54e78fba 100644 --- a/src/test/resources/alma-fix/990055981810206441.json +++ b/src/test/resources/alma-fix/990055981810206441.json @@ -279,6 +279,7 @@ "serialNumber" : "ULB0054169", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=01089874-8", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -292,6 +293,7 @@ "serialNumber" : "ULB0041793", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=01089874-8", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -305,6 +307,7 @@ "serialNumber" : "ULB0041794", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=01089874-8", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -353,6 +356,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LS", "callNumber" : "WES 0.1:55", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=01089874-8", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -365,6 +369,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LS", "callNumber" : "WES 0.1:55", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=01089874-8", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990058434730206441.json b/src/test/resources/alma-fix/990058434730206441.json index 361be6396..28581550d 100644 --- a/src/test/resources/alma-fix/990058434730206441.json +++ b/src/test/resources/alma-fix/990058434730206441.json @@ -154,6 +154,7 @@ "serialNumber" : "000565227000010", "currentLibrary" : "W0001", "currentLocation" : "21", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -167,6 +168,7 @@ "serialNumber" : "KN41$01478356", "currentLibrary" : "KP001", "currentLocation" : "MMONO", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -232,6 +234,7 @@ "serialNumber" : "707452803107", "currentLibrary" : "R0003", "currentLocation" : "00001000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -245,6 +248,7 @@ "serialNumber" : "0176.4077.46", "currentLibrary" : "T0011", "currentLocation" : "31", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -258,6 +262,7 @@ "serialNumber" : "0150.6604.89", "currentLibrary" : "T0011", "currentLocation" : "80", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -271,6 +276,7 @@ "serialNumber" : "GA-112635", "currentLibrary" : "GA", "currentLocation" : "GA-Frei", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-74#!", "isil" : "DE-5-74", @@ -284,6 +290,7 @@ "serialNumber" : "TK-077339", "currentLibrary" : "TK", "currentLocation" : "TK-Frei", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-108#!", "isil" : "DE-5-108", @@ -297,6 +304,7 @@ "serialNumber" : "69/4564", "currentLibrary" : "0", "currentLocation" : "0-Mag", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -362,6 +370,7 @@ "serialNumber" : "LBB1092", "currentLibrary" : "E0001", "currentLocation" : "E11", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -375,6 +384,7 @@ "serialNumber" : "402856101", "currentLibrary" : "X0001", "currentLocation" : "00", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -388,6 +398,7 @@ "serialNumber" : "402856102", "currentLibrary" : "X0025", "currentLocation" : "25", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -401,6 +412,7 @@ "serialNumber" : "402856103", "currentLibrary" : "X0001", "currentLocation" : "00", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -414,6 +426,7 @@ "serialNumber" : "1B4842", "currentLibrary" : "38", "currentLocation" : "38-MAG", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -427,6 +440,7 @@ "serialNumber" : "TEMP3414", "currentLibrary" : "38-622", "currentLocation" : "38-622-BIB", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-622#!", "isil" : "DE-38-622", @@ -440,6 +454,7 @@ "serialNumber" : "Z140-016417", "currentLibrary" : "IJD", "currentLocation" : "IJD_BIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-119#!", "isil" : "DE-6-119", @@ -453,6 +468,7 @@ "serialNumber" : "3G 18788", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -466,6 +482,7 @@ "serialNumber" : "Z33-001736", "currentLibrary" : "EVT", "currentLocation" : "EVT_BIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-006#!", "isil" : "DE-6-006", @@ -479,6 +496,7 @@ "serialNumber" : "Z30-002690", "currentLibrary" : "KATJ", "currentLocation" : "KATJ_BIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-011#!", "isil" : "DE-6-011", @@ -492,6 +510,7 @@ "serialNumber" : "Z15-000825", "currentLibrary" : "FBH", "currentLocation" : "FBH_KPBIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", @@ -505,6 +524,7 @@ "serialNumber" : "21INR1017", "currentLibrary" : "S0001", "currentLocation" : "H5", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -518,6 +538,7 @@ "serialNumber" : "INR1067", "currentLibrary" : "P0001", "currentLocation" : "11", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -584,6 +605,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990058567920206441.json b/src/test/resources/alma-fix/990058567920206441.json index 4225ca98f..842ec8985 100644 --- a/src/test/resources/alma-fix/990058567920206441.json +++ b/src/test/resources/alma-fix/990058567920206441.json @@ -167,6 +167,7 @@ "serialNumber" : "000572482000010", "currentLibrary" : "W0001", "currentLocation" : "47", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -193,6 +194,7 @@ "serialNumber" : "750333401", "currentLibrary" : "F0001", "currentLocation" : "00", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -206,6 +208,7 @@ "serialNumber" : "101591605", "currentLibrary" : "R3032", "currentLocation" : "FHSOZ", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -219,6 +222,7 @@ "serialNumber" : "101591593", "currentLibrary" : "R3032", "currentLocation" : "FHSOZ", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -232,6 +236,7 @@ "serialNumber" : "C130374", "currentLibrary" : "RL002", "currentLocation" : "FHELD", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -245,6 +250,7 @@ "serialNumber" : "ZA5799-239=2", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_TK", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -258,6 +264,7 @@ "serialNumber" : "701883814107", "currentLibrary" : "R0003", "currentLocation" : "00001000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -271,6 +278,7 @@ "serialNumber" : "02130032", "currentLibrary" : "R0001", "currentLocation" : "00000000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -284,6 +292,7 @@ "serialNumber" : ":94000371150", "currentLibrary" : "T0010", "currentLocation" : "RU", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", @@ -297,6 +306,7 @@ "serialNumber" : "116597", "currentLibrary" : "ZB", "currentLocation" : "Freihand", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -310,6 +320,7 @@ "serialNumber" : "20105163", "currentLibrary" : "SFS", "currentLocation" : "Freihand", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -323,6 +334,7 @@ "serialNumber" : "0163.8657.33", "currentLibrary" : "T0011", "currentLocation" : "38", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -336,6 +348,7 @@ "serialNumber" : "0040.6826.86", "currentLibrary" : "T0011", "currentLocation" : "12", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -349,6 +362,7 @@ "serialNumber" : "0089.0881.26", "currentLibrary" : "T0011", "currentLocation" : "39", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -362,6 +376,7 @@ "serialNumber" : "75/2644", "currentLibrary" : "0", "currentLocation" : "0-Mag", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -375,6 +390,7 @@ "serialNumber" : "PO-024839", "currentLibrary" : "PO", "currentLocation" : "PO-Frei", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-162#!", "isil" : "DE-5-162", @@ -492,6 +508,7 @@ "serialNumber" : "DE00322121", "currentLibrary" : "D0001", "currentLocation" : "D21", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -505,6 +522,7 @@ "serialNumber" : "ODU1117", "currentLibrary" : "E0001", "currentLocation" : "E11", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -518,6 +536,7 @@ "serialNumber" : "021910701", "currentLibrary" : "X0001", "currentLocation" : "00", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -531,6 +550,7 @@ "serialNumber" : "M18 8508", "currentLibrary" : "RL001", "currentLocation" : "MAGKO", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -544,6 +564,7 @@ "serialNumber" : "77/235", "currentLibrary" : "38-HWA", "currentLocation" : "38-HWA-MAG", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -557,6 +578,7 @@ "serialNumber" : "132/023307", "currentLibrary" : "38-132", "currentLocation" : "38-132-BIB", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-132#!", "isil" : "DE-38-132", @@ -570,6 +592,7 @@ "serialNumber" : "2G8474", "currentLibrary" : "38", "currentLocation" : "38-AWM", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -583,6 +606,7 @@ "serialNumber" : "Z16-144095", "currentLibrary" : "FBH", "currentLocation" : "FBH_HSBIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", @@ -596,6 +620,7 @@ "serialNumber" : "3E 45866", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -609,6 +634,7 @@ "serialNumber" : "MD 1700/1", "currentLibrary" : "SOZ", "currentLocation" : "SOZ_MAG", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-A#!", "isil" : "DE-6-A", @@ -622,6 +648,7 @@ "serialNumber" : "Z31-116242", "currentLibrary" : "KATH", "currentLocation" : "KATH_BIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-069#!", "isil" : "DE-6-069", @@ -635,6 +662,7 @@ "serialNumber" : "Z17-002094", "currentLibrary" : "PHIL", "currentLocation" : "PHIL_PBIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", @@ -648,6 +676,7 @@ "serialNumber" : "Z30-092527", "currentLibrary" : "KATD", "currentLocation" : "KATD_BIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-011#!", "isil" : "DE-6-011", @@ -661,6 +690,7 @@ "serialNumber" : "Z19-001146", "currentLibrary" : "FBH", "currentLocation" : "FBH_DGBIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", @@ -674,6 +704,7 @@ "serialNumber" : "31OYV2405", "currentLibrary" : "S0001", "currentLocation" : "ERW", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -687,6 +718,7 @@ "serialNumber" : "PBZ1028", "currentLibrary" : "P0001", "currentLocation" : "31", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -698,6 +730,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "F0001", "currentLocation" : "30", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -709,6 +742,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -720,6 +754,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -731,6 +766,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990059571560206441.json b/src/test/resources/alma-fix/990059571560206441.json index 8d59061c5..3b35d69d6 100644 --- a/src/test/resources/alma-fix/990059571560206441.json +++ b/src/test/resources/alma-fix/990059571560206441.json @@ -132,6 +132,7 @@ "serialNumber" : "FK162-29+2", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_2", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -145,6 +146,7 @@ "serialNumber" : "33WBT1003(2)-29", "currentLibrary" : "DEUTZ", "currentLocation" : "33", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -158,6 +160,7 @@ "serialNumber" : "51/964(29)+2", "currentLibrary" : "0", "currentLocation" : "0-Mag", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", diff --git a/src/test/resources/alma-fix/990063549080206441.json b/src/test/resources/alma-fix/990063549080206441.json index 844c76a80..861de89cb 100644 --- a/src/test/resources/alma-fix/990063549080206441.json +++ b/src/test/resources/alma-fix/990063549080206441.json @@ -122,6 +122,7 @@ "serialNumber" : "000226365000010", "currentLibrary" : "W0001", "currentLocation" : "04", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -134,6 +135,7 @@ "callNumber" : "ZZN/APSA", "currentLibrary" : "F0001", "currentLocation" : "03", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -146,6 +148,7 @@ "serialNumber" : "261819-10", "currentLibrary" : "R3032", "currentLocation" : "AUS32", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -185,6 +188,7 @@ "serialNumber" : "125/0003749", "currentLibrary" : "38-125", "currentLocation" : "38-125-BIB", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-125#!", "isil" : "DE-38-125", diff --git a/src/test/resources/alma-fix/990065341720206441.json b/src/test/resources/alma-fix/990065341720206441.json index 12a86499e..21abfc809 100644 --- a/src/test/resources/alma-fix/990065341720206441.json +++ b/src/test/resources/alma-fix/990065341720206441.json @@ -89,6 +89,7 @@ "serialNumber" : "Z 7835-41_42", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990075429930206441.json b/src/test/resources/alma-fix/990075429930206441.json index 921b9c3cb..65b797e19 100644 --- a/src/test/resources/alma-fix/990075429930206441.json +++ b/src/test/resources/alma-fix/990075429930206441.json @@ -97,6 +97,7 @@ "serialNumber" : "702586422107", "currentLibrary" : "R0003", "currentLocation" : "00001000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -110,6 +111,7 @@ "serialNumber" : "011813549107", "currentLibrary" : "R0003", "currentLocation" : "00001000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -123,6 +125,7 @@ "serialNumber" : "78BDDS1079", "currentLibrary" : "DEUTZ", "currentLocation" : "78", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -135,6 +138,7 @@ "callNumber" : "a4117-1934,3/11", "currentLibrary" : "T0011", "currentLocation" : "MAG", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -148,6 +152,7 @@ "serialNumber" : "TK-038705", "currentLibrary" : "TK", "currentLocation" : "TK-Frei", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-108#!", "isil" : "DE-5-108", @@ -161,6 +166,7 @@ "serialNumber" : "GE-011615", "currentLibrary" : "GE", "currentLocation" : "GE-Frei", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-20#!", "isil" : "DE-5-20", @@ -226,6 +232,7 @@ "serialNumber" : "434/0007087", "currentLibrary" : "38-434", "currentLocation" : "38-434-BIB", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-434#!", "isil" : "DE-38-434", @@ -239,6 +246,7 @@ "serialNumber" : "432/0014231", "currentLibrary" : "38-432", "currentLocation" : "38-432-BIB", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-432#!", "isil" : "DE-38-432", @@ -252,6 +260,7 @@ "serialNumber" : "Z114-006972", "currentLibrary" : "ENGL", "currentLocation" : "ENGL_BIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-020#!", "isil" : "DE-6-020", @@ -265,6 +274,7 @@ "serialNumber" : "Z56-017587", "currentLibrary" : "GERM", "currentLocation" : "GERM_BIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-246#!", "isil" : "DE-6-246", @@ -278,6 +288,7 @@ "serialNumber" : "Z 430-1934", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -300,6 +311,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -311,6 +323,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990075538650206441.json b/src/test/resources/alma-fix/990075538650206441.json index dcdc90568..dcb31da04 100644 --- a/src/test/resources/alma-fix/990075538650206441.json +++ b/src/test/resources/alma-fix/990075538650206441.json @@ -133,6 +133,7 @@ "serialNumber" : "KN41$00285359", "currentLibrary" : "KP001", "currentLocation" : "MMONO", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -146,6 +147,7 @@ "serialNumber" : "KRH1645", "currentLibrary" : "P0001", "currentLocation" : "11", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -170,6 +172,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990103899140206441.json b/src/test/resources/alma-fix/990103899140206441.json index 9abd4c432..eb47921fa 100644 --- a/src/test/resources/alma-fix/990103899140206441.json +++ b/src/test/resources/alma-fix/990103899140206441.json @@ -113,6 +113,7 @@ "currentLibrary" : "R0003", "currentLocation" : "kA", "callNumber" : "Per. 5157", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0590016-5", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", diff --git a/src/test/resources/alma-fix/990108873860206441.json b/src/test/resources/alma-fix/990108873860206441.json index 2a98e343d..650392bc0 100644 --- a/src/test/resources/alma-fix/990108873860206441.json +++ b/src/test/resources/alma-fix/990108873860206441.json @@ -152,6 +152,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0003", "currentLocation" : "kA", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=01500025-4", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -163,6 +164,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0001", "currentLocation" : "kA", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=01500025-4", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", diff --git a/src/test/resources/alma-fix/990109712970206441.json b/src/test/resources/alma-fix/990109712970206441.json index 0dece79b3..3f4687562 100644 --- a/src/test/resources/alma-fix/990109712970206441.json +++ b/src/test/resources/alma-fix/990109712970206441.json @@ -219,6 +219,7 @@ "serialNumber" : "1103875-50", "currentLibrary" : "W0001", "currentLocation" : "21", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -232,6 +233,7 @@ "serialNumber" : "1103875-30", "currentLibrary" : "W0001", "currentLocation" : "21", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -245,6 +247,7 @@ "serialNumber" : "1103875-10", "currentLibrary" : "W0001", "currentLocation" : "21", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -258,6 +261,7 @@ "serialNumber" : "1103875-20", "currentLibrary" : "W0001", "currentLocation" : "21", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -270,6 +274,7 @@ "callNumber" : "KJIB3790", "currentLibrary" : "W0001", "currentLocation" : "21", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -283,6 +288,7 @@ "serialNumber" : "1103875-40", "currentLibrary" : "W0001", "currentLocation" : "21", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -296,6 +302,7 @@ "serialNumber" : "1103875-60", "currentLibrary" : "W0001", "currentLocation" : "21", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -308,6 +315,7 @@ "callNumber" : "KJIB3790", "currentLibrary" : "W0001", "currentLocation" : "21", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -476,6 +484,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -488,6 +497,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -500,6 +510,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -512,6 +523,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -524,6 +536,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -536,6 +549,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -548,6 +562,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -561,6 +576,7 @@ "serialNumber" : "ULB0072893", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=02000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -574,6 +590,7 @@ "serialNumber" : "6-00746409-0", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=02000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -586,6 +603,7 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "callNumber" : "KJIB3585", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -598,6 +616,7 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "callNumber" : "KJIB3790", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -634,6 +653,7 @@ "currentLibrary" : "0", "currentLocation" : "0-Frei2", "callNumber" : "Z 2000/149", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -646,6 +666,7 @@ "currentLibrary" : "B059", "currentLocation" : "B059-Zeit", "callNumber" : "Nc 2/1999 Bran", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bo59#!", "isil" : "DE-Bo59", @@ -658,6 +679,7 @@ "currentLibrary" : "B059", "currentLocation" : "B059-Zeit", "callNumber" : "No 285/1999 Bran", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bo59#!", "isil" : "DE-Bo59", @@ -670,6 +692,7 @@ "currentLibrary" : "RL001", "currentLocation" : "FRHKO", "callNumber" : "MU/C 2014 115", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -682,6 +705,7 @@ "currentLibrary" : "38-430", "currentLocation" : "38-430-ZS", "callNumber" : "430/Bg/Beethoven005", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-430#!", "isil" : "DE-38-430", @@ -694,6 +718,7 @@ "currentLibrary" : "38", "currentLocation" : "38-ZS", "callNumber" : "XD475", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}2000012-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", diff --git a/src/test/resources/alma-fix/990114098170206441.json b/src/test/resources/alma-fix/990114098170206441.json index 6b3218960..8ead03315 100644 --- a/src/test/resources/alma-fix/990114098170206441.json +++ b/src/test/resources/alma-fix/990114098170206441.json @@ -143,6 +143,7 @@ "serialNumber" : "Z31-050265", "currentLibrary" : "KATH", "currentLocation" : "KATH_BIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-069#!", "isil" : "DE-6-069", diff --git a/src/test/resources/alma-fix/990114617880206441.json b/src/test/resources/alma-fix/990114617880206441.json index 08d8db003..d111911a5 100644 --- a/src/test/resources/alma-fix/990114617880206441.json +++ b/src/test/resources/alma-fix/990114617880206441.json @@ -90,6 +90,7 @@ "callNumber" : "qro/0011(1902)", "currentLibrary" : "X0001", "currentLocation" : "00L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990118562160206441.json b/src/test/resources/alma-fix/990118562160206441.json index 0c531b49c..4ee7e1aca 100644 --- a/src/test/resources/alma-fix/990118562160206441.json +++ b/src/test/resources/alma-fix/990118562160206441.json @@ -96,6 +96,7 @@ "serialNumber" : "912479-10", "currentLibrary" : "D0001", "currentLocation" : "D98", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", diff --git a/src/test/resources/alma-fix/990122511970206441.json b/src/test/resources/alma-fix/990122511970206441.json index 2b952b152..12ca63376 100644 --- a/src/test/resources/alma-fix/990122511970206441.json +++ b/src/test/resources/alma-fix/990122511970206441.json @@ -77,6 +77,7 @@ "serialNumber" : "KN38$0000066609", "currentLibrary" : "Z9038", "currentLocation" : "MZ2V", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number={hbzid}&local_base=MHK01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", diff --git a/src/test/resources/alma-fix/990126276700206441.json b/src/test/resources/alma-fix/990126276700206441.json index 4a859947f..17392a5e5 100644 --- a/src/test/resources/alma-fix/990126276700206441.json +++ b/src/test/resources/alma-fix/990126276700206441.json @@ -113,6 +113,7 @@ "serialNumber" : "W00020777", "currentLibrary" : "W0001", "currentLocation" : "11", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -126,6 +127,7 @@ "serialNumber" : "90745439", "currentLibrary" : "MOP", "currentLocation" : "MOP_Haupt", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", @@ -139,6 +141,7 @@ "serialNumber" : "140533301", "currentLibrary" : "F0001", "currentLocation" : "00", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -152,6 +155,7 @@ "serialNumber" : "C372365", "currentLibrary" : "RL002", "currentLocation" : "FHULD", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -165,6 +169,7 @@ "serialNumber" : "C372366", "currentLibrary" : "RL002", "currentLocation" : "FHULD", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -178,6 +183,7 @@ "serialNumber" : "609:025732", "currentLibrary" : "609", "currentLocation" : "0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-609#!", "isil" : "DE-82-609", @@ -191,6 +197,7 @@ "serialNumber" : "2010/1208", "currentLibrary" : "0", "currentLocation" : "0-Frei1", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -230,6 +237,7 @@ "serialNumber" : "109927001", "currentLibrary" : "X0031", "currentLocation" : "31", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -243,6 +251,7 @@ "serialNumber" : "405/0019949", "currentLibrary" : "38-405", "currentLocation" : "38-405-BIB", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-405#!", "isil" : "DE-38-405", @@ -256,6 +265,7 @@ "serialNumber" : "467/0000383", "currentLibrary" : "38-467", "currentLocation" : "38-467-BIB", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-467#!", "isil" : "DE-38-467", @@ -269,6 +279,7 @@ "serialNumber" : "3H 83949", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -282,6 +293,7 @@ "serialNumber" : "21KKZJ1005", "currentLibrary" : "S0001", "currentLocation" : "AR2", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", diff --git a/src/test/resources/alma-fix/990136041660206441.json b/src/test/resources/alma-fix/990136041660206441.json index 115899b09..c5e754b76 100644 --- a/src/test/resources/alma-fix/990136041660206441.json +++ b/src/test/resources/alma-fix/990136041660206441.json @@ -191,6 +191,7 @@ "currentLibrary" : "R0001", "currentLocation" : "kA", "callNumber" : "ZA 4343", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=02189310-X", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", diff --git a/src/test/resources/alma-fix/990139686910206441.json b/src/test/resources/alma-fix/990139686910206441.json index ebbec920a..8fdedb8e0 100644 --- a/src/test/resources/alma-fix/990139686910206441.json +++ b/src/test/resources/alma-fix/990139686910206441.json @@ -75,6 +75,7 @@ "serialNumber" : "TEMPHBZ60030305140-000010", "currentLibrary" : "Z9036", "currentLocation" : "MGAB", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", diff --git a/src/test/resources/alma-fix/990141342350206441.json b/src/test/resources/alma-fix/990141342350206441.json index 82ef8b5b7..3dd539d93 100644 --- a/src/test/resources/alma-fix/990141342350206441.json +++ b/src/test/resources/alma-fix/990141342350206441.json @@ -101,6 +101,7 @@ "serialNumber" : "701025920107", "currentLibrary" : "R0003", "currentLocation" : "00001000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", diff --git a/src/test/resources/alma-fix/990143325070206441.json b/src/test/resources/alma-fix/990143325070206441.json index 21f800baa..b196d7b6b 100644 --- a/src/test/resources/alma-fix/990143325070206441.json +++ b/src/test/resources/alma-fix/990143325070206441.json @@ -164,6 +164,7 @@ "serialNumber" : "2007/5873", "currentLibrary" : "0", "currentLocation" : "0-Frei1", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -177,6 +178,7 @@ "serialNumber" : "3H 94295", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990156060190206441.json b/src/test/resources/alma-fix/990156060190206441.json index a51f27277..d559ead59 100644 --- a/src/test/resources/alma-fix/990156060190206441.json +++ b/src/test/resources/alma-fix/990156060190206441.json @@ -170,6 +170,7 @@ "serialNumber" : "W00159251", "currentLibrary" : "W0001", "currentLocation" : "01", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -183,6 +184,7 @@ "serialNumber" : "KN41$00705907", "currentLibrary" : "KP001", "currentLocation" : "FMONO", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -196,6 +198,7 @@ "serialNumber" : "0212359", "currentLibrary" : "FHMH", "currentLocation" : "Freihand_H", + "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-836#!", "isil" : "DE-836", @@ -209,6 +212,7 @@ "serialNumber" : "070418501", "currentLibrary" : "F0001", "currentLocation" : "00", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -235,6 +239,7 @@ "serialNumber" : "20557430", "currentLibrary" : "STA", "currentLocation" : "STA_FH", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -248,6 +253,7 @@ "serialNumber" : "20619518", "currentLibrary" : "STA", "currentLocation" : "STA_FH", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -261,6 +267,7 @@ "serialNumber" : "017294901", "currentLibrary" : "cdd", "currentLocation" : "HBEMP", + "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", @@ -274,6 +281,7 @@ "serialNumber" : "081408ALN4WAS", "currentLibrary" : "MG", "currentLocation" : "MG_Public", + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", @@ -287,6 +295,7 @@ "serialNumber" : "11AVY1078", "currentLibrary" : "LE", "currentLocation" : "LE_Frei", + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", @@ -339,6 +348,7 @@ "serialNumber" : "108249895", "currentLibrary" : "R3032", "currentLocation" : "FH45", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -352,6 +362,7 @@ "serialNumber" : "C168762", "currentLibrary" : "RL002", "currentLocation" : "FHELD", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -365,6 +376,7 @@ "serialNumber" : "108260133", "currentLibrary" : "R3032", "currentLocation" : "FH45", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -378,6 +390,7 @@ "serialNumber" : "RD7887-13", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_1", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -391,6 +404,7 @@ "serialNumber" : "013133072107", "currentLibrary" : "R0003", "currentLocation" : "00001000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -404,6 +418,7 @@ "serialNumber" : "03531721", "currentLibrary" : "R0001", "currentLocation" : "00000000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -417,6 +432,7 @@ "serialNumber" : "63BCNM1806", "currentLibrary" : "SUED", "currentLocation" : "63", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -430,6 +446,7 @@ "serialNumber" : "12837764", "currentLibrary" : "EFB", "currentLocation" : "Freihand", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -443,6 +460,7 @@ "serialNumber" : "0063.6230.87", "currentLibrary" : "T0011", "currentLocation" : "09", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -456,6 +474,7 @@ "serialNumber" : "2007/2934", "currentLibrary" : "0", "currentLocation" : "0-Frei1", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -521,6 +540,7 @@ "serialNumber" : "E00750581", "currentLibrary" : "E0001", "currentLocation" : "E91", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -534,6 +554,7 @@ "serialNumber" : "E00290166", "currentLibrary" : "E0001", "currentLocation" : "E91", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -547,6 +568,7 @@ "serialNumber" : "M20 4473", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -560,6 +582,7 @@ "serialNumber" : "34A7510#a", "currentLibrary" : "38", "currentLocation" : "38-SAB", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -573,6 +596,7 @@ "serialNumber" : "34A7510", "currentLibrary" : "38", "currentLocation" : "38-SAB", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -586,6 +610,7 @@ "serialNumber" : "302/0660013", "currentLibrary" : "38-307", "currentLocation" : "38-307-FHM", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-307#!", "isil" : "DE-38-307", @@ -599,6 +624,7 @@ "serialNumber" : "3F 70852", "currentLibrary" : "ZB", "currentLocation" : "ZB_AUSB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -612,6 +638,7 @@ "serialNumber" : "Z69-036921", "currentLibrary" : "PSY", "currentLocation" : "PSY_BIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-049#!", "isil" : "DE-6-049", @@ -625,6 +652,7 @@ "serialNumber" : "Z67-064227", "currentLibrary" : "BEK", "currentLocation" : "BEK_MAG", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-123#!", "isil" : "DE-6-123", @@ -638,6 +666,7 @@ "serialNumber" : "AVY1256", "currentLibrary" : "P0001", "currentLocation" : "11", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -651,6 +680,7 @@ "serialNumber" : "00006901", "currentLibrary" : "GE", "currentLocation" : "01", + "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1010#!", "isil" : "DE-1010", @@ -662,6 +692,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -673,6 +704,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -684,6 +716,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990167595410206441.json b/src/test/resources/alma-fix/990167595410206441.json index 66eed7712..d39581ae4 100644 --- a/src/test/resources/alma-fix/990167595410206441.json +++ b/src/test/resources/alma-fix/990167595410206441.json @@ -73,6 +73,7 @@ "serialNumber" : "KMB/1980.7637", "currentLibrary" : "KN3", "currentLocation" : "KN3-KMB", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn3#!", "isil" : "DE-Kn3", @@ -86,6 +87,7 @@ "serialNumber" : "Z143-028930", "currentLibrary" : "PHIL", "currentLocation" : "PHIL_KBIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", diff --git a/src/test/resources/alma-fix/990171142550206441.json b/src/test/resources/alma-fix/990171142550206441.json index ad1fb541b..f0a0f1fb6 100644 --- a/src/test/resources/alma-fix/990171142550206441.json +++ b/src/test/resources/alma-fix/990171142550206441.json @@ -131,6 +131,7 @@ "serialNumber" : "63BBV1290", "currentLibrary" : "SUED", "currentLocation" : "63", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -144,6 +145,7 @@ "serialNumber" : "20139223", "currentLibrary" : "ZB", "currentLocation" : "Freihand", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -157,6 +159,7 @@ "serialNumber" : "0080.2818.77", "currentLibrary" : "T0011", "currentLocation" : "72", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -183,6 +186,7 @@ "serialNumber" : "39A5443", "currentLibrary" : "38", "currentLocation" : "38-SAB", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -194,6 +198,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990173811970206441.json b/src/test/resources/alma-fix/990173811970206441.json index f554441de..959198966 100644 --- a/src/test/resources/alma-fix/990173811970206441.json +++ b/src/test/resources/alma-fix/990173811970206441.json @@ -142,6 +142,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", diff --git a/src/test/resources/alma-fix/990181275760206441.json b/src/test/resources/alma-fix/990181275760206441.json index d83f7662a..e066a2836 100644 --- a/src/test/resources/alma-fix/990181275760206441.json +++ b/src/test/resources/alma-fix/990181275760206441.json @@ -105,6 +105,7 @@ "serialNumber" : "00782328", "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -118,6 +119,7 @@ "serialNumber" : "00782331", "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -131,6 +133,7 @@ "serialNumber" : "00782344", "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -144,6 +147,7 @@ "serialNumber" : "00830005", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -157,6 +161,7 @@ "serialNumber" : "00830018", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -170,6 +175,7 @@ "serialNumber" : "20037393", "currentLibrary" : "EFB", "currentLocation" : "LB", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -183,6 +189,7 @@ "serialNumber" : "20076086", "currentLibrary" : "EFB", "currentLocation" : "LB", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -196,6 +203,7 @@ "serialNumber" : "20086273", "currentLibrary" : "EFB", "currentLocation" : "LB", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -209,6 +217,7 @@ "serialNumber" : "20076085", "currentLibrary" : "EFB", "currentLocation" : "LB", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -222,6 +231,7 @@ "serialNumber" : "20076083", "currentLibrary" : "EFB", "currentLocation" : "LB", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -235,6 +245,7 @@ "serialNumber" : "20076082", "currentLibrary" : "EFB", "currentLocation" : "LB", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -248,6 +259,7 @@ "serialNumber" : "20066267", "currentLibrary" : "EFB", "currentLocation" : "LB", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", diff --git a/src/test/resources/alma-fix/990182814750206441.json b/src/test/resources/alma-fix/990182814750206441.json index 9c4f8d246..f4359eeed 100644 --- a/src/test/resources/alma-fix/990182814750206441.json +++ b/src/test/resources/alma-fix/990182814750206441.json @@ -130,6 +130,7 @@ "serialNumber" : "122113301", "currentLibrary" : "X0001", "currentLocation" : "01", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990183054020206441.json b/src/test/resources/alma-fix/990183054020206441.json index c17808a9d..3451601cd 100644 --- a/src/test/resources/alma-fix/990183054020206441.json +++ b/src/test/resources/alma-fix/990183054020206441.json @@ -201,6 +201,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_ZS", "callNumber" : "XB 3534", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=02581964-1", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990183958380206441.json b/src/test/resources/alma-fix/990183958380206441.json index d6884af13..375b157ae 100644 --- a/src/test/resources/alma-fix/990183958380206441.json +++ b/src/test/resources/alma-fix/990183958380206441.json @@ -185,6 +185,7 @@ "serialNumber" : "6-00113726-8", "currentLibrary" : "ZB", "currentLocation" : "ZB_GMAGL", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -198,6 +199,7 @@ "serialNumber" : "Z193-024182", "currentLibrary" : "ALKU", "currentLocation" : "ALKU_BIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-139a#!", "isil" : "DE-6-139a", @@ -211,6 +213,7 @@ "serialNumber" : "LUHB1738", "currentLibrary" : "P0001", "currentLocation" : "31", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -222,6 +225,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990185607520206441.json b/src/test/resources/alma-fix/990185607520206441.json index 7dcce9491..59d9b701c 100644 --- a/src/test/resources/alma-fix/990185607520206441.json +++ b/src/test/resources/alma-fix/990185607520206441.json @@ -78,6 +78,7 @@ "serialNumber" : "SM-007284", "currentLibrary" : "SM", "currentLocation" : "SM-Frei", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", diff --git a/src/test/resources/alma-fix/990185619180206441.json b/src/test/resources/alma-fix/990185619180206441.json index 272701493..d10e4d7d0 100644 --- a/src/test/resources/alma-fix/990185619180206441.json +++ b/src/test/resources/alma-fix/990185619180206441.json @@ -87,6 +87,7 @@ "serialNumber" : "SM-009391", "currentLibrary" : "SM", "currentLocation" : "SM-Frei", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", diff --git a/src/test/resources/alma-fix/990189160110206441.json b/src/test/resources/alma-fix/990189160110206441.json index 72baa9dff..268d098cf 100644 --- a/src/test/resources/alma-fix/990189160110206441.json +++ b/src/test/resources/alma-fix/990189160110206441.json @@ -150,6 +150,7 @@ "serialNumber" : "W00151217", "currentLibrary" : "W0001", "currentLocation" : "AA", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -163,6 +164,7 @@ "serialNumber" : "W00185519", "currentLibrary" : "W0001", "currentLocation" : "20", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -176,6 +178,7 @@ "serialNumber" : "W00328289", "currentLibrary" : "W0001", "currentLocation" : "21", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -189,6 +192,7 @@ "serialNumber" : "KN41$01599167", "currentLibrary" : "KP001", "currentLocation" : "FMONO", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -202,6 +206,7 @@ "serialNumber" : "KN41$01339152", "currentLibrary" : "KP001", "currentLocation" : "FMONO", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -215,6 +220,7 @@ "serialNumber" : "109382847", "currentLibrary" : "R3032", "currentLocation" : "FHSPO", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -228,6 +234,7 @@ "serialNumber" : "20116184", "currentLibrary" : "ZB", "currentLocation" : "Freihand", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -241,6 +248,7 @@ "serialNumber" : "P2012/259", "currentLibrary" : "0", "currentLocation" : "0-Mag", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -254,6 +262,7 @@ "serialNumber" : "DE00286549", "currentLibrary" : "E0001", "currentLocation" : "E11", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -267,6 +276,7 @@ "serialNumber" : "DE00286550", "currentLibrary" : "E0001", "currentLocation" : "E11", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -280,6 +290,7 @@ "serialNumber" : "M28 6888", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -293,6 +304,7 @@ "serialNumber" : "M31 6464", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -306,6 +318,7 @@ "serialNumber" : "M28 6889", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -319,6 +332,7 @@ "serialNumber" : "Z68-032337", "currentLibrary" : "SPOR", "currentLocation" : "SPOR_BIB", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-058#!", "isil" : "DE-6-058", @@ -332,6 +346,7 @@ "serialNumber" : "6-00166844-1", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -345,6 +360,7 @@ "serialNumber" : "6-00166843-9", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -358,6 +374,7 @@ "serialNumber" : "KRRS1643", "currentLibrary" : "P0001", "currentLocation" : "11", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -369,6 +386,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -380,6 +398,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990193094010206441.json b/src/test/resources/alma-fix/990193094010206441.json index b0a9cde29..3c8d6ddd7 100644 --- a/src/test/resources/alma-fix/990193094010206441.json +++ b/src/test/resources/alma-fix/990193094010206441.json @@ -82,6 +82,7 @@ "serialNumber" : "63BBV1390", "currentLibrary" : "SUED", "currentLocation" : "63", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -95,6 +96,7 @@ "serialNumber" : "20129967", "currentLibrary" : "EFB", "currentLocation" : "Freihand", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", diff --git a/src/test/resources/alma-fix/990193806600206441.json b/src/test/resources/alma-fix/990193806600206441.json index eb3f5c94c..8b575c0a0 100644 --- a/src/test/resources/alma-fix/990193806600206441.json +++ b/src/test/resources/alma-fix/990193806600206441.json @@ -81,6 +81,7 @@ "serialNumber" : "6-00245554-2", "currentLibrary" : "HLS", "currentLocation" : "HLS_RAKAR", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990194668760206441.json b/src/test/resources/alma-fix/990194668760206441.json index 1cca2fa21..6db640ba0 100644 --- a/src/test/resources/alma-fix/990194668760206441.json +++ b/src/test/resources/alma-fix/990194668760206441.json @@ -89,6 +89,7 @@ "callNumber" : "K347:501", "currentLibrary" : "X0001", "currentLocation" : "16", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990194744870206441.json b/src/test/resources/alma-fix/990194744870206441.json index 0f286fcb7..1ee8a3ddc 100644 --- a/src/test/resources/alma-fix/990194744870206441.json +++ b/src/test/resources/alma-fix/990194744870206441.json @@ -78,6 +78,7 @@ "serialNumber" : "C004216", "currentLibrary" : "RL002", "currentLocation" : "MNBLD", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -91,6 +92,7 @@ "serialNumber" : "M23 9940", "currentLibrary" : "RL001", "currentLocation" : "MAGMK", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -102,6 +104,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", diff --git a/src/test/resources/alma-fix/990198383780206441.json b/src/test/resources/alma-fix/990198383780206441.json index 085b5bc2e..9ccd18eb1 100644 --- a/src/test/resources/alma-fix/990198383780206441.json +++ b/src/test/resources/alma-fix/990198383780206441.json @@ -79,6 +79,7 @@ "serialNumber" : "130028201", "currentLibrary" : "X0001", "currentLocation" : "00", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990202474680206441.json b/src/test/resources/alma-fix/990202474680206441.json index 5ddc827a0..4c31e70e2 100644 --- a/src/test/resources/alma-fix/990202474680206441.json +++ b/src/test/resources/alma-fix/990202474680206441.json @@ -132,6 +132,7 @@ "serialNumber" : "AJ-143867", "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", @@ -145,6 +146,7 @@ "serialNumber" : "JAP/0008615", "currentLibrary" : "38-459", "currentLocation" : "38-459-KEL", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", diff --git a/src/test/resources/alma-fix/990204246530206441.json b/src/test/resources/alma-fix/990204246530206441.json index 477bf5af2..2442392f1 100644 --- a/src/test/resources/alma-fix/990204246530206441.json +++ b/src/test/resources/alma-fix/990204246530206441.json @@ -177,6 +177,7 @@ "serialNumber" : "04690647", "currentLibrary" : "R0001", "currentLocation" : "00000000", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -190,6 +191,7 @@ "serialNumber" : "GL-202825", "currentLibrary" : "GL", "currentLocation" : "GL-Frei", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-39#!", "isil" : "DE-5-39", @@ -203,6 +205,7 @@ "serialNumber" : "6-00342474-8", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990207668220206441.json b/src/test/resources/alma-fix/990207668220206441.json index 22a410970..1fe124b09 100644 --- a/src/test/resources/alma-fix/990207668220206441.json +++ b/src/test/resources/alma-fix/990207668220206441.json @@ -93,6 +93,7 @@ "serialNumber" : "223:3 AP 16", "currentLibrary" : "223", "currentLocation" : "0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-223#!", "isil" : "DE-82-223", diff --git a/src/test/resources/alma-fix/990209515320206441.json b/src/test/resources/alma-fix/990209515320206441.json index e366ae3db..d6dfd1a6b 100644 --- a/src/test/resources/alma-fix/990209515320206441.json +++ b/src/test/resources/alma-fix/990209515320206441.json @@ -104,6 +104,7 @@ "serialNumber" : "KN38$0000049839", "currentLibrary" : "Z9038", "currentLocation" : "MZ8V", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number={hbzid}&local_base=MHK01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", diff --git a/src/test/resources/alma-fix/990209817770206441.json b/src/test/resources/alma-fix/990209817770206441.json index 350e356c3..353c035c3 100644 --- a/src/test/resources/alma-fix/990209817770206441.json +++ b/src/test/resources/alma-fix/990209817770206441.json @@ -168,6 +168,7 @@ "serialNumber" : "6-00415520-5", "currentLibrary" : "ZB", "currentLocation" : "ZB_GKL", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990210237770206441.json b/src/test/resources/alma-fix/990210237770206441.json index 64937b617..5ebd23fba 100644 --- a/src/test/resources/alma-fix/990210237770206441.json +++ b/src/test/resources/alma-fix/990210237770206441.json @@ -88,6 +88,7 @@ "serialNumber" : "112628-550", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -101,6 +102,7 @@ "serialNumber" : "112628-180", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -114,6 +116,7 @@ "serialNumber" : "112628-540", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -127,6 +130,7 @@ "serialNumber" : "112628-530", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -140,6 +144,7 @@ "serialNumber" : "112628-560", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -153,6 +158,7 @@ "serialNumber" : "112628-330", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -166,6 +172,7 @@ "serialNumber" : "112628-520", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -179,6 +186,7 @@ "serialNumber" : "112628-510", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -192,6 +200,7 @@ "serialNumber" : "112628-320", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -205,6 +214,7 @@ "serialNumber" : "112628-340", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -218,6 +228,7 @@ "serialNumber" : "112628-360", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -231,6 +242,7 @@ "serialNumber" : "112628-390", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -244,6 +256,7 @@ "serialNumber" : "112628-370", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -257,6 +270,7 @@ "serialNumber" : "112628-480", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -270,6 +284,7 @@ "serialNumber" : "112628-290", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -283,6 +298,7 @@ "serialNumber" : "112628-70", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -296,6 +312,7 @@ "serialNumber" : "112628-230", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -309,6 +326,7 @@ "serialNumber" : "112628-500", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -322,6 +340,7 @@ "serialNumber" : "112628-310", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -335,6 +354,7 @@ "serialNumber" : "112628-50", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -348,6 +368,7 @@ "serialNumber" : "112628-270", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -361,6 +382,7 @@ "serialNumber" : "112628-40", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -374,6 +396,7 @@ "serialNumber" : "112628-250", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -387,6 +410,7 @@ "serialNumber" : "112628-210", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -400,6 +424,7 @@ "serialNumber" : "112628-190", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -413,6 +438,7 @@ "serialNumber" : "112628-160", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -426,6 +452,7 @@ "serialNumber" : "112628-140", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -439,6 +466,7 @@ "serialNumber" : "112628-120", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -452,6 +480,7 @@ "serialNumber" : "112628-100", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -465,6 +494,7 @@ "serialNumber" : "112628-80", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -478,6 +508,7 @@ "serialNumber" : "112628-600", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -491,6 +522,7 @@ "serialNumber" : "112628-590", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -504,6 +536,7 @@ "serialNumber" : "112628-430", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -517,6 +550,7 @@ "serialNumber" : "112628-380", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -530,6 +564,7 @@ "serialNumber" : "112628-260", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -543,6 +578,7 @@ "serialNumber" : "112628-570", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -556,6 +592,7 @@ "serialNumber" : "112628-610", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -569,6 +606,7 @@ "serialNumber" : "112628-580", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -582,6 +620,7 @@ "serialNumber" : "112628-450", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -595,6 +634,7 @@ "serialNumber" : "112628-460", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -608,6 +648,7 @@ "serialNumber" : "112628-440", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -621,6 +662,7 @@ "serialNumber" : "112628-420", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -634,6 +676,7 @@ "serialNumber" : "112628-410", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -647,6 +690,7 @@ "serialNumber" : "112628-400", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -660,6 +704,7 @@ "serialNumber" : "112628-490", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -673,6 +718,7 @@ "serialNumber" : "112628-470", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -686,6 +732,7 @@ "serialNumber" : "112628-300", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -699,6 +746,7 @@ "serialNumber" : "112628-280", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -712,6 +760,7 @@ "serialNumber" : "112628-60", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -725,6 +774,7 @@ "serialNumber" : "112628-220", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -738,6 +788,7 @@ "serialNumber" : "112628-240", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -751,6 +802,7 @@ "serialNumber" : "112628-200", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -764,6 +816,7 @@ "serialNumber" : "112628-170", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -777,6 +830,7 @@ "serialNumber" : "112628-90", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -790,6 +844,7 @@ "serialNumber" : "112628-150", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -803,6 +858,7 @@ "serialNumber" : "112628-130", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -816,6 +872,7 @@ "serialNumber" : "112628-110", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -829,6 +886,7 @@ "serialNumber" : "112628-30", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -842,6 +900,7 @@ "serialNumber" : "112628-20", "currentLibrary" : "Z9036", "currentLocation" : "FHA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", diff --git a/src/test/resources/alma-fix/990210285400206441.json b/src/test/resources/alma-fix/990210285400206441.json index 7872771ce..734380b31 100644 --- a/src/test/resources/alma-fix/990210285400206441.json +++ b/src/test/resources/alma-fix/990210285400206441.json @@ -124,6 +124,7 @@ "serialNumber" : "KN38$0000165230", "currentLibrary" : "Z9038", "currentLocation" : "MZ2V", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number={hbzid}&local_base=MHK01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", diff --git a/src/test/resources/alma-fix/990210950050206441.json b/src/test/resources/alma-fix/990210950050206441.json index 5f86a7271..9c09d6faa 100644 --- a/src/test/resources/alma-fix/990210950050206441.json +++ b/src/test/resources/alma-fix/990210950050206441.json @@ -195,6 +195,7 @@ "serialNumber" : "136699801", "currentLibrary" : "X0001", "currentLocation" : "00", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990217478660206441.json b/src/test/resources/alma-fix/990217478660206441.json index e475f1395..a7d25ff3f 100644 --- a/src/test/resources/alma-fix/990217478660206441.json +++ b/src/test/resources/alma-fix/990217478660206441.json @@ -244,6 +244,7 @@ "serialNumber" : "W00268173", "currentLibrary" : "W0001", "currentLocation" : "91", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -257,6 +258,7 @@ "serialNumber" : "W00268170", "currentLibrary" : "W0001", "currentLocation" : "91", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -270,6 +272,7 @@ "serialNumber" : "W00268172", "currentLibrary" : "W0001", "currentLocation" : "91", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -283,6 +286,7 @@ "serialNumber" : "W00268164", "currentLibrary" : "W0001", "currentLocation" : "20", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -296,6 +300,7 @@ "serialNumber" : "W00268165", "currentLibrary" : "W0001", "currentLocation" : "21", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -309,6 +314,7 @@ "serialNumber" : "W00268166", "currentLibrary" : "W0001", "currentLocation" : "21", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -322,6 +328,7 @@ "serialNumber" : "W00268168", "currentLibrary" : "W0001", "currentLocation" : "91", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -335,6 +342,7 @@ "serialNumber" : "W00268167", "currentLibrary" : "W0001", "currentLocation" : "91", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -348,6 +356,7 @@ "serialNumber" : "W00268176", "currentLibrary" : "W0001", "currentLocation" : "91", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -361,6 +370,7 @@ "serialNumber" : "W00268171", "currentLibrary" : "W0001", "currentLocation" : "91", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -374,6 +384,7 @@ "serialNumber" : "W00268175", "currentLibrary" : "W0001", "currentLocation" : "91", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -387,6 +398,7 @@ "serialNumber" : "W00268174", "currentLibrary" : "W0001", "currentLocation" : "91", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -400,6 +412,7 @@ "serialNumber" : "W00268169", "currentLibrary" : "W0001", "currentLocation" : "91", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -413,6 +426,7 @@ "serialNumber" : "91031017", "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", @@ -426,6 +440,7 @@ "serialNumber" : "180043101", "currentLibrary" : "F0001", "currentLocation" : "00", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -439,6 +454,7 @@ "serialNumber" : "180424", "currentLibrary" : "60", "currentLocation" : "CM_Freih", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", @@ -452,6 +468,7 @@ "serialNumber" : "01369368", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -465,6 +482,7 @@ "serialNumber" : "100000005149", "currentLibrary" : "KRW", "currentLocation" : "KRW_Public", + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", @@ -478,6 +496,7 @@ "serialNumber" : "21WTA314", "currentLibrary" : "DT", "currentLocation" : "DT_Frei", + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", @@ -491,6 +510,7 @@ "serialNumber" : "046250 211", "currentLibrary" : "211", "currentLocation" : "0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-211#!", "isil" : "DE-82-211", @@ -504,6 +524,7 @@ "serialNumber" : "50000027887", "currentLibrary" : "BAB", "currentLocation" : "Freihand", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -517,6 +538,7 @@ "serialNumber" : "M33 3199", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -530,6 +552,7 @@ "serialNumber" : "44A4782", "currentLibrary" : "38", "currentLocation" : "38-SAB", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -543,6 +566,7 @@ "serialNumber" : "6-00536437-0", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -556,6 +580,7 @@ "serialNumber" : "53WTA3654+1", "currentLibrary" : "S0001", "currentLocation" : "PB", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -569,6 +594,7 @@ "serialNumber" : "53WTA3654", "currentLibrary" : "S0001", "currentLocation" : "PB", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -582,6 +608,7 @@ "serialNumber" : "WTA2129", "currentLibrary" : "P0001", "currentLocation" : "51", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -593,6 +620,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -604,6 +632,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990218189790206441.json b/src/test/resources/alma-fix/990218189790206441.json index 94dd1cb7c..79a534279 100644 --- a/src/test/resources/alma-fix/990218189790206441.json +++ b/src/test/resources/alma-fix/990218189790206441.json @@ -109,6 +109,7 @@ "serialNumber" : "AJ-1019284", "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", diff --git a/src/test/resources/alma-fix/990220027540206441.json b/src/test/resources/alma-fix/990220027540206441.json index 9f2705f01..e7d3bddf8 100644 --- a/src/test/resources/alma-fix/990220027540206441.json +++ b/src/test/resources/alma-fix/990220027540206441.json @@ -84,6 +84,7 @@ "serialNumber" : "AJ-196496", "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", diff --git a/src/test/resources/alma-fix/990223521400206441.json b/src/test/resources/alma-fix/990223521400206441.json index 88494300c..11b049c54 100644 --- a/src/test/resources/alma-fix/990223521400206441.json +++ b/src/test/resources/alma-fix/990223521400206441.json @@ -231,6 +231,7 @@ "serialNumber" : "W00274368", "currentLibrary" : "W0001", "currentLocation" : "75", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -244,6 +245,7 @@ "serialNumber" : "91036298", "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", @@ -309,6 +311,7 @@ "serialNumber" : "22253605", "currentLibrary" : "RHB", "currentLocation" : "RHB_FH", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -322,6 +325,7 @@ "serialNumber" : "22174458", "currentLibrary" : "STA", "currentLocation" : "STA_FH", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -335,6 +339,7 @@ "serialNumber" : "22174464", "currentLibrary" : "STA", "currentLocation" : "STA_FH", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -348,6 +353,7 @@ "serialNumber" : "22174441", "currentLibrary" : "STA", "currentLocation" : "STA_FH", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -361,6 +367,7 @@ "serialNumber" : "11TYD398(3)", "currentLibrary" : "LE", "currentLocation" : "LE_Frei", + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", @@ -374,6 +381,7 @@ "serialNumber" : "50000033216", "currentLibrary" : "S7", "currentLocation" : "Freihand", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -387,6 +395,7 @@ "serialNumber" : "P2018/1480", "currentLibrary" : "0", "currentLocation" : "0-Mag", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -400,6 +409,7 @@ "serialNumber" : "DE00648926", "currentLibrary" : "D0001", "currentLocation" : "D05", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -413,6 +423,7 @@ "serialNumber" : "DE00648925", "currentLibrary" : "D0001", "currentLocation" : "D05", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -426,6 +437,7 @@ "serialNumber" : "DE00648924", "currentLibrary" : "D0001", "currentLocation" : "D05", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -439,6 +451,7 @@ "serialNumber" : "DE00644940", "currentLibrary" : "E0001", "currentLocation" : "E33", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -452,6 +465,7 @@ "serialNumber" : "DE00644939", "currentLibrary" : "E0001", "currentLocation" : "E33", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -465,6 +479,7 @@ "serialNumber" : "DE00648923", "currentLibrary" : "D0001", "currentLocation" : "D01", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -478,6 +493,7 @@ "serialNumber" : "DE00644942", "currentLibrary" : "E0001", "currentLocation" : "E33", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -491,6 +507,7 @@ "serialNumber" : "DE00644941", "currentLibrary" : "E0001", "currentLocation" : "E33", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -504,6 +521,7 @@ "serialNumber" : "44A6297", "currentLibrary" : "38", "currentLocation" : "38-SAB", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -517,6 +535,7 @@ "serialNumber" : "6-00557803-7", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -530,6 +549,7 @@ "serialNumber" : "6-00557802-4", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -543,6 +563,7 @@ "serialNumber" : "TWP22152(3)", "currentLibrary" : "P0001", "currentLocation" : "41", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -556,6 +577,7 @@ "serialNumber" : "TWP22152(3)+1", "currentLibrary" : "P0001", "currentLocation" : "41", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -567,6 +589,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990225056670206441.json b/src/test/resources/alma-fix/990225056670206441.json index 4d8449069..3d0bcfa9d 100644 --- a/src/test/resources/alma-fix/990225056670206441.json +++ b/src/test/resources/alma-fix/990225056670206441.json @@ -86,6 +86,7 @@ "serialNumber" : "501:000491", "currentLibrary" : "501", "currentLocation" : "0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-501#!", "isil" : "DE-82-501", diff --git a/src/test/resources/alma-fix/990366394400206441.json b/src/test/resources/alma-fix/990366394400206441.json index faae0ea33..14101afe4 100644 --- a/src/test/resources/alma-fix/990366394400206441.json +++ b/src/test/resources/alma-fix/990366394400206441.json @@ -69,6 +69,7 @@ "serialNumber" : "6-00461456-X", "currentLibrary" : "HLS", "currentLocation" : "HLS_HSMAG", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990367731740206441.json b/src/test/resources/alma-fix/990367731740206441.json index caa3ee7c2..9d403d84b 100644 --- a/src/test/resources/alma-fix/990367731740206441.json +++ b/src/test/resources/alma-fix/990367731740206441.json @@ -251,6 +251,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R5001", "currentLocation" : "UNASSIGNED", + "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1116#!", "isil" : "DE-1116", diff --git a/src/test/resources/alma-fix/990367761810206441.json b/src/test/resources/alma-fix/990367761810206441.json index 634cc5f7f..cfa8c546d 100644 --- a/src/test/resources/alma-fix/990367761810206441.json +++ b/src/test/resources/alma-fix/990367761810206441.json @@ -141,6 +141,7 @@ "serialNumber" : "JAP/0018138", "currentLibrary" : "38-459", "currentLocation" : "38-459-FHM", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", diff --git a/src/test/resources/alma-fix/990368743120206441.json b/src/test/resources/alma-fix/990368743120206441.json index d67bc6615..f309fc2b0 100644 --- a/src/test/resources/alma-fix/990368743120206441.json +++ b/src/test/resources/alma-fix/990368743120206441.json @@ -70,6 +70,7 @@ "serialNumber" : "6-00461538-5", "currentLibrary" : "HLS", "currentLocation" : "HLS_HSMAG", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/99370771475306441.json b/src/test/resources/alma-fix/99370771475306441.json index b6e5b83df..5c852816c 100644 --- a/src/test/resources/alma-fix/99370771475306441.json +++ b/src/test/resources/alma-fix/99370771475306441.json @@ -244,6 +244,7 @@ "serialNumber" : "91083416", "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", @@ -257,6 +258,7 @@ "serialNumber" : "211231", "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", @@ -270,6 +272,7 @@ "serialNumber" : "211230", "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", @@ -283,6 +286,7 @@ "serialNumber" : "211229", "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", @@ -296,6 +300,7 @@ "serialNumber" : "622040", "currentLibrary" : "R5001", "currentLocation" : "X0001", + "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1116#!", "isil" : "DE-1116", @@ -309,6 +314,7 @@ "serialNumber" : "ZE-202720", "currentLibrary" : "ZE", "currentLocation" : "ZE-Bib", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bo404#!", "isil" : "DE-Bo404", @@ -335,6 +341,7 @@ "serialNumber" : "DE00736175", "currentLibrary" : "D0001", "currentLocation" : "D01", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -348,6 +355,7 @@ "serialNumber" : "Z75-040987", "currentLibrary" : "MEGT", "currentLocation" : "MEGT_BIBEG", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-164#!", "isil" : "DE-6-164", diff --git a/src/test/resources/alma-fix/99370782520706441.json b/src/test/resources/alma-fix/99370782520706441.json index eb6915e64..64de76332 100644 --- a/src/test/resources/alma-fix/99370782520706441.json +++ b/src/test/resources/alma-fix/99370782520706441.json @@ -274,6 +274,7 @@ "serialNumber" : "01383988", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -287,6 +288,7 @@ "serialNumber" : "21XBR190(2021)-2", "currentLibrary" : "DT", "currentLocation" : "DT_Frei", + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", @@ -300,6 +302,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=3", "currentLibrary" : "LBS", "currentLocation" : "0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -313,6 +316,7 @@ "serialNumber" : "(1)62276", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_3", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -326,6 +330,7 @@ "serialNumber" : "022844 211", "currentLibrary" : "202", "currentLocation" : "7", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-202#!", "isil" : "DE-82-202", @@ -339,6 +344,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=1", "currentLibrary" : "LBS", "currentLocation" : "0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -352,6 +358,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=5", "currentLibrary" : "LBS", "currentLocation" : "0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -365,6 +372,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=4", "currentLibrary" : "LBS", "currentLocation" : "0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -378,6 +386,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=2", "currentLibrary" : "LBS", "currentLocation" : "0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -391,6 +400,7 @@ "serialNumber" : "31XBR1535-2021,2+2", "currentLibrary" : "DEUTZ", "currentLocation" : "31", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -404,6 +414,7 @@ "serialNumber" : "31XBR1535-2021,2+3", "currentLibrary" : "DEUTZ", "currentLocation" : "31", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -417,6 +428,7 @@ "serialNumber" : "31XBR1535-2021,2+4", "currentLibrary" : "DEUTZ", "currentLocation" : "31", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -430,6 +442,7 @@ "serialNumber" : "31XBR1535-2021,2+1", "currentLibrary" : "DEUTZ", "currentLocation" : "31", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -443,6 +456,7 @@ "serialNumber" : "31XBR1535-2021,2+6", "currentLibrary" : "DEUTZ", "currentLocation" : "31", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -456,6 +470,7 @@ "serialNumber" : "32XBR1535-2021,2", "currentLibrary" : "DEUTZ", "currentLocation" : "32", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -469,6 +484,7 @@ "serialNumber" : "31XBR1535-2021,2+7", "currentLibrary" : "DEUTZ", "currentLocation" : "31", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -482,6 +498,7 @@ "serialNumber" : "31XBR1535-2021,2+5", "currentLibrary" : "DEUTZ", "currentLocation" : "31", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -495,6 +512,7 @@ "serialNumber" : "31XBR1535-2021,2+9", "currentLibrary" : "DEUTZ", "currentLocation" : "31", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -508,6 +526,7 @@ "serialNumber" : "31XBR1535-2021,2+8", "currentLibrary" : "DEUTZ", "currentLocation" : "31", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -521,6 +540,7 @@ "serialNumber" : "50000067433", "currentLibrary" : "BR", "currentLocation" : "Freihand", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -547,6 +567,7 @@ "serialNumber" : "DE00637881", "currentLibrary" : "E0001", "currentLocation" : "EHA", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -560,6 +581,7 @@ "serialNumber" : "DE00637884", "currentLibrary" : "E0001", "currentLocation" : "E31", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -573,6 +595,7 @@ "serialNumber" : "53XBR5068-2021,2", "currentLibrary" : "S0001", "currentLocation" : "PB", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", diff --git a/src/test/resources/alma-fix/99371014448006441.json b/src/test/resources/alma-fix/99371014448006441.json index acc2b41ce..214e70d7a 100644 --- a/src/test/resources/alma-fix/99371014448006441.json +++ b/src/test/resources/alma-fix/99371014448006441.json @@ -118,6 +118,7 @@ "serialNumber" : "JAP/0020015", "currentLibrary" : "38-459", "currentLocation" : "38-459-FHM", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", diff --git a/src/test/resources/alma-fix/99371050452706441.json b/src/test/resources/alma-fix/99371050452706441.json index 3c94338ec..a62aeb0d2 100644 --- a/src/test/resources/alma-fix/99371050452706441.json +++ b/src/test/resources/alma-fix/99371050452706441.json @@ -220,6 +220,7 @@ "serialNumber" : "6-00724192-9", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/99371530278506441.json b/src/test/resources/alma-fix/99371530278506441.json index a4056e110..eaa3fbbc3 100644 --- a/src/test/resources/alma-fix/99371530278506441.json +++ b/src/test/resources/alma-fix/99371530278506441.json @@ -190,6 +190,7 @@ "serialNumber" : "432/0021005", "currentLibrary" : "38-432", "currentLocation" : "38-432-BIB", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-432#!", "isil" : "DE-38-432", diff --git a/src/test/resources/alma-fix/99372423490706441.json b/src/test/resources/alma-fix/99372423490706441.json index 6069c0e92..512daf759 100644 --- a/src/test/resources/alma-fix/99372423490706441.json +++ b/src/test/resources/alma-fix/99372423490706441.json @@ -106,6 +106,7 @@ "serialNumber" : ":94002761436", "currentLibrary" : "T0010", "currentLocation" : "kA", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", From efd9ad1fe623767eb9fc0c412a8955c18f61d0e7 Mon Sep 17 00:00:00 2001 From: TobiasNx Date: Tue, 26 Sep 2023 15:18:30 +0200 Subject: [PATCH 05/23] Fix variables for opac link maps #1888 --- .../run/AlmaMarcXmlFix2lobidJsonEs.java | 6 +- .../AlmaMarc21XmlToLobidJsonMetafixTest.java | 6 +- .../alma-fix/990001412590206441.json | 28 ++--- .../alma-fix/990011470300206441.json | 6 +- .../alma-fix/990014830510206441.json | 8 +- .../alma-fix/990016782920206441.json | 6 +- .../alma-fix/990021367710206441.json | 8 +- .../alma-fix/990021974470206441.json | 11 +- .../alma-fix/990026405480206441.json | 14 +-- .../alma-fix/990030574430206441.json | 4 +- .../alma-fix/990035016180206441.json | 19 +-- .../alma-fix/990041403870206441.json | 4 +- .../alma-fix/990050000600206441.json | 12 +- .../alma-fix/990051708340206441.json | 2 +- .../alma-fix/990052965140206441.json | 4 +- .../alma-fix/990053976760206441.json | 41 +++--- .../alma-fix/990054215550206441.json | 5 +- .../alma-fix/990054301770206441.json | 8 +- .../alma-fix/990054345550206441.json | 68 +++++----- .../alma-fix/990055981810206441.json | 12 +- .../alma-fix/990058434730206441.json | 48 +++---- .../alma-fix/990058567920206441.json | 77 ++++++------ .../alma-fix/990059571560206441.json | 7 +- .../alma-fix/990063549080206441.json | 10 +- .../alma-fix/990065341720206441.json | 2 +- .../alma-fix/990075429930206441.json | 29 +++-- .../alma-fix/990075538650206441.json | 6 +- .../alma-fix/990103899140206441.json | 2 +- .../alma-fix/990108873860206441.json | 4 +- .../alma-fix/990109712970206441.json | 50 ++++---- .../alma-fix/990114098170206441.json | 2 +- .../alma-fix/990114617880206441.json | 2 +- .../alma-fix/990118562160206441.json | 2 +- .../alma-fix/990122511970206441.json | 2 +- .../alma-fix/990126276700206441.json | 25 ++-- .../alma-fix/990136041660206441.json | 2 +- .../alma-fix/990139686910206441.json | 2 +- .../alma-fix/990141342350206441.json | 2 +- .../alma-fix/990143325070206441.json | 4 +- .../alma-fix/990156060190206441.json | 69 +++++----- .../alma-fix/990167595410206441.json | 4 +- .../alma-fix/990171142550206441.json | 10 +- .../alma-fix/990173811970206441.json | 2 +- .../alma-fix/990181275760206441.json | 37 ++++-- .../alma-fix/990182814750206441.json | 2 +- .../alma-fix/990183054020206441.json | 2 +- .../alma-fix/990183958380206441.json | 8 +- .../alma-fix/990185607520206441.json | 2 +- .../alma-fix/990185619180206441.json | 2 +- .../alma-fix/990189160110206441.json | 38 +++--- .../alma-fix/990193094010206441.json | 5 +- .../alma-fix/990193806600206441.json | 2 +- .../alma-fix/990194668760206441.json | 2 +- .../alma-fix/990194744870206441.json | 6 +- .../alma-fix/990198383780206441.json | 2 +- .../alma-fix/990202474680206441.json | 4 +- .../alma-fix/990204246530206441.json | 6 +- .../alma-fix/990207668220206441.json | 2 +- .../alma-fix/990209515320206441.json | 2 +- .../alma-fix/990209817770206441.json | 2 +- .../alma-fix/990210237770206441.json | 118 +++++++++--------- .../alma-fix/990210285400206441.json | 2 +- .../alma-fix/990210950050206441.json | 2 +- .../alma-fix/990217478660206441.json | 58 ++++----- .../alma-fix/990218189790206441.json | 3 +- .../alma-fix/990219911120206441.json | 1 + .../alma-fix/990220027540206441.json | 2 +- .../alma-fix/990223521400206441.json | 48 +++---- .../alma-fix/990225056670206441.json | 2 +- .../alma-fix/990366394400206441.json | 2 +- .../alma-fix/990367731740206441.json | 2 +- .../alma-fix/990367761810206441.json | 2 +- .../alma-fix/990368743120206441.json | 2 +- .../resources/alma-fix/99370771475306441.json | 16 +-- .../resources/alma-fix/99370782520706441.json | 60 +++++---- .../resources/alma-fix/99371014448006441.json | 2 +- .../resources/alma-fix/99371050452706441.json | 2 +- .../resources/alma-fix/99371530278506441.json | 2 +- .../resources/alma-fix/99372423490706441.json | 2 +- 79 files changed, 572 insertions(+), 515 deletions(-) diff --git a/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java b/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java index 6fa21353d..b63194f34 100644 --- a/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java +++ b/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java @@ -132,9 +132,9 @@ public void run() { fixVariables.put("rpb.ttl", "../../../../../../vocabs/rpb/rpb.ttl"); fixVariables.put("hbzId2zdbId.tsv", "./maps/hbzId2zdbId.tsv.gz"); fixVariables.put("isil2opac_hbzId.tsv", "./maps/isil2opac_hbzId.tsv"); - fixVariables.put("isil2opac_isbn.tsv", "./maps/isil2opac_hbzId.tsv"); - fixVariables.put("isil2opac_issn.tsv", "./maps/isil2opac_hbzId.tsv"); - fixVariables.put("isil2opac_zdbId.tsv", "./maps/isil2opac_hbzId.tsv"); + fixVariables.put("isil2opac_isbn.tsv", "./maps/isil2opac_isbn.tsv"); + fixVariables.put("isil2opac_issn.tsv", "./maps/isil2opac_issn.tsv"); + fixVariables.put("isil2opac_zdbId.tsv", "./maps/isil2opac_zdbId.tsv"); XmlElementSplitter xmlElementSplitter = new XmlElementSplitter(); diff --git a/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java b/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java index 781accbc0..311e9912e 100644 --- a/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java +++ b/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java @@ -76,9 +76,9 @@ public void setup() { fixVariables.put("rpb.ttl", "src/test/resources/alma/maps/rpb.ttl"); fixVariables.put("hbzId2zdbId.tsv", "src/main/resources/alma/maps/hbzId2zdbId.tsv.gz"); fixVariables.put("isil2opac_hbzId.tsv", "src/main/resources/alma/maps/isil2opac_hbzId.tsv"); - fixVariables.put("isil2opac_isbn.tsv", "src/main/resources/alma/maps/isil2opac_hbzId.tsv"); - fixVariables.put("isil2opac_issn.tsv", "src/main/resources/alma/maps/isil2opac_hbzId.tsv"); - fixVariables.put("isil2opac_zdbId.tsv", "src/main/resources/alma/maps/isil2opac_hbzId.tsv"); + fixVariables.put("isil2opac_isbn.tsv", "src/main/resources/alma/maps/isil2opac_isil.tsv"); + fixVariables.put("isil2opac_issn.tsv", "src/main/resources/alma/maps/isil2opac_issn.tsv"); + fixVariables.put("isil2opac_zdbId.tsv", "src/main/resources/alma/maps/isil2opac_zdbId.tsv"); } /** diff --git a/src/test/resources/alma-fix/990001412590206441.json b/src/test/resources/alma-fix/990001412590206441.json index 97606303b..45eee489a 100644 --- a/src/test/resources/alma-fix/990001412590206441.json +++ b/src/test/resources/alma-fix/990001412590206441.json @@ -114,7 +114,7 @@ "serialNumber" : "W00348898", "currentLibrary" : "W0001", "currentLocation" : "04", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -128,7 +128,7 @@ "serialNumber" : "881294001", "currentLibrary" : "F0001", "currentLocation" : "03", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -142,7 +142,7 @@ "serialNumber" : "02922183", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -156,7 +156,7 @@ "serialNumber" : "02922177", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -170,7 +170,7 @@ "serialNumber" : "0130003X", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -184,7 +184,7 @@ "serialNumber" : ":94002663930", "currentLibrary" : "T0010", "currentLocation" : "kA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", @@ -198,7 +198,7 @@ "serialNumber" : "50860674", "currentLibrary" : "EFB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -212,7 +212,7 @@ "serialNumber" : "B1252/640", "currentLibrary" : "0", "currentLocation" : "0-MagAlt", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -239,7 +239,7 @@ "serialNumber" : "408422401", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -253,7 +253,7 @@ "serialNumber" : "PP4/111", "currentLibrary" : "38", "currentLocation" : "38-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -267,7 +267,7 @@ "serialNumber" : "48 QU 313", "currentLibrary" : "ZB", "currentLocation" : "ZB_GMAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -281,7 +281,7 @@ "serialNumber" : "20ICM1270", "currentLibrary" : "S0001", "currentLocation" : "ERW", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -295,7 +295,7 @@ "serialNumber" : "ICM1034", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -307,7 +307,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990011470300206441.json b/src/test/resources/alma-fix/990011470300206441.json index c0f7db56d..a30ba0a80 100644 --- a/src/test/resources/alma-fix/990011470300206441.json +++ b/src/test/resources/alma-fix/990011470300206441.json @@ -96,7 +96,7 @@ "serialNumber" : "0102.3750.19", "currentLibrary" : "T0011", "currentLocation" : "38", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT003109553", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -110,7 +110,7 @@ "serialNumber" : "Z17-045835", "currentLibrary" : "PHIL", "currentLocation" : "PHIL_PBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT003109553", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", @@ -122,7 +122,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT003109553", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990014830510206441.json b/src/test/resources/alma-fix/990014830510206441.json index 9acd753c6..57519adf5 100644 --- a/src/test/resources/alma-fix/990014830510206441.json +++ b/src/test/resources/alma-fix/990014830510206441.json @@ -99,7 +99,7 @@ "serialNumber" : "0017.4679.62", "currentLibrary" : "T0011", "currentLocation" : "21", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT003864492", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -113,7 +113,7 @@ "serialNumber" : "SK-201407", "currentLibrary" : "SM", "currentLocation" : "SM-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", @@ -127,7 +127,7 @@ "serialNumber" : "KNLC1469", "currentLibrary" : "E0001", "currentLocation" : "E07IM", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT003864492", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -139,7 +139,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT003864492", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990016782920206441.json b/src/test/resources/alma-fix/990016782920206441.json index 5216e40ea..c5f67fc0b 100644 --- a/src/test/resources/alma-fix/990016782920206441.json +++ b/src/test/resources/alma-fix/990016782920206441.json @@ -88,7 +88,7 @@ "serialNumber" : "E1000000037300", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT004285445", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -115,7 +115,7 @@ "serialNumber" : "012979677107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT004285445", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -129,7 +129,7 @@ "serialNumber" : "Z156-011049", "currentLibrary" : "MUPA", "currentLocation" : "MUPA_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT004285445", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-286#!", "isil" : "DE-6-286", diff --git a/src/test/resources/alma-fix/990021367710206441.json b/src/test/resources/alma-fix/990021367710206441.json index 285ae9185..812530408 100644 --- a/src/test/resources/alma-fix/990021367710206441.json +++ b/src/test/resources/alma-fix/990021367710206441.json @@ -95,7 +95,7 @@ "serialNumber" : "20098056", "currentLibrary" : "SFS", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -109,7 +109,7 @@ "serialNumber" : "186573", "currentLibrary" : "ZB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -123,7 +123,7 @@ "serialNumber" : "0012.7330.22", "currentLibrary" : "T0011", "currentLocation" : "MAG", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT005207972", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -148,7 +148,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT005207972", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990021974470206441.json b/src/test/resources/alma-fix/990021974470206441.json index 3b84d3a75..9e35f6665 100644 --- a/src/test/resources/alma-fix/990021974470206441.json +++ b/src/test/resources/alma-fix/990021974470206441.json @@ -107,7 +107,7 @@ "serialNumber" : "604:016874", "currentLibrary" : "604", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT005271161", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-604#!", "isil" : "DE-82-604", @@ -121,7 +121,7 @@ "serialNumber" : "0166.4021.80", "currentLibrary" : "T0011", "currentLocation" : "MAG", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT005271161", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -148,6 +148,7 @@ "serialNumber" : "TEMP306538", "currentLibrary" : "HIS", "currentLocation" : "HIS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -161,7 +162,7 @@ "serialNumber" : "Gc757", "currentLibrary" : "38", "currentLocation" : "38-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT005271161", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -175,7 +176,7 @@ "serialNumber" : "208/0032920", "currentLibrary" : "38-208", "currentLocation" : "38-208-VR", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT005271161", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-208#!", "isil" : "DE-38-208", @@ -189,7 +190,7 @@ "serialNumber" : "Z25-033835", "currentLibrary" : "RWS1", "currentLocation" : "RWS1_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT005271161", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-016#!", "isil" : "DE-6-016", diff --git a/src/test/resources/alma-fix/990026405480206441.json b/src/test/resources/alma-fix/990026405480206441.json index 51aad765b..cbb8832c3 100644 --- a/src/test/resources/alma-fix/990026405480206441.json +++ b/src/test/resources/alma-fix/990026405480206441.json @@ -97,7 +97,7 @@ "serialNumber" : "40275409", "currentLibrary" : "SIE", "currentLocation" : "SIE_PRAES", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Sie5#!", "isil" : "DE-Sie5", @@ -111,7 +111,7 @@ "serialNumber" : "006392301", "currentLibrary" : "cdd", "currentLocation" : "HB", - "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID={hbzid}", + "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID={hbzid}HT006813395", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", @@ -125,7 +125,7 @@ "serialNumber" : "06542653", "currentLibrary" : "R0002", "currentLocation" : "00002000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT006813395", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Zw1#!", "isil" : "DE-Zw1", @@ -139,7 +139,7 @@ "serialNumber" : "07258981", "currentLibrary" : "R0002", "currentLocation" : "00002000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT006813395", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Zw1#!", "isil" : "DE-Zw1", @@ -166,7 +166,7 @@ "serialNumber" : "420/030051", "currentLibrary" : "38-420", "currentLocation" : "38-420-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT006813395", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-420#!", "isil" : "DE-38-420", @@ -180,7 +180,7 @@ "serialNumber" : "WUJ1407(3)", "currentLibrary" : "P0001", "currentLocation" : "51", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT006813395", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -192,7 +192,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT006813395", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990030574430206441.json b/src/test/resources/alma-fix/990030574430206441.json index ea4e6c7e4..d31f7b4ba 100644 --- a/src/test/resources/alma-fix/990030574430206441.json +++ b/src/test/resources/alma-fix/990030574430206441.json @@ -72,7 +72,7 @@ "serialNumber" : "SL-031324", "currentLibrary" : "SG", "currentLocation" : "SG-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-13#!", "isil" : "DE-5-13", @@ -86,7 +86,7 @@ "serialNumber" : "65/7293", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", diff --git a/src/test/resources/alma-fix/990035016180206441.json b/src/test/resources/alma-fix/990035016180206441.json index b3bd909a0..49bf68dff 100644 --- a/src/test/resources/alma-fix/990035016180206441.json +++ b/src/test/resources/alma-fix/990035016180206441.json @@ -85,7 +85,7 @@ "serialNumber" : "456292-10", "currentLibrary" : "W0001", "currentLocation" : "06", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -99,7 +99,7 @@ "serialNumber" : "TEMP55788", "currentLibrary" : "EFB", "currentLocation" : "BibDtLit", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -126,6 +126,7 @@ "serialNumber" : "TEMP50001300061-000010", "currentLibrary" : "UB", "currentLocation" : "UB_LS", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -139,7 +140,7 @@ "serialNumber" : "CJU1482_D", "currentLibrary" : "D0001", "currentLocation" : "D98", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -153,7 +154,7 @@ "serialNumber" : "DDZR1026", "currentLibrary" : "E0001", "currentLocation" : "E06", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -167,7 +168,7 @@ "serialNumber" : "LS/0039447", "currentLibrary" : "38", "currentLocation" : "38-LS", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -181,7 +182,7 @@ "serialNumber" : "YB 442-19760", "currentLibrary" : "ZUP", "currentLocation" : "ZUP_MIKRO", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-Z#!", "isil" : "DE-6-Z", @@ -195,7 +196,7 @@ "serialNumber" : "786164-10", "currentLibrary" : "S0001", "currentLocation" : "ARMED", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -209,7 +210,7 @@ "serialNumber" : "734866-10", "currentLibrary" : "P0001", "currentLocation" : "93", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -221,7 +222,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990041403870206441.json b/src/test/resources/alma-fix/990041403870206441.json index 830c1e85c..682e733e4 100644 --- a/src/test/resources/alma-fix/990041403870206441.json +++ b/src/test/resources/alma-fix/990041403870206441.json @@ -70,7 +70,7 @@ "serialNumber" : "P99/228", "currentLibrary" : "0", "currentLocation" : "0-Speich", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -84,7 +84,7 @@ "serialNumber" : "11M1706", "currentLibrary" : "38-HLS", "currentLocation" : "38-HLS-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT009965981", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", diff --git a/src/test/resources/alma-fix/990050000600206441.json b/src/test/resources/alma-fix/990050000600206441.json index d5fb4b89c..84babfd50 100644 --- a/src/test/resources/alma-fix/990050000600206441.json +++ b/src/test/resources/alma-fix/990050000600206441.json @@ -170,7 +170,7 @@ "callNumber" : "mat 03-252/", "currentLibrary" : "RL002", "currentLocation" : "ALLLD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT006855611", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -184,7 +184,7 @@ "serialNumber" : "657775-10", "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT006855611", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -208,7 +208,7 @@ "currentLibrary" : "R3042", "currentLocation" : "ALL42", "callNumber" : "MAS 024/012", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT006855611", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -221,7 +221,7 @@ "currentLibrary" : "R3048", "currentLocation" : "ALL48", "callNumber" : "MAT Furl", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT006855611", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -234,7 +234,7 @@ "currentLibrary" : "E0001", "currentLocation" : "EHS", "callNumber" : "TBM1318 <>", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT006855611", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -247,7 +247,7 @@ "currentLibrary" : "D0001", "currentLocation" : "DHS", "callNumber" : "TBM1318_d <>", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT006855611", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", diff --git a/src/test/resources/alma-fix/990051708340206441.json b/src/test/resources/alma-fix/990051708340206441.json index 6623cc99a..d70869169 100644 --- a/src/test/resources/alma-fix/990051708340206441.json +++ b/src/test/resources/alma-fix/990051708340206441.json @@ -67,7 +67,7 @@ "serialNumber" : "115266-10", "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT009976241", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990052965140206441.json b/src/test/resources/alma-fix/990052965140206441.json index 907dec1df..6ad1d1b92 100644 --- a/src/test/resources/alma-fix/990052965140206441.json +++ b/src/test/resources/alma-fix/990052965140206441.json @@ -129,7 +129,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT002529477", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -141,7 +141,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT002529477", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990053976760206441.json b/src/test/resources/alma-fix/990053976760206441.json index d592c0ab6..a247447fe 100644 --- a/src/test/resources/alma-fix/990053976760206441.json +++ b/src/test/resources/alma-fix/990053976760206441.json @@ -221,7 +221,7 @@ "serialNumber" : "1148014-10", "currentLibrary" : "D0001", "currentLocation" : "D30", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0123550-3", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -235,7 +235,7 @@ "serialNumber" : "M08 7898", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=123550-3", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -249,7 +249,7 @@ "serialNumber" : "M08 7893", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=123550-3", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -263,7 +263,7 @@ "serialNumber" : "M08 7897", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=123550-3", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -277,7 +277,7 @@ "serialNumber" : "M08 7895", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=123550-3", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -291,7 +291,7 @@ "serialNumber" : "M08 7896", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=123550-3", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -305,7 +305,7 @@ "serialNumber" : "M08 7894", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=123550-3", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -319,7 +319,7 @@ "serialNumber" : "9089785-10", "currentLibrary" : "S0001", "currentLocation" : "FMZS", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}123550-3", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -332,7 +332,7 @@ "currentLibrary" : "W0001", "currentLocation" : "04", "callNumber" : "67P9", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}123550-3", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -345,7 +345,7 @@ "currentLibrary" : "R3048", "currentLocation" : "ZSPHY", "callNumber" : "PHY Z 1646", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}123550-3", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -358,7 +358,7 @@ "currentLibrary" : "R3048", "currentLocation" : "ZSPHY", "callNumber" : "PHY Z 1646", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}123550-3", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -371,7 +371,7 @@ "currentLibrary" : "RL002", "currentLocation" : "FZSLD", "callNumber" : "fys 02-3", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}123550-3", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -384,7 +384,7 @@ "currentLibrary" : "ZB", "currentLocation" : "0", "callNumber" : "Z5725", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0123550-3", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -397,7 +397,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZS", "callNumber" : "ZN 535", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22123550-3", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22123550-3%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -422,6 +422,7 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_Z", "callNumber" : "ohne Sign.", + "opacLink" : "https://suchen.ub.rub.de/zdbid/123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -434,7 +435,7 @@ "currentLibrary" : "X0001", "currentLocation" : "03P", "callNumber" : "phy z p 455", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}123550-3", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -447,7 +448,7 @@ "currentLibrary" : "38-HWA", "currentLocation" : "38-HWA-ZMA", "callNumber" : "EWA Z666", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}123550-3", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -460,7 +461,7 @@ "currentLibrary" : "PHY", "currentLocation" : "PHY_ZS", "callNumber" : "DP", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0123550-3", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-023#!", "isil" : "DE-6-023", @@ -473,7 +474,7 @@ "currentLibrary" : "BEK", "currentLocation" : "BEK_ZS", "callNumber" : "Z 1011", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0123550-3", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-123#!", "isil" : "DE-6-123", @@ -486,7 +487,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_ZS", "callNumber" : "Z Qu 4447", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0123550-3", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -499,7 +500,7 @@ "currentLibrary" : "P0001", "currentLocation" : "40", "callNumber" : "67p54", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}123550-3", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990054215550206441.json b/src/test/resources/alma-fix/990054215550206441.json index 22a6108e7..1ceaad38b 100644 --- a/src/test/resources/alma-fix/990054215550206441.json +++ b/src/test/resources/alma-fix/990054215550206441.json @@ -150,7 +150,7 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "callNumber" : "Z 4' 66/103", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}1257-9", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%221257-9%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -163,6 +163,7 @@ "currentLibrary" : "UB", "currentLocation" : "UB_Z", "callNumber" : "ZRC 828", + "opacLink" : "https://suchen.ub.rub.de/zdbid/1257-9", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -175,7 +176,7 @@ "currentLibrary" : "38", "currentLocation" : "38-ZS", "callNumber" : "Sh13", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}1257-9", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT002619538", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", diff --git a/src/test/resources/alma-fix/990054301770206441.json b/src/test/resources/alma-fix/990054301770206441.json index b71cdaf9b..c14ee676e 100644 --- a/src/test/resources/alma-fix/990054301770206441.json +++ b/src/test/resources/alma-fix/990054301770206441.json @@ -205,7 +205,7 @@ "currentLibrary" : "R0003", "currentLocation" : "kA", "callNumber" : "Per. 5502", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0133469-4", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT003176544", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -218,7 +218,7 @@ "currentLibrary" : "T0010", "currentLocation" : "kA", "callNumber" : "Z 1703", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01133469-4", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01HT003176544", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", @@ -231,7 +231,7 @@ "currentLibrary" : "38", "currentLocation" : "38-ZS", "callNumber" : "EkFOL577", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}133469-4", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT003176544", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -244,7 +244,7 @@ "currentLibrary" : "ALKU", "currentLocation" : "ALKU_ZS", "callNumber" : "Fr 88", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0133469-4", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT003176544", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-139a#!", "isil" : "DE-6-139a", diff --git a/src/test/resources/alma-fix/990054345550206441.json b/src/test/resources/alma-fix/990054345550206441.json index e4bd6573b..01ec868fc 100644 --- a/src/test/resources/alma-fix/990054345550206441.json +++ b/src/test/resources/alma-fix/990054345550206441.json @@ -229,7 +229,7 @@ "callNumber" : "Einzelsign.", "currentLibrary" : "ZB", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0619424-2", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -243,7 +243,7 @@ "serialNumber" : "497335801", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -257,7 +257,7 @@ "serialNumber" : "497047701", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -270,7 +270,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -284,7 +284,7 @@ "serialNumber" : "496523801", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -298,7 +298,7 @@ "serialNumber" : "496976701", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -311,7 +311,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -324,7 +324,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -337,7 +337,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -350,7 +350,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -363,7 +363,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -376,7 +376,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -389,7 +389,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -402,7 +402,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -416,7 +416,7 @@ "serialNumber" : "496805001", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -429,7 +429,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -443,7 +443,7 @@ "serialNumber" : "496725001", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -457,7 +457,7 @@ "serialNumber" : "497056301", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -470,7 +470,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -483,7 +483,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -497,7 +497,7 @@ "serialNumber" : "496626601", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -511,7 +511,7 @@ "serialNumber" : "497168401", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -525,7 +525,7 @@ "serialNumber" : "496523701", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -538,7 +538,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -551,7 +551,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -564,7 +564,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -577,7 +577,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -590,7 +590,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -603,7 +603,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}619424-2", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -627,7 +627,7 @@ "currentLibrary" : "ZB", "currentLocation" : "0", "callNumber" : "Md5099", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0619424-2", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -640,7 +640,7 @@ "currentLibrary" : "R0001", "currentLocation" : "kA", "callNumber" : "Z 5354", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0619424-2", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -653,7 +653,7 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "callNumber" : "Z 95/130", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}619424-2", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22619424-2%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -666,7 +666,7 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "callNumber" : "Z 95/130", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}619424-2", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22619424-2%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -679,7 +679,7 @@ "currentLibrary" : "38-445", "currentLocation" : "38-445-ZS", "callNumber" : "Ff 176/52", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}619424-2", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-445#!", "isil" : "DE-38-445", diff --git a/src/test/resources/alma-fix/990055981810206441.json b/src/test/resources/alma-fix/990055981810206441.json index c54e78fba..18c7f1f4f 100644 --- a/src/test/resources/alma-fix/990055981810206441.json +++ b/src/test/resources/alma-fix/990055981810206441.json @@ -279,7 +279,7 @@ "serialNumber" : "ULB0054169", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=01089874-8", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT007048176", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -293,7 +293,7 @@ "serialNumber" : "ULB0041793", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=01089874-8", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT007048176", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -307,7 +307,7 @@ "serialNumber" : "ULB0041794", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=01089874-8", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT007048176", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -332,6 +332,7 @@ "currentLibrary" : "UB", "currentLocation" : "UB_Z", "callNumber" : "ZYC 22", + "opacLink" : "https://suchen.ub.rub.de/zdbid/1089874-8", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -344,6 +345,7 @@ "currentLibrary" : "UB", "currentLocation" : "UB_Z", "callNumber" : "ZGC 889", + "opacLink" : "https://suchen.ub.rub.de/zdbid/1089874-8", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -356,7 +358,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LS", "callNumber" : "WES 0.1:55", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=01089874-8", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT007048176", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -369,7 +371,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LS", "callNumber" : "WES 0.1:55", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=01089874-8", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT007048176", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990058434730206441.json b/src/test/resources/alma-fix/990058434730206441.json index 28581550d..dc3ee63f5 100644 --- a/src/test/resources/alma-fix/990058434730206441.json +++ b/src/test/resources/alma-fix/990058434730206441.json @@ -154,7 +154,7 @@ "serialNumber" : "000565227000010", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -168,7 +168,7 @@ "serialNumber" : "KN41$01478356", "currentLibrary" : "KP001", "currentLocation" : "MMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -234,7 +234,7 @@ "serialNumber" : "707452803107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -248,7 +248,7 @@ "serialNumber" : "0176.4077.46", "currentLibrary" : "T0011", "currentLocation" : "31", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -262,7 +262,7 @@ "serialNumber" : "0150.6604.89", "currentLibrary" : "T0011", "currentLocation" : "80", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -276,7 +276,7 @@ "serialNumber" : "GA-112635", "currentLibrary" : "GA", "currentLocation" : "GA-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-74#!", "isil" : "DE-5-74", @@ -290,7 +290,7 @@ "serialNumber" : "TK-077339", "currentLibrary" : "TK", "currentLocation" : "TK-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-108#!", "isil" : "DE-5-108", @@ -304,7 +304,7 @@ "serialNumber" : "69/4564", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -318,6 +318,7 @@ "serialNumber" : "RSB821", "currentLibrary" : "UB", "currentLocation" : "UB_G2B1", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -331,6 +332,7 @@ "serialNumber" : "TEMPHBZ60030859789-000010", "currentLibrary" : "HIS", "currentLocation" : "HIS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -344,6 +346,7 @@ "serialNumber" : "TEMPHBZ60035269470-000010", "currentLibrary" : "EVTH", "currentLocation" : "EVTH_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -357,6 +360,7 @@ "serialNumber" : "TEMP70838", "currentLibrary" : "KTH", "currentLocation" : "KTH_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -370,7 +374,7 @@ "serialNumber" : "LBB1092", "currentLibrary" : "E0001", "currentLocation" : "E11", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -384,7 +388,7 @@ "serialNumber" : "402856101", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -398,7 +402,7 @@ "serialNumber" : "402856102", "currentLibrary" : "X0025", "currentLocation" : "25", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -412,7 +416,7 @@ "serialNumber" : "402856103", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -426,7 +430,7 @@ "serialNumber" : "1B4842", "currentLibrary" : "38", "currentLocation" : "38-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -440,7 +444,7 @@ "serialNumber" : "TEMP3414", "currentLibrary" : "38-622", "currentLocation" : "38-622-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-622#!", "isil" : "DE-38-622", @@ -454,7 +458,7 @@ "serialNumber" : "Z140-016417", "currentLibrary" : "IJD", "currentLocation" : "IJD_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-119#!", "isil" : "DE-6-119", @@ -468,7 +472,7 @@ "serialNumber" : "3G 18788", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -482,7 +486,7 @@ "serialNumber" : "Z33-001736", "currentLibrary" : "EVT", "currentLocation" : "EVT_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-006#!", "isil" : "DE-6-006", @@ -496,7 +500,7 @@ "serialNumber" : "Z30-002690", "currentLibrary" : "KATJ", "currentLocation" : "KATJ_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-011#!", "isil" : "DE-6-011", @@ -510,7 +514,7 @@ "serialNumber" : "Z15-000825", "currentLibrary" : "FBH", "currentLocation" : "FBH_KPBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", @@ -524,7 +528,7 @@ "serialNumber" : "21INR1017", "currentLibrary" : "S0001", "currentLocation" : "H5", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -538,7 +542,7 @@ "serialNumber" : "INR1067", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -605,7 +609,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990058567920206441.json b/src/test/resources/alma-fix/990058567920206441.json index 842ec8985..9b7d52e43 100644 --- a/src/test/resources/alma-fix/990058567920206441.json +++ b/src/test/resources/alma-fix/990058567920206441.json @@ -167,7 +167,7 @@ "serialNumber" : "000572482000010", "currentLibrary" : "W0001", "currentLocation" : "47", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -194,7 +194,7 @@ "serialNumber" : "750333401", "currentLibrary" : "F0001", "currentLocation" : "00", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -208,7 +208,7 @@ "serialNumber" : "101591605", "currentLibrary" : "R3032", "currentLocation" : "FHSOZ", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -222,7 +222,7 @@ "serialNumber" : "101591593", "currentLibrary" : "R3032", "currentLocation" : "FHSOZ", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -236,7 +236,7 @@ "serialNumber" : "C130374", "currentLibrary" : "RL002", "currentLocation" : "FHELD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -250,7 +250,7 @@ "serialNumber" : "ZA5799-239=2", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_TK", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -264,7 +264,7 @@ "serialNumber" : "701883814107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -278,7 +278,7 @@ "serialNumber" : "02130032", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -292,7 +292,7 @@ "serialNumber" : ":94000371150", "currentLibrary" : "T0010", "currentLocation" : "RU", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", @@ -306,7 +306,7 @@ "serialNumber" : "116597", "currentLibrary" : "ZB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -320,7 +320,7 @@ "serialNumber" : "20105163", "currentLibrary" : "SFS", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -334,7 +334,7 @@ "serialNumber" : "0163.8657.33", "currentLibrary" : "T0011", "currentLocation" : "38", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -348,7 +348,7 @@ "serialNumber" : "0040.6826.86", "currentLibrary" : "T0011", "currentLocation" : "12", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -362,7 +362,7 @@ "serialNumber" : "0089.0881.26", "currentLibrary" : "T0011", "currentLocation" : "39", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -376,7 +376,7 @@ "serialNumber" : "75/2644", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -390,7 +390,7 @@ "serialNumber" : "PO-024839", "currentLibrary" : "PO", "currentLocation" : "PO-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-162#!", "isil" : "DE-5-162", @@ -443,6 +443,7 @@ "serialNumber" : "117103641", "currentLibrary" : "SOZ", "currentLocation" : "SOZ_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -456,6 +457,7 @@ "serialNumber" : "TEMP303283", "currentLibrary" : "HIS", "currentLocation" : "HIS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -469,6 +471,7 @@ "serialNumber" : "DNA4625+1", "currentLibrary" : "UB", "currentLocation" : "UB_G3B3", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -482,6 +485,7 @@ "serialNumber" : "DNA4625", "currentLibrary" : "UB", "currentLocation" : "UB_G3B3", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -495,6 +499,7 @@ "serialNumber" : "TEMP82023", "currentLibrary" : "KTH", "currentLocation" : "KTH_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -508,7 +513,7 @@ "serialNumber" : "DE00322121", "currentLibrary" : "D0001", "currentLocation" : "D21", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -522,7 +527,7 @@ "serialNumber" : "ODU1117", "currentLibrary" : "E0001", "currentLocation" : "E11", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -536,7 +541,7 @@ "serialNumber" : "021910701", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -550,7 +555,7 @@ "serialNumber" : "M18 8508", "currentLibrary" : "RL001", "currentLocation" : "MAGKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -564,7 +569,7 @@ "serialNumber" : "77/235", "currentLibrary" : "38-HWA", "currentLocation" : "38-HWA-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -578,7 +583,7 @@ "serialNumber" : "132/023307", "currentLibrary" : "38-132", "currentLocation" : "38-132-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-132#!", "isil" : "DE-38-132", @@ -592,7 +597,7 @@ "serialNumber" : "2G8474", "currentLibrary" : "38", "currentLocation" : "38-AWM", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -606,7 +611,7 @@ "serialNumber" : "Z16-144095", "currentLibrary" : "FBH", "currentLocation" : "FBH_HSBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", @@ -620,7 +625,7 @@ "serialNumber" : "3E 45866", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -634,7 +639,7 @@ "serialNumber" : "MD 1700/1", "currentLibrary" : "SOZ", "currentLocation" : "SOZ_MAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-A#!", "isil" : "DE-6-A", @@ -648,7 +653,7 @@ "serialNumber" : "Z31-116242", "currentLibrary" : "KATH", "currentLocation" : "KATH_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-069#!", "isil" : "DE-6-069", @@ -662,7 +667,7 @@ "serialNumber" : "Z17-002094", "currentLibrary" : "PHIL", "currentLocation" : "PHIL_PBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", @@ -676,7 +681,7 @@ "serialNumber" : "Z30-092527", "currentLibrary" : "KATD", "currentLocation" : "KATD_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-011#!", "isil" : "DE-6-011", @@ -690,7 +695,7 @@ "serialNumber" : "Z19-001146", "currentLibrary" : "FBH", "currentLocation" : "FBH_DGBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", @@ -704,7 +709,7 @@ "serialNumber" : "31OYV2405", "currentLibrary" : "S0001", "currentLocation" : "ERW", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -718,7 +723,7 @@ "serialNumber" : "PBZ1028", "currentLibrary" : "P0001", "currentLocation" : "31", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -730,7 +735,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "F0001", "currentLocation" : "30", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -742,7 +747,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -754,7 +759,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -766,7 +771,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990059571560206441.json b/src/test/resources/alma-fix/990059571560206441.json index 3b35d69d6..83c21dfaa 100644 --- a/src/test/resources/alma-fix/990059571560206441.json +++ b/src/test/resources/alma-fix/990059571560206441.json @@ -132,7 +132,7 @@ "serialNumber" : "FK162-29+2", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_2", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT001039253", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -146,7 +146,7 @@ "serialNumber" : "33WBT1003(2)-29", "currentLibrary" : "DEUTZ", "currentLocation" : "33", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT001039253", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -160,7 +160,7 @@ "serialNumber" : "51/964(29)+2", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -174,6 +174,7 @@ "serialNumber" : "WFA228-29:2", "currentLibrary" : "UB", "currentLocation" : "UB_G3/B4", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990063549080206441.json b/src/test/resources/alma-fix/990063549080206441.json index 861de89cb..d7d82428b 100644 --- a/src/test/resources/alma-fix/990063549080206441.json +++ b/src/test/resources/alma-fix/990063549080206441.json @@ -122,7 +122,7 @@ "serialNumber" : "000226365000010", "currentLibrary" : "W0001", "currentLocation" : "04", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT003538502", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -135,7 +135,7 @@ "callNumber" : "ZZN/APSA", "currentLibrary" : "F0001", "currentLocation" : "03", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=HT003538502", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -148,7 +148,7 @@ "serialNumber" : "261819-10", "currentLibrary" : "R3032", "currentLocation" : "AUS32", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT003538502", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -162,6 +162,7 @@ "serialNumber" : "TEMP50001060163-000010", "currentLibrary" : "UB", "currentLocation" : "UB_G2B3", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -175,6 +176,7 @@ "serialNumber" : "ZRB80-507/509", "currentLibrary" : "UB", "currentLocation" : "UB_G2B3", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -188,7 +190,7 @@ "serialNumber" : "125/0003749", "currentLibrary" : "38-125", "currentLocation" : "38-125-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT003538502", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-125#!", "isil" : "DE-38-125", diff --git a/src/test/resources/alma-fix/990065341720206441.json b/src/test/resources/alma-fix/990065341720206441.json index 21abfc809..9cf4adbeb 100644 --- a/src/test/resources/alma-fix/990065341720206441.json +++ b/src/test/resources/alma-fix/990065341720206441.json @@ -89,7 +89,7 @@ "serialNumber" : "Z 7835-41_42", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT004764408", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990075429930206441.json b/src/test/resources/alma-fix/990075429930206441.json index 65b797e19..2e7ca13e4 100644 --- a/src/test/resources/alma-fix/990075429930206441.json +++ b/src/test/resources/alma-fix/990075429930206441.json @@ -97,7 +97,7 @@ "serialNumber" : "702586422107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -111,7 +111,7 @@ "serialNumber" : "011813549107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -125,7 +125,7 @@ "serialNumber" : "78BDDS1079", "currentLibrary" : "DEUTZ", "currentLocation" : "78", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -138,7 +138,7 @@ "callNumber" : "a4117-1934,3/11", "currentLibrary" : "T0011", "currentLocation" : "MAG", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -152,7 +152,7 @@ "serialNumber" : "TK-038705", "currentLibrary" : "TK", "currentLocation" : "TK-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-108#!", "isil" : "DE-5-108", @@ -166,7 +166,7 @@ "serialNumber" : "GE-011615", "currentLibrary" : "GE", "currentLocation" : "GE-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-20#!", "isil" : "DE-5-20", @@ -193,6 +193,7 @@ "serialNumber" : "TEMP50000410798-000010", "currentLibrary" : "UB", "currentLocation" : "UB_G3B1", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -206,6 +207,7 @@ "serialNumber" : "TEMPHBZ60036085491-000010", "currentLibrary" : "HIS", "currentLocation" : "HIS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -219,6 +221,7 @@ "serialNumber" : "TEMP397133", "currentLibrary" : "GER", "currentLocation" : "GER_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -232,7 +235,7 @@ "serialNumber" : "434/0007087", "currentLibrary" : "38-434", "currentLocation" : "38-434-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-434#!", "isil" : "DE-38-434", @@ -246,7 +249,7 @@ "serialNumber" : "432/0014231", "currentLibrary" : "38-432", "currentLocation" : "38-432-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-432#!", "isil" : "DE-38-432", @@ -260,7 +263,7 @@ "serialNumber" : "Z114-006972", "currentLibrary" : "ENGL", "currentLocation" : "ENGL_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-020#!", "isil" : "DE-6-020", @@ -274,7 +277,7 @@ "serialNumber" : "Z56-017587", "currentLibrary" : "GERM", "currentLocation" : "GERM_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-246#!", "isil" : "DE-6-246", @@ -288,7 +291,7 @@ "serialNumber" : "Z 430-1934", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -311,7 +314,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -323,7 +326,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990075538650206441.json b/src/test/resources/alma-fix/990075538650206441.json index dcb31da04..8c3f3ac0b 100644 --- a/src/test/resources/alma-fix/990075538650206441.json +++ b/src/test/resources/alma-fix/990075538650206441.json @@ -133,7 +133,7 @@ "serialNumber" : "KN41$00285359", "currentLibrary" : "KP001", "currentLocation" : "MMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01HT003184116", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -147,7 +147,7 @@ "serialNumber" : "KRH1645", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT003184116", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -172,7 +172,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT003184116", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990103899140206441.json b/src/test/resources/alma-fix/990103899140206441.json index eb47921fa..cb05b542b 100644 --- a/src/test/resources/alma-fix/990103899140206441.json +++ b/src/test/resources/alma-fix/990103899140206441.json @@ -113,7 +113,7 @@ "currentLibrary" : "R0003", "currentLocation" : "kA", "callNumber" : "Per. 5157", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0590016-5", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT012237361", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", diff --git a/src/test/resources/alma-fix/990108873860206441.json b/src/test/resources/alma-fix/990108873860206441.json index 650392bc0..370de9796 100644 --- a/src/test/resources/alma-fix/990108873860206441.json +++ b/src/test/resources/alma-fix/990108873860206441.json @@ -152,7 +152,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0003", "currentLocation" : "kA", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=01500025-4", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT012734833", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -164,7 +164,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0001", "currentLocation" : "kA", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=01500025-4", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT012734833", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", diff --git a/src/test/resources/alma-fix/990109712970206441.json b/src/test/resources/alma-fix/990109712970206441.json index 3f4687562..7961d01fd 100644 --- a/src/test/resources/alma-fix/990109712970206441.json +++ b/src/test/resources/alma-fix/990109712970206441.json @@ -219,7 +219,7 @@ "serialNumber" : "1103875-50", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -233,7 +233,7 @@ "serialNumber" : "1103875-30", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -247,7 +247,7 @@ "serialNumber" : "1103875-10", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -261,7 +261,7 @@ "serialNumber" : "1103875-20", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -274,7 +274,7 @@ "callNumber" : "KJIB3790", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -288,7 +288,7 @@ "serialNumber" : "1103875-40", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -302,7 +302,7 @@ "serialNumber" : "1103875-60", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -315,7 +315,7 @@ "callNumber" : "KJIB3790", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -484,7 +484,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}2000012-1", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -497,7 +497,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}2000012-1", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -510,7 +510,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}2000012-1", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -523,7 +523,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}2000012-1", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -536,7 +536,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}2000012-1", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -549,7 +549,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}2000012-1", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -562,7 +562,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}2000012-1", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -576,7 +576,7 @@ "serialNumber" : "ULB0072893", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=02000012-1", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -590,7 +590,7 @@ "serialNumber" : "6-00746409-0", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=02000012-1", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -603,7 +603,7 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "callNumber" : "KJIB3585", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -616,7 +616,7 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "callNumber" : "KJIB3790", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}2000012-1", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -653,7 +653,7 @@ "currentLibrary" : "0", "currentLocation" : "0-Frei2", "callNumber" : "Z 2000/149", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}2000012-1", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -666,7 +666,7 @@ "currentLibrary" : "B059", "currentLocation" : "B059-Zeit", "callNumber" : "Nc 2/1999 Bran", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}2000012-1", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bo59#!", "isil" : "DE-Bo59", @@ -679,7 +679,7 @@ "currentLibrary" : "B059", "currentLocation" : "B059-Zeit", "callNumber" : "No 285/1999 Bran", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}2000012-1", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bo59#!", "isil" : "DE-Bo59", @@ -692,7 +692,7 @@ "currentLibrary" : "RL001", "currentLocation" : "FRHKO", "callNumber" : "MU/C 2014 115", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=2000012-1", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -705,7 +705,7 @@ "currentLibrary" : "38-430", "currentLocation" : "38-430-ZS", "callNumber" : "430/Bg/Beethoven005", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}2000012-1", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-430#!", "isil" : "DE-38-430", @@ -718,7 +718,7 @@ "currentLibrary" : "38", "currentLocation" : "38-ZS", "callNumber" : "XD475", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}2000012-1", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", diff --git a/src/test/resources/alma-fix/990114098170206441.json b/src/test/resources/alma-fix/990114098170206441.json index 8ead03315..79c708bce 100644 --- a/src/test/resources/alma-fix/990114098170206441.json +++ b/src/test/resources/alma-fix/990114098170206441.json @@ -143,7 +143,7 @@ "serialNumber" : "Z31-050265", "currentLibrary" : "KATH", "currentLocation" : "KATH_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT013083243", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-069#!", "isil" : "DE-6-069", diff --git a/src/test/resources/alma-fix/990114617880206441.json b/src/test/resources/alma-fix/990114617880206441.json index d111911a5..0ee09638b 100644 --- a/src/test/resources/alma-fix/990114617880206441.json +++ b/src/test/resources/alma-fix/990114617880206441.json @@ -90,7 +90,7 @@ "callNumber" : "qro/0011(1902)", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT013135581", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990118562160206441.json b/src/test/resources/alma-fix/990118562160206441.json index 4ee7e1aca..104b0ddf5 100644 --- a/src/test/resources/alma-fix/990118562160206441.json +++ b/src/test/resources/alma-fix/990118562160206441.json @@ -96,7 +96,7 @@ "serialNumber" : "912479-10", "currentLibrary" : "D0001", "currentLocation" : "D98", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT013532539", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", diff --git a/src/test/resources/alma-fix/990122511970206441.json b/src/test/resources/alma-fix/990122511970206441.json index 12ca63376..550a9ecc6 100644 --- a/src/test/resources/alma-fix/990122511970206441.json +++ b/src/test/resources/alma-fix/990122511970206441.json @@ -77,7 +77,7 @@ "serialNumber" : "KN38$0000066609", "currentLibrary" : "Z9038", "currentLocation" : "MZ2V", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number={hbzid}&local_base=MHK01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number={hbzid}&local_base=MHK01TT000075751", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", diff --git a/src/test/resources/alma-fix/990126276700206441.json b/src/test/resources/alma-fix/990126276700206441.json index 17392a5e5..94efb2550 100644 --- a/src/test/resources/alma-fix/990126276700206441.json +++ b/src/test/resources/alma-fix/990126276700206441.json @@ -113,7 +113,7 @@ "serialNumber" : "W00020777", "currentLibrary" : "W0001", "currentLocation" : "11", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -127,7 +127,7 @@ "serialNumber" : "90745439", "currentLibrary" : "MOP", "currentLocation" : "MOP_Haupt", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", @@ -141,7 +141,7 @@ "serialNumber" : "140533301", "currentLibrary" : "F0001", "currentLocation" : "00", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -155,7 +155,7 @@ "serialNumber" : "C372365", "currentLibrary" : "RL002", "currentLocation" : "FHULD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -169,7 +169,7 @@ "serialNumber" : "C372366", "currentLibrary" : "RL002", "currentLocation" : "FHULD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -183,7 +183,7 @@ "serialNumber" : "609:025732", "currentLibrary" : "609", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-609#!", "isil" : "DE-82-609", @@ -197,7 +197,7 @@ "serialNumber" : "2010/1208", "currentLibrary" : "0", "currentLocation" : "0-Frei1", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -224,6 +224,7 @@ "serialNumber" : "IFB9657", "currentLibrary" : "UB", "currentLocation" : "UB_G2B4", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -237,7 +238,7 @@ "serialNumber" : "109927001", "currentLibrary" : "X0031", "currentLocation" : "31", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -251,7 +252,7 @@ "serialNumber" : "405/0019949", "currentLibrary" : "38-405", "currentLocation" : "38-405-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-405#!", "isil" : "DE-38-405", @@ -265,7 +266,7 @@ "serialNumber" : "467/0000383", "currentLibrary" : "38-467", "currentLocation" : "38-467-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-467#!", "isil" : "DE-38-467", @@ -279,7 +280,7 @@ "serialNumber" : "3H 83949", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -293,7 +294,7 @@ "serialNumber" : "21KKZJ1005", "currentLibrary" : "S0001", "currentLocation" : "AR2", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", diff --git a/src/test/resources/alma-fix/990136041660206441.json b/src/test/resources/alma-fix/990136041660206441.json index c5e754b76..b4a70c430 100644 --- a/src/test/resources/alma-fix/990136041660206441.json +++ b/src/test/resources/alma-fix/990136041660206441.json @@ -191,7 +191,7 @@ "currentLibrary" : "R0001", "currentLocation" : "kA", "callNumber" : "ZA 4343", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=02189310-X", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT014388022", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", diff --git a/src/test/resources/alma-fix/990139686910206441.json b/src/test/resources/alma-fix/990139686910206441.json index 8fdedb8e0..cf398dc3a 100644 --- a/src/test/resources/alma-fix/990139686910206441.json +++ b/src/test/resources/alma-fix/990139686910206441.json @@ -75,7 +75,7 @@ "serialNumber" : "TEMPHBZ60030305140-000010", "currentLibrary" : "Z9036", "currentLocation" : "MGAB", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT014525099", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", diff --git a/src/test/resources/alma-fix/990141342350206441.json b/src/test/resources/alma-fix/990141342350206441.json index 3dd539d93..1d7a48eaf 100644 --- a/src/test/resources/alma-fix/990141342350206441.json +++ b/src/test/resources/alma-fix/990141342350206441.json @@ -101,7 +101,7 @@ "serialNumber" : "701025920107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0TT001230001", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", diff --git a/src/test/resources/alma-fix/990143325070206441.json b/src/test/resources/alma-fix/990143325070206441.json index b196d7b6b..f436d0cc6 100644 --- a/src/test/resources/alma-fix/990143325070206441.json +++ b/src/test/resources/alma-fix/990143325070206441.json @@ -164,7 +164,7 @@ "serialNumber" : "2007/5873", "currentLibrary" : "0", "currentLocation" : "0-Frei1", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -178,7 +178,7 @@ "serialNumber" : "3H 94295", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT014601018", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990156060190206441.json b/src/test/resources/alma-fix/990156060190206441.json index d559ead59..9d31db871 100644 --- a/src/test/resources/alma-fix/990156060190206441.json +++ b/src/test/resources/alma-fix/990156060190206441.json @@ -170,7 +170,7 @@ "serialNumber" : "W00159251", "currentLibrary" : "W0001", "currentLocation" : "01", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -184,7 +184,7 @@ "serialNumber" : "KN41$00705907", "currentLibrary" : "KP001", "currentLocation" : "FMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -198,7 +198,7 @@ "serialNumber" : "0212359", "currentLibrary" : "FHMH", "currentLocation" : "Freihand_H", - "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", + "opacLink" : "https://hb063.fh-muenster.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-836#!", "isil" : "DE-836", @@ -212,7 +212,7 @@ "serialNumber" : "070418501", "currentLibrary" : "F0001", "currentLocation" : "00", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -226,6 +226,7 @@ "serialNumber" : "91 AVY 2", "currentLibrary" : "EUP", "currentLocation" : "EUP_BV", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -239,7 +240,7 @@ "serialNumber" : "20557430", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -253,7 +254,7 @@ "serialNumber" : "20619518", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -267,7 +268,7 @@ "serialNumber" : "017294901", "currentLibrary" : "cdd", "currentLocation" : "HBEMP", - "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID={hbzid}", + "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID={hbzid}HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", @@ -281,7 +282,7 @@ "serialNumber" : "081408ALN4WAS", "currentLibrary" : "MG", "currentLocation" : "MG_Public", - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", @@ -295,7 +296,7 @@ "serialNumber" : "11AVY1078", "currentLibrary" : "LE", "currentLocation" : "LE_Frei", - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22", + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", @@ -348,7 +349,7 @@ "serialNumber" : "108249895", "currentLibrary" : "R3032", "currentLocation" : "FH45", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -362,7 +363,7 @@ "serialNumber" : "C168762", "currentLibrary" : "RL002", "currentLocation" : "FHELD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -376,7 +377,7 @@ "serialNumber" : "108260133", "currentLibrary" : "R3032", "currentLocation" : "FH45", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -390,7 +391,7 @@ "serialNumber" : "RD7887-13", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_1", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -404,7 +405,7 @@ "serialNumber" : "013133072107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -418,7 +419,7 @@ "serialNumber" : "03531721", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -432,7 +433,7 @@ "serialNumber" : "63BCNM1806", "currentLibrary" : "SUED", "currentLocation" : "63", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -446,7 +447,7 @@ "serialNumber" : "12837764", "currentLibrary" : "EFB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -460,7 +461,7 @@ "serialNumber" : "0063.6230.87", "currentLibrary" : "T0011", "currentLocation" : "09", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -474,7 +475,7 @@ "serialNumber" : "2007/2934", "currentLibrary" : "0", "currentLocation" : "0-Frei1", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -514,6 +515,7 @@ "serialNumber" : "117035917", "currentLibrary" : "SOZ", "currentLocation" : "SOZ_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -527,6 +529,7 @@ "serialNumber" : "TEMPHBZ60035679897-000010", "currentLibrary" : "PHILO", "currentLocation" : "PHILO_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -540,7 +543,7 @@ "serialNumber" : "E00750581", "currentLibrary" : "E0001", "currentLocation" : "E91", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -554,7 +557,7 @@ "serialNumber" : "E00290166", "currentLibrary" : "E0001", "currentLocation" : "E91", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -568,7 +571,7 @@ "serialNumber" : "M20 4473", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -582,7 +585,7 @@ "serialNumber" : "34A7510#a", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -596,7 +599,7 @@ "serialNumber" : "34A7510", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -610,7 +613,7 @@ "serialNumber" : "302/0660013", "currentLibrary" : "38-307", "currentLocation" : "38-307-FHM", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-307#!", "isil" : "DE-38-307", @@ -624,7 +627,7 @@ "serialNumber" : "3F 70852", "currentLibrary" : "ZB", "currentLocation" : "ZB_AUSB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -638,7 +641,7 @@ "serialNumber" : "Z69-036921", "currentLibrary" : "PSY", "currentLocation" : "PSY_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-049#!", "isil" : "DE-6-049", @@ -652,7 +655,7 @@ "serialNumber" : "Z67-064227", "currentLibrary" : "BEK", "currentLocation" : "BEK_MAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-123#!", "isil" : "DE-6-123", @@ -666,7 +669,7 @@ "serialNumber" : "AVY1256", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -680,7 +683,7 @@ "serialNumber" : "00006901", "currentLibrary" : "GE", "currentLocation" : "01", - "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID={hbzid}", + "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID={hbzid}HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1010#!", "isil" : "DE-1010", @@ -692,7 +695,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -704,7 +707,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -716,7 +719,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990167595410206441.json b/src/test/resources/alma-fix/990167595410206441.json index d39581ae4..1c3860bea 100644 --- a/src/test/resources/alma-fix/990167595410206441.json +++ b/src/test/resources/alma-fix/990167595410206441.json @@ -73,7 +73,7 @@ "serialNumber" : "KMB/1980.7637", "currentLibrary" : "KN3", "currentLocation" : "KN3-KMB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}TT002494857", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn3#!", "isil" : "DE-Kn3", @@ -87,7 +87,7 @@ "serialNumber" : "Z143-028930", "currentLibrary" : "PHIL", "currentLocation" : "PHIL_KBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0TT002494857", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", diff --git a/src/test/resources/alma-fix/990171142550206441.json b/src/test/resources/alma-fix/990171142550206441.json index f0a0f1fb6..5ddc88a74 100644 --- a/src/test/resources/alma-fix/990171142550206441.json +++ b/src/test/resources/alma-fix/990171142550206441.json @@ -131,7 +131,7 @@ "serialNumber" : "63BBV1290", "currentLibrary" : "SUED", "currentLocation" : "63", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT015671602", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -145,7 +145,7 @@ "serialNumber" : "20139223", "currentLibrary" : "ZB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -159,7 +159,7 @@ "serialNumber" : "0080.2818.77", "currentLibrary" : "T0011", "currentLocation" : "72", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT015671602", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -186,7 +186,7 @@ "serialNumber" : "39A5443", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT015671602", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -198,7 +198,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT015671602", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990173811970206441.json b/src/test/resources/alma-fix/990173811970206441.json index 959198966..d3b1986e0 100644 --- a/src/test/resources/alma-fix/990173811970206441.json +++ b/src/test/resources/alma-fix/990173811970206441.json @@ -142,7 +142,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT015865114", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", diff --git a/src/test/resources/alma-fix/990181275760206441.json b/src/test/resources/alma-fix/990181275760206441.json index e066a2836..025e93a97 100644 --- a/src/test/resources/alma-fix/990181275760206441.json +++ b/src/test/resources/alma-fix/990181275760206441.json @@ -105,7 +105,7 @@ "serialNumber" : "00782328", "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -119,7 +119,7 @@ "serialNumber" : "00782331", "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -133,7 +133,7 @@ "serialNumber" : "00782344", "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -147,7 +147,7 @@ "serialNumber" : "00830005", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -161,7 +161,7 @@ "serialNumber" : "00830018", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -175,7 +175,7 @@ "serialNumber" : "20037393", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -189,7 +189,7 @@ "serialNumber" : "20076086", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -203,7 +203,7 @@ "serialNumber" : "20086273", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -217,7 +217,7 @@ "serialNumber" : "20076085", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -231,7 +231,7 @@ "serialNumber" : "20076083", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -245,7 +245,7 @@ "serialNumber" : "20076082", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -259,7 +259,7 @@ "serialNumber" : "20066267", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -273,6 +273,7 @@ "serialNumber" : "400.008.714", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -286,6 +287,7 @@ "serialNumber" : "400.009.801", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -299,6 +301,7 @@ "serialNumber" : "400.009.800", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -312,6 +315,7 @@ "serialNumber" : "400.009.794", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -325,6 +329,7 @@ "serialNumber" : "400.009.795", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -338,6 +343,7 @@ "serialNumber" : "400.009.793", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -351,6 +357,7 @@ "serialNumber" : "400.008.713", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -364,6 +371,7 @@ "serialNumber" : "400.009.797", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -377,6 +385,7 @@ "serialNumber" : "400.009.796", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -390,6 +399,7 @@ "serialNumber" : "400.009.798", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -403,6 +413,7 @@ "serialNumber" : "400.008.712", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -416,6 +427,7 @@ "serialNumber" : "400.009.802", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -429,6 +441,7 @@ "serialNumber" : "400.009.799", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990182814750206441.json b/src/test/resources/alma-fix/990182814750206441.json index f4359eeed..ce44c09b8 100644 --- a/src/test/resources/alma-fix/990182814750206441.json +++ b/src/test/resources/alma-fix/990182814750206441.json @@ -130,7 +130,7 @@ "serialNumber" : "122113301", "currentLibrary" : "X0001", "currentLocation" : "01", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT016580347", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990183054020206441.json b/src/test/resources/alma-fix/990183054020206441.json index 3451601cd..3593166b2 100644 --- a/src/test/resources/alma-fix/990183054020206441.json +++ b/src/test/resources/alma-fix/990183054020206441.json @@ -201,7 +201,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_ZS", "callNumber" : "XB 3534", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=02581964-1", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT016604323", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990183958380206441.json b/src/test/resources/alma-fix/990183958380206441.json index 375b157ae..2c661f017 100644 --- a/src/test/resources/alma-fix/990183958380206441.json +++ b/src/test/resources/alma-fix/990183958380206441.json @@ -185,7 +185,7 @@ "serialNumber" : "6-00113726-8", "currentLibrary" : "ZB", "currentLocation" : "ZB_GMAGL", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT016692738", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -199,7 +199,7 @@ "serialNumber" : "Z193-024182", "currentLibrary" : "ALKU", "currentLocation" : "ALKU_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT016692738", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-139a#!", "isil" : "DE-6-139a", @@ -213,7 +213,7 @@ "serialNumber" : "LUHB1738", "currentLibrary" : "P0001", "currentLocation" : "31", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT016692738", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -225,7 +225,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT016692738", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990185607520206441.json b/src/test/resources/alma-fix/990185607520206441.json index 59d9b701c..f972a6bba 100644 --- a/src/test/resources/alma-fix/990185607520206441.json +++ b/src/test/resources/alma-fix/990185607520206441.json @@ -78,7 +78,7 @@ "serialNumber" : "SM-007284", "currentLibrary" : "SM", "currentLocation" : "SM-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", diff --git a/src/test/resources/alma-fix/990185619180206441.json b/src/test/resources/alma-fix/990185619180206441.json index d10e4d7d0..a41e30334 100644 --- a/src/test/resources/alma-fix/990185619180206441.json +++ b/src/test/resources/alma-fix/990185619180206441.json @@ -87,7 +87,7 @@ "serialNumber" : "SM-009391", "currentLibrary" : "SM", "currentLocation" : "SM-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", diff --git a/src/test/resources/alma-fix/990189160110206441.json b/src/test/resources/alma-fix/990189160110206441.json index 268d098cf..3bc11d511 100644 --- a/src/test/resources/alma-fix/990189160110206441.json +++ b/src/test/resources/alma-fix/990189160110206441.json @@ -150,7 +150,7 @@ "serialNumber" : "W00151217", "currentLibrary" : "W0001", "currentLocation" : "AA", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -164,7 +164,7 @@ "serialNumber" : "W00185519", "currentLibrary" : "W0001", "currentLocation" : "20", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -178,7 +178,7 @@ "serialNumber" : "W00328289", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -192,7 +192,7 @@ "serialNumber" : "KN41$01599167", "currentLibrary" : "KP001", "currentLocation" : "FMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -206,7 +206,7 @@ "serialNumber" : "KN41$01339152", "currentLibrary" : "KP001", "currentLocation" : "FMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -220,7 +220,7 @@ "serialNumber" : "109382847", "currentLibrary" : "R3032", "currentLocation" : "FHSPO", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -234,7 +234,7 @@ "serialNumber" : "20116184", "currentLibrary" : "ZB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -248,7 +248,7 @@ "serialNumber" : "P2012/259", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -262,7 +262,7 @@ "serialNumber" : "DE00286549", "currentLibrary" : "E0001", "currentLocation" : "E11", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -276,7 +276,7 @@ "serialNumber" : "DE00286550", "currentLibrary" : "E0001", "currentLocation" : "E11", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -290,7 +290,7 @@ "serialNumber" : "M28 6888", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -304,7 +304,7 @@ "serialNumber" : "M31 6464", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -318,7 +318,7 @@ "serialNumber" : "M28 6889", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -332,7 +332,7 @@ "serialNumber" : "Z68-032337", "currentLibrary" : "SPOR", "currentLocation" : "SPOR_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-058#!", "isil" : "DE-6-058", @@ -346,7 +346,7 @@ "serialNumber" : "6-00166844-1", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -360,7 +360,7 @@ "serialNumber" : "6-00166843-9", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -374,7 +374,7 @@ "serialNumber" : "KRRS1643", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -386,7 +386,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -398,7 +398,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990193094010206441.json b/src/test/resources/alma-fix/990193094010206441.json index 3c8d6ddd7..295725cc6 100644 --- a/src/test/resources/alma-fix/990193094010206441.json +++ b/src/test/resources/alma-fix/990193094010206441.json @@ -82,7 +82,7 @@ "serialNumber" : "63BBV1390", "currentLibrary" : "SUED", "currentLocation" : "63", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT017398609", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -96,7 +96,7 @@ "serialNumber" : "20129967", "currentLibrary" : "EFB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -110,6 +110,7 @@ "serialNumber" : "WWB53467", "currentLibrary" : "UB", "currentLocation" : "UB_G3B1", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990193806600206441.json b/src/test/resources/alma-fix/990193806600206441.json index 8b575c0a0..431e6a692 100644 --- a/src/test/resources/alma-fix/990193806600206441.json +++ b/src/test/resources/alma-fix/990193806600206441.json @@ -81,7 +81,7 @@ "serialNumber" : "6-00245554-2", "currentLibrary" : "HLS", "currentLocation" : "HLS_RAKAR", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT017468042", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990194668760206441.json b/src/test/resources/alma-fix/990194668760206441.json index 6db640ba0..2cac96eba 100644 --- a/src/test/resources/alma-fix/990194668760206441.json +++ b/src/test/resources/alma-fix/990194668760206441.json @@ -89,7 +89,7 @@ "callNumber" : "K347:501", "currentLibrary" : "X0001", "currentLocation" : "16", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT017551955", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990194744870206441.json b/src/test/resources/alma-fix/990194744870206441.json index 1ee8a3ddc..23e667248 100644 --- a/src/test/resources/alma-fix/990194744870206441.json +++ b/src/test/resources/alma-fix/990194744870206441.json @@ -78,7 +78,7 @@ "serialNumber" : "C004216", "currentLibrary" : "RL002", "currentLocation" : "MNBLD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT017559543", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -92,7 +92,7 @@ "serialNumber" : "M23 9940", "currentLibrary" : "RL001", "currentLocation" : "MAGMK", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT017559543", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -104,7 +104,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT017559543", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", diff --git a/src/test/resources/alma-fix/990198383780206441.json b/src/test/resources/alma-fix/990198383780206441.json index 9ccd18eb1..83a16f161 100644 --- a/src/test/resources/alma-fix/990198383780206441.json +++ b/src/test/resources/alma-fix/990198383780206441.json @@ -79,7 +79,7 @@ "serialNumber" : "130028201", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT017775049", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990202474680206441.json b/src/test/resources/alma-fix/990202474680206441.json index 4c31e70e2..af1e2fe88 100644 --- a/src/test/resources/alma-fix/990202474680206441.json +++ b/src/test/resources/alma-fix/990202474680206441.json @@ -132,7 +132,7 @@ "serialNumber" : "AJ-143867", "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", @@ -146,7 +146,7 @@ "serialNumber" : "JAP/0008615", "currentLibrary" : "38-459", "currentLocation" : "38-459-KEL", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT018129805", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", diff --git a/src/test/resources/alma-fix/990204246530206441.json b/src/test/resources/alma-fix/990204246530206441.json index 2442392f1..747f6d4a1 100644 --- a/src/test/resources/alma-fix/990204246530206441.json +++ b/src/test/resources/alma-fix/990204246530206441.json @@ -177,7 +177,7 @@ "serialNumber" : "04690647", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT018295975", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -191,7 +191,7 @@ "serialNumber" : "GL-202825", "currentLibrary" : "GL", "currentLocation" : "GL-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-39#!", "isil" : "DE-5-39", @@ -205,7 +205,7 @@ "serialNumber" : "6-00342474-8", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT018295975", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990207668220206441.json b/src/test/resources/alma-fix/990207668220206441.json index 1fe124b09..0fc97e61e 100644 --- a/src/test/resources/alma-fix/990207668220206441.json +++ b/src/test/resources/alma-fix/990207668220206441.json @@ -93,7 +93,7 @@ "serialNumber" : "223:3 AP 16", "currentLibrary" : "223", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0TT003280170", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-223#!", "isil" : "DE-82-223", diff --git a/src/test/resources/alma-fix/990209515320206441.json b/src/test/resources/alma-fix/990209515320206441.json index d6dfd1a6b..c8de083b7 100644 --- a/src/test/resources/alma-fix/990209515320206441.json +++ b/src/test/resources/alma-fix/990209515320206441.json @@ -104,7 +104,7 @@ "serialNumber" : "KN38$0000049839", "currentLibrary" : "Z9038", "currentLocation" : "MZ8V", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number={hbzid}&local_base=MHK01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number={hbzid}&local_base=MHK01HT018781534", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", diff --git a/src/test/resources/alma-fix/990209817770206441.json b/src/test/resources/alma-fix/990209817770206441.json index 353c035c3..1a1f6f2c3 100644 --- a/src/test/resources/alma-fix/990209817770206441.json +++ b/src/test/resources/alma-fix/990209817770206441.json @@ -168,7 +168,7 @@ "serialNumber" : "6-00415520-5", "currentLibrary" : "ZB", "currentLocation" : "ZB_GKL", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT018811791", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990210237770206441.json b/src/test/resources/alma-fix/990210237770206441.json index 5ebd23fba..fa1551db1 100644 --- a/src/test/resources/alma-fix/990210237770206441.json +++ b/src/test/resources/alma-fix/990210237770206441.json @@ -88,7 +88,7 @@ "serialNumber" : "112628-550", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -102,7 +102,7 @@ "serialNumber" : "112628-180", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -116,7 +116,7 @@ "serialNumber" : "112628-540", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -130,7 +130,7 @@ "serialNumber" : "112628-530", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -144,7 +144,7 @@ "serialNumber" : "112628-560", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -158,7 +158,7 @@ "serialNumber" : "112628-330", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -172,7 +172,7 @@ "serialNumber" : "112628-520", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -186,7 +186,7 @@ "serialNumber" : "112628-510", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -200,7 +200,7 @@ "serialNumber" : "112628-320", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -214,7 +214,7 @@ "serialNumber" : "112628-340", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -228,7 +228,7 @@ "serialNumber" : "112628-360", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -242,7 +242,7 @@ "serialNumber" : "112628-390", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -256,7 +256,7 @@ "serialNumber" : "112628-370", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -270,7 +270,7 @@ "serialNumber" : "112628-480", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -284,7 +284,7 @@ "serialNumber" : "112628-290", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -298,7 +298,7 @@ "serialNumber" : "112628-70", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -312,7 +312,7 @@ "serialNumber" : "112628-230", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -326,7 +326,7 @@ "serialNumber" : "112628-500", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -340,7 +340,7 @@ "serialNumber" : "112628-310", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -354,7 +354,7 @@ "serialNumber" : "112628-50", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -368,7 +368,7 @@ "serialNumber" : "112628-270", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -382,7 +382,7 @@ "serialNumber" : "112628-40", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -396,7 +396,7 @@ "serialNumber" : "112628-250", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -410,7 +410,7 @@ "serialNumber" : "112628-210", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -424,7 +424,7 @@ "serialNumber" : "112628-190", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -438,7 +438,7 @@ "serialNumber" : "112628-160", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -452,7 +452,7 @@ "serialNumber" : "112628-140", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -466,7 +466,7 @@ "serialNumber" : "112628-120", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -480,7 +480,7 @@ "serialNumber" : "112628-100", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -494,7 +494,7 @@ "serialNumber" : "112628-80", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -508,7 +508,7 @@ "serialNumber" : "112628-600", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -522,7 +522,7 @@ "serialNumber" : "112628-590", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -536,7 +536,7 @@ "serialNumber" : "112628-430", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -550,7 +550,7 @@ "serialNumber" : "112628-380", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -564,7 +564,7 @@ "serialNumber" : "112628-260", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -578,7 +578,7 @@ "serialNumber" : "112628-570", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -592,7 +592,7 @@ "serialNumber" : "112628-610", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -606,7 +606,7 @@ "serialNumber" : "112628-580", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -620,7 +620,7 @@ "serialNumber" : "112628-450", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -634,7 +634,7 @@ "serialNumber" : "112628-460", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -648,7 +648,7 @@ "serialNumber" : "112628-440", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -662,7 +662,7 @@ "serialNumber" : "112628-420", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -676,7 +676,7 @@ "serialNumber" : "112628-410", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -690,7 +690,7 @@ "serialNumber" : "112628-400", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -704,7 +704,7 @@ "serialNumber" : "112628-490", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -718,7 +718,7 @@ "serialNumber" : "112628-470", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -732,7 +732,7 @@ "serialNumber" : "112628-300", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -746,7 +746,7 @@ "serialNumber" : "112628-280", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -760,7 +760,7 @@ "serialNumber" : "112628-60", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -774,7 +774,7 @@ "serialNumber" : "112628-220", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -788,7 +788,7 @@ "serialNumber" : "112628-240", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -802,7 +802,7 @@ "serialNumber" : "112628-200", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -816,7 +816,7 @@ "serialNumber" : "112628-170", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -830,7 +830,7 @@ "serialNumber" : "112628-90", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -844,7 +844,7 @@ "serialNumber" : "112628-150", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -858,7 +858,7 @@ "serialNumber" : "112628-130", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -872,7 +872,7 @@ "serialNumber" : "112628-110", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -886,7 +886,7 @@ "serialNumber" : "112628-30", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -900,7 +900,7 @@ "serialNumber" : "112628-20", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", diff --git a/src/test/resources/alma-fix/990210285400206441.json b/src/test/resources/alma-fix/990210285400206441.json index 734380b31..6c8cf9338 100644 --- a/src/test/resources/alma-fix/990210285400206441.json +++ b/src/test/resources/alma-fix/990210285400206441.json @@ -124,7 +124,7 @@ "serialNumber" : "KN38$0000165230", "currentLibrary" : "Z9038", "currentLocation" : "MZ2V", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number={hbzid}&local_base=MHK01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number={hbzid}&local_base=MHK01HT018857620", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", diff --git a/src/test/resources/alma-fix/990210950050206441.json b/src/test/resources/alma-fix/990210950050206441.json index 9c09d6faa..8e2e930d6 100644 --- a/src/test/resources/alma-fix/990210950050206441.json +++ b/src/test/resources/alma-fix/990210950050206441.json @@ -195,7 +195,7 @@ "serialNumber" : "136699801", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT018924091", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990217478660206441.json b/src/test/resources/alma-fix/990217478660206441.json index a7d25ff3f..97ab76d1a 100644 --- a/src/test/resources/alma-fix/990217478660206441.json +++ b/src/test/resources/alma-fix/990217478660206441.json @@ -244,7 +244,7 @@ "serialNumber" : "W00268173", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -258,7 +258,7 @@ "serialNumber" : "W00268170", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -272,7 +272,7 @@ "serialNumber" : "W00268172", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -286,7 +286,7 @@ "serialNumber" : "W00268164", "currentLibrary" : "W0001", "currentLocation" : "20", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -300,7 +300,7 @@ "serialNumber" : "W00268165", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -314,7 +314,7 @@ "serialNumber" : "W00268166", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -328,7 +328,7 @@ "serialNumber" : "W00268168", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -342,7 +342,7 @@ "serialNumber" : "W00268167", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -356,7 +356,7 @@ "serialNumber" : "W00268176", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -370,7 +370,7 @@ "serialNumber" : "W00268171", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -384,7 +384,7 @@ "serialNumber" : "W00268175", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -398,7 +398,7 @@ "serialNumber" : "W00268174", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -412,7 +412,7 @@ "serialNumber" : "W00268169", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -426,7 +426,7 @@ "serialNumber" : "91031017", "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", @@ -440,7 +440,7 @@ "serialNumber" : "180043101", "currentLibrary" : "F0001", "currentLocation" : "00", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -454,7 +454,7 @@ "serialNumber" : "180424", "currentLibrary" : "60", "currentLocation" : "CM_Freih", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22{hbzid}%22", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", @@ -468,7 +468,7 @@ "serialNumber" : "01369368", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -482,7 +482,7 @@ "serialNumber" : "100000005149", "currentLibrary" : "KRW", "currentLocation" : "KRW_Public", - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", @@ -496,7 +496,7 @@ "serialNumber" : "21WTA314", "currentLibrary" : "DT", "currentLocation" : "DT_Frei", - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22", + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", @@ -510,7 +510,7 @@ "serialNumber" : "046250 211", "currentLibrary" : "211", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-211#!", "isil" : "DE-82-211", @@ -524,7 +524,7 @@ "serialNumber" : "50000027887", "currentLibrary" : "BAB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -538,7 +538,7 @@ "serialNumber" : "M33 3199", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -552,7 +552,7 @@ "serialNumber" : "44A4782", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -566,7 +566,7 @@ "serialNumber" : "6-00536437-0", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -580,7 +580,7 @@ "serialNumber" : "53WTA3654+1", "currentLibrary" : "S0001", "currentLocation" : "PB", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -594,7 +594,7 @@ "serialNumber" : "53WTA3654", "currentLibrary" : "S0001", "currentLocation" : "PB", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -608,7 +608,7 @@ "serialNumber" : "WTA2129", "currentLibrary" : "P0001", "currentLocation" : "51", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -620,7 +620,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -632,7 +632,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990218189790206441.json b/src/test/resources/alma-fix/990218189790206441.json index 79a534279..eae924236 100644 --- a/src/test/resources/alma-fix/990218189790206441.json +++ b/src/test/resources/alma-fix/990218189790206441.json @@ -109,7 +109,7 @@ "serialNumber" : "AJ-1019284", "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", @@ -123,6 +123,7 @@ "serialNumber" : "115207346", "currentLibrary" : "OAW", "currentLocation" : "OAW_BIB", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990219911120206441.json b/src/test/resources/alma-fix/990219911120206441.json index 77a2659ad..617680371 100644 --- a/src/test/resources/alma-fix/990219911120206441.json +++ b/src/test/resources/alma-fix/990219911120206441.json @@ -83,6 +83,7 @@ "serialNumber" : "UB27501", "currentLibrary" : "UB", "currentLocation" : "UB_GMAG", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990220027540206441.json b/src/test/resources/alma-fix/990220027540206441.json index e7d3bddf8..3e222c2a5 100644 --- a/src/test/resources/alma-fix/990220027540206441.json +++ b/src/test/resources/alma-fix/990220027540206441.json @@ -84,7 +84,7 @@ "serialNumber" : "AJ-196496", "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", diff --git a/src/test/resources/alma-fix/990223521400206441.json b/src/test/resources/alma-fix/990223521400206441.json index 11b049c54..bb7b85387 100644 --- a/src/test/resources/alma-fix/990223521400206441.json +++ b/src/test/resources/alma-fix/990223521400206441.json @@ -231,7 +231,7 @@ "serialNumber" : "W00274368", "currentLibrary" : "W0001", "currentLocation" : "75", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -245,7 +245,7 @@ "serialNumber" : "91036298", "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", @@ -285,6 +285,7 @@ "serialNumber" : "61 TYD 16(3)", "currentLibrary" : "JUE", "currentLocation" : "JUE_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -298,6 +299,7 @@ "serialNumber" : "61 TYD 16(3)+1", "currentLibrary" : "JUE", "currentLocation" : "JUE_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -311,7 +313,7 @@ "serialNumber" : "22253605", "currentLibrary" : "RHB", "currentLocation" : "RHB_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -325,7 +327,7 @@ "serialNumber" : "22174458", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -339,7 +341,7 @@ "serialNumber" : "22174464", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -353,7 +355,7 @@ "serialNumber" : "22174441", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -367,7 +369,7 @@ "serialNumber" : "11TYD398(3)", "currentLibrary" : "LE", "currentLocation" : "LE_Frei", - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22", + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", @@ -381,7 +383,7 @@ "serialNumber" : "50000033216", "currentLibrary" : "S7", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -395,7 +397,7 @@ "serialNumber" : "P2018/1480", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -409,7 +411,7 @@ "serialNumber" : "DE00648926", "currentLibrary" : "D0001", "currentLocation" : "D05", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -423,7 +425,7 @@ "serialNumber" : "DE00648925", "currentLibrary" : "D0001", "currentLocation" : "D05", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -437,7 +439,7 @@ "serialNumber" : "DE00648924", "currentLibrary" : "D0001", "currentLocation" : "D05", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -451,7 +453,7 @@ "serialNumber" : "DE00644940", "currentLibrary" : "E0001", "currentLocation" : "E33", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -465,7 +467,7 @@ "serialNumber" : "DE00644939", "currentLibrary" : "E0001", "currentLocation" : "E33", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -479,7 +481,7 @@ "serialNumber" : "DE00648923", "currentLibrary" : "D0001", "currentLocation" : "D01", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -493,7 +495,7 @@ "serialNumber" : "DE00644942", "currentLibrary" : "E0001", "currentLocation" : "E33", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -507,7 +509,7 @@ "serialNumber" : "DE00644941", "currentLibrary" : "E0001", "currentLocation" : "E33", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -521,7 +523,7 @@ "serialNumber" : "44A6297", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -535,7 +537,7 @@ "serialNumber" : "6-00557803-7", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -549,7 +551,7 @@ "serialNumber" : "6-00557802-4", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -563,7 +565,7 @@ "serialNumber" : "TWP22152(3)", "currentLibrary" : "P0001", "currentLocation" : "41", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -577,7 +579,7 @@ "serialNumber" : "TWP22152(3)+1", "currentLibrary" : "P0001", "currentLocation" : "41", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -589,7 +591,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990225056670206441.json b/src/test/resources/alma-fix/990225056670206441.json index 3d0bcfa9d..03d146572 100644 --- a/src/test/resources/alma-fix/990225056670206441.json +++ b/src/test/resources/alma-fix/990225056670206441.json @@ -86,7 +86,7 @@ "serialNumber" : "501:000491", "currentLibrary" : "501", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0TT003907920", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-501#!", "isil" : "DE-82-501", diff --git a/src/test/resources/alma-fix/990366394400206441.json b/src/test/resources/alma-fix/990366394400206441.json index 14101afe4..c7ab4d4c3 100644 --- a/src/test/resources/alma-fix/990366394400206441.json +++ b/src/test/resources/alma-fix/990366394400206441.json @@ -69,7 +69,7 @@ "serialNumber" : "6-00461456-X", "currentLibrary" : "HLS", "currentLocation" : "HLS_HSMAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT020446683", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990367731740206441.json b/src/test/resources/alma-fix/990367731740206441.json index 9d403d84b..e00834ee8 100644 --- a/src/test/resources/alma-fix/990367731740206441.json +++ b/src/test/resources/alma-fix/990367731740206441.json @@ -251,7 +251,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R5001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID={hbzid}", + "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID={hbzid}HT020579803", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1116#!", "isil" : "DE-1116", diff --git a/src/test/resources/alma-fix/990367761810206441.json b/src/test/resources/alma-fix/990367761810206441.json index cfa8c546d..9a954944d 100644 --- a/src/test/resources/alma-fix/990367761810206441.json +++ b/src/test/resources/alma-fix/990367761810206441.json @@ -141,7 +141,7 @@ "serialNumber" : "JAP/0018138", "currentLibrary" : "38-459", "currentLocation" : "38-459-FHM", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT020582812", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", diff --git a/src/test/resources/alma-fix/990368743120206441.json b/src/test/resources/alma-fix/990368743120206441.json index f309fc2b0..1ee064a68 100644 --- a/src/test/resources/alma-fix/990368743120206441.json +++ b/src/test/resources/alma-fix/990368743120206441.json @@ -70,7 +70,7 @@ "serialNumber" : "6-00461538-5", "currentLibrary" : "HLS", "currentLocation" : "HLS_HSMAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT020681018", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/99370771475306441.json b/src/test/resources/alma-fix/99370771475306441.json index 5c852816c..c464bddf1 100644 --- a/src/test/resources/alma-fix/99370771475306441.json +++ b/src/test/resources/alma-fix/99370771475306441.json @@ -244,7 +244,7 @@ "serialNumber" : "91083416", "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", @@ -258,7 +258,7 @@ "serialNumber" : "211231", "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22{hbzid}%22", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", @@ -272,7 +272,7 @@ "serialNumber" : "211230", "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22{hbzid}%22", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", @@ -286,7 +286,7 @@ "serialNumber" : "211229", "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22{hbzid}%22", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", @@ -300,7 +300,7 @@ "serialNumber" : "622040", "currentLibrary" : "R5001", "currentLocation" : "X0001", - "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID={hbzid}", + "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID={hbzid}HT020919504", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1116#!", "isil" : "DE-1116", @@ -314,7 +314,7 @@ "serialNumber" : "ZE-202720", "currentLibrary" : "ZE", "currentLocation" : "ZE-Bib", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid}", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bo404#!", "isil" : "DE-Bo404", @@ -341,7 +341,7 @@ "serialNumber" : "DE00736175", "currentLibrary" : "D0001", "currentLocation" : "D01", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT020919504", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -355,7 +355,7 @@ "serialNumber" : "Z75-040987", "currentLibrary" : "MEGT", "currentLocation" : "MEGT_BIBEG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT020919504", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-164#!", "isil" : "DE-6-164", diff --git a/src/test/resources/alma-fix/99370782520706441.json b/src/test/resources/alma-fix/99370782520706441.json index 64de76332..c1c46df95 100644 --- a/src/test/resources/alma-fix/99370782520706441.json +++ b/src/test/resources/alma-fix/99370782520706441.json @@ -105,6 +105,7 @@ "serialNumber" : "11 XBS 53-2021,2", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -118,6 +119,7 @@ "serialNumber" : "11 XBS 53-2021,2+1", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -131,6 +133,7 @@ "serialNumber" : "11 XBS 53-2021,2+2", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -144,6 +147,7 @@ "serialNumber" : "11 XBS 53-2021,2+3", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -157,6 +161,7 @@ "serialNumber" : "11 XBS 53-2021,2+4", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -170,6 +175,7 @@ "serialNumber" : "11 XBS 53-2021,2+6", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -183,6 +189,7 @@ "serialNumber" : "11 XBS 53-2021,2+7", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -196,6 +203,7 @@ "serialNumber" : "11 XBS 53-2021,2+12", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -209,6 +217,7 @@ "serialNumber" : "11 XBS 53-2021,2+5", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -222,6 +231,7 @@ "serialNumber" : "11 XBS 53-2021,2+8", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -235,6 +245,7 @@ "serialNumber" : "11 XBS 53-2021,2+9", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -248,6 +259,7 @@ "serialNumber" : "11 XBS 53-2021,2+10", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -261,6 +273,7 @@ "serialNumber" : "11 XBS 53-2021,2+11", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -274,7 +287,7 @@ "serialNumber" : "01383988", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -288,7 +301,7 @@ "serialNumber" : "21XBR190(2021)-2", "currentLibrary" : "DT", "currentLocation" : "DT_Frei", - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22", + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", @@ -302,7 +315,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=3", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -316,7 +329,7 @@ "serialNumber" : "(1)62276", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_3", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -330,7 +343,7 @@ "serialNumber" : "022844 211", "currentLibrary" : "202", "currentLocation" : "7", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-202#!", "isil" : "DE-82-202", @@ -344,7 +357,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=1", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -358,7 +371,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=5", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -372,7 +385,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=4", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -386,7 +399,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=2", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -400,7 +413,7 @@ "serialNumber" : "31XBR1535-2021,2+2", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -414,7 +427,7 @@ "serialNumber" : "31XBR1535-2021,2+3", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -428,7 +441,7 @@ "serialNumber" : "31XBR1535-2021,2+4", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -442,7 +455,7 @@ "serialNumber" : "31XBR1535-2021,2+1", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -456,7 +469,7 @@ "serialNumber" : "31XBR1535-2021,2+6", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -470,7 +483,7 @@ "serialNumber" : "32XBR1535-2021,2", "currentLibrary" : "DEUTZ", "currentLocation" : "32", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -484,7 +497,7 @@ "serialNumber" : "31XBR1535-2021,2+7", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -498,7 +511,7 @@ "serialNumber" : "31XBR1535-2021,2+5", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -512,7 +525,7 @@ "serialNumber" : "31XBR1535-2021,2+9", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -526,7 +539,7 @@ "serialNumber" : "31XBR1535-2021,2+8", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -540,7 +553,7 @@ "serialNumber" : "50000067433", "currentLibrary" : "BR", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -554,6 +567,7 @@ "serialNumber" : "WSA7543-2021,2", "currentLibrary" : "UB", "currentLocation" : "UB_G3/B4", + "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -567,7 +581,7 @@ "serialNumber" : "DE00637881", "currentLibrary" : "E0001", "currentLocation" : "EHA", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -581,7 +595,7 @@ "serialNumber" : "DE00637884", "currentLibrary" : "E0001", "currentLocation" : "E31", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -595,7 +609,7 @@ "serialNumber" : "53XBR5068-2021,2", "currentLibrary" : "S0001", "currentLocation" : "PB", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", diff --git a/src/test/resources/alma-fix/99371014448006441.json b/src/test/resources/alma-fix/99371014448006441.json index 214e70d7a..9a6a376cc 100644 --- a/src/test/resources/alma-fix/99371014448006441.json +++ b/src/test/resources/alma-fix/99371014448006441.json @@ -118,7 +118,7 @@ "serialNumber" : "JAP/0020015", "currentLibrary" : "38-459", "currentLocation" : "38-459-FHM", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT021117356", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", diff --git a/src/test/resources/alma-fix/99371050452706441.json b/src/test/resources/alma-fix/99371050452706441.json index a62aeb0d2..78bb8bda4 100644 --- a/src/test/resources/alma-fix/99371050452706441.json +++ b/src/test/resources/alma-fix/99371050452706441.json @@ -220,7 +220,7 @@ "serialNumber" : "6-00724192-9", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT021137663", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/99371530278506441.json b/src/test/resources/alma-fix/99371530278506441.json index eaa3fbbc3..a5df0fa17 100644 --- a/src/test/resources/alma-fix/99371530278506441.json +++ b/src/test/resources/alma-fix/99371530278506441.json @@ -190,7 +190,7 @@ "serialNumber" : "432/0021005", "currentLibrary" : "38-432", "currentLocation" : "38-432-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT021463169", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-432#!", "isil" : "DE-38-432", diff --git a/src/test/resources/alma-fix/99372423490706441.json b/src/test/resources/alma-fix/99372423490706441.json index 512daf759..e9024935c 100644 --- a/src/test/resources/alma-fix/99372423490706441.json +++ b/src/test/resources/alma-fix/99372423490706441.json @@ -106,7 +106,7 @@ "serialNumber" : ":94002761436", "currentLibrary" : "T0010", "currentLocation" : "kA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01HT030002417", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", From c34749e5132907cc5c1ec8b6e567675d2d4ea262 Mon Sep 17 00:00:00 2001 From: TobiasNx Date: Tue, 26 Sep 2023 15:21:37 +0200 Subject: [PATCH 06/23] Fix split_field sep_char #1888 --- src/main/resources/alma/fix/macros.fix | 2 +- .../alma-fix/990001412590206441.json | 24 ++-- .../alma-fix/990011470300206441.json | 6 +- .../alma-fix/990014830510206441.json | 6 +- .../alma-fix/990016782920206441.json | 6 +- .../alma-fix/990021367710206441.json | 4 +- .../alma-fix/990021974470206441.json | 10 +- .../alma-fix/990026405480206441.json | 12 +- .../alma-fix/990035016180206441.json | 16 +-- .../alma-fix/990041403870206441.json | 2 +- .../alma-fix/990050000600206441.json | 12 +- .../alma-fix/990051708340206441.json | 2 +- .../alma-fix/990052965140206441.json | 4 +- .../alma-fix/990053976760206441.json | 38 +++--- .../alma-fix/990054215550206441.json | 2 +- .../alma-fix/990054301770206441.json | 8 +- .../alma-fix/990054345550206441.json | 64 +++++----- .../alma-fix/990055981810206441.json | 10 +- .../alma-fix/990058434730206441.json | 38 +++--- .../alma-fix/990058567920206441.json | 64 +++++----- .../alma-fix/990059571560206441.json | 4 +- .../alma-fix/990063549080206441.json | 8 +- .../alma-fix/990065341720206441.json | 2 +- .../alma-fix/990075429930206441.json | 22 ++-- .../alma-fix/990075538650206441.json | 6 +- .../alma-fix/990103899140206441.json | 2 +- .../alma-fix/990108873860206441.json | 4 +- .../alma-fix/990109712970206441.json | 44 +++---- .../alma-fix/990114098170206441.json | 2 +- .../alma-fix/990114617880206441.json | 2 +- .../alma-fix/990118562160206441.json | 2 +- .../alma-fix/990122511970206441.json | 2 +- .../alma-fix/990126276700206441.json | 20 +-- .../alma-fix/990136041660206441.json | 2 +- .../alma-fix/990139686910206441.json | 2 +- .../alma-fix/990141342350206441.json | 2 +- .../alma-fix/990143325070206441.json | 2 +- .../alma-fix/990156060190206441.json | 54 ++++---- .../alma-fix/990167595410206441.json | 4 +- .../alma-fix/990171142550206441.json | 8 +- .../alma-fix/990173811970206441.json | 2 +- .../alma-fix/990181275760206441.json | 10 +- .../alma-fix/990182814750206441.json | 2 +- .../alma-fix/990183054020206441.json | 2 +- .../alma-fix/990183958380206441.json | 8 +- .../alma-fix/990189160110206441.json | 34 ++--- .../alma-fix/990193094010206441.json | 2 +- .../alma-fix/990193806600206441.json | 2 +- .../alma-fix/990194668760206441.json | 2 +- .../alma-fix/990194744870206441.json | 6 +- .../alma-fix/990198383780206441.json | 2 +- .../alma-fix/990202474680206441.json | 2 +- .../alma-fix/990204246530206441.json | 4 +- .../alma-fix/990207668220206441.json | 2 +- .../alma-fix/990209515320206441.json | 2 +- .../alma-fix/990209817770206441.json | 2 +- .../alma-fix/990210237770206441.json | 118 +++++++++--------- .../alma-fix/990210285400206441.json | 2 +- .../alma-fix/990210950050206441.json | 2 +- .../alma-fix/990217478660206441.json | 50 ++++---- .../alma-fix/990223521400206441.json | 32 ++--- .../alma-fix/990225056670206441.json | 2 +- .../alma-fix/990366394400206441.json | 2 +- .../alma-fix/990367731740206441.json | 2 +- .../alma-fix/990367761810206441.json | 2 +- .../alma-fix/990368743120206441.json | 2 +- .../resources/alma-fix/99370771475306441.json | 6 +- .../resources/alma-fix/99370782520706441.json | 44 +++---- .../resources/alma-fix/99371014448006441.json | 2 +- .../resources/alma-fix/99371050452706441.json | 2 +- .../resources/alma-fix/99371530278506441.json | 2 +- .../resources/alma-fix/99372423490706441.json | 2 +- 72 files changed, 440 insertions(+), 440 deletions(-) diff --git a/src/main/resources/alma/fix/macros.fix b/src/main/resources/alma/fix/macros.fix index 2935a4718..99735566b 100644 --- a/src/main/resources/alma/fix/macros.fix +++ b/src/main/resources/alma/fix/macros.fix @@ -260,7 +260,7 @@ do put_macro("opacLink") split_field("$i.@opacLinkZdbId","\\{zdbid\\}") copy_field("$i.@iz", "$i.@opacLinkHbzId") lookup("$i.@opacLinkHbzId","isil2opac_hbzId", delete:"true") - split_field("$i.@opacLinkHbzId","\\{hbzId\\}") + split_field("$i.@opacLinkHbzId","\\{hbzid\\}") if exists("$i.@opacLinkZdbId.1") paste("hasItem[].$last.opacLink","$i.@opacLinkZdbId.1","zdbId","$i.@opacLinkZdbId.2",join_char:"") elsif exists("$i.@opacLinkHbzId.1") diff --git a/src/test/resources/alma-fix/990001412590206441.json b/src/test/resources/alma-fix/990001412590206441.json index 45eee489a..ef91142da 100644 --- a/src/test/resources/alma-fix/990001412590206441.json +++ b/src/test/resources/alma-fix/990001412590206441.json @@ -114,7 +114,7 @@ "serialNumber" : "W00348898", "currentLibrary" : "W0001", "currentLocation" : "04", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT000161712", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -128,7 +128,7 @@ "serialNumber" : "881294001", "currentLibrary" : "F0001", "currentLocation" : "03", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000161712", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000161712&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -142,7 +142,7 @@ "serialNumber" : "02922183", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000161712", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -156,7 +156,7 @@ "serialNumber" : "02922177", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000161712", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -170,7 +170,7 @@ "serialNumber" : "0130003X", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000161712", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -184,7 +184,7 @@ "serialNumber" : ":94002663930", "currentLibrary" : "T0010", "currentLocation" : "kA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01HT000161712", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT000161712&local_base=STR01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", @@ -239,7 +239,7 @@ "serialNumber" : "408422401", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT000161712", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -253,7 +253,7 @@ "serialNumber" : "PP4/111", "currentLibrary" : "38", "currentLocation" : "38-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000161712", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -267,7 +267,7 @@ "serialNumber" : "48 QU 313", "currentLibrary" : "ZB", "currentLocation" : "ZB_GMAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000161712", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000161712&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -281,7 +281,7 @@ "serialNumber" : "20ICM1270", "currentLibrary" : "S0001", "currentLocation" : "ERW", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT000161712", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -295,7 +295,7 @@ "serialNumber" : "ICM1034", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT000161712", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -307,7 +307,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT000161712", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990011470300206441.json b/src/test/resources/alma-fix/990011470300206441.json index a30ba0a80..9ff8981e7 100644 --- a/src/test/resources/alma-fix/990011470300206441.json +++ b/src/test/resources/alma-fix/990011470300206441.json @@ -96,7 +96,7 @@ "serialNumber" : "0102.3750.19", "currentLibrary" : "T0011", "currentLocation" : "38", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT003109553", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003109553", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -110,7 +110,7 @@ "serialNumber" : "Z17-045835", "currentLibrary" : "PHIL", "currentLocation" : "PHIL_PBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT003109553", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003109553&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", @@ -122,7 +122,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT003109553", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003109553", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990014830510206441.json b/src/test/resources/alma-fix/990014830510206441.json index 57519adf5..80a2a7eab 100644 --- a/src/test/resources/alma-fix/990014830510206441.json +++ b/src/test/resources/alma-fix/990014830510206441.json @@ -99,7 +99,7 @@ "serialNumber" : "0017.4679.62", "currentLibrary" : "T0011", "currentLocation" : "21", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT003864492", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003864492", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -127,7 +127,7 @@ "serialNumber" : "KNLC1469", "currentLibrary" : "E0001", "currentLocation" : "E07IM", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT003864492", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT003864492&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -139,7 +139,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT003864492", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003864492", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990016782920206441.json b/src/test/resources/alma-fix/990016782920206441.json index c5f67fc0b..8c1191b8c 100644 --- a/src/test/resources/alma-fix/990016782920206441.json +++ b/src/test/resources/alma-fix/990016782920206441.json @@ -88,7 +88,7 @@ "serialNumber" : "E1000000037300", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT004285445", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT004285445&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -115,7 +115,7 @@ "serialNumber" : "012979677107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT004285445", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT004285445%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -129,7 +129,7 @@ "serialNumber" : "Z156-011049", "currentLibrary" : "MUPA", "currentLocation" : "MUPA_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT004285445", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004285445&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-286#!", "isil" : "DE-6-286", diff --git a/src/test/resources/alma-fix/990021367710206441.json b/src/test/resources/alma-fix/990021367710206441.json index 812530408..eebd1746b 100644 --- a/src/test/resources/alma-fix/990021367710206441.json +++ b/src/test/resources/alma-fix/990021367710206441.json @@ -123,7 +123,7 @@ "serialNumber" : "0012.7330.22", "currentLibrary" : "T0011", "currentLocation" : "MAG", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT005207972", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005207972", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -148,7 +148,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT005207972", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005207972", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990021974470206441.json b/src/test/resources/alma-fix/990021974470206441.json index 9e35f6665..c227ace28 100644 --- a/src/test/resources/alma-fix/990021974470206441.json +++ b/src/test/resources/alma-fix/990021974470206441.json @@ -107,7 +107,7 @@ "serialNumber" : "604:016874", "currentLibrary" : "604", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT005271161", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT005271161&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-604#!", "isil" : "DE-82-604", @@ -121,7 +121,7 @@ "serialNumber" : "0166.4021.80", "currentLibrary" : "T0011", "currentLocation" : "MAG", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT005271161", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005271161", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -162,7 +162,7 @@ "serialNumber" : "Gc757", "currentLibrary" : "38", "currentLocation" : "38-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT005271161", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT005271161", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -176,7 +176,7 @@ "serialNumber" : "208/0032920", "currentLibrary" : "38-208", "currentLocation" : "38-208-VR", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT005271161", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT005271161", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-208#!", "isil" : "DE-38-208", @@ -190,7 +190,7 @@ "serialNumber" : "Z25-033835", "currentLibrary" : "RWS1", "currentLocation" : "RWS1_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT005271161", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT005271161&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-016#!", "isil" : "DE-6-016", diff --git a/src/test/resources/alma-fix/990026405480206441.json b/src/test/resources/alma-fix/990026405480206441.json index cbb8832c3..4c8a6b39a 100644 --- a/src/test/resources/alma-fix/990026405480206441.json +++ b/src/test/resources/alma-fix/990026405480206441.json @@ -111,7 +111,7 @@ "serialNumber" : "006392301", "currentLibrary" : "cdd", "currentLocation" : "HB", - "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID={hbzid}HT006813395", + "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT006813395", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", @@ -125,7 +125,7 @@ "serialNumber" : "06542653", "currentLibrary" : "R0002", "currentLocation" : "00002000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT006813395", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Zw1#!", "isil" : "DE-Zw1", @@ -139,7 +139,7 @@ "serialNumber" : "07258981", "currentLibrary" : "R0002", "currentLocation" : "00002000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT006813395", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Zw1#!", "isil" : "DE-Zw1", @@ -166,7 +166,7 @@ "serialNumber" : "420/030051", "currentLibrary" : "38-420", "currentLocation" : "38-420-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT006813395", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT006813395", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-420#!", "isil" : "DE-38-420", @@ -180,7 +180,7 @@ "serialNumber" : "WUJ1407(3)", "currentLibrary" : "P0001", "currentLocation" : "51", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT006813395", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006813395", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -192,7 +192,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT006813395", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006813395", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990035016180206441.json b/src/test/resources/alma-fix/990035016180206441.json index 49bf68dff..93b5ba3ec 100644 --- a/src/test/resources/alma-fix/990035016180206441.json +++ b/src/test/resources/alma-fix/990035016180206441.json @@ -85,7 +85,7 @@ "serialNumber" : "456292-10", "currentLibrary" : "W0001", "currentLocation" : "06", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT008733617", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -140,7 +140,7 @@ "serialNumber" : "CJU1482_D", "currentLibrary" : "D0001", "currentLocation" : "D98", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT008733617", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -154,7 +154,7 @@ "serialNumber" : "DDZR1026", "currentLibrary" : "E0001", "currentLocation" : "E06", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT008733617", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -168,7 +168,7 @@ "serialNumber" : "LS/0039447", "currentLibrary" : "38", "currentLocation" : "38-LS", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT008733617", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -182,7 +182,7 @@ "serialNumber" : "YB 442-19760", "currentLibrary" : "ZUP", "currentLocation" : "ZUP_MIKRO", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT008733617", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-Z#!", "isil" : "DE-6-Z", @@ -196,7 +196,7 @@ "serialNumber" : "786164-10", "currentLibrary" : "S0001", "currentLocation" : "ARMED", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT008733617", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -210,7 +210,7 @@ "serialNumber" : "734866-10", "currentLibrary" : "P0001", "currentLocation" : "93", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT008733617", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -222,7 +222,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT008733617", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990041403870206441.json b/src/test/resources/alma-fix/990041403870206441.json index 682e733e4..7ff581936 100644 --- a/src/test/resources/alma-fix/990041403870206441.json +++ b/src/test/resources/alma-fix/990041403870206441.json @@ -84,7 +84,7 @@ "serialNumber" : "11M1706", "currentLibrary" : "38-HLS", "currentLocation" : "38-HLS-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT009965981", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT009965981", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", diff --git a/src/test/resources/alma-fix/990050000600206441.json b/src/test/resources/alma-fix/990050000600206441.json index 84babfd50..020e265fa 100644 --- a/src/test/resources/alma-fix/990050000600206441.json +++ b/src/test/resources/alma-fix/990050000600206441.json @@ -170,7 +170,7 @@ "callNumber" : "mat 03-252/", "currentLibrary" : "RL002", "currentLocation" : "ALLLD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT006855611", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -184,7 +184,7 @@ "serialNumber" : "657775-10", "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT006855611", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006855611", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -208,7 +208,7 @@ "currentLibrary" : "R3042", "currentLocation" : "ALL42", "callNumber" : "MAS 024/012", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT006855611", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -221,7 +221,7 @@ "currentLibrary" : "R3048", "currentLocation" : "ALL48", "callNumber" : "MAT Furl", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT006855611", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -234,7 +234,7 @@ "currentLibrary" : "E0001", "currentLocation" : "EHS", "callNumber" : "TBM1318 <>", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT006855611", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -247,7 +247,7 @@ "currentLibrary" : "D0001", "currentLocation" : "DHS", "callNumber" : "TBM1318_d <>", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT006855611", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", diff --git a/src/test/resources/alma-fix/990051708340206441.json b/src/test/resources/alma-fix/990051708340206441.json index d70869169..fdfe59ef4 100644 --- a/src/test/resources/alma-fix/990051708340206441.json +++ b/src/test/resources/alma-fix/990051708340206441.json @@ -67,7 +67,7 @@ "serialNumber" : "115266-10", "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT009976241", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT009976241", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990052965140206441.json b/src/test/resources/alma-fix/990052965140206441.json index 6ad1d1b92..5ba18743f 100644 --- a/src/test/resources/alma-fix/990052965140206441.json +++ b/src/test/resources/alma-fix/990052965140206441.json @@ -129,7 +129,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT002529477", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT002529477%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -141,7 +141,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT002529477", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT002529477", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990053976760206441.json b/src/test/resources/alma-fix/990053976760206441.json index a247447fe..427b155ab 100644 --- a/src/test/resources/alma-fix/990053976760206441.json +++ b/src/test/resources/alma-fix/990053976760206441.json @@ -221,7 +221,7 @@ "serialNumber" : "1148014-10", "currentLibrary" : "D0001", "currentLocation" : "D30", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT000312236", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -235,7 +235,7 @@ "serialNumber" : "M08 7898", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000312236", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000312236&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -249,7 +249,7 @@ "serialNumber" : "M08 7893", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000312236", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000312236&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -263,7 +263,7 @@ "serialNumber" : "M08 7897", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000312236", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000312236&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -277,7 +277,7 @@ "serialNumber" : "M08 7895", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000312236", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000312236&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -291,7 +291,7 @@ "serialNumber" : "M08 7896", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000312236", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000312236&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -305,7 +305,7 @@ "serialNumber" : "M08 7894", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000312236", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000312236&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -319,7 +319,7 @@ "serialNumber" : "9089785-10", "currentLibrary" : "S0001", "currentLocation" : "FMZS", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT000312236", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -332,7 +332,7 @@ "currentLibrary" : "W0001", "currentLocation" : "04", "callNumber" : "67P9", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT000312236", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -345,7 +345,7 @@ "currentLibrary" : "R3048", "currentLocation" : "ZSPHY", "callNumber" : "PHY Z 1646", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT000312236", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -358,7 +358,7 @@ "currentLibrary" : "R3048", "currentLocation" : "ZSPHY", "callNumber" : "PHY Z 1646", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT000312236", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -371,7 +371,7 @@ "currentLibrary" : "RL002", "currentLocation" : "FZSLD", "callNumber" : "fys 02-3", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT000312236", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -384,7 +384,7 @@ "currentLibrary" : "ZB", "currentLocation" : "0", "callNumber" : "Z5725", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT000312236", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT000312236&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -435,7 +435,7 @@ "currentLibrary" : "X0001", "currentLocation" : "03P", "callNumber" : "phy z p 455", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT000312236", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -448,7 +448,7 @@ "currentLibrary" : "38-HWA", "currentLocation" : "38-HWA-ZMA", "callNumber" : "EWA Z666", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000312236", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -461,7 +461,7 @@ "currentLibrary" : "PHY", "currentLocation" : "PHY_ZS", "callNumber" : "DP", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000312236", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-023#!", "isil" : "DE-6-023", @@ -474,7 +474,7 @@ "currentLibrary" : "BEK", "currentLocation" : "BEK_ZS", "callNumber" : "Z 1011", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000312236", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-123#!", "isil" : "DE-6-123", @@ -487,7 +487,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_ZS", "callNumber" : "Z Qu 4447", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000312236", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -500,7 +500,7 @@ "currentLibrary" : "P0001", "currentLocation" : "40", "callNumber" : "67p54", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT000312236", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990054215550206441.json b/src/test/resources/alma-fix/990054215550206441.json index 1ceaad38b..57db0f34f 100644 --- a/src/test/resources/alma-fix/990054215550206441.json +++ b/src/test/resources/alma-fix/990054215550206441.json @@ -176,7 +176,7 @@ "currentLibrary" : "38", "currentLocation" : "38-ZS", "callNumber" : "Sh13", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT002619538", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT002619538", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", diff --git a/src/test/resources/alma-fix/990054301770206441.json b/src/test/resources/alma-fix/990054301770206441.json index c14ee676e..408fda6de 100644 --- a/src/test/resources/alma-fix/990054301770206441.json +++ b/src/test/resources/alma-fix/990054301770206441.json @@ -205,7 +205,7 @@ "currentLibrary" : "R0003", "currentLocation" : "kA", "callNumber" : "Per. 5502", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT003176544", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT003176544%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -218,7 +218,7 @@ "currentLibrary" : "T0010", "currentLocation" : "kA", "callNumber" : "Z 1703", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01HT003176544", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT003176544&local_base=STR01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", @@ -231,7 +231,7 @@ "currentLibrary" : "38", "currentLocation" : "38-ZS", "callNumber" : "EkFOL577", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT003176544", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT003176544", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -244,7 +244,7 @@ "currentLibrary" : "ALKU", "currentLocation" : "ALKU_ZS", "callNumber" : "Fr 88", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT003176544", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003176544&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-139a#!", "isil" : "DE-6-139a", diff --git a/src/test/resources/alma-fix/990054345550206441.json b/src/test/resources/alma-fix/990054345550206441.json index 01ec868fc..d0ac4e312 100644 --- a/src/test/resources/alma-fix/990054345550206441.json +++ b/src/test/resources/alma-fix/990054345550206441.json @@ -229,7 +229,7 @@ "callNumber" : "Einzelsign.", "currentLibrary" : "ZB", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT003497718", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT003497718&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -243,7 +243,7 @@ "serialNumber" : "497335801", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -257,7 +257,7 @@ "serialNumber" : "497047701", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -270,7 +270,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -284,7 +284,7 @@ "serialNumber" : "496523801", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -298,7 +298,7 @@ "serialNumber" : "496976701", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -311,7 +311,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -324,7 +324,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -337,7 +337,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -350,7 +350,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -363,7 +363,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -376,7 +376,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -389,7 +389,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -402,7 +402,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -416,7 +416,7 @@ "serialNumber" : "496805001", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -429,7 +429,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -443,7 +443,7 @@ "serialNumber" : "496725001", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -457,7 +457,7 @@ "serialNumber" : "497056301", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -470,7 +470,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -483,7 +483,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -497,7 +497,7 @@ "serialNumber" : "496626601", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -511,7 +511,7 @@ "serialNumber" : "497168401", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -525,7 +525,7 @@ "serialNumber" : "496523701", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -538,7 +538,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -551,7 +551,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -564,7 +564,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -577,7 +577,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -590,7 +590,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -603,7 +603,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT003497718", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -627,7 +627,7 @@ "currentLibrary" : "ZB", "currentLocation" : "0", "callNumber" : "Md5099", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT003497718", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT003497718&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -640,7 +640,7 @@ "currentLibrary" : "R0001", "currentLocation" : "kA", "callNumber" : "Z 5354", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT003497718", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT003497718%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -679,7 +679,7 @@ "currentLibrary" : "38-445", "currentLocation" : "38-445-ZS", "callNumber" : "Ff 176/52", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT003497718", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-445#!", "isil" : "DE-38-445", diff --git a/src/test/resources/alma-fix/990055981810206441.json b/src/test/resources/alma-fix/990055981810206441.json index 18c7f1f4f..c215bc4bd 100644 --- a/src/test/resources/alma-fix/990055981810206441.json +++ b/src/test/resources/alma-fix/990055981810206441.json @@ -279,7 +279,7 @@ "serialNumber" : "ULB0054169", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT007048176", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -293,7 +293,7 @@ "serialNumber" : "ULB0041793", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT007048176", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -307,7 +307,7 @@ "serialNumber" : "ULB0041794", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT007048176", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -358,7 +358,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LS", "callNumber" : "WES 0.1:55", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT007048176", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -371,7 +371,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LS", "callNumber" : "WES 0.1:55", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT007048176", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990058434730206441.json b/src/test/resources/alma-fix/990058434730206441.json index dc3ee63f5..c2809ef66 100644 --- a/src/test/resources/alma-fix/990058434730206441.json +++ b/src/test/resources/alma-fix/990058434730206441.json @@ -154,7 +154,7 @@ "serialNumber" : "000565227000010", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT000893437", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -168,7 +168,7 @@ "serialNumber" : "KN41$01478356", "currentLibrary" : "KP001", "currentLocation" : "MMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01HT000893437", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT000893437&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -234,7 +234,7 @@ "serialNumber" : "707452803107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000893437", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000893437%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -248,7 +248,7 @@ "serialNumber" : "0176.4077.46", "currentLibrary" : "T0011", "currentLocation" : "31", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000893437", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -262,7 +262,7 @@ "serialNumber" : "0150.6604.89", "currentLibrary" : "T0011", "currentLocation" : "80", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000893437", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -374,7 +374,7 @@ "serialNumber" : "LBB1092", "currentLibrary" : "E0001", "currentLocation" : "E11", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT000893437", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -388,7 +388,7 @@ "serialNumber" : "402856101", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT000893437", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -402,7 +402,7 @@ "serialNumber" : "402856102", "currentLibrary" : "X0025", "currentLocation" : "25", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT000893437", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -416,7 +416,7 @@ "serialNumber" : "402856103", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT000893437", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -430,7 +430,7 @@ "serialNumber" : "1B4842", "currentLibrary" : "38", "currentLocation" : "38-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000893437", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -444,7 +444,7 @@ "serialNumber" : "TEMP3414", "currentLibrary" : "38-622", "currentLocation" : "38-622-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000893437", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-622#!", "isil" : "DE-38-622", @@ -458,7 +458,7 @@ "serialNumber" : "Z140-016417", "currentLibrary" : "IJD", "currentLocation" : "IJD_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000893437", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-119#!", "isil" : "DE-6-119", @@ -472,7 +472,7 @@ "serialNumber" : "3G 18788", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000893437", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -486,7 +486,7 @@ "serialNumber" : "Z33-001736", "currentLibrary" : "EVT", "currentLocation" : "EVT_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000893437", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-006#!", "isil" : "DE-6-006", @@ -500,7 +500,7 @@ "serialNumber" : "Z30-002690", "currentLibrary" : "KATJ", "currentLocation" : "KATJ_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000893437", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-011#!", "isil" : "DE-6-011", @@ -514,7 +514,7 @@ "serialNumber" : "Z15-000825", "currentLibrary" : "FBH", "currentLocation" : "FBH_KPBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000893437", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", @@ -528,7 +528,7 @@ "serialNumber" : "21INR1017", "currentLibrary" : "S0001", "currentLocation" : "H5", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT000893437", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -542,7 +542,7 @@ "serialNumber" : "INR1067", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT000893437", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -609,7 +609,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000893437", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990058567920206441.json b/src/test/resources/alma-fix/990058567920206441.json index 9b7d52e43..9eaa09264 100644 --- a/src/test/resources/alma-fix/990058567920206441.json +++ b/src/test/resources/alma-fix/990058567920206441.json @@ -167,7 +167,7 @@ "serialNumber" : "000572482000010", "currentLibrary" : "W0001", "currentLocation" : "47", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT000909138", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -194,7 +194,7 @@ "serialNumber" : "750333401", "currentLibrary" : "F0001", "currentLocation" : "00", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000909138", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -208,7 +208,7 @@ "serialNumber" : "101591605", "currentLibrary" : "R3032", "currentLocation" : "FHSOZ", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT000909138", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -222,7 +222,7 @@ "serialNumber" : "101591593", "currentLibrary" : "R3032", "currentLocation" : "FHSOZ", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT000909138", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -236,7 +236,7 @@ "serialNumber" : "C130374", "currentLibrary" : "RL002", "currentLocation" : "FHELD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT000909138", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -250,7 +250,7 @@ "serialNumber" : "ZA5799-239=2", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_TK", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT000909138", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT000909138&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -264,7 +264,7 @@ "serialNumber" : "701883814107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000909138", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000909138%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -278,7 +278,7 @@ "serialNumber" : "02130032", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000909138", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000909138%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -292,7 +292,7 @@ "serialNumber" : ":94000371150", "currentLibrary" : "T0010", "currentLocation" : "RU", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01HT000909138", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT000909138&local_base=STR01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", @@ -334,7 +334,7 @@ "serialNumber" : "0163.8657.33", "currentLibrary" : "T0011", "currentLocation" : "38", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000909138", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -348,7 +348,7 @@ "serialNumber" : "0040.6826.86", "currentLibrary" : "T0011", "currentLocation" : "12", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000909138", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -362,7 +362,7 @@ "serialNumber" : "0089.0881.26", "currentLibrary" : "T0011", "currentLocation" : "39", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000909138", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -513,7 +513,7 @@ "serialNumber" : "DE00322121", "currentLibrary" : "D0001", "currentLocation" : "D21", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT000909138", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -527,7 +527,7 @@ "serialNumber" : "ODU1117", "currentLibrary" : "E0001", "currentLocation" : "E11", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT000909138", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -541,7 +541,7 @@ "serialNumber" : "021910701", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT000909138", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -555,7 +555,7 @@ "serialNumber" : "M18 8508", "currentLibrary" : "RL001", "currentLocation" : "MAGKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000909138", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -569,7 +569,7 @@ "serialNumber" : "77/235", "currentLibrary" : "38-HWA", "currentLocation" : "38-HWA-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000909138", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -583,7 +583,7 @@ "serialNumber" : "132/023307", "currentLibrary" : "38-132", "currentLocation" : "38-132-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000909138", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-132#!", "isil" : "DE-38-132", @@ -597,7 +597,7 @@ "serialNumber" : "2G8474", "currentLibrary" : "38", "currentLocation" : "38-AWM", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000909138", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -611,7 +611,7 @@ "serialNumber" : "Z16-144095", "currentLibrary" : "FBH", "currentLocation" : "FBH_HSBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000909138", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", @@ -625,7 +625,7 @@ "serialNumber" : "3E 45866", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000909138", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -639,7 +639,7 @@ "serialNumber" : "MD 1700/1", "currentLibrary" : "SOZ", "currentLocation" : "SOZ_MAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000909138", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-A#!", "isil" : "DE-6-A", @@ -653,7 +653,7 @@ "serialNumber" : "Z31-116242", "currentLibrary" : "KATH", "currentLocation" : "KATH_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000909138", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-069#!", "isil" : "DE-6-069", @@ -667,7 +667,7 @@ "serialNumber" : "Z17-002094", "currentLibrary" : "PHIL", "currentLocation" : "PHIL_PBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000909138", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", @@ -681,7 +681,7 @@ "serialNumber" : "Z30-092527", "currentLibrary" : "KATD", "currentLocation" : "KATD_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000909138", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-011#!", "isil" : "DE-6-011", @@ -695,7 +695,7 @@ "serialNumber" : "Z19-001146", "currentLibrary" : "FBH", "currentLocation" : "FBH_DGBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000909138", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", @@ -709,7 +709,7 @@ "serialNumber" : "31OYV2405", "currentLibrary" : "S0001", "currentLocation" : "ERW", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT000909138", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -723,7 +723,7 @@ "serialNumber" : "PBZ1028", "currentLibrary" : "P0001", "currentLocation" : "31", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT000909138", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -735,7 +735,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "F0001", "currentLocation" : "30", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000909138", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -747,7 +747,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000909138", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -759,7 +759,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT000909138", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -771,7 +771,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT000909138", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990059571560206441.json b/src/test/resources/alma-fix/990059571560206441.json index 83c21dfaa..122d09f18 100644 --- a/src/test/resources/alma-fix/990059571560206441.json +++ b/src/test/resources/alma-fix/990059571560206441.json @@ -132,7 +132,7 @@ "serialNumber" : "FK162-29+2", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_2", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT001039253", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT001039253&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -146,7 +146,7 @@ "serialNumber" : "33WBT1003(2)-29", "currentLibrary" : "DEUTZ", "currentLocation" : "33", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT001039253", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT001039253", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", diff --git a/src/test/resources/alma-fix/990063549080206441.json b/src/test/resources/alma-fix/990063549080206441.json index d7d82428b..67a1f7e39 100644 --- a/src/test/resources/alma-fix/990063549080206441.json +++ b/src/test/resources/alma-fix/990063549080206441.json @@ -122,7 +122,7 @@ "serialNumber" : "000226365000010", "currentLibrary" : "W0001", "currentLocation" : "04", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT003538502", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT003538502", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -135,7 +135,7 @@ "callNumber" : "ZZN/APSA", "currentLibrary" : "F0001", "currentLocation" : "03", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=HT003538502", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT003538502&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -148,7 +148,7 @@ "serialNumber" : "261819-10", "currentLibrary" : "R3032", "currentLocation" : "AUS32", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT003538502", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT003538502", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -190,7 +190,7 @@ "serialNumber" : "125/0003749", "currentLibrary" : "38-125", "currentLocation" : "38-125-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT003538502", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT003538502", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-125#!", "isil" : "DE-38-125", diff --git a/src/test/resources/alma-fix/990065341720206441.json b/src/test/resources/alma-fix/990065341720206441.json index 9cf4adbeb..7fd25846f 100644 --- a/src/test/resources/alma-fix/990065341720206441.json +++ b/src/test/resources/alma-fix/990065341720206441.json @@ -89,7 +89,7 @@ "serialNumber" : "Z 7835-41_42", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT004764408", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004764408&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990075429930206441.json b/src/test/resources/alma-fix/990075429930206441.json index 2e7ca13e4..2d844e9fd 100644 --- a/src/test/resources/alma-fix/990075429930206441.json +++ b/src/test/resources/alma-fix/990075429930206441.json @@ -97,7 +97,7 @@ "serialNumber" : "702586422107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000944190", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000944190%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -111,7 +111,7 @@ "serialNumber" : "011813549107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT000944190", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000944190%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -125,7 +125,7 @@ "serialNumber" : "78BDDS1079", "currentLibrary" : "DEUTZ", "currentLocation" : "78", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT000944190", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -138,7 +138,7 @@ "callNumber" : "a4117-1934,3/11", "currentLibrary" : "T0011", "currentLocation" : "MAG", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000944190", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -235,7 +235,7 @@ "serialNumber" : "434/0007087", "currentLibrary" : "38-434", "currentLocation" : "38-434-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000944190", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-434#!", "isil" : "DE-38-434", @@ -249,7 +249,7 @@ "serialNumber" : "432/0014231", "currentLibrary" : "38-432", "currentLocation" : "38-432-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT000944190", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-432#!", "isil" : "DE-38-432", @@ -263,7 +263,7 @@ "serialNumber" : "Z114-006972", "currentLibrary" : "ENGL", "currentLocation" : "ENGL_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000944190", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-020#!", "isil" : "DE-6-020", @@ -277,7 +277,7 @@ "serialNumber" : "Z56-017587", "currentLibrary" : "GERM", "currentLocation" : "GERM_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000944190", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-246#!", "isil" : "DE-6-246", @@ -291,7 +291,7 @@ "serialNumber" : "Z 430-1934", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT000944190", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -314,7 +314,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT000944190", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -326,7 +326,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT000944190", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990075538650206441.json b/src/test/resources/alma-fix/990075538650206441.json index 8c3f3ac0b..2defcfb1e 100644 --- a/src/test/resources/alma-fix/990075538650206441.json +++ b/src/test/resources/alma-fix/990075538650206441.json @@ -133,7 +133,7 @@ "serialNumber" : "KN41$00285359", "currentLibrary" : "KP001", "currentLocation" : "MMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01HT003184116", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT003184116&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -147,7 +147,7 @@ "serialNumber" : "KRH1645", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT003184116", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT003184116", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -172,7 +172,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT003184116", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT003184116", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990103899140206441.json b/src/test/resources/alma-fix/990103899140206441.json index cb05b542b..6e4d2339c 100644 --- a/src/test/resources/alma-fix/990103899140206441.json +++ b/src/test/resources/alma-fix/990103899140206441.json @@ -113,7 +113,7 @@ "currentLibrary" : "R0003", "currentLocation" : "kA", "callNumber" : "Per. 5157", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT012237361", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT012237361%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", diff --git a/src/test/resources/alma-fix/990108873860206441.json b/src/test/resources/alma-fix/990108873860206441.json index 370de9796..e16e864c6 100644 --- a/src/test/resources/alma-fix/990108873860206441.json +++ b/src/test/resources/alma-fix/990108873860206441.json @@ -152,7 +152,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0003", "currentLocation" : "kA", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT012734833", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT012734833%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -164,7 +164,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0001", "currentLocation" : "kA", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT012734833", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT012734833%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", diff --git a/src/test/resources/alma-fix/990109712970206441.json b/src/test/resources/alma-fix/990109712970206441.json index 7961d01fd..f9b17a9c1 100644 --- a/src/test/resources/alma-fix/990109712970206441.json +++ b/src/test/resources/alma-fix/990109712970206441.json @@ -219,7 +219,7 @@ "serialNumber" : "1103875-50", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -233,7 +233,7 @@ "serialNumber" : "1103875-30", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -247,7 +247,7 @@ "serialNumber" : "1103875-10", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -261,7 +261,7 @@ "serialNumber" : "1103875-20", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -274,7 +274,7 @@ "callNumber" : "KJIB3790", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -288,7 +288,7 @@ "serialNumber" : "1103875-40", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -302,7 +302,7 @@ "serialNumber" : "1103875-60", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -315,7 +315,7 @@ "callNumber" : "KJIB3790", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -484,7 +484,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT012819873", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -497,7 +497,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT012819873", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -510,7 +510,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT012819873", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -523,7 +523,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT012819873", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -536,7 +536,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT012819873", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -549,7 +549,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT012819873", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -562,7 +562,7 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT012819873", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -576,7 +576,7 @@ "serialNumber" : "ULB0072893", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT012819873", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT012819873&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -590,7 +590,7 @@ "serialNumber" : "6-00746409-0", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT012819873", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT012819873&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -603,7 +603,7 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "callNumber" : "KJIB3585", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -616,7 +616,7 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "callNumber" : "KJIB3790", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT012819873", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -692,7 +692,7 @@ "currentLibrary" : "RL001", "currentLocation" : "FRHKO", "callNumber" : "MU/C 2014 115", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT012819873", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT012819873&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -705,7 +705,7 @@ "currentLibrary" : "38-430", "currentLocation" : "38-430-ZS", "callNumber" : "430/Bg/Beethoven005", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT012819873", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-430#!", "isil" : "DE-38-430", @@ -718,7 +718,7 @@ "currentLibrary" : "38", "currentLocation" : "38-ZS", "callNumber" : "XD475", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT012819873", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", diff --git a/src/test/resources/alma-fix/990114098170206441.json b/src/test/resources/alma-fix/990114098170206441.json index 79c708bce..7d525dc9c 100644 --- a/src/test/resources/alma-fix/990114098170206441.json +++ b/src/test/resources/alma-fix/990114098170206441.json @@ -143,7 +143,7 @@ "serialNumber" : "Z31-050265", "currentLibrary" : "KATH", "currentLocation" : "KATH_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT013083243", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT013083243&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-069#!", "isil" : "DE-6-069", diff --git a/src/test/resources/alma-fix/990114617880206441.json b/src/test/resources/alma-fix/990114617880206441.json index 0ee09638b..2a81bd149 100644 --- a/src/test/resources/alma-fix/990114617880206441.json +++ b/src/test/resources/alma-fix/990114617880206441.json @@ -90,7 +90,7 @@ "callNumber" : "qro/0011(1902)", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT013135581", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT013135581", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990118562160206441.json b/src/test/resources/alma-fix/990118562160206441.json index 104b0ddf5..ae77b5518 100644 --- a/src/test/resources/alma-fix/990118562160206441.json +++ b/src/test/resources/alma-fix/990118562160206441.json @@ -96,7 +96,7 @@ "serialNumber" : "912479-10", "currentLibrary" : "D0001", "currentLocation" : "D98", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT013532539", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT013532539&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", diff --git a/src/test/resources/alma-fix/990122511970206441.json b/src/test/resources/alma-fix/990122511970206441.json index 550a9ecc6..18b729469 100644 --- a/src/test/resources/alma-fix/990122511970206441.json +++ b/src/test/resources/alma-fix/990122511970206441.json @@ -77,7 +77,7 @@ "serialNumber" : "KN38$0000066609", "currentLibrary" : "Z9038", "currentLocation" : "MZ2V", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number={hbzid}&local_base=MHK01TT000075751", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=TT000075751&local_base=MHK01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", diff --git a/src/test/resources/alma-fix/990126276700206441.json b/src/test/resources/alma-fix/990126276700206441.json index 94efb2550..a14f44a44 100644 --- a/src/test/resources/alma-fix/990126276700206441.json +++ b/src/test/resources/alma-fix/990126276700206441.json @@ -113,7 +113,7 @@ "serialNumber" : "W00020777", "currentLibrary" : "W0001", "currentLocation" : "11", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT014015351", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -141,7 +141,7 @@ "serialNumber" : "140533301", "currentLibrary" : "F0001", "currentLocation" : "00", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=HT014015351", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -155,7 +155,7 @@ "serialNumber" : "C372365", "currentLibrary" : "RL002", "currentLocation" : "FHULD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT014015351", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -169,7 +169,7 @@ "serialNumber" : "C372366", "currentLibrary" : "RL002", "currentLocation" : "FHULD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT014015351", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -183,7 +183,7 @@ "serialNumber" : "609:025732", "currentLibrary" : "609", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT014015351", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT014015351&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-609#!", "isil" : "DE-82-609", @@ -238,7 +238,7 @@ "serialNumber" : "109927001", "currentLibrary" : "X0031", "currentLocation" : "31", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT014015351", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -252,7 +252,7 @@ "serialNumber" : "405/0019949", "currentLibrary" : "38-405", "currentLocation" : "38-405-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT014015351", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-405#!", "isil" : "DE-38-405", @@ -266,7 +266,7 @@ "serialNumber" : "467/0000383", "currentLibrary" : "38-467", "currentLocation" : "38-467-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT014015351", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-467#!", "isil" : "DE-38-467", @@ -280,7 +280,7 @@ "serialNumber" : "3H 83949", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT014015351", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014015351&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -294,7 +294,7 @@ "serialNumber" : "21KKZJ1005", "currentLibrary" : "S0001", "currentLocation" : "AR2", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT014015351", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", diff --git a/src/test/resources/alma-fix/990136041660206441.json b/src/test/resources/alma-fix/990136041660206441.json index b4a70c430..f0e256150 100644 --- a/src/test/resources/alma-fix/990136041660206441.json +++ b/src/test/resources/alma-fix/990136041660206441.json @@ -191,7 +191,7 @@ "currentLibrary" : "R0001", "currentLocation" : "kA", "callNumber" : "ZA 4343", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT014388022", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT014388022%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", diff --git a/src/test/resources/alma-fix/990139686910206441.json b/src/test/resources/alma-fix/990139686910206441.json index cf398dc3a..0f87f64c0 100644 --- a/src/test/resources/alma-fix/990139686910206441.json +++ b/src/test/resources/alma-fix/990139686910206441.json @@ -75,7 +75,7 @@ "serialNumber" : "TEMPHBZ60030305140-000010", "currentLibrary" : "Z9036", "currentLocation" : "MGAB", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT014525099", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT014525099&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", diff --git a/src/test/resources/alma-fix/990141342350206441.json b/src/test/resources/alma-fix/990141342350206441.json index 1d7a48eaf..111e51d45 100644 --- a/src/test/resources/alma-fix/990141342350206441.json +++ b/src/test/resources/alma-fix/990141342350206441.json @@ -101,7 +101,7 @@ "serialNumber" : "701025920107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0TT001230001", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22TT001230001%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", diff --git a/src/test/resources/alma-fix/990143325070206441.json b/src/test/resources/alma-fix/990143325070206441.json index f436d0cc6..fd9faef22 100644 --- a/src/test/resources/alma-fix/990143325070206441.json +++ b/src/test/resources/alma-fix/990143325070206441.json @@ -178,7 +178,7 @@ "serialNumber" : "3H 94295", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT014601018", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014601018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990156060190206441.json b/src/test/resources/alma-fix/990156060190206441.json index 9d31db871..27d40effd 100644 --- a/src/test/resources/alma-fix/990156060190206441.json +++ b/src/test/resources/alma-fix/990156060190206441.json @@ -170,7 +170,7 @@ "serialNumber" : "W00159251", "currentLibrary" : "W0001", "currentLocation" : "01", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT015014677", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -184,7 +184,7 @@ "serialNumber" : "KN41$00705907", "currentLibrary" : "KP001", "currentLocation" : "FMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01HT015014677", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT015014677&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -212,7 +212,7 @@ "serialNumber" : "070418501", "currentLibrary" : "F0001", "currentLocation" : "00", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=HT015014677", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -268,7 +268,7 @@ "serialNumber" : "017294901", "currentLibrary" : "cdd", "currentLocation" : "HBEMP", - "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID={hbzid}HT015014677", + "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", @@ -296,7 +296,7 @@ "serialNumber" : "11AVY1078", "currentLibrary" : "LE", "currentLocation" : "LE_Frei", - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22HT015014677", + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT015014677%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", @@ -349,7 +349,7 @@ "serialNumber" : "108249895", "currentLibrary" : "R3032", "currentLocation" : "FH45", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT015014677", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -363,7 +363,7 @@ "serialNumber" : "C168762", "currentLibrary" : "RL002", "currentLocation" : "FHELD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT015014677", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -377,7 +377,7 @@ "serialNumber" : "108260133", "currentLibrary" : "R3032", "currentLocation" : "FH45", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT015014677", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -391,7 +391,7 @@ "serialNumber" : "RD7887-13", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_1", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT015014677", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT015014677&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -405,7 +405,7 @@ "serialNumber" : "013133072107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT015014677", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015014677%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -419,7 +419,7 @@ "serialNumber" : "03531721", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT015014677", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015014677%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -433,7 +433,7 @@ "serialNumber" : "63BCNM1806", "currentLibrary" : "SUED", "currentLocation" : "63", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT015014677", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -461,7 +461,7 @@ "serialNumber" : "0063.6230.87", "currentLibrary" : "T0011", "currentLocation" : "09", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT015014677", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -543,7 +543,7 @@ "serialNumber" : "E00750581", "currentLibrary" : "E0001", "currentLocation" : "E91", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT015014677", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -557,7 +557,7 @@ "serialNumber" : "E00290166", "currentLibrary" : "E0001", "currentLocation" : "E91", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT015014677", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -571,7 +571,7 @@ "serialNumber" : "M20 4473", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT015014677", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -585,7 +585,7 @@ "serialNumber" : "34A7510#a", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT015014677", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -599,7 +599,7 @@ "serialNumber" : "34A7510", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT015014677", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -613,7 +613,7 @@ "serialNumber" : "302/0660013", "currentLibrary" : "38-307", "currentLocation" : "38-307-FHM", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT015014677", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-307#!", "isil" : "DE-38-307", @@ -627,7 +627,7 @@ "serialNumber" : "3F 70852", "currentLibrary" : "ZB", "currentLocation" : "ZB_AUSB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT015014677", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -641,7 +641,7 @@ "serialNumber" : "Z69-036921", "currentLibrary" : "PSY", "currentLocation" : "PSY_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT015014677", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-049#!", "isil" : "DE-6-049", @@ -655,7 +655,7 @@ "serialNumber" : "Z67-064227", "currentLibrary" : "BEK", "currentLocation" : "BEK_MAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT015014677", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-123#!", "isil" : "DE-6-123", @@ -669,7 +669,7 @@ "serialNumber" : "AVY1256", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT015014677", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -683,7 +683,7 @@ "serialNumber" : "00006901", "currentLibrary" : "GE", "currentLocation" : "01", - "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID={hbzid}HT015014677", + "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1010#!", "isil" : "DE-1010", @@ -695,7 +695,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT015014677", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -707,7 +707,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT015014677", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -719,7 +719,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT015014677", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990167595410206441.json b/src/test/resources/alma-fix/990167595410206441.json index 1c3860bea..d4dbc7557 100644 --- a/src/test/resources/alma-fix/990167595410206441.json +++ b/src/test/resources/alma-fix/990167595410206441.json @@ -73,7 +73,7 @@ "serialNumber" : "KMB/1980.7637", "currentLibrary" : "KN3", "currentLocation" : "KN3-KMB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}TT002494857", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=TT002494857", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn3#!", "isil" : "DE-Kn3", @@ -87,7 +87,7 @@ "serialNumber" : "Z143-028930", "currentLibrary" : "PHIL", "currentLocation" : "PHIL_KBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0TT002494857", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,TT002494857&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", diff --git a/src/test/resources/alma-fix/990171142550206441.json b/src/test/resources/alma-fix/990171142550206441.json index 5ddc88a74..e97edb7e0 100644 --- a/src/test/resources/alma-fix/990171142550206441.json +++ b/src/test/resources/alma-fix/990171142550206441.json @@ -131,7 +131,7 @@ "serialNumber" : "63BBV1290", "currentLibrary" : "SUED", "currentLocation" : "63", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT015671602", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT015671602", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -159,7 +159,7 @@ "serialNumber" : "0080.2818.77", "currentLibrary" : "T0011", "currentLocation" : "72", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT015671602", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015671602", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", @@ -186,7 +186,7 @@ "serialNumber" : "39A5443", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT015671602", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015671602", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -198,7 +198,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid}HT015671602", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015671602", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", diff --git a/src/test/resources/alma-fix/990173811970206441.json b/src/test/resources/alma-fix/990173811970206441.json index d3b1986e0..0ad60504a 100644 --- a/src/test/resources/alma-fix/990173811970206441.json +++ b/src/test/resources/alma-fix/990173811970206441.json @@ -142,7 +142,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT015865114", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015865114%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", diff --git a/src/test/resources/alma-fix/990181275760206441.json b/src/test/resources/alma-fix/990181275760206441.json index 025e93a97..9165fb0d9 100644 --- a/src/test/resources/alma-fix/990181275760206441.json +++ b/src/test/resources/alma-fix/990181275760206441.json @@ -105,7 +105,7 @@ "serialNumber" : "00782328", "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}HT016433929", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -119,7 +119,7 @@ "serialNumber" : "00782331", "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}HT016433929", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -133,7 +133,7 @@ "serialNumber" : "00782344", "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}HT016433929", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -147,7 +147,7 @@ "serialNumber" : "00830005", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}HT016433929", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -161,7 +161,7 @@ "serialNumber" : "00830018", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}HT016433929", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", diff --git a/src/test/resources/alma-fix/990182814750206441.json b/src/test/resources/alma-fix/990182814750206441.json index ce44c09b8..395d7feeb 100644 --- a/src/test/resources/alma-fix/990182814750206441.json +++ b/src/test/resources/alma-fix/990182814750206441.json @@ -130,7 +130,7 @@ "serialNumber" : "122113301", "currentLibrary" : "X0001", "currentLocation" : "01", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT016580347", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT016580347", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990183054020206441.json b/src/test/resources/alma-fix/990183054020206441.json index 3593166b2..38c474720 100644 --- a/src/test/resources/alma-fix/990183054020206441.json +++ b/src/test/resources/alma-fix/990183054020206441.json @@ -201,7 +201,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_ZS", "callNumber" : "XB 3534", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT016604323", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016604323&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990183958380206441.json b/src/test/resources/alma-fix/990183958380206441.json index 2c661f017..75f07c432 100644 --- a/src/test/resources/alma-fix/990183958380206441.json +++ b/src/test/resources/alma-fix/990183958380206441.json @@ -185,7 +185,7 @@ "serialNumber" : "6-00113726-8", "currentLibrary" : "ZB", "currentLocation" : "ZB_GMAGL", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT016692738", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -199,7 +199,7 @@ "serialNumber" : "Z193-024182", "currentLibrary" : "ALKU", "currentLocation" : "ALKU_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT016692738", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-139a#!", "isil" : "DE-6-139a", @@ -213,7 +213,7 @@ "serialNumber" : "LUHB1738", "currentLibrary" : "P0001", "currentLocation" : "31", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT016692738", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT016692738", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -225,7 +225,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT016692738", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT016692738", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990189160110206441.json b/src/test/resources/alma-fix/990189160110206441.json index 3bc11d511..637f1bb69 100644 --- a/src/test/resources/alma-fix/990189160110206441.json +++ b/src/test/resources/alma-fix/990189160110206441.json @@ -150,7 +150,7 @@ "serialNumber" : "W00151217", "currentLibrary" : "W0001", "currentLocation" : "AA", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT017015300", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -164,7 +164,7 @@ "serialNumber" : "W00185519", "currentLibrary" : "W0001", "currentLocation" : "20", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT017015300", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -178,7 +178,7 @@ "serialNumber" : "W00328289", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT017015300", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -192,7 +192,7 @@ "serialNumber" : "KN41$01599167", "currentLibrary" : "KP001", "currentLocation" : "FMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01HT017015300", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT017015300&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -206,7 +206,7 @@ "serialNumber" : "KN41$01339152", "currentLibrary" : "KP001", "currentLocation" : "FMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01HT017015300", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT017015300&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", @@ -220,7 +220,7 @@ "serialNumber" : "109382847", "currentLibrary" : "R3032", "currentLocation" : "FHSPO", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT017015300", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -262,7 +262,7 @@ "serialNumber" : "DE00286549", "currentLibrary" : "E0001", "currentLocation" : "E11", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT017015300", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -276,7 +276,7 @@ "serialNumber" : "DE00286550", "currentLibrary" : "E0001", "currentLocation" : "E11", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT017015300", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -290,7 +290,7 @@ "serialNumber" : "M28 6888", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT017015300", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -304,7 +304,7 @@ "serialNumber" : "M31 6464", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT017015300", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -318,7 +318,7 @@ "serialNumber" : "M28 6889", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT017015300", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -332,7 +332,7 @@ "serialNumber" : "Z68-032337", "currentLibrary" : "SPOR", "currentLocation" : "SPOR_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT017015300", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-058#!", "isil" : "DE-6-058", @@ -346,7 +346,7 @@ "serialNumber" : "6-00166844-1", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT017015300", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -360,7 +360,7 @@ "serialNumber" : "6-00166843-9", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT017015300", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -374,7 +374,7 @@ "serialNumber" : "KRRS1643", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT017015300", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -386,7 +386,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT017015300", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -398,7 +398,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT017015300", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990193094010206441.json b/src/test/resources/alma-fix/990193094010206441.json index 295725cc6..74ede0d0c 100644 --- a/src/test/resources/alma-fix/990193094010206441.json +++ b/src/test/resources/alma-fix/990193094010206441.json @@ -82,7 +82,7 @@ "serialNumber" : "63BBV1390", "currentLibrary" : "SUED", "currentLocation" : "63", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT017398609", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT017398609", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", diff --git a/src/test/resources/alma-fix/990193806600206441.json b/src/test/resources/alma-fix/990193806600206441.json index 431e6a692..34b23a192 100644 --- a/src/test/resources/alma-fix/990193806600206441.json +++ b/src/test/resources/alma-fix/990193806600206441.json @@ -81,7 +81,7 @@ "serialNumber" : "6-00245554-2", "currentLibrary" : "HLS", "currentLocation" : "HLS_RAKAR", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT017468042", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017468042&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990194668760206441.json b/src/test/resources/alma-fix/990194668760206441.json index 2cac96eba..6cb36caa2 100644 --- a/src/test/resources/alma-fix/990194668760206441.json +++ b/src/test/resources/alma-fix/990194668760206441.json @@ -89,7 +89,7 @@ "callNumber" : "K347:501", "currentLibrary" : "X0001", "currentLocation" : "16", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT017551955", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT017551955", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990194744870206441.json b/src/test/resources/alma-fix/990194744870206441.json index 23e667248..ad3904a4d 100644 --- a/src/test/resources/alma-fix/990194744870206441.json +++ b/src/test/resources/alma-fix/990194744870206441.json @@ -78,7 +78,7 @@ "serialNumber" : "C004216", "currentLibrary" : "RL002", "currentLocation" : "MNBLD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid}HT017559543", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT017559543", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -92,7 +92,7 @@ "serialNumber" : "M23 9940", "currentLibrary" : "RL001", "currentLocation" : "MAGMK", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT017559543", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -104,7 +104,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT017559543", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", diff --git a/src/test/resources/alma-fix/990198383780206441.json b/src/test/resources/alma-fix/990198383780206441.json index 83a16f161..32d760925 100644 --- a/src/test/resources/alma-fix/990198383780206441.json +++ b/src/test/resources/alma-fix/990198383780206441.json @@ -79,7 +79,7 @@ "serialNumber" : "130028201", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT017775049", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT017775049", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990202474680206441.json b/src/test/resources/alma-fix/990202474680206441.json index af1e2fe88..edfc84b01 100644 --- a/src/test/resources/alma-fix/990202474680206441.json +++ b/src/test/resources/alma-fix/990202474680206441.json @@ -146,7 +146,7 @@ "serialNumber" : "JAP/0008615", "currentLibrary" : "38-459", "currentLocation" : "38-459-KEL", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT018129805", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT018129805", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", diff --git a/src/test/resources/alma-fix/990204246530206441.json b/src/test/resources/alma-fix/990204246530206441.json index 747f6d4a1..3c1410ee7 100644 --- a/src/test/resources/alma-fix/990204246530206441.json +++ b/src/test/resources/alma-fix/990204246530206441.json @@ -177,7 +177,7 @@ "serialNumber" : "04690647", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0HT018295975", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT018295975%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -205,7 +205,7 @@ "serialNumber" : "6-00342474-8", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT018295975", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018295975&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990207668220206441.json b/src/test/resources/alma-fix/990207668220206441.json index 0fc97e61e..dbc2cd1ac 100644 --- a/src/test/resources/alma-fix/990207668220206441.json +++ b/src/test/resources/alma-fix/990207668220206441.json @@ -93,7 +93,7 @@ "serialNumber" : "223:3 AP 16", "currentLibrary" : "223", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0TT003280170", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT003280170&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-223#!", "isil" : "DE-82-223", diff --git a/src/test/resources/alma-fix/990209515320206441.json b/src/test/resources/alma-fix/990209515320206441.json index c8de083b7..df1600881 100644 --- a/src/test/resources/alma-fix/990209515320206441.json +++ b/src/test/resources/alma-fix/990209515320206441.json @@ -104,7 +104,7 @@ "serialNumber" : "KN38$0000049839", "currentLibrary" : "Z9038", "currentLocation" : "MZ8V", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number={hbzid}&local_base=MHK01HT018781534", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=HT018781534&local_base=MHK01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", diff --git a/src/test/resources/alma-fix/990209817770206441.json b/src/test/resources/alma-fix/990209817770206441.json index 1a1f6f2c3..36feb4ad8 100644 --- a/src/test/resources/alma-fix/990209817770206441.json +++ b/src/test/resources/alma-fix/990209817770206441.json @@ -168,7 +168,7 @@ "serialNumber" : "6-00415520-5", "currentLibrary" : "ZB", "currentLocation" : "ZB_GKL", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT018811791", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018811791&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990210237770206441.json b/src/test/resources/alma-fix/990210237770206441.json index fa1551db1..7568fe84c 100644 --- a/src/test/resources/alma-fix/990210237770206441.json +++ b/src/test/resources/alma-fix/990210237770206441.json @@ -88,7 +88,7 @@ "serialNumber" : "112628-550", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -102,7 +102,7 @@ "serialNumber" : "112628-180", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -116,7 +116,7 @@ "serialNumber" : "112628-540", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -130,7 +130,7 @@ "serialNumber" : "112628-530", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -144,7 +144,7 @@ "serialNumber" : "112628-560", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -158,7 +158,7 @@ "serialNumber" : "112628-330", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -172,7 +172,7 @@ "serialNumber" : "112628-520", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -186,7 +186,7 @@ "serialNumber" : "112628-510", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -200,7 +200,7 @@ "serialNumber" : "112628-320", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -214,7 +214,7 @@ "serialNumber" : "112628-340", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -228,7 +228,7 @@ "serialNumber" : "112628-360", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -242,7 +242,7 @@ "serialNumber" : "112628-390", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -256,7 +256,7 @@ "serialNumber" : "112628-370", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -270,7 +270,7 @@ "serialNumber" : "112628-480", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -284,7 +284,7 @@ "serialNumber" : "112628-290", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -298,7 +298,7 @@ "serialNumber" : "112628-70", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -312,7 +312,7 @@ "serialNumber" : "112628-230", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -326,7 +326,7 @@ "serialNumber" : "112628-500", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -340,7 +340,7 @@ "serialNumber" : "112628-310", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -354,7 +354,7 @@ "serialNumber" : "112628-50", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -368,7 +368,7 @@ "serialNumber" : "112628-270", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -382,7 +382,7 @@ "serialNumber" : "112628-40", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -396,7 +396,7 @@ "serialNumber" : "112628-250", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -410,7 +410,7 @@ "serialNumber" : "112628-210", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -424,7 +424,7 @@ "serialNumber" : "112628-190", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -438,7 +438,7 @@ "serialNumber" : "112628-160", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -452,7 +452,7 @@ "serialNumber" : "112628-140", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -466,7 +466,7 @@ "serialNumber" : "112628-120", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -480,7 +480,7 @@ "serialNumber" : "112628-100", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -494,7 +494,7 @@ "serialNumber" : "112628-80", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -508,7 +508,7 @@ "serialNumber" : "112628-600", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -522,7 +522,7 @@ "serialNumber" : "112628-590", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -536,7 +536,7 @@ "serialNumber" : "112628-430", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -550,7 +550,7 @@ "serialNumber" : "112628-380", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -564,7 +564,7 @@ "serialNumber" : "112628-260", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -578,7 +578,7 @@ "serialNumber" : "112628-570", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -592,7 +592,7 @@ "serialNumber" : "112628-610", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -606,7 +606,7 @@ "serialNumber" : "112628-580", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -620,7 +620,7 @@ "serialNumber" : "112628-450", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -634,7 +634,7 @@ "serialNumber" : "112628-460", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -648,7 +648,7 @@ "serialNumber" : "112628-440", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -662,7 +662,7 @@ "serialNumber" : "112628-420", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -676,7 +676,7 @@ "serialNumber" : "112628-410", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -690,7 +690,7 @@ "serialNumber" : "112628-400", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -704,7 +704,7 @@ "serialNumber" : "112628-490", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -718,7 +718,7 @@ "serialNumber" : "112628-470", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -732,7 +732,7 @@ "serialNumber" : "112628-300", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -746,7 +746,7 @@ "serialNumber" : "112628-280", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -760,7 +760,7 @@ "serialNumber" : "112628-60", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -774,7 +774,7 @@ "serialNumber" : "112628-220", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -788,7 +788,7 @@ "serialNumber" : "112628-240", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -802,7 +802,7 @@ "serialNumber" : "112628-200", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -816,7 +816,7 @@ "serialNumber" : "112628-170", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -830,7 +830,7 @@ "serialNumber" : "112628-90", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -844,7 +844,7 @@ "serialNumber" : "112628-150", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -858,7 +858,7 @@ "serialNumber" : "112628-130", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -872,7 +872,7 @@ "serialNumber" : "112628-110", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -886,7 +886,7 @@ "serialNumber" : "112628-30", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", @@ -900,7 +900,7 @@ "serialNumber" : "112628-20", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01HT018853619", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", diff --git a/src/test/resources/alma-fix/990210285400206441.json b/src/test/resources/alma-fix/990210285400206441.json index 6c8cf9338..666e011ae 100644 --- a/src/test/resources/alma-fix/990210285400206441.json +++ b/src/test/resources/alma-fix/990210285400206441.json @@ -124,7 +124,7 @@ "serialNumber" : "KN38$0000165230", "currentLibrary" : "Z9038", "currentLocation" : "MZ2V", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number={hbzid}&local_base=MHK01HT018857620", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=HT018857620&local_base=MHK01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", diff --git a/src/test/resources/alma-fix/990210950050206441.json b/src/test/resources/alma-fix/990210950050206441.json index 8e2e930d6..6c07dbdd2 100644 --- a/src/test/resources/alma-fix/990210950050206441.json +++ b/src/test/resources/alma-fix/990210950050206441.json @@ -195,7 +195,7 @@ "serialNumber" : "136699801", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid}HT018924091", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT018924091", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990217478660206441.json b/src/test/resources/alma-fix/990217478660206441.json index 97ab76d1a..f3ce615f7 100644 --- a/src/test/resources/alma-fix/990217478660206441.json +++ b/src/test/resources/alma-fix/990217478660206441.json @@ -244,7 +244,7 @@ "serialNumber" : "W00268173", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -258,7 +258,7 @@ "serialNumber" : "W00268170", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -272,7 +272,7 @@ "serialNumber" : "W00268172", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -286,7 +286,7 @@ "serialNumber" : "W00268164", "currentLibrary" : "W0001", "currentLocation" : "20", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -300,7 +300,7 @@ "serialNumber" : "W00268165", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -314,7 +314,7 @@ "serialNumber" : "W00268166", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -328,7 +328,7 @@ "serialNumber" : "W00268168", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -342,7 +342,7 @@ "serialNumber" : "W00268167", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -356,7 +356,7 @@ "serialNumber" : "W00268176", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -370,7 +370,7 @@ "serialNumber" : "W00268171", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -384,7 +384,7 @@ "serialNumber" : "W00268175", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -398,7 +398,7 @@ "serialNumber" : "W00268174", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -412,7 +412,7 @@ "serialNumber" : "W00268169", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019246898", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -440,7 +440,7 @@ "serialNumber" : "180043101", "currentLibrary" : "F0001", "currentLocation" : "00", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=HT019246898", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", @@ -468,7 +468,7 @@ "serialNumber" : "01369368", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}HT019246898", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -496,7 +496,7 @@ "serialNumber" : "21WTA314", "currentLibrary" : "DT", "currentLocation" : "DT_Frei", - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22HT019246898", + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT019246898%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", @@ -510,7 +510,7 @@ "serialNumber" : "046250 211", "currentLibrary" : "211", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT019246898", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT019246898&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-211#!", "isil" : "DE-82-211", @@ -538,7 +538,7 @@ "serialNumber" : "M33 3199", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT019246898", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -552,7 +552,7 @@ "serialNumber" : "44A4782", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT019246898", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -566,7 +566,7 @@ "serialNumber" : "6-00536437-0", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT019246898", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019246898&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -580,7 +580,7 @@ "serialNumber" : "53WTA3654+1", "currentLibrary" : "S0001", "currentLocation" : "PB", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT019246898", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -594,7 +594,7 @@ "serialNumber" : "53WTA3654", "currentLibrary" : "S0001", "currentLocation" : "PB", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT019246898", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -608,7 +608,7 @@ "serialNumber" : "WTA2129", "currentLibrary" : "P0001", "currentLocation" : "51", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT019246898", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -620,7 +620,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=HT019246898", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -632,7 +632,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT019246898", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990223521400206441.json b/src/test/resources/alma-fix/990223521400206441.json index bb7b85387..519c35f4f 100644 --- a/src/test/resources/alma-fix/990223521400206441.json +++ b/src/test/resources/alma-fix/990223521400206441.json @@ -231,7 +231,7 @@ "serialNumber" : "W00274368", "currentLibrary" : "W0001", "currentLocation" : "75", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid}HT019631849", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -369,7 +369,7 @@ "serialNumber" : "11TYD398(3)", "currentLibrary" : "LE", "currentLocation" : "LE_Frei", - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22HT019631849", + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT019631849%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", @@ -411,7 +411,7 @@ "serialNumber" : "DE00648926", "currentLibrary" : "D0001", "currentLocation" : "D05", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -425,7 +425,7 @@ "serialNumber" : "DE00648925", "currentLibrary" : "D0001", "currentLocation" : "D05", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -439,7 +439,7 @@ "serialNumber" : "DE00648924", "currentLibrary" : "D0001", "currentLocation" : "D05", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -453,7 +453,7 @@ "serialNumber" : "DE00644940", "currentLibrary" : "E0001", "currentLocation" : "E33", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -467,7 +467,7 @@ "serialNumber" : "DE00644939", "currentLibrary" : "E0001", "currentLocation" : "E33", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -481,7 +481,7 @@ "serialNumber" : "DE00648923", "currentLibrary" : "D0001", "currentLocation" : "D01", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -495,7 +495,7 @@ "serialNumber" : "DE00644942", "currentLibrary" : "E0001", "currentLocation" : "E33", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -509,7 +509,7 @@ "serialNumber" : "DE00644941", "currentLibrary" : "E0001", "currentLocation" : "E33", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT019631849", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -523,7 +523,7 @@ "serialNumber" : "44A6297", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT019631849", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -537,7 +537,7 @@ "serialNumber" : "6-00557803-7", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT019631849", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -551,7 +551,7 @@ "serialNumber" : "6-00557802-4", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT019631849", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -565,7 +565,7 @@ "serialNumber" : "TWP22152(3)", "currentLibrary" : "P0001", "currentLocation" : "41", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT019631849", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -579,7 +579,7 @@ "serialNumber" : "TWP22152(3)+1", "currentLibrary" : "P0001", "currentLocation" : "41", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT019631849", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", @@ -591,7 +591,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid}HT019631849", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990225056670206441.json b/src/test/resources/alma-fix/990225056670206441.json index 03d146572..79431c242 100644 --- a/src/test/resources/alma-fix/990225056670206441.json +++ b/src/test/resources/alma-fix/990225056670206441.json @@ -86,7 +86,7 @@ "serialNumber" : "501:000491", "currentLibrary" : "501", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0TT003907920", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT003907920&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-501#!", "isil" : "DE-82-501", diff --git a/src/test/resources/alma-fix/990366394400206441.json b/src/test/resources/alma-fix/990366394400206441.json index c7ab4d4c3..5d7d8240f 100644 --- a/src/test/resources/alma-fix/990366394400206441.json +++ b/src/test/resources/alma-fix/990366394400206441.json @@ -69,7 +69,7 @@ "serialNumber" : "6-00461456-X", "currentLibrary" : "HLS", "currentLocation" : "HLS_HSMAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT020446683", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020446683&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990367731740206441.json b/src/test/resources/alma-fix/990367731740206441.json index e00834ee8..48fbcce54 100644 --- a/src/test/resources/alma-fix/990367731740206441.json +++ b/src/test/resources/alma-fix/990367731740206441.json @@ -251,7 +251,7 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R5001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID={hbzid}HT020579803", + "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID=HT020579803", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1116#!", "isil" : "DE-1116", diff --git a/src/test/resources/alma-fix/990367761810206441.json b/src/test/resources/alma-fix/990367761810206441.json index 9a954944d..cff7600e8 100644 --- a/src/test/resources/alma-fix/990367761810206441.json +++ b/src/test/resources/alma-fix/990367761810206441.json @@ -141,7 +141,7 @@ "serialNumber" : "JAP/0018138", "currentLibrary" : "38-459", "currentLocation" : "38-459-FHM", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT020582812", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT020582812", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", diff --git a/src/test/resources/alma-fix/990368743120206441.json b/src/test/resources/alma-fix/990368743120206441.json index 1ee064a68..fcd8fb4d2 100644 --- a/src/test/resources/alma-fix/990368743120206441.json +++ b/src/test/resources/alma-fix/990368743120206441.json @@ -70,7 +70,7 @@ "serialNumber" : "6-00461538-5", "currentLibrary" : "HLS", "currentLocation" : "HLS_HSMAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT020681018", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020681018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/99370771475306441.json b/src/test/resources/alma-fix/99370771475306441.json index c464bddf1..d170d7171 100644 --- a/src/test/resources/alma-fix/99370771475306441.json +++ b/src/test/resources/alma-fix/99370771475306441.json @@ -300,7 +300,7 @@ "serialNumber" : "622040", "currentLibrary" : "R5001", "currentLocation" : "X0001", - "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID={hbzid}HT020919504", + "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID=HT020919504", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1116#!", "isil" : "DE-1116", @@ -341,7 +341,7 @@ "serialNumber" : "DE00736175", "currentLibrary" : "D0001", "currentLocation" : "D01", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT020919504", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -355,7 +355,7 @@ "serialNumber" : "Z75-040987", "currentLibrary" : "MEGT", "currentLocation" : "MEGT_BIBEG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT020919504", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-164#!", "isil" : "DE-6-164", diff --git a/src/test/resources/alma-fix/99370782520706441.json b/src/test/resources/alma-fix/99370782520706441.json index c1c46df95..083b8e180 100644 --- a/src/test/resources/alma-fix/99370782520706441.json +++ b/src/test/resources/alma-fix/99370782520706441.json @@ -287,7 +287,7 @@ "serialNumber" : "01383988", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid}HT020936481", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", @@ -301,7 +301,7 @@ "serialNumber" : "21XBR190(2021)-2", "currentLibrary" : "DT", "currentLocation" : "DT_Frei", - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22HT020936481", + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT020936481%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", @@ -315,7 +315,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=3", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT020936481", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -329,7 +329,7 @@ "serialNumber" : "(1)62276", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_3", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT020936481", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -343,7 +343,7 @@ "serialNumber" : "022844 211", "currentLibrary" : "202", "currentLocation" : "7", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT020936481", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-202#!", "isil" : "DE-82-202", @@ -357,7 +357,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=1", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT020936481", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -371,7 +371,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=5", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT020936481", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -385,7 +385,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=4", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT020936481", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -399,7 +399,7 @@ "serialNumber" : "ZI 3850 0003-2021,2=2", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0HT020936481", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -413,7 +413,7 @@ "serialNumber" : "31XBR1535-2021,2+2", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -427,7 +427,7 @@ "serialNumber" : "31XBR1535-2021,2+3", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -441,7 +441,7 @@ "serialNumber" : "31XBR1535-2021,2+4", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -455,7 +455,7 @@ "serialNumber" : "31XBR1535-2021,2+1", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -469,7 +469,7 @@ "serialNumber" : "31XBR1535-2021,2+6", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -483,7 +483,7 @@ "serialNumber" : "32XBR1535-2021,2", "currentLibrary" : "DEUTZ", "currentLocation" : "32", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -497,7 +497,7 @@ "serialNumber" : "31XBR1535-2021,2+7", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -511,7 +511,7 @@ "serialNumber" : "31XBR1535-2021,2+5", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -525,7 +525,7 @@ "serialNumber" : "31XBR1535-2021,2+9", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -539,7 +539,7 @@ "serialNumber" : "31XBR1535-2021,2+8", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid}HT020936481", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", @@ -581,7 +581,7 @@ "serialNumber" : "DE00637881", "currentLibrary" : "E0001", "currentLocation" : "EHA", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT020936481", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -595,7 +595,7 @@ "serialNumber" : "DE00637884", "currentLibrary" : "E0001", "currentLocation" : "E31", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0HT020936481", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -609,7 +609,7 @@ "serialNumber" : "53XBR5068-2021,2", "currentLibrary" : "S0001", "currentLocation" : "PB", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid}HT020936481", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", diff --git a/src/test/resources/alma-fix/99371014448006441.json b/src/test/resources/alma-fix/99371014448006441.json index 9a6a376cc..742a5242a 100644 --- a/src/test/resources/alma-fix/99371014448006441.json +++ b/src/test/resources/alma-fix/99371014448006441.json @@ -118,7 +118,7 @@ "serialNumber" : "JAP/0020015", "currentLibrary" : "38-459", "currentLocation" : "38-459-FHM", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT021117356", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021117356", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", diff --git a/src/test/resources/alma-fix/99371050452706441.json b/src/test/resources/alma-fix/99371050452706441.json index 78bb8bda4..5efc72de8 100644 --- a/src/test/resources/alma-fix/99371050452706441.json +++ b/src/test/resources/alma-fix/99371050452706441.json @@ -220,7 +220,7 @@ "serialNumber" : "6-00724192-9", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0HT021137663", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021137663&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/99371530278506441.json b/src/test/resources/alma-fix/99371530278506441.json index a5df0fa17..bcaa8f56b 100644 --- a/src/test/resources/alma-fix/99371530278506441.json +++ b/src/test/resources/alma-fix/99371530278506441.json @@ -190,7 +190,7 @@ "serialNumber" : "432/0021005", "currentLibrary" : "38-432", "currentLocation" : "38-432-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid}HT021463169", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021463169", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-432#!", "isil" : "DE-38-432", diff --git a/src/test/resources/alma-fix/99372423490706441.json b/src/test/resources/alma-fix/99372423490706441.json index e9024935c..4f35c342e 100644 --- a/src/test/resources/alma-fix/99372423490706441.json +++ b/src/test/resources/alma-fix/99372423490706441.json @@ -106,7 +106,7 @@ "serialNumber" : ":94002761436", "currentLibrary" : "T0010", "currentLocation" : "kA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01HT030002417", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT030002417&local_base=STR01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", From 94b2c6cf23965f696e53834d39168cc19dc89b90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20B=C3=BClte?= Date: Wed, 27 Sep 2023 08:16:35 +0200 Subject: [PATCH 07/23] Test if zdbId exists before mapping opacLinkZdbId #1888 --- src/main/resources/alma/fix/macros.fix | 8 +- .../alma-fix/990001412590206441.json | 4 +- .../alma-fix/990014830510206441.json | 2 +- .../alma-fix/990021367710206441.json | 4 +- .../alma-fix/990021974470206441.json | 1 - .../alma-fix/990026405480206441.json | 2 +- .../alma-fix/990030574430206441.json | 4 +- .../alma-fix/990035016180206441.json | 3 +- .../alma-fix/990041403870206441.json | 2 +- .../alma-fix/990058434730206441.json | 10 +-- .../alma-fix/990058567920206441.json | 13 +--- .../alma-fix/990059571560206441.json | 3 +- .../alma-fix/990063549080206441.json | 2 - .../alma-fix/990075429930206441.json | 7 +- .../alma-fix/990126276700206441.json | 5 +- .../alma-fix/990143325070206441.json | 2 +- .../alma-fix/990156060190206441.json | 15 ++-- .../alma-fix/990171142550206441.json | 2 +- .../alma-fix/990181275760206441.json | 27 ++----- .../alma-fix/990185607520206441.json | 2 +- .../alma-fix/990185619180206441.json | 2 +- .../alma-fix/990189160110206441.json | 4 +- .../alma-fix/990193094010206441.json | 3 +- .../alma-fix/990202474680206441.json | 2 +- .../alma-fix/990204246530206441.json | 2 +- .../alma-fix/990217478660206441.json | 8 +- .../alma-fix/990218189790206441.json | 3 +- .../alma-fix/990219911120206441.json | 1 - .../alma-fix/990220027540206441.json | 2 +- .../alma-fix/990223521400206441.json | 16 ++-- .../resources/alma-fix/99370771475306441.json | 10 +-- .../resources/alma-fix/99370782520706441.json | 16 +--- web/conf/context.jsonld | 78 +++++++++---------- 33 files changed, 107 insertions(+), 158 deletions(-) diff --git a/src/main/resources/alma/fix/macros.fix b/src/main/resources/alma/fix/macros.fix index 99735566b..7016ac1e8 100644 --- a/src/main/resources/alma/fix/macros.fix +++ b/src/main/resources/alma/fix/macros.fix @@ -255,9 +255,11 @@ end # opacLink do put_macro("opacLink") - copy_field("$i.@iz", "$i.@opacLinkZdbId") - lookup("$i.@opacLinkZdbId","isil2opac_zdbId", delete:"true") - split_field("$i.@opacLinkZdbId","\\{zdbid\\}") + if exists("zdbId") + copy_field("$i.@iz", "$i.@opacLinkZdbId") + lookup("$i.@opacLinkZdbId","isil2opac_zdbId", delete:"true") + split_field("$i.@opacLinkZdbId","\\{zdbid\\}") + end copy_field("$i.@iz", "$i.@opacLinkHbzId") lookup("$i.@opacLinkHbzId","isil2opac_hbzId", delete:"true") split_field("$i.@opacLinkHbzId","\\{hbzid\\}") diff --git a/src/test/resources/alma-fix/990001412590206441.json b/src/test/resources/alma-fix/990001412590206441.json index ef91142da..a06bd4a23 100644 --- a/src/test/resources/alma-fix/990001412590206441.json +++ b/src/test/resources/alma-fix/990001412590206441.json @@ -198,7 +198,7 @@ "serialNumber" : "50860674", "currentLibrary" : "EFB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000161712%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -212,7 +212,7 @@ "serialNumber" : "B1252/640", "currentLibrary" : "0", "currentLocation" : "0-MagAlt", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", diff --git a/src/test/resources/alma-fix/990014830510206441.json b/src/test/resources/alma-fix/990014830510206441.json index 80a2a7eab..d6015cc17 100644 --- a/src/test/resources/alma-fix/990014830510206441.json +++ b/src/test/resources/alma-fix/990014830510206441.json @@ -113,7 +113,7 @@ "serialNumber" : "SK-201407", "currentLibrary" : "SM", "currentLocation" : "SM-Frei", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT003864492", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", diff --git a/src/test/resources/alma-fix/990021367710206441.json b/src/test/resources/alma-fix/990021367710206441.json index eebd1746b..732400da7 100644 --- a/src/test/resources/alma-fix/990021367710206441.json +++ b/src/test/resources/alma-fix/990021367710206441.json @@ -95,7 +95,7 @@ "serialNumber" : "20098056", "currentLibrary" : "SFS", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT005207972%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -109,7 +109,7 @@ "serialNumber" : "186573", "currentLibrary" : "ZB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT005207972%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", diff --git a/src/test/resources/alma-fix/990021974470206441.json b/src/test/resources/alma-fix/990021974470206441.json index c227ace28..4f514f61d 100644 --- a/src/test/resources/alma-fix/990021974470206441.json +++ b/src/test/resources/alma-fix/990021974470206441.json @@ -148,7 +148,6 @@ "serialNumber" : "TEMP306538", "currentLibrary" : "HIS", "currentLocation" : "HIS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990026405480206441.json b/src/test/resources/alma-fix/990026405480206441.json index 4c8a6b39a..617b4b7e0 100644 --- a/src/test/resources/alma-fix/990026405480206441.json +++ b/src/test/resources/alma-fix/990026405480206441.json @@ -97,7 +97,7 @@ "serialNumber" : "40275409", "currentLibrary" : "SIE", "currentLocation" : "SIE_PRAES", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT006813395%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Sie5#!", "isil" : "DE-Sie5", diff --git a/src/test/resources/alma-fix/990030574430206441.json b/src/test/resources/alma-fix/990030574430206441.json index d31f7b4ba..c1564daf1 100644 --- a/src/test/resources/alma-fix/990030574430206441.json +++ b/src/test/resources/alma-fix/990030574430206441.json @@ -72,7 +72,7 @@ "serialNumber" : "SL-031324", "currentLibrary" : "SG", "currentLocation" : "SG-Frei", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT007847893", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-13#!", "isil" : "DE-5-13", @@ -86,7 +86,7 @@ "serialNumber" : "65/7293", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT007847893", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", diff --git a/src/test/resources/alma-fix/990035016180206441.json b/src/test/resources/alma-fix/990035016180206441.json index 93b5ba3ec..d25281286 100644 --- a/src/test/resources/alma-fix/990035016180206441.json +++ b/src/test/resources/alma-fix/990035016180206441.json @@ -99,7 +99,7 @@ "serialNumber" : "TEMP55788", "currentLibrary" : "EFB", "currentLocation" : "BibDtLit", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT008733617%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -126,7 +126,6 @@ "serialNumber" : "TEMP50001300061-000010", "currentLibrary" : "UB", "currentLocation" : "UB_LS", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990041403870206441.json b/src/test/resources/alma-fix/990041403870206441.json index 7ff581936..313fbd06f 100644 --- a/src/test/resources/alma-fix/990041403870206441.json +++ b/src/test/resources/alma-fix/990041403870206441.json @@ -70,7 +70,7 @@ "serialNumber" : "P99/228", "currentLibrary" : "0", "currentLocation" : "0-Speich", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT009965981", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", diff --git a/src/test/resources/alma-fix/990058434730206441.json b/src/test/resources/alma-fix/990058434730206441.json index c2809ef66..1ac7e70a9 100644 --- a/src/test/resources/alma-fix/990058434730206441.json +++ b/src/test/resources/alma-fix/990058434730206441.json @@ -276,7 +276,7 @@ "serialNumber" : "GA-112635", "currentLibrary" : "GA", "currentLocation" : "GA-Frei", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-74#!", "isil" : "DE-5-74", @@ -290,7 +290,7 @@ "serialNumber" : "TK-077339", "currentLibrary" : "TK", "currentLocation" : "TK-Frei", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-108#!", "isil" : "DE-5-108", @@ -304,7 +304,7 @@ "serialNumber" : "69/4564", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -318,7 +318,6 @@ "serialNumber" : "RSB821", "currentLibrary" : "UB", "currentLocation" : "UB_G2B1", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -332,7 +331,6 @@ "serialNumber" : "TEMPHBZ60030859789-000010", "currentLibrary" : "HIS", "currentLocation" : "HIS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -346,7 +344,6 @@ "serialNumber" : "TEMPHBZ60035269470-000010", "currentLibrary" : "EVTH", "currentLocation" : "EVTH_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -360,7 +357,6 @@ "serialNumber" : "TEMP70838", "currentLibrary" : "KTH", "currentLocation" : "KTH_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990058567920206441.json b/src/test/resources/alma-fix/990058567920206441.json index 9eaa09264..50726361f 100644 --- a/src/test/resources/alma-fix/990058567920206441.json +++ b/src/test/resources/alma-fix/990058567920206441.json @@ -306,7 +306,7 @@ "serialNumber" : "116597", "currentLibrary" : "ZB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000909138%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -320,7 +320,7 @@ "serialNumber" : "20105163", "currentLibrary" : "SFS", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000909138%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -376,7 +376,7 @@ "serialNumber" : "75/2644", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -390,7 +390,7 @@ "serialNumber" : "PO-024839", "currentLibrary" : "PO", "currentLocation" : "PO-Frei", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-162#!", "isil" : "DE-5-162", @@ -443,7 +443,6 @@ "serialNumber" : "117103641", "currentLibrary" : "SOZ", "currentLocation" : "SOZ_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -457,7 +456,6 @@ "serialNumber" : "TEMP303283", "currentLibrary" : "HIS", "currentLocation" : "HIS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -471,7 +469,6 @@ "serialNumber" : "DNA4625+1", "currentLibrary" : "UB", "currentLocation" : "UB_G3B3", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -485,7 +482,6 @@ "serialNumber" : "DNA4625", "currentLibrary" : "UB", "currentLocation" : "UB_G3B3", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -499,7 +495,6 @@ "serialNumber" : "TEMP82023", "currentLibrary" : "KTH", "currentLocation" : "KTH_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990059571560206441.json b/src/test/resources/alma-fix/990059571560206441.json index 122d09f18..6ab87eca5 100644 --- a/src/test/resources/alma-fix/990059571560206441.json +++ b/src/test/resources/alma-fix/990059571560206441.json @@ -160,7 +160,7 @@ "serialNumber" : "51/964(29)+2", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT001039253", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -174,7 +174,6 @@ "serialNumber" : "WFA228-29:2", "currentLibrary" : "UB", "currentLocation" : "UB_G3/B4", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990063549080206441.json b/src/test/resources/alma-fix/990063549080206441.json index 67a1f7e39..d1c22634c 100644 --- a/src/test/resources/alma-fix/990063549080206441.json +++ b/src/test/resources/alma-fix/990063549080206441.json @@ -162,7 +162,6 @@ "serialNumber" : "TEMP50001060163-000010", "currentLibrary" : "UB", "currentLocation" : "UB_G2B3", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -176,7 +175,6 @@ "serialNumber" : "ZRB80-507/509", "currentLibrary" : "UB", "currentLocation" : "UB_G2B3", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990075429930206441.json b/src/test/resources/alma-fix/990075429930206441.json index 2d844e9fd..b93bb9e13 100644 --- a/src/test/resources/alma-fix/990075429930206441.json +++ b/src/test/resources/alma-fix/990075429930206441.json @@ -152,7 +152,7 @@ "serialNumber" : "TK-038705", "currentLibrary" : "TK", "currentLocation" : "TK-Frei", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-108#!", "isil" : "DE-5-108", @@ -166,7 +166,7 @@ "serialNumber" : "GE-011615", "currentLibrary" : "GE", "currentLocation" : "GE-Frei", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-20#!", "isil" : "DE-5-20", @@ -193,7 +193,6 @@ "serialNumber" : "TEMP50000410798-000010", "currentLibrary" : "UB", "currentLocation" : "UB_G3B1", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -207,7 +206,6 @@ "serialNumber" : "TEMPHBZ60036085491-000010", "currentLibrary" : "HIS", "currentLocation" : "HIS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -221,7 +219,6 @@ "serialNumber" : "TEMP397133", "currentLibrary" : "GER", "currentLocation" : "GER_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990126276700206441.json b/src/test/resources/alma-fix/990126276700206441.json index a14f44a44..523e9b6d2 100644 --- a/src/test/resources/alma-fix/990126276700206441.json +++ b/src/test/resources/alma-fix/990126276700206441.json @@ -127,7 +127,7 @@ "serialNumber" : "90745439", "currentLibrary" : "MOP", "currentLocation" : "MOP_Haupt", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT014015351%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", @@ -197,7 +197,7 @@ "serialNumber" : "2010/1208", "currentLibrary" : "0", "currentLocation" : "0-Frei1", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -224,7 +224,6 @@ "serialNumber" : "IFB9657", "currentLibrary" : "UB", "currentLocation" : "UB_G2B4", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990143325070206441.json b/src/test/resources/alma-fix/990143325070206441.json index fd9faef22..a4d8d024f 100644 --- a/src/test/resources/alma-fix/990143325070206441.json +++ b/src/test/resources/alma-fix/990143325070206441.json @@ -164,7 +164,7 @@ "serialNumber" : "2007/5873", "currentLibrary" : "0", "currentLocation" : "0-Frei1", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT014601018", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", diff --git a/src/test/resources/alma-fix/990156060190206441.json b/src/test/resources/alma-fix/990156060190206441.json index 27d40effd..087fc6e7d 100644 --- a/src/test/resources/alma-fix/990156060190206441.json +++ b/src/test/resources/alma-fix/990156060190206441.json @@ -198,7 +198,7 @@ "serialNumber" : "0212359", "currentLibrary" : "FHMH", "currentLocation" : "Freihand_H", - "opacLink" : "https://hb063.fh-muenster.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-836#!", "isil" : "DE-836", @@ -226,7 +226,6 @@ "serialNumber" : "91 AVY 2", "currentLibrary" : "EUP", "currentLocation" : "EUP_BV", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -240,7 +239,7 @@ "serialNumber" : "20557430", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -254,7 +253,7 @@ "serialNumber" : "20619518", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -282,7 +281,7 @@ "serialNumber" : "081408ALN4WAS", "currentLibrary" : "MG", "currentLocation" : "MG_Public", - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", @@ -447,7 +446,7 @@ "serialNumber" : "12837764", "currentLibrary" : "EFB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -475,7 +474,7 @@ "serialNumber" : "2007/2934", "currentLibrary" : "0", "currentLocation" : "0-Frei1", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", @@ -515,7 +514,6 @@ "serialNumber" : "117035917", "currentLibrary" : "SOZ", "currentLocation" : "SOZ_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -529,7 +527,6 @@ "serialNumber" : "TEMPHBZ60035679897-000010", "currentLibrary" : "PHILO", "currentLocation" : "PHILO_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990171142550206441.json b/src/test/resources/alma-fix/990171142550206441.json index e97edb7e0..14a38578a 100644 --- a/src/test/resources/alma-fix/990171142550206441.json +++ b/src/test/resources/alma-fix/990171142550206441.json @@ -145,7 +145,7 @@ "serialNumber" : "20139223", "currentLibrary" : "ZB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015671602%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", diff --git a/src/test/resources/alma-fix/990181275760206441.json b/src/test/resources/alma-fix/990181275760206441.json index 9165fb0d9..e676351a5 100644 --- a/src/test/resources/alma-fix/990181275760206441.json +++ b/src/test/resources/alma-fix/990181275760206441.json @@ -175,7 +175,7 @@ "serialNumber" : "20037393", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -189,7 +189,7 @@ "serialNumber" : "20076086", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -203,7 +203,7 @@ "serialNumber" : "20086273", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -217,7 +217,7 @@ "serialNumber" : "20076085", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -231,7 +231,7 @@ "serialNumber" : "20076083", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -245,7 +245,7 @@ "serialNumber" : "20076082", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -259,7 +259,7 @@ "serialNumber" : "20066267", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -273,7 +273,6 @@ "serialNumber" : "400.008.714", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -287,7 +286,6 @@ "serialNumber" : "400.009.801", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -301,7 +299,6 @@ "serialNumber" : "400.009.800", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -315,7 +312,6 @@ "serialNumber" : "400.009.794", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -329,7 +325,6 @@ "serialNumber" : "400.009.795", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -343,7 +338,6 @@ "serialNumber" : "400.009.793", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -357,7 +351,6 @@ "serialNumber" : "400.008.713", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -371,7 +364,6 @@ "serialNumber" : "400.009.797", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -385,7 +377,6 @@ "serialNumber" : "400.009.796", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -399,7 +390,6 @@ "serialNumber" : "400.009.798", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -413,7 +403,6 @@ "serialNumber" : "400.008.712", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -427,7 +416,6 @@ "serialNumber" : "400.009.802", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", @@ -441,7 +429,6 @@ "serialNumber" : "400.009.799", "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990185607520206441.json b/src/test/resources/alma-fix/990185607520206441.json index f972a6bba..bbe2cd7b3 100644 --- a/src/test/resources/alma-fix/990185607520206441.json +++ b/src/test/resources/alma-fix/990185607520206441.json @@ -78,7 +78,7 @@ "serialNumber" : "SM-007284", "currentLibrary" : "SM", "currentLocation" : "SM-Frei", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=TT003059252", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", diff --git a/src/test/resources/alma-fix/990185619180206441.json b/src/test/resources/alma-fix/990185619180206441.json index a41e30334..82811e5a5 100644 --- a/src/test/resources/alma-fix/990185619180206441.json +++ b/src/test/resources/alma-fix/990185619180206441.json @@ -87,7 +87,7 @@ "serialNumber" : "SM-009391", "currentLibrary" : "SM", "currentLocation" : "SM-Frei", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=TT003060418", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", diff --git a/src/test/resources/alma-fix/990189160110206441.json b/src/test/resources/alma-fix/990189160110206441.json index 637f1bb69..f756ac9eb 100644 --- a/src/test/resources/alma-fix/990189160110206441.json +++ b/src/test/resources/alma-fix/990189160110206441.json @@ -234,7 +234,7 @@ "serialNumber" : "20116184", "currentLibrary" : "ZB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017015300%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -248,7 +248,7 @@ "serialNumber" : "P2012/259", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", diff --git a/src/test/resources/alma-fix/990193094010206441.json b/src/test/resources/alma-fix/990193094010206441.json index 74ede0d0c..f54a39f6b 100644 --- a/src/test/resources/alma-fix/990193094010206441.json +++ b/src/test/resources/alma-fix/990193094010206441.json @@ -96,7 +96,7 @@ "serialNumber" : "20129967", "currentLibrary" : "EFB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017398609%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -110,7 +110,6 @@ "serialNumber" : "WWB53467", "currentLibrary" : "UB", "currentLocation" : "UB_G3B1", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990202474680206441.json b/src/test/resources/alma-fix/990202474680206441.json index edfc84b01..65dc5970d 100644 --- a/src/test/resources/alma-fix/990202474680206441.json +++ b/src/test/resources/alma-fix/990202474680206441.json @@ -132,7 +132,7 @@ "serialNumber" : "AJ-143867", "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT018129805", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", diff --git a/src/test/resources/alma-fix/990204246530206441.json b/src/test/resources/alma-fix/990204246530206441.json index 3c1410ee7..5a68bbfd7 100644 --- a/src/test/resources/alma-fix/990204246530206441.json +++ b/src/test/resources/alma-fix/990204246530206441.json @@ -191,7 +191,7 @@ "serialNumber" : "GL-202825", "currentLibrary" : "GL", "currentLocation" : "GL-Frei", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT018295975", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-39#!", "isil" : "DE-5-39", diff --git a/src/test/resources/alma-fix/990217478660206441.json b/src/test/resources/alma-fix/990217478660206441.json index f3ce615f7..c3aeebf15 100644 --- a/src/test/resources/alma-fix/990217478660206441.json +++ b/src/test/resources/alma-fix/990217478660206441.json @@ -426,7 +426,7 @@ "serialNumber" : "91031017", "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT019246898%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", @@ -454,7 +454,7 @@ "serialNumber" : "180424", "currentLibrary" : "60", "currentLocation" : "CM_Freih", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT019246898%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", @@ -482,7 +482,7 @@ "serialNumber" : "100000005149", "currentLibrary" : "KRW", "currentLocation" : "KRW_Public", - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT019246898%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", @@ -524,7 +524,7 @@ "serialNumber" : "50000027887", "currentLibrary" : "BAB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019246898%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", diff --git a/src/test/resources/alma-fix/990218189790206441.json b/src/test/resources/alma-fix/990218189790206441.json index eae924236..cfb57d65e 100644 --- a/src/test/resources/alma-fix/990218189790206441.json +++ b/src/test/resources/alma-fix/990218189790206441.json @@ -109,7 +109,7 @@ "serialNumber" : "AJ-1019284", "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019317250", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", @@ -123,7 +123,6 @@ "serialNumber" : "115207346", "currentLibrary" : "OAW", "currentLocation" : "OAW_BIB", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990219911120206441.json b/src/test/resources/alma-fix/990219911120206441.json index 617680371..77a2659ad 100644 --- a/src/test/resources/alma-fix/990219911120206441.json +++ b/src/test/resources/alma-fix/990219911120206441.json @@ -83,7 +83,6 @@ "serialNumber" : "UB27501", "currentLibrary" : "UB", "currentLocation" : "UB_GMAG", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/src/test/resources/alma-fix/990220027540206441.json b/src/test/resources/alma-fix/990220027540206441.json index 3e222c2a5..43bde8df7 100644 --- a/src/test/resources/alma-fix/990220027540206441.json +++ b/src/test/resources/alma-fix/990220027540206441.json @@ -84,7 +84,7 @@ "serialNumber" : "AJ-196496", "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019496555", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", diff --git a/src/test/resources/alma-fix/990223521400206441.json b/src/test/resources/alma-fix/990223521400206441.json index 519c35f4f..96c210662 100644 --- a/src/test/resources/alma-fix/990223521400206441.json +++ b/src/test/resources/alma-fix/990223521400206441.json @@ -245,7 +245,7 @@ "serialNumber" : "91036298", "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT019631849%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", @@ -285,7 +285,6 @@ "serialNumber" : "61 TYD 16(3)", "currentLibrary" : "JUE", "currentLocation" : "JUE_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -299,7 +298,6 @@ "serialNumber" : "61 TYD 16(3)+1", "currentLibrary" : "JUE", "currentLocation" : "JUE_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -313,7 +311,7 @@ "serialNumber" : "22253605", "currentLibrary" : "RHB", "currentLocation" : "RHB_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -327,7 +325,7 @@ "serialNumber" : "22174458", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -341,7 +339,7 @@ "serialNumber" : "22174464", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -355,7 +353,7 @@ "serialNumber" : "22174441", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", @@ -383,7 +381,7 @@ "serialNumber" : "50000033216", "currentLibrary" : "S7", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -397,7 +395,7 @@ "serialNumber" : "P2018/1480", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", diff --git a/src/test/resources/alma-fix/99370771475306441.json b/src/test/resources/alma-fix/99370771475306441.json index d170d7171..3026847e0 100644 --- a/src/test/resources/alma-fix/99370771475306441.json +++ b/src/test/resources/alma-fix/99370771475306441.json @@ -244,7 +244,7 @@ "serialNumber" : "91083416", "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT020919504%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", @@ -258,7 +258,7 @@ "serialNumber" : "211231", "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", @@ -272,7 +272,7 @@ "serialNumber" : "211230", "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", @@ -286,7 +286,7 @@ "serialNumber" : "211229", "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", @@ -314,7 +314,7 @@ "serialNumber" : "ZE-202720", "currentLibrary" : "ZE", "currentLocation" : "ZE-Bib", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020919504", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bo404#!", "isil" : "DE-Bo404", diff --git a/src/test/resources/alma-fix/99370782520706441.json b/src/test/resources/alma-fix/99370782520706441.json index 083b8e180..76a24e57b 100644 --- a/src/test/resources/alma-fix/99370782520706441.json +++ b/src/test/resources/alma-fix/99370782520706441.json @@ -105,7 +105,6 @@ "serialNumber" : "11 XBS 53-2021,2", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -119,7 +118,6 @@ "serialNumber" : "11 XBS 53-2021,2+1", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -133,7 +131,6 @@ "serialNumber" : "11 XBS 53-2021,2+2", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -147,7 +144,6 @@ "serialNumber" : "11 XBS 53-2021,2+3", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -161,7 +157,6 @@ "serialNumber" : "11 XBS 53-2021,2+4", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -175,7 +170,6 @@ "serialNumber" : "11 XBS 53-2021,2+6", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -189,7 +183,6 @@ "serialNumber" : "11 XBS 53-2021,2+7", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -203,7 +196,6 @@ "serialNumber" : "11 XBS 53-2021,2+12", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -217,7 +209,6 @@ "serialNumber" : "11 XBS 53-2021,2+5", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -231,7 +222,6 @@ "serialNumber" : "11 XBS 53-2021,2+8", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -245,7 +235,6 @@ "serialNumber" : "11 XBS 53-2021,2+9", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -259,7 +248,6 @@ "serialNumber" : "11 XBS 53-2021,2+10", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -273,7 +261,6 @@ "serialNumber" : "11 XBS 53-2021,2+11", "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", @@ -553,7 +540,7 @@ "serialNumber" : "50000067433", "currentLibrary" : "BR", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22%22", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT020936481%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", @@ -567,7 +554,6 @@ "serialNumber" : "WSA7543-2021,2", "currentLibrary" : "UB", "currentLocation" : "UB_G3/B4", - "opacLink" : "https://suchen.ub.rub.de/zdbid/", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", diff --git a/web/conf/context.jsonld b/web/conf/context.jsonld index c2a6718c9..1ebbdf42b 100644 --- a/web/conf/context.jsonld +++ b/web/conf/context.jsonld @@ -9,19 +9,19 @@ "focus" : { "@id" : "http://xmlns.com/foaf/0.1/focus" }, - "SecondaryPublicationEvent" : { - "@id" : "http://purl.org/lobid/lv#SecondaryPublicationEvent" - }, "altLabel" : { "@id" : "http://www.w3.org/2004/02/skos/core#altLabel" }, - "Image" : { - "@id" : "http://purl.org/ontology/bibo/Image" + "SecondaryPublicationEvent" : { + "@id" : "http://purl.org/lobid/lv#SecondaryPublicationEvent" }, "type" : { "@id" : "@type", "@container" : "@set" }, + "Image" : { + "@id" : "http://purl.org/ontology/bibo/Image" + }, "ReferenceSource" : { "@id" : "http://purl.org/ontology/bibo/ReferenceSource" }, @@ -35,15 +35,15 @@ "@id" : "http://id.loc.gov/ontologies/bibframe/contribution", "@container" : "@list" }, + "notation" : { + "@id" : "http://www.w3.org/2004/02/skos/core#notation" + }, "Book" : { "@id" : "http://purl.org/ontology/bibo/Book" }, "Combination" : { "@id" : "http://iflastandards.info/ns/isbd/terms/mediatype/T1008" }, - "notation" : { - "@id" : "http://www.w3.org/2004/02/skos/core#notation" - }, "Work" : { "@id" : "https://d-nb.info/standards/elementset/gnd#Work" }, @@ -100,15 +100,15 @@ "bibliographicCitation" : { "@id" : "http://purl.org/dc/terms/bibliographicCitation" }, + "dateOfBirthAndDeath" : { + "@id" : "https://d-nb.info/standards/elementset/gnd#dateOfBirthAndDeath" + }, "Map" : { "@id" : "http://purl.org/ontology/bibo/Map" }, "Person" : { "@id" : "https://d-nb.info/standards/elementset/gnd#Person" }, - "dateOfBirthAndDeath" : { - "@id" : "https://d-nb.info/standards/elementset/gnd#dateOfBirthAndDeath" - }, "startDate" : { "@id" : "http://schema.org/startDate" }, @@ -146,13 +146,13 @@ "@id" : "http://id.loc.gov/ontologies/bibframe/hasItem", "@container" : "@set" }, - "Festschrift" : { - "@id" : "http://purl.org/lobid/lv#Festschrift" - }, "alternativeTitle" : { "@id" : "http://purl.org/dc/terms/alternative", "@container" : "@set" }, + "Festschrift" : { + "@id" : "http://purl.org/lobid/lv#Festschrift" + }, "lon" : { "@id" : "http://schema.org/longitude" }, @@ -182,19 +182,19 @@ "modifiedBy" : { "@id" : "http://open-services.net/ns/core#modifiedBy" }, - "PublishedScore" : { - "@id" : "http://purl.org/ontology/mo/PublishedScore" - }, "gndIdentifier" : { "@id" : "https://d-nb.info/standards/elementset/gnd#gndIdentifier" }, - "PublicationIssue" : { - "@id" : "http://schema.org/PublicationIssue" + "PublishedScore" : { + "@id" : "http://purl.org/ontology/mo/PublishedScore" }, "oclcNumber" : { "@id" : "http://purl.org/ontology/bibo/oclcnum", "@container" : "@set" }, + "PublicationIssue" : { + "@id" : "http://schema.org/PublicationIssue" + }, "corporateBodyForTitle" : { "@id" : "http://rdaregistry.info/Elements/u/P60327", "@container" : "@set" @@ -336,18 +336,15 @@ "workNumbering" : { "@id" : "http://rdaregistry.info/Elements/w/P10079" }, - "Thesis" : { - "@id" : "http://purl.org/ontology/bibo/Thesis" - }, "exampleOfWork" : { "@id" : "http://purl.org/lobid/lv#exampleOfWork" }, + "Thesis" : { + "@id" : "http://purl.org/ontology/bibo/Thesis" + }, "ArchivedWebPage" : { "@id" : "http://purl.org/lobid/lv#ArchivedWebPage" }, - "BibliographicResource" : { - "@id" : "http://purl.org/dc/terms/BibliographicResource" - }, "license" : { "@id" : "http://schema.org/license", "@container" : "@set" @@ -355,6 +352,9 @@ "deprecatedUri" : { "@id" : "https://d-nb.info/standards/elementset/dnb#deprecatedUri" }, + "BibliographicResource" : { + "@id" : "http://purl.org/dc/terms/BibliographicResource" + }, "bibliographicLevel" : { "@id" : "http://purl.org/lobid/lv#bibliographicLevel" }, @@ -374,9 +374,6 @@ "SubjectHeading" : { "@id" : "https://d-nb.info/standards/elementset/gnd#SubjectHeading" }, - "Sonstige" : { - "@id" : "http://purl.org/lobid/lv#Miscellaneous" - }, "note" : { "@id" : "http://id.loc.gov/ontologies/bibframe/note", "@container" : "@set" @@ -384,6 +381,9 @@ "langNote" : { "@id" : "http://purl.org/lobid/lv#langNote" }, + "Sonstige" : { + "@id" : "http://purl.org/lobid/lv#Miscellaneous" + }, "SoftwareApplication" : { "@id" : "http://schema.org/SoftwareApplication" }, @@ -399,9 +399,6 @@ "@id" : "http://www.w3.org/2001/XMLSchema#", "@container" : "@set" }, - "DataFeedItem" : { - "@id" : "http://schema.org/DataFeedItem" - }, "description" : { "@id" : "http://purl.org/dc/terms/description", "@container" : "@set" @@ -410,12 +407,15 @@ "@id" : "http://purl.org/ontology/bibo/edition", "@container" : "@set" }, - "Standard" : { - "@id" : "http://purl.org/ontology/bibo/Standard" + "DataFeedItem" : { + "@id" : "http://schema.org/DataFeedItem" }, "instrument" : { "@id" : "http://schema.org/instrument" }, + "Standard" : { + "@id" : "http://purl.org/ontology/bibo/Standard" + }, "medium" : { "@id" : "http://purl.org/dc/terms/medium", "@container" : "@set" @@ -482,13 +482,13 @@ "currentLocation" : { "@id" : "http://purl.org/lobid/lv#currentLocation" }, - "Series" : { - "@id" : "http://purl.org/ontology/bibo/Series" - }, "hasSuperordinate" : { "@id" : "http://purl.org/lobid/lv#hasSuperordinate", "@container" : "@set" }, + "Series" : { + "@id" : "http://purl.org/ontology/bibo/Series" + }, "subjectAltLabel" : { "@id" : "http://purl.org/lobid/lv#subjectAltLabel", "@container" : "@set" @@ -496,12 +496,12 @@ "itemOf" : { "@id" : "http://id.loc.gov/ontologies/bibframe/itemOf" }, - "PublicationEvent" : { - "@id" : "http://schema.org/PublicationEvent" - }, "sourceOrganization" : { "@id" : "http://schema.org/sourceOrganization" }, + "PublicationEvent" : { + "@id" : "http://schema.org/PublicationEvent" + }, "location" : { "@id" : "http://schema.org/location" }, From a6140b3394e0a670f868f6dc92b9e7c51993fb1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20B=C3=BClte?= Date: Wed, 27 Sep 2023 11:47:42 +0200 Subject: [PATCH 08/23] Only use hbzId opac link for non ZDB resources #1888 --- src/main/resources/alma/fix/macros.fix | 7 ++-- .../alma-fix/990053976760206441.json | 19 ----------- .../alma-fix/990054215550206441.json | 1 - .../alma-fix/990054301770206441.json | 4 --- .../alma-fix/990054345550206441.json | 32 ------------------- .../alma-fix/990055981810206441.json | 5 --- .../alma-fix/990103899140206441.json | 1 - .../alma-fix/990108873860206441.json | 2 -- .../alma-fix/990109712970206441.json | 22 ------------- .../alma-fix/990136041660206441.json | 1 - .../alma-fix/990183054020206441.json | 1 - 11 files changed, 4 insertions(+), 91 deletions(-) diff --git a/src/main/resources/alma/fix/macros.fix b/src/main/resources/alma/fix/macros.fix index 7016ac1e8..07b0382ea 100644 --- a/src/main/resources/alma/fix/macros.fix +++ b/src/main/resources/alma/fix/macros.fix @@ -259,10 +259,11 @@ do put_macro("opacLink") copy_field("$i.@iz", "$i.@opacLinkZdbId") lookup("$i.@opacLinkZdbId","isil2opac_zdbId", delete:"true") split_field("$i.@opacLinkZdbId","\\{zdbid\\}") + elsif exists("hbzId") + copy_field("$i.@iz", "$i.@opacLinkHbzId") + lookup("$i.@opacLinkHbzId","isil2opac_hbzId", delete:"true") + split_field("$i.@opacLinkHbzId","\\{hbzid\\}") end - copy_field("$i.@iz", "$i.@opacLinkHbzId") - lookup("$i.@opacLinkHbzId","isil2opac_hbzId", delete:"true") - split_field("$i.@opacLinkHbzId","\\{hbzid\\}") if exists("$i.@opacLinkZdbId.1") paste("hasItem[].$last.opacLink","$i.@opacLinkZdbId.1","zdbId","$i.@opacLinkZdbId.2",join_char:"") elsif exists("$i.@opacLinkHbzId.1") diff --git a/src/test/resources/alma-fix/990053976760206441.json b/src/test/resources/alma-fix/990053976760206441.json index 427b155ab..91d8b8b96 100644 --- a/src/test/resources/alma-fix/990053976760206441.json +++ b/src/test/resources/alma-fix/990053976760206441.json @@ -221,7 +221,6 @@ "serialNumber" : "1148014-10", "currentLibrary" : "D0001", "currentLocation" : "D30", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -235,7 +234,6 @@ "serialNumber" : "M08 7898", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000312236&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -249,7 +247,6 @@ "serialNumber" : "M08 7893", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000312236&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -263,7 +260,6 @@ "serialNumber" : "M08 7897", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000312236&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -277,7 +273,6 @@ "serialNumber" : "M08 7895", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000312236&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -291,7 +286,6 @@ "serialNumber" : "M08 7896", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000312236&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -305,7 +299,6 @@ "serialNumber" : "M08 7894", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000312236&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -319,7 +312,6 @@ "serialNumber" : "9089785-10", "currentLibrary" : "S0001", "currentLocation" : "FMZS", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -332,7 +324,6 @@ "currentLibrary" : "W0001", "currentLocation" : "04", "callNumber" : "67P9", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -345,7 +336,6 @@ "currentLibrary" : "R3048", "currentLocation" : "ZSPHY", "callNumber" : "PHY Z 1646", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -358,7 +348,6 @@ "currentLibrary" : "R3048", "currentLocation" : "ZSPHY", "callNumber" : "PHY Z 1646", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", @@ -371,7 +360,6 @@ "currentLibrary" : "RL002", "currentLocation" : "FZSLD", "callNumber" : "fys 02-3", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", @@ -384,7 +372,6 @@ "currentLibrary" : "ZB", "currentLocation" : "0", "callNumber" : "Z5725", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT000312236&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -435,7 +422,6 @@ "currentLibrary" : "X0001", "currentLocation" : "03P", "callNumber" : "phy z p 455", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -448,7 +434,6 @@ "currentLibrary" : "38-HWA", "currentLocation" : "38-HWA-ZMA", "callNumber" : "EWA Z666", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -461,7 +446,6 @@ "currentLibrary" : "PHY", "currentLocation" : "PHY_ZS", "callNumber" : "DP", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-023#!", "isil" : "DE-6-023", @@ -474,7 +458,6 @@ "currentLibrary" : "BEK", "currentLocation" : "BEK_ZS", "callNumber" : "Z 1011", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-123#!", "isil" : "DE-6-123", @@ -487,7 +470,6 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_ZS", "callNumber" : "Z Qu 4447", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -500,7 +482,6 @@ "currentLibrary" : "P0001", "currentLocation" : "40", "callNumber" : "67p54", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000312236", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990054215550206441.json b/src/test/resources/alma-fix/990054215550206441.json index 57db0f34f..245aa3531 100644 --- a/src/test/resources/alma-fix/990054215550206441.json +++ b/src/test/resources/alma-fix/990054215550206441.json @@ -176,7 +176,6 @@ "currentLibrary" : "38", "currentLocation" : "38-ZS", "callNumber" : "Sh13", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT002619538", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", diff --git a/src/test/resources/alma-fix/990054301770206441.json b/src/test/resources/alma-fix/990054301770206441.json index 408fda6de..b6e52507b 100644 --- a/src/test/resources/alma-fix/990054301770206441.json +++ b/src/test/resources/alma-fix/990054301770206441.json @@ -205,7 +205,6 @@ "currentLibrary" : "R0003", "currentLocation" : "kA", "callNumber" : "Per. 5502", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT003176544%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -218,7 +217,6 @@ "currentLibrary" : "T0010", "currentLocation" : "kA", "callNumber" : "Z 1703", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT003176544&local_base=STR01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", @@ -231,7 +229,6 @@ "currentLibrary" : "38", "currentLocation" : "38-ZS", "callNumber" : "EkFOL577", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT003176544", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", @@ -244,7 +241,6 @@ "currentLibrary" : "ALKU", "currentLocation" : "ALKU_ZS", "callNumber" : "Fr 88", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003176544&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-139a#!", "isil" : "DE-6-139a", diff --git a/src/test/resources/alma-fix/990054345550206441.json b/src/test/resources/alma-fix/990054345550206441.json index d0ac4e312..20fda1f3b 100644 --- a/src/test/resources/alma-fix/990054345550206441.json +++ b/src/test/resources/alma-fix/990054345550206441.json @@ -229,7 +229,6 @@ "callNumber" : "Einzelsign.", "currentLibrary" : "ZB", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT003497718&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -243,7 +242,6 @@ "serialNumber" : "497335801", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -257,7 +255,6 @@ "serialNumber" : "497047701", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -270,7 +267,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -284,7 +280,6 @@ "serialNumber" : "496523801", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -298,7 +293,6 @@ "serialNumber" : "496976701", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -311,7 +305,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -324,7 +317,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -337,7 +329,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -350,7 +341,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -363,7 +353,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -376,7 +365,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -389,7 +377,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -402,7 +389,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -416,7 +402,6 @@ "serialNumber" : "496805001", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -429,7 +414,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -443,7 +427,6 @@ "serialNumber" : "496725001", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -457,7 +440,6 @@ "serialNumber" : "497056301", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -470,7 +452,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -483,7 +464,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -497,7 +477,6 @@ "serialNumber" : "496626601", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -511,7 +490,6 @@ "serialNumber" : "497168401", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -525,7 +503,6 @@ "serialNumber" : "496523701", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -538,7 +515,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -551,7 +527,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -564,7 +539,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -577,7 +551,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -590,7 +563,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -603,7 +575,6 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -627,7 +598,6 @@ "currentLibrary" : "ZB", "currentLocation" : "0", "callNumber" : "Md5099", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT003497718&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", @@ -640,7 +610,6 @@ "currentLibrary" : "R0001", "currentLocation" : "kA", "callNumber" : "Z 5354", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT003497718%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", @@ -679,7 +648,6 @@ "currentLibrary" : "38-445", "currentLocation" : "38-445-ZS", "callNumber" : "Ff 176/52", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT003497718", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-445#!", "isil" : "DE-38-445", diff --git a/src/test/resources/alma-fix/990055981810206441.json b/src/test/resources/alma-fix/990055981810206441.json index c215bc4bd..9dbfb5e7c 100644 --- a/src/test/resources/alma-fix/990055981810206441.json +++ b/src/test/resources/alma-fix/990055981810206441.json @@ -279,7 +279,6 @@ "serialNumber" : "ULB0054169", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -293,7 +292,6 @@ "serialNumber" : "ULB0041793", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -307,7 +305,6 @@ "serialNumber" : "ULB0041794", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -358,7 +355,6 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LS", "callNumber" : "WES 0.1:55", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -371,7 +367,6 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LS", "callNumber" : "WES 0.1:55", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", diff --git a/src/test/resources/alma-fix/990103899140206441.json b/src/test/resources/alma-fix/990103899140206441.json index 6e4d2339c..9abd4c432 100644 --- a/src/test/resources/alma-fix/990103899140206441.json +++ b/src/test/resources/alma-fix/990103899140206441.json @@ -113,7 +113,6 @@ "currentLibrary" : "R0003", "currentLocation" : "kA", "callNumber" : "Per. 5157", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT012237361%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", diff --git a/src/test/resources/alma-fix/990108873860206441.json b/src/test/resources/alma-fix/990108873860206441.json index e16e864c6..2a98e343d 100644 --- a/src/test/resources/alma-fix/990108873860206441.json +++ b/src/test/resources/alma-fix/990108873860206441.json @@ -152,7 +152,6 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0003", "currentLocation" : "kA", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT012734833%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", @@ -164,7 +163,6 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0001", "currentLocation" : "kA", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT012734833%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", diff --git a/src/test/resources/alma-fix/990109712970206441.json b/src/test/resources/alma-fix/990109712970206441.json index f9b17a9c1..29f2b5388 100644 --- a/src/test/resources/alma-fix/990109712970206441.json +++ b/src/test/resources/alma-fix/990109712970206441.json @@ -219,7 +219,6 @@ "serialNumber" : "1103875-50", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -233,7 +232,6 @@ "serialNumber" : "1103875-30", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -247,7 +245,6 @@ "serialNumber" : "1103875-10", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -261,7 +258,6 @@ "serialNumber" : "1103875-20", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -274,7 +270,6 @@ "callNumber" : "KJIB3790", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -288,7 +283,6 @@ "serialNumber" : "1103875-40", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -302,7 +296,6 @@ "serialNumber" : "1103875-60", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -315,7 +308,6 @@ "callNumber" : "KJIB3790", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -484,7 +476,6 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -497,7 +488,6 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -510,7 +500,6 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -523,7 +512,6 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -536,7 +524,6 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -549,7 +536,6 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -562,7 +548,6 @@ "callNumber" : "zy/1432", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -576,7 +561,6 @@ "serialNumber" : "ULB0072893", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT012819873&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -590,7 +574,6 @@ "serialNumber" : "6-00746409-0", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT012819873&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -603,7 +586,6 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "callNumber" : "KJIB3585", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -616,7 +598,6 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "callNumber" : "KJIB3790", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", @@ -692,7 +673,6 @@ "currentLibrary" : "RL001", "currentLocation" : "FRHKO", "callNumber" : "MU/C 2014 115", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT012819873&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -705,7 +685,6 @@ "currentLibrary" : "38-430", "currentLocation" : "38-430-ZS", "callNumber" : "430/Bg/Beethoven005", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-430#!", "isil" : "DE-38-430", @@ -718,7 +697,6 @@ "currentLibrary" : "38", "currentLocation" : "38-ZS", "callNumber" : "XD475", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT012819873", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", diff --git a/src/test/resources/alma-fix/990136041660206441.json b/src/test/resources/alma-fix/990136041660206441.json index f0e256150..115899b09 100644 --- a/src/test/resources/alma-fix/990136041660206441.json +++ b/src/test/resources/alma-fix/990136041660206441.json @@ -191,7 +191,6 @@ "currentLibrary" : "R0001", "currentLocation" : "kA", "callNumber" : "ZA 4343", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT014388022%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", diff --git a/src/test/resources/alma-fix/990183054020206441.json b/src/test/resources/alma-fix/990183054020206441.json index 38c474720..c17808a9d 100644 --- a/src/test/resources/alma-fix/990183054020206441.json +++ b/src/test/resources/alma-fix/990183054020206441.json @@ -201,7 +201,6 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_ZS", "callNumber" : "XB 3534", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016604323&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", From 1a21c77a3d6d7d3bac31cfa62a5a164d6cfbfeff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20B=C3=BClte?= Date: Wed, 27 Sep 2023 12:05:33 +0200 Subject: [PATCH 09/23] Introduce opac links for isbn and issn #1888 --- src/main/resources/alma/fix/macros.fix | 14 ++++++++++ .../AlmaMarc21XmlToLobidJsonMetafixTest.java | 2 +- .../alma-fix/990053976760206441.json | 14 ++++++++++ .../alma-fix/990054301770206441.json | 1 + .../alma-fix/990054345550206441.json | 28 +++++++++++++++++++ .../alma-fix/990055981810206441.json | 5 ++++ 6 files changed, 63 insertions(+), 1 deletion(-) diff --git a/src/main/resources/alma/fix/macros.fix b/src/main/resources/alma/fix/macros.fix index 07b0382ea..65eaa6aaf 100644 --- a/src/main/resources/alma/fix/macros.fix +++ b/src/main/resources/alma/fix/macros.fix @@ -264,10 +264,24 @@ do put_macro("opacLink") lookup("$i.@opacLinkHbzId","isil2opac_hbzId", delete:"true") split_field("$i.@opacLinkHbzId","\\{hbzid\\}") end + if exists("issn[].1") + copy_field("$i.@iz", "$i.@opacLinkIssn") + lookup("$i.@opacLinkIssn","isil2opac_issn", delete:"true") + split_field("$i.@opacLinkIssn","\\{issn\\}") + end + if exists("isbn[].1") + copy_field("$i.@iz", "$i.@opacLinkIsbn") + lookup("$i.@opacLinkIsbn","isil2opac_isbn", delete:"true") + split_field("$i.@opacLinkZdbId","\\{isbn\\}") + end if exists("$i.@opacLinkZdbId.1") paste("hasItem[].$last.opacLink","$i.@opacLinkZdbId.1","zdbId","$i.@opacLinkZdbId.2",join_char:"") elsif exists("$i.@opacLinkHbzId.1") paste("hasItem[].$last.opacLink","$i.@opacLinkHbzId.1","hbzId","$i.@opacLinkHbzId.2",join_char:"") + elsif exists("$i.@opacLinkIsbn.1") + paste("hasItem[].$last.opacLink","$i.@opacLinkIsbn.1","isbn[].1","$i.@opacLinkisbn.2",join_char:"") + elsif exists("$i.@opacLinkIssn.1") + paste("hasItem[].$last.opacLink","$i.@opacLinkIssn.1","issn[].1","$i.@opacLinkissn.2",join_char:"") end end diff --git a/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java b/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java index 311e9912e..84c91a350 100644 --- a/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java +++ b/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java @@ -76,7 +76,7 @@ public void setup() { fixVariables.put("rpb.ttl", "src/test/resources/alma/maps/rpb.ttl"); fixVariables.put("hbzId2zdbId.tsv", "src/main/resources/alma/maps/hbzId2zdbId.tsv.gz"); fixVariables.put("isil2opac_hbzId.tsv", "src/main/resources/alma/maps/isil2opac_hbzId.tsv"); - fixVariables.put("isil2opac_isbn.tsv", "src/main/resources/alma/maps/isil2opac_isil.tsv"); + fixVariables.put("isil2opac_isbn.tsv", "src/main/resources/alma/maps/isil2opac_isbn.tsv"); fixVariables.put("isil2opac_issn.tsv", "src/main/resources/alma/maps/isil2opac_issn.tsv"); fixVariables.put("isil2opac_zdbId.tsv", "src/main/resources/alma/maps/isil2opac_zdbId.tsv"); } diff --git a/src/test/resources/alma-fix/990053976760206441.json b/src/test/resources/alma-fix/990053976760206441.json index 91d8b8b96..0021307c0 100644 --- a/src/test/resources/alma-fix/990053976760206441.json +++ b/src/test/resources/alma-fix/990053976760206441.json @@ -221,6 +221,7 @@ "serialNumber" : "1148014-10", "currentLibrary" : "D0001", "currentLocation" : "D30", + "opacLink" : "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", @@ -234,6 +235,7 @@ "serialNumber" : "M08 7898", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -247,6 +249,7 @@ "serialNumber" : "M08 7893", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -260,6 +263,7 @@ "serialNumber" : "M08 7897", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -273,6 +277,7 @@ "serialNumber" : "M08 7895", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -286,6 +291,7 @@ "serialNumber" : "M08 7896", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -299,6 +305,7 @@ "serialNumber" : "M08 7894", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", @@ -312,6 +319,7 @@ "serialNumber" : "9089785-10", "currentLibrary" : "S0001", "currentLocation" : "FMZS", + "opacLink" : "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", @@ -397,6 +405,7 @@ "currentLibrary" : "UB_BI", "currentLocation" : "17_Zs", "callNumber" : "17 QD000 P600", + "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", @@ -422,6 +431,7 @@ "currentLibrary" : "X0001", "currentLocation" : "03P", "callNumber" : "phy z p 455", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -446,6 +456,7 @@ "currentLibrary" : "PHY", "currentLocation" : "PHY_ZS", "callNumber" : "DP", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-023#!", "isil" : "DE-6-023", @@ -458,6 +469,7 @@ "currentLibrary" : "BEK", "currentLocation" : "BEK_ZS", "callNumber" : "Z 1011", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-123#!", "isil" : "DE-6-123", @@ -470,6 +482,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_ZS", "callNumber" : "Z Qu 4447", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -482,6 +495,7 @@ "currentLibrary" : "P0001", "currentLocation" : "40", "callNumber" : "67p54", + "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", diff --git a/src/test/resources/alma-fix/990054301770206441.json b/src/test/resources/alma-fix/990054301770206441.json index b6e52507b..3c2df381e 100644 --- a/src/test/resources/alma-fix/990054301770206441.json +++ b/src/test/resources/alma-fix/990054301770206441.json @@ -241,6 +241,7 @@ "currentLibrary" : "ALKU", "currentLocation" : "ALKU_ZS", "callNumber" : "Fr 88", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,01715224", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-139a#!", "isil" : "DE-6-139a", diff --git a/src/test/resources/alma-fix/990054345550206441.json b/src/test/resources/alma-fix/990054345550206441.json index 20fda1f3b..25b74aab1 100644 --- a/src/test/resources/alma-fix/990054345550206441.json +++ b/src/test/resources/alma-fix/990054345550206441.json @@ -242,6 +242,7 @@ "serialNumber" : "497335801", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -255,6 +256,7 @@ "serialNumber" : "497047701", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -267,6 +269,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -280,6 +283,7 @@ "serialNumber" : "496523801", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -293,6 +297,7 @@ "serialNumber" : "496976701", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -305,6 +310,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -317,6 +323,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -329,6 +336,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -341,6 +349,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -353,6 +362,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -365,6 +375,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -377,6 +388,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -389,6 +401,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -402,6 +415,7 @@ "serialNumber" : "496805001", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -414,6 +428,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -427,6 +442,7 @@ "serialNumber" : "496725001", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -440,6 +456,7 @@ "serialNumber" : "497056301", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -452,6 +469,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -464,6 +482,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -477,6 +496,7 @@ "serialNumber" : "496626601", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -490,6 +510,7 @@ "serialNumber" : "497168401", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -503,6 +524,7 @@ "serialNumber" : "496523701", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -515,6 +537,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -527,6 +550,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -539,6 +563,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -551,6 +576,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -563,6 +589,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", @@ -575,6 +602,7 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", diff --git a/src/test/resources/alma-fix/990055981810206441.json b/src/test/resources/alma-fix/990055981810206441.json index 9dbfb5e7c..b1dcd12c5 100644 --- a/src/test/resources/alma-fix/990055981810206441.json +++ b/src/test/resources/alma-fix/990055981810206441.json @@ -279,6 +279,7 @@ "serialNumber" : "ULB0054169", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -292,6 +293,7 @@ "serialNumber" : "ULB0041793", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -305,6 +307,7 @@ "serialNumber" : "ULB0041794", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -355,6 +358,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LS", "callNumber" : "WES 0.1:55", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", @@ -367,6 +371,7 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LS", "callNumber" : "WES 0.1:55", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", From 4f05f37996241eeb18fd882d0fef79b21b225e6f Mon Sep 17 00:00:00 2001 From: TobiasNx <61879957+TobiasNx@users.noreply.github.com> Date: Wed, 27 Sep 2023 12:11:58 +0200 Subject: [PATCH 10/23] Update src/main/resources/alma/fix/macros.fix Co-authored-by: Jens Wille --- src/main/resources/alma/fix/macros.fix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/alma/fix/macros.fix b/src/main/resources/alma/fix/macros.fix index 65eaa6aaf..6fa2574d5 100644 --- a/src/main/resources/alma/fix/macros.fix +++ b/src/main/resources/alma/fix/macros.fix @@ -279,7 +279,7 @@ do put_macro("opacLink") elsif exists("$i.@opacLinkHbzId.1") paste("hasItem[].$last.opacLink","$i.@opacLinkHbzId.1","hbzId","$i.@opacLinkHbzId.2",join_char:"") elsif exists("$i.@opacLinkIsbn.1") - paste("hasItem[].$last.opacLink","$i.@opacLinkIsbn.1","isbn[].1","$i.@opacLinkisbn.2",join_char:"") + paste("hasItem[].$last.opacLink","$i.@opacLinkIsbn.1","isbn[].1","$i.@opacLinkIsbn.2",join_char:"") elsif exists("$i.@opacLinkIssn.1") paste("hasItem[].$last.opacLink","$i.@opacLinkIssn.1","issn[].1","$i.@opacLinkissn.2",join_char:"") end From ed40503bc25fc4b5159b0d719a9e3b34739ad189 Mon Sep 17 00:00:00 2001 From: TobiasNx <61879957+TobiasNx@users.noreply.github.com> Date: Wed, 27 Sep 2023 12:14:08 +0200 Subject: [PATCH 11/23] Update src/main/resources/alma/fix/macros.fix Co-authored-by: Jens Wille --- src/main/resources/alma/fix/macros.fix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/alma/fix/macros.fix b/src/main/resources/alma/fix/macros.fix index 6fa2574d5..88dc02bd4 100644 --- a/src/main/resources/alma/fix/macros.fix +++ b/src/main/resources/alma/fix/macros.fix @@ -281,7 +281,7 @@ do put_macro("opacLink") elsif exists("$i.@opacLinkIsbn.1") paste("hasItem[].$last.opacLink","$i.@opacLinkIsbn.1","isbn[].1","$i.@opacLinkIsbn.2",join_char:"") elsif exists("$i.@opacLinkIssn.1") - paste("hasItem[].$last.opacLink","$i.@opacLinkIssn.1","issn[].1","$i.@opacLinkissn.2",join_char:"") + paste("hasItem[].$last.opacLink","$i.@opacLinkIssn.1","issn[].1","$i.@opacLinkIssn.2",join_char:"") end end From 43e21f4455145295d138999c7ff6e41bb6f3989f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20B=C3=BClte?= Date: Wed, 27 Sep 2023 12:48:44 +0200 Subject: [PATCH 12/23] Add field variable to macro and change position of call_macro #1888 --- src/main/resources/alma/fix/item.fix | 4 +- src/main/resources/alma/fix/macros.fix | 8 +- .../alma-fix/990001412590206441.json | 28 ++--- .../alma-fix/990011470300206441.json | 6 +- .../alma-fix/990014830510206441.json | 8 +- .../alma-fix/990016782920206441.json | 6 +- .../alma-fix/990021367710206441.json | 8 +- .../alma-fix/990021974470206441.json | 10 +- .../alma-fix/990026405480206441.json | 14 +-- .../alma-fix/990030574430206441.json | 4 +- .../alma-fix/990035016180206441.json | 18 +-- .../alma-fix/990041403870206441.json | 4 +- .../alma-fix/990050000600206441.json | 12 +- .../alma-fix/990051708340206441.json | 2 +- .../alma-fix/990052965140206441.json | 4 +- .../alma-fix/990053976760206441.json | 32 ++--- .../alma-fix/990054215550206441.json | 4 +- .../alma-fix/990054301770206441.json | 2 +- .../alma-fix/990054345550206441.json | 60 ++++----- .../alma-fix/990055981810206441.json | 14 +-- .../alma-fix/990058434730206441.json | 44 +++---- .../alma-fix/990058567920206441.json | 72 +++++------ .../alma-fix/990059571560206441.json | 6 +- .../alma-fix/990063549080206441.json | 8 +- .../alma-fix/990065341720206441.json | 2 +- .../alma-fix/990075429930206441.json | 26 ++-- .../alma-fix/990075538650206441.json | 6 +- .../alma-fix/990109712970206441.json | 6 +- .../alma-fix/990114098170206441.json | 2 +- .../alma-fix/990114617880206441.json | 2 +- .../alma-fix/990118562160206441.json | 2 +- .../alma-fix/990122511970206441.json | 2 +- .../alma-fix/990126276700206441.json | 24 ++-- .../alma-fix/990139686910206441.json | 2 +- .../alma-fix/990141342350206441.json | 2 +- .../alma-fix/990143325070206441.json | 4 +- .../alma-fix/990156060190206441.json | 66 +++++----- .../alma-fix/990167595410206441.json | 4 +- .../alma-fix/990171142550206441.json | 10 +- .../alma-fix/990173811970206441.json | 2 +- .../alma-fix/990181275760206441.json | 24 ++-- .../alma-fix/990182814750206441.json | 2 +- .../alma-fix/990183958380206441.json | 8 +- .../alma-fix/990185607520206441.json | 2 +- .../alma-fix/990185619180206441.json | 2 +- .../alma-fix/990189160110206441.json | 38 +++--- .../alma-fix/990193094010206441.json | 4 +- .../alma-fix/990193806600206441.json | 2 +- .../alma-fix/990194668760206441.json | 2 +- .../alma-fix/990194744870206441.json | 6 +- .../alma-fix/990198383780206441.json | 2 +- .../alma-fix/990202474680206441.json | 4 +- .../alma-fix/990204246530206441.json | 6 +- .../alma-fix/990207668220206441.json | 2 +- .../alma-fix/990209515320206441.json | 2 +- .../alma-fix/990209817770206441.json | 2 +- .../alma-fix/990210237770206441.json | 118 +++++++++--------- .../alma-fix/990210285400206441.json | 2 +- .../alma-fix/990210950050206441.json | 2 +- .../alma-fix/990217478660206441.json | 58 ++++----- .../alma-fix/990218189790206441.json | 2 +- .../alma-fix/990220027540206441.json | 2 +- .../alma-fix/990223521400206441.json | 46 +++---- .../alma-fix/990225056670206441.json | 2 +- .../alma-fix/990366394400206441.json | 2 +- .../alma-fix/990367731740206441.json | 2 +- .../alma-fix/990367761810206441.json | 2 +- .../alma-fix/990368743120206441.json | 2 +- .../resources/alma-fix/99370771475306441.json | 16 +-- .../resources/alma-fix/99370782520706441.json | 46 +++---- .../resources/alma-fix/99371014448006441.json | 2 +- .../resources/alma-fix/99371050452706441.json | 2 +- .../resources/alma-fix/99371530278506441.json | 2 +- .../resources/alma-fix/99372423490706441.json | 2 +- 74 files changed, 479 insertions(+), 479 deletions(-) diff --git a/src/main/resources/alma/fix/item.fix b/src/main/resources/alma/fix/item.fix index 255aaddc7..155b15d16 100644 --- a/src/main/resources/alma/fix/item.fix +++ b/src/main/resources/alma/fix/item.fix @@ -21,7 +21,6 @@ do list(path:"ITM ", "var": "$i") copy_field("$i.a", "$i.@iz") replace_all("$i.@iz",".*(\\d{4})$","$1") lookup("$i.@iz", "alma-institution-code-to-isil") - call_macro("opacLink") copy_field("$i.w","$i.@sublibraryIsil") lookup("$i.@sublibraryIsil", "hbzowner2sigel",delete:"true") lookup("$i.@sublibraryIsil", "sigel2isilMap",delete:"true") @@ -36,6 +35,7 @@ do list(path:"ITM ", "var": "$i") else copy_field("$i.@iz", "hasItem[].$last.heldBy.id") end + call_macro("opacLink", field:"@iz") copy_field("hasItem[].$last.heldBy.id","hasItem[].$last.heldBy.isil") prepend("hasItem[].$last.heldBy.id", "http://lobid.org/organisations/") append("hasItem[].$last.heldBy.id","#!") @@ -63,7 +63,6 @@ do list(path: "HOL ", "var": "$i") copy_field("$i.8", "$i.@iz") replace_all("$i.@iz",".*(\\d{4})$","$1") lookup("$i.@iz", "alma-institution-code-to-isil") - call_macro("opacLink") copy_field("$H52.b","$i.@sublibraryIsil") lookup("$i.@sublibraryIsil", "hbzowner2sigel",delete:"true") lookup("$i.@sublibraryIsil", "sigel2isilMap",delete:"true") @@ -78,6 +77,7 @@ do list(path: "HOL ", "var": "$i") else copy_field("$i.@iz", "hasItem[].$last.heldBy.id") end + call_macro("opacLink", field:"@iz") copy_field("hasItem[].$last.heldBy.id","hasItem[].$last.heldBy.isil") prepend("hasItem[].$last.heldBy.id", "http://lobid.org/organisations/") append("hasItem[].$last.heldBy.id","#!") diff --git a/src/main/resources/alma/fix/macros.fix b/src/main/resources/alma/fix/macros.fix index 88dc02bd4..e5594cd1d 100644 --- a/src/main/resources/alma/fix/macros.fix +++ b/src/main/resources/alma/fix/macros.fix @@ -256,21 +256,21 @@ end do put_macro("opacLink") if exists("zdbId") - copy_field("$i.@iz", "$i.@opacLinkZdbId") + copy_field("$i.$[field]", "$i.@opacLinkZdbId") lookup("$i.@opacLinkZdbId","isil2opac_zdbId", delete:"true") split_field("$i.@opacLinkZdbId","\\{zdbid\\}") elsif exists("hbzId") - copy_field("$i.@iz", "$i.@opacLinkHbzId") + copy_field("$i.$[field]", "$i.@opacLinkHbzId") lookup("$i.@opacLinkHbzId","isil2opac_hbzId", delete:"true") split_field("$i.@opacLinkHbzId","\\{hbzid\\}") end if exists("issn[].1") - copy_field("$i.@iz", "$i.@opacLinkIssn") + copy_field("$i.$[field]", "$i.@opacLinkIssn") lookup("$i.@opacLinkIssn","isil2opac_issn", delete:"true") split_field("$i.@opacLinkIssn","\\{issn\\}") end if exists("isbn[].1") - copy_field("$i.@iz", "$i.@opacLinkIsbn") + copy_field("$i.$[field]", "$i.@opacLinkIsbn") lookup("$i.@opacLinkIsbn","isil2opac_isbn", delete:"true") split_field("$i.@opacLinkZdbId","\\{isbn\\}") end diff --git a/src/test/resources/alma-fix/990001412590206441.json b/src/test/resources/alma-fix/990001412590206441.json index a06bd4a23..1a840a36a 100644 --- a/src/test/resources/alma-fix/990001412590206441.json +++ b/src/test/resources/alma-fix/990001412590206441.json @@ -114,12 +114,12 @@ "serialNumber" : "W00348898", "currentLibrary" : "W0001", "currentLocation" : "04", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000161712", "id" : "http://lobid.org/items/990001412590206441:DE-468:23138155830006447#!" }, { "label" : "lobid Bestandsressource", @@ -128,12 +128,12 @@ "serialNumber" : "881294001", "currentLibrary" : "F0001", "currentLocation" : "03", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000161712&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", "label" : "Universitätsbibliothek der Fernuniversität" }, + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000161712&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990001412590206441:DE-708:2397648970006464#!" }, { "label" : "lobid Bestandsressource", @@ -142,12 +142,12 @@ "serialNumber" : "02922183", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990001412590206441:DE-929:2367328890007506#!" }, { "label" : "lobid Bestandsressource", @@ -156,12 +156,12 @@ "serialNumber" : "02922177", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990001412590206441:DE-929:2367328900007506#!" }, { "label" : "lobid Bestandsressource", @@ -170,12 +170,12 @@ "serialNumber" : "0130003X", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990001412590206441:DE-929:2367328910007506#!" }, { "label" : "lobid Bestandsressource", @@ -184,12 +184,12 @@ "serialNumber" : ":94002663930", "currentLibrary" : "T0010", "currentLocation" : "kA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT000161712&local_base=STR01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", "label" : "Wissenschaftliche Bibliothek der Stadt Trier" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT000161712&local_base=STR01", "id" : "http://lobid.org/items/990001412590206441:DE-121:2319004410007826#!" }, { "label" : "lobid Bestandsressource", @@ -198,12 +198,12 @@ "serialNumber" : "50860674", "currentLibrary" : "EFB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000161712%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000161712%22", "id" : "http://lobid.org/items/990001412590206441:DE-290:23197423230006445#!" }, { "label" : "lobid Bestandsressource", @@ -212,12 +212,12 @@ "serialNumber" : "B1252/640", "currentLibrary" : "0", "currentLocation" : "0-MagAlt", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000161712", "id" : "http://lobid.org/items/990001412590206441:DE-5:23231651750006467#!" }, { "label" : "lobid Bestandsressource", @@ -239,12 +239,12 @@ "serialNumber" : "408422401", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000161712", "id" : "http://lobid.org/items/990001412590206441:DE-61:23299197890006443#!" }, { "label" : "lobid Bestandsressource", @@ -253,12 +253,12 @@ "serialNumber" : "PP4/111", "currentLibrary" : "38", "currentLocation" : "38-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000161712", "id" : "http://lobid.org/items/990001412590206441:DE-38:23307640680006476#!" }, { "label" : "lobid Bestandsressource", @@ -267,12 +267,12 @@ "serialNumber" : "48 QU 313", "currentLibrary" : "ZB", "currentLocation" : "ZB_GMAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000161712&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000161712&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990001412590206441:DE-6:23507162560006449#!" }, { "label" : "lobid Bestandsressource", @@ -281,12 +281,12 @@ "serialNumber" : "20ICM1270", "currentLibrary" : "S0001", "currentLocation" : "ERW", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", "label" : "Universitätsbibliothek Siegen" }, + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000161712", "id" : "http://lobid.org/items/990001412590206441:DE-467:2394316400006462#!" }, { "label" : "lobid Bestandsressource", @@ -295,24 +295,24 @@ "serialNumber" : "ICM1034", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000161712", "id" : "http://lobid.org/items/990001412590206441:DE-466:23135518530006463#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000161712", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000161712", "id" : "http://lobid.org/items/990001412590206441:DE-466:22135518500006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990011470300206441.json b/src/test/resources/alma-fix/990011470300206441.json index 9ff8981e7..d56161f6f 100644 --- a/src/test/resources/alma-fix/990011470300206441.json +++ b/src/test/resources/alma-fix/990011470300206441.json @@ -96,12 +96,12 @@ "serialNumber" : "0102.3750.19", "currentLibrary" : "T0011", "currentLocation" : "38", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003109553", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003109553", "id" : "http://lobid.org/items/990011470300206441:DE-385:23264500340006470#!" }, { "label" : "lobid Bestandsressource", @@ -110,24 +110,24 @@ "serialNumber" : "Z17-045835", "currentLibrary" : "PHIL", "currentLocation" : "PHIL_PBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003109553&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003109553&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990011470300206441:DE-6-015:23600509680006449#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003109553", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003109553", "id" : "http://lobid.org/items/990011470300206441:DE-385:22264500330006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990014830510206441.json b/src/test/resources/alma-fix/990014830510206441.json index d6015cc17..ca4c7ea04 100644 --- a/src/test/resources/alma-fix/990014830510206441.json +++ b/src/test/resources/alma-fix/990014830510206441.json @@ -99,12 +99,12 @@ "serialNumber" : "0017.4679.62", "currentLibrary" : "T0011", "currentLocation" : "21", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003864492", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003864492", "id" : "http://lobid.org/items/990014830510206441:DE-385:23291734220006470#!" }, { "label" : "lobid Bestandsressource", @@ -113,12 +113,12 @@ "serialNumber" : "SK-201407", "currentLibrary" : "SM", "currentLocation" : "SM-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT003864492", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT003864492", "id" : "http://lobid.org/items/990014830510206441:DE-5-58:23241836240006467#!" }, { "label" : "lobid Bestandsressource", @@ -127,24 +127,24 @@ "serialNumber" : "KNLC1469", "currentLibrary" : "E0001", "currentLocation" : "E07IM", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT003864492&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT003864492&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990014830510206441:DE-465:23382608040006446#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003864492", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003864492", "id" : "http://lobid.org/items/990014830510206441:DE-385:22291734190006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990016782920206441.json b/src/test/resources/alma-fix/990016782920206441.json index 8c1191b8c..349401c7d 100644 --- a/src/test/resources/alma-fix/990016782920206441.json +++ b/src/test/resources/alma-fix/990016782920206441.json @@ -88,12 +88,12 @@ "serialNumber" : "E1000000037300", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT004285445&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT004285445&local_base=MHE01", "id" : "http://lobid.org/items/990016782920206441:DE-1156:2311409300006459#!" }, { "label" : "lobid Bestandsressource", @@ -115,12 +115,12 @@ "serialNumber" : "012979677107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT004285445%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT004285445%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990016782920206441:DE-107:237988430007506#!" }, { "label" : "lobid Bestandsressource", @@ -129,12 +129,12 @@ "serialNumber" : "Z156-011049", "currentLibrary" : "MUPA", "currentLocation" : "MUPA_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004285445&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-286#!", "isil" : "DE-6-286", "label" : "Universität Münster, Institut für Musikpädagogik, Bibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004285445&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990016782920206441:DE-6-286:23506545980006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990021367710206441.json b/src/test/resources/alma-fix/990021367710206441.json index 732400da7..83a21260b 100644 --- a/src/test/resources/alma-fix/990021367710206441.json +++ b/src/test/resources/alma-fix/990021367710206441.json @@ -95,12 +95,12 @@ "serialNumber" : "20098056", "currentLibrary" : "SFS", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT005207972%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT005207972%22", "id" : "http://lobid.org/items/990021367710206441:DE-290:23198604440006445#!" }, { "label" : "lobid Bestandsressource", @@ -109,12 +109,12 @@ "serialNumber" : "186573", "currentLibrary" : "ZB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT005207972%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT005207972%22", "id" : "http://lobid.org/items/990021367710206441:DE-290:23198604460006445#!" }, { "label" : "lobid Bestandsressource", @@ -123,12 +123,12 @@ "serialNumber" : "0012.7330.22", "currentLibrary" : "T0011", "currentLocation" : "MAG", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005207972", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005207972", "id" : "http://lobid.org/items/990021367710206441:DE-385:23252207750006470#!" }, { "label" : "lobid Bestandsressource", @@ -148,12 +148,12 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005207972", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005207972", "id" : "http://lobid.org/items/990021367710206441:DE-385:22252207740006470#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990021974470206441.json b/src/test/resources/alma-fix/990021974470206441.json index 4f514f61d..d081608f5 100644 --- a/src/test/resources/alma-fix/990021974470206441.json +++ b/src/test/resources/alma-fix/990021974470206441.json @@ -107,12 +107,12 @@ "serialNumber" : "604:016874", "currentLibrary" : "604", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT005271161&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-604#!", "isil" : "DE-82-604", "label" : "Historisches Institut, Bibliothek" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT005271161&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/990021974470206441:DE-82-604:23253806030006448#!" }, { "label" : "lobid Bestandsressource", @@ -121,12 +121,12 @@ "serialNumber" : "0166.4021.80", "currentLibrary" : "T0011", "currentLocation" : "MAG", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005271161", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005271161", "id" : "http://lobid.org/items/990021974470206441:DE-385:23288625180006470#!" }, { "label" : "lobid Bestandsressource", @@ -161,12 +161,12 @@ "serialNumber" : "Gc757", "currentLibrary" : "38", "currentLocation" : "38-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT005271161", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT005271161", "id" : "http://lobid.org/items/990021974470206441:DE-38:23290695210006476#!" }, { "label" : "lobid Bestandsressource", @@ -175,12 +175,12 @@ "serialNumber" : "208/0032920", "currentLibrary" : "38-208", "currentLocation" : "38-208-VR", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT005271161", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-208#!", "isil" : "DE-38-208", "label" : "Gemeinschaftsbibliothek Internationales Recht" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT005271161", "id" : "http://lobid.org/items/990021974470206441:DE-38-208:23290695190006476#!" }, { "label" : "lobid Bestandsressource", @@ -189,12 +189,12 @@ "serialNumber" : "Z25-033835", "currentLibrary" : "RWS1", "currentLocation" : "RWS1_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT005271161&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-016#!", "isil" : "DE-6-016", "label" : "Universität Münster, Rechtswissenschaftliches Seminar, Bibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT005271161&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990021974470206441:DE-6-016:23561372540006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990026405480206441.json b/src/test/resources/alma-fix/990026405480206441.json index 617b4b7e0..9e1cc8cf6 100644 --- a/src/test/resources/alma-fix/990026405480206441.json +++ b/src/test/resources/alma-fix/990026405480206441.json @@ -97,12 +97,12 @@ "serialNumber" : "40275409", "currentLibrary" : "SIE", "currentLocation" : "SIE_PRAES", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT006813395%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Sie5#!", "isil" : "DE-Sie5", "label" : "Wissenschaftliche Bibliothek des Rhein-Sieg-Kreises" }, + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT006813395%22", "id" : "http://lobid.org/items/990026405480206441:DE-Sie5:2365555310006452#!" }, { "label" : "lobid Bestandsressource", @@ -111,12 +111,12 @@ "serialNumber" : "006392301", "currentLibrary" : "cdd", "currentLocation" : "HB", - "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT006813395", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, + "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT006813395", "id" : "http://lobid.org/items/990026405480206441:DE-Due62:2332858470006455#!" }, { "label" : "lobid Bestandsressource", @@ -125,12 +125,12 @@ "serialNumber" : "06542653", "currentLibrary" : "R0002", "currentLocation" : "00002000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Zw1#!", "isil" : "DE-Zw1", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Bibliotheca Bipontina" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990026405480206441:DE-Zw1:2310230370007506#!" }, { "label" : "lobid Bestandsressource", @@ -139,12 +139,12 @@ "serialNumber" : "07258981", "currentLibrary" : "R0002", "currentLocation" : "00002000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Zw1#!", "isil" : "DE-Zw1", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Bibliotheca Bipontina" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990026405480206441:DE-Zw1:2310230380007506#!" }, { "label" : "lobid Bestandsressource", @@ -166,12 +166,12 @@ "serialNumber" : "420/030051", "currentLibrary" : "38-420", "currentLocation" : "38-420-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT006813395", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-420#!", "isil" : "DE-38-420", "label" : "Historisches Institut, Abteilung für Mittlere und Neuere Geschichte mit Abteilung für Nationalismusforschung, Bibliothek" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT006813395", "id" : "http://lobid.org/items/990026405480206441:DE-38-420:23288776350006476#!" }, { "label" : "lobid Bestandsressource", @@ -180,24 +180,24 @@ "serialNumber" : "WUJ1407(3)", "currentLibrary" : "P0001", "currentLocation" : "51", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006813395", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006813395", "id" : "http://lobid.org/items/990026405480206441:DE-466:23148766830006463#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006813395", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006813395", "id" : "http://lobid.org/items/990026405480206441:DE-466:22148766820006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990030574430206441.json b/src/test/resources/alma-fix/990030574430206441.json index c1564daf1..a01bf767c 100644 --- a/src/test/resources/alma-fix/990030574430206441.json +++ b/src/test/resources/alma-fix/990030574430206441.json @@ -72,12 +72,12 @@ "serialNumber" : "SL-031324", "currentLibrary" : "SG", "currentLocation" : "SG-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT007847893", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-13#!", "isil" : "DE-5-13", "label" : "Universität Bonn, Institut für Germanistik, Vergleichende Literatur- und Kulturwissenschaft, Bibliothek" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT007847893", "id" : "http://lobid.org/items/990030574430206441:DE-5-13:23308126210006467#!" }, { "label" : "lobid Bestandsressource", @@ -86,12 +86,12 @@ "serialNumber" : "65/7293", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT007847893", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT007847893", "id" : "http://lobid.org/items/990030574430206441:DE-5:23308126230006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990035016180206441.json b/src/test/resources/alma-fix/990035016180206441.json index d25281286..76286064c 100644 --- a/src/test/resources/alma-fix/990035016180206441.json +++ b/src/test/resources/alma-fix/990035016180206441.json @@ -85,12 +85,12 @@ "serialNumber" : "456292-10", "currentLibrary" : "W0001", "currentLocation" : "06", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT008733617", "id" : "http://lobid.org/items/990035016180206441:DE-468:23121154640006447#!" }, { "label" : "lobid Bestandsressource", @@ -99,12 +99,12 @@ "serialNumber" : "TEMP55788", "currentLibrary" : "EFB", "currentLocation" : "BibDtLit", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT008733617%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT008733617%22", "id" : "http://lobid.org/items/990035016180206441:DE-290:23200446830006445#!" }, { "label" : "lobid Bestandsressource", @@ -139,12 +139,12 @@ "serialNumber" : "CJU1482_D", "currentLibrary" : "D0001", "currentLocation" : "D98", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990035016180206441:DE-465:23372647300006446#!" }, { "label" : "lobid Bestandsressource", @@ -153,12 +153,12 @@ "serialNumber" : "DDZR1026", "currentLibrary" : "E0001", "currentLocation" : "E06", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990035016180206441:DE-465:23372647280006446#!" }, { "label" : "lobid Bestandsressource", @@ -167,12 +167,12 @@ "serialNumber" : "LS/0039447", "currentLibrary" : "38", "currentLocation" : "38-LS", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT008733617", "id" : "http://lobid.org/items/990035016180206441:DE-38:23229037390006476#!" }, { "label" : "lobid Bestandsressource", @@ -181,12 +181,12 @@ "serialNumber" : "YB 442-19760", "currentLibrary" : "ZUP", "currentLocation" : "ZUP_MIKRO", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-Z#!", "isil" : "DE-6-Z", "label" : "Universitäts- und Landesbibliothek Münster, Zeitungs- und Pressearchiv" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990035016180206441:DE-6-Z:23504836650006449#!" }, { "label" : "lobid Bestandsressource", @@ -195,12 +195,12 @@ "serialNumber" : "786164-10", "currentLibrary" : "S0001", "currentLocation" : "ARMED", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", "label" : "Universitätsbibliothek Siegen" }, + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT008733617", "id" : "http://lobid.org/items/990035016180206441:DE-467:2377634040006462#!" }, { "label" : "lobid Bestandsressource", @@ -209,24 +209,24 @@ "serialNumber" : "734866-10", "currentLibrary" : "P0001", "currentLocation" : "93", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT008733617", "id" : "http://lobid.org/items/990035016180206441:DE-466:23125280390006463#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT008733617", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT008733617", "id" : "http://lobid.org/items/990035016180206441:DE-466:22125280380006463#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990041403870206441.json b/src/test/resources/alma-fix/990041403870206441.json index 313fbd06f..efe29cffd 100644 --- a/src/test/resources/alma-fix/990041403870206441.json +++ b/src/test/resources/alma-fix/990041403870206441.json @@ -70,12 +70,12 @@ "serialNumber" : "P99/228", "currentLibrary" : "0", "currentLocation" : "0-Speich", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT009965981", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT009965981", "id" : "http://lobid.org/items/990041403870206441:DE-5:23218652060006467#!" }, { "label" : "lobid Bestandsressource", @@ -84,12 +84,12 @@ "serialNumber" : "11M1706", "currentLibrary" : "38-HLS", "currentLocation" : "38-HLS-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT009965981", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT009965981", "id" : "http://lobid.org/items/990041403870206441:DE-38:23320523800006476#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990050000600206441.json b/src/test/resources/alma-fix/990050000600206441.json index 020e265fa..7e061781d 100644 --- a/src/test/resources/alma-fix/990050000600206441.json +++ b/src/test/resources/alma-fix/990050000600206441.json @@ -170,12 +170,12 @@ "callNumber" : "mat 03-252/", "currentLibrary" : "RL002", "currentLocation" : "ALLLD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", "label" : "Universitätsbibliothek der RPTU in Landau" }, + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611", "id" : "http://lobid.org/items/990050000600206441:DE-Lan1:2365786130007476#!" }, { "label" : "lobid Bestandsressource", @@ -184,12 +184,12 @@ "serialNumber" : "657775-10", "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006855611", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006855611", "id" : "http://lobid.org/items/990050000600206441:DE-466:23137495220006463#!" }, { "label" : "lobid Bestandsressource", @@ -208,12 +208,12 @@ "currentLibrary" : "R3042", "currentLocation" : "ALL42", "callNumber" : "MAS 024/012", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611", "id" : "http://lobid.org/items/990050000600206441:DE-386:2265786120007476#!" }, { "label" : "lobid Bestandsressource", @@ -221,12 +221,12 @@ "currentLibrary" : "R3048", "currentLocation" : "ALL48", "callNumber" : "MAT Furl", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611", "id" : "http://lobid.org/items/990050000600206441:DE-386:2265786090007476#!" }, { "label" : "lobid Bestandsressource", @@ -234,12 +234,12 @@ "currentLibrary" : "E0001", "currentLocation" : "EHS", "callNumber" : "TBM1318 <>", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990050000600206441:DE-465:22369588590006446#!" }, { "label" : "lobid Bestandsressource", @@ -247,12 +247,12 @@ "currentLibrary" : "D0001", "currentLocation" : "DHS", "callNumber" : "TBM1318_d <>", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990050000600206441:DE-465:22369588600006446#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990051708340206441.json b/src/test/resources/alma-fix/990051708340206441.json index fdfe59ef4..f07602427 100644 --- a/src/test/resources/alma-fix/990051708340206441.json +++ b/src/test/resources/alma-fix/990051708340206441.json @@ -67,12 +67,12 @@ "serialNumber" : "115266-10", "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT009976241", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT009976241", "id" : "http://lobid.org/items/990051708340206441:DE-466:23139237860006463#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990052965140206441.json b/src/test/resources/alma-fix/990052965140206441.json index 5ba18743f..e5b9526e1 100644 --- a/src/test/resources/alma-fix/990052965140206441.json +++ b/src/test/resources/alma-fix/990052965140206441.json @@ -129,24 +129,24 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT002529477%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT002529477%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990052965140206441:DE-929:2217153360007506#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT002529477", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT002529477", "id" : "http://lobid.org/items/990052965140206441:DE-385:22279005870006470#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990053976760206441.json b/src/test/resources/alma-fix/990053976760206441.json index 0021307c0..1bd46bda9 100644 --- a/src/test/resources/alma-fix/990053976760206441.json +++ b/src/test/resources/alma-fix/990053976760206441.json @@ -221,12 +221,12 @@ "serialNumber" : "1148014-10", "currentLibrary" : "D0001", "currentLocation" : "D30", - "opacLink" : "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=00319244", "id" : "http://lobid.org/items/990053976760206441:DE-465:23409593810006446#!" }, { "label" : "lobid Bestandsressource", @@ -235,12 +235,12 @@ "serialNumber" : "M08 7898", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990053976760206441:DE-Kob7:2332332670008057#!" }, { "label" : "lobid Bestandsressource", @@ -249,12 +249,12 @@ "serialNumber" : "M08 7893", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990053976760206441:DE-Kob7:2332332740008057#!" }, { "label" : "lobid Bestandsressource", @@ -263,12 +263,12 @@ "serialNumber" : "M08 7897", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990053976760206441:DE-Kob7:2332332700008057#!" }, { "label" : "lobid Bestandsressource", @@ -277,12 +277,12 @@ "serialNumber" : "M08 7895", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990053976760206441:DE-Kob7:2332332710008057#!" }, { "label" : "lobid Bestandsressource", @@ -291,12 +291,12 @@ "serialNumber" : "M08 7896", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990053976760206441:DE-Kob7:2332332720008057#!" }, { "label" : "lobid Bestandsressource", @@ -305,12 +305,12 @@ "serialNumber" : "M08 7894", "currentLibrary" : "RL001", "currentLocation" : "MAGZS", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990053976760206441:DE-Kob7:2332332730008057#!" }, { "label" : "lobid Bestandsressource", @@ -319,12 +319,12 @@ "serialNumber" : "9089785-10", "currentLibrary" : "S0001", "currentLocation" : "FMZS", - "opacLink" : "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", "label" : "Universitätsbibliothek Siegen" }, + "opacLink" : "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990053976760206441:DE-467:2379886190006462#!" }, { "label" : "lobid Bestandsressource", @@ -392,12 +392,12 @@ "currentLibrary" : "ZB", "currentLocation" : "ZS", "callNumber" : "ZN 535", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22123550-3%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22123550-3%22", "id" : "http://lobid.org/items/990053976760206441:DE-290:22189310720006445#!" }, { "label" : "lobid Bestandsressource", @@ -405,12 +405,12 @@ "currentLibrary" : "UB_BI", "currentLocation" : "17_Zs", "callNumber" : "17 QD000 P600", - "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", "label" : "Universitätsbibliothek Bielefeld" }, + "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=00319244&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10", "id" : "http://lobid.org/items/990053976760206441:DE-361:22274254620006442#!" }, { "label" : "lobid Bestandsressource", @@ -418,12 +418,12 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_Z", "callNumber" : "ohne Sign.", - "opacLink" : "https://suchen.ub.rub.de/zdbid/123550-3", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, + "opacLink" : "https://suchen.ub.rub.de/zdbid/123550-3", "id" : "http://lobid.org/items/990053976760206441:DE-294:22175660800006471#!" }, { "label" : "lobid Bestandsressource", @@ -431,12 +431,12 @@ "currentLibrary" : "X0001", "currentLocation" : "03P", "callNumber" : "phy z p 455", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=00319244", "id" : "http://lobid.org/items/990053976760206441:DE-61:22302058760006443#!" }, { "label" : "lobid Bestandsressource", @@ -456,12 +456,12 @@ "currentLibrary" : "PHY", "currentLocation" : "PHY_ZS", "callNumber" : "DP", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-023#!", "isil" : "DE-6-023", "label" : "Universität Münster, Bibliothek des Fachbereichs Physik" }, + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", "id" : "http://lobid.org/items/990053976760206441:DE-6-023:22526741320006449#!" }, { "label" : "lobid Bestandsressource", @@ -469,12 +469,12 @@ "currentLibrary" : "BEK", "currentLocation" : "BEK_ZS", "callNumber" : "Z 1011", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-123#!", "isil" : "DE-6-123", "label" : "Universität Münster, Bibliothek für Erziehungswissenschaft und Kommunikationswissenschaft" }, + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", "id" : "http://lobid.org/items/990053976760206441:DE-6-123:22526741310006449#!" }, { "label" : "lobid Bestandsressource", @@ -482,12 +482,12 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_ZS", "callNumber" : "Z Qu 4447", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", "id" : "http://lobid.org/items/990053976760206441:DE-6:22526741340006449#!" }, { "label" : "lobid Bestandsressource", @@ -495,12 +495,12 @@ "currentLibrary" : "P0001", "currentLocation" : "40", "callNumber" : "67p54", - "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=00319244", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=00319244&scope=catalog&sf=rank", "id" : "http://lobid.org/items/990053976760206441:DE-466:22131234930006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990054215550206441.json b/src/test/resources/alma-fix/990054215550206441.json index 245aa3531..35d2c68e7 100644 --- a/src/test/resources/alma-fix/990054215550206441.json +++ b/src/test/resources/alma-fix/990054215550206441.json @@ -150,12 +150,12 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "callNumber" : "Z 4' 66/103", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%221257-9%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%221257-9%22", "id" : "http://lobid.org/items/990054215550206441:DE-5:22235621980006467#!" }, { "label" : "lobid Bestandsressource", @@ -163,12 +163,12 @@ "currentLibrary" : "UB", "currentLocation" : "UB_Z", "callNumber" : "ZRC 828", - "opacLink" : "https://suchen.ub.rub.de/zdbid/1257-9", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, + "opacLink" : "https://suchen.ub.rub.de/zdbid/1257-9", "id" : "http://lobid.org/items/990054215550206441:DE-294:22184893700006471#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990054301770206441.json b/src/test/resources/alma-fix/990054301770206441.json index 3c2df381e..e4add9ac6 100644 --- a/src/test/resources/alma-fix/990054301770206441.json +++ b/src/test/resources/alma-fix/990054301770206441.json @@ -241,12 +241,12 @@ "currentLibrary" : "ALKU", "currentLocation" : "ALKU_ZS", "callNumber" : "Fr 88", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,01715224", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-139a#!", "isil" : "DE-6-139a", "label" : "Kommission Alltagskulturforschung für Westfalen (KAF), Bibliothek" }, + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,01715224", "id" : "http://lobid.org/items/990054301770206441:DE-6-139a:22577982090006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990054345550206441.json b/src/test/resources/alma-fix/990054345550206441.json index 25b74aab1..7b13c0ad6 100644 --- a/src/test/resources/alma-fix/990054345550206441.json +++ b/src/test/resources/alma-fix/990054345550206441.json @@ -242,12 +242,12 @@ "serialNumber" : "497335801", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763870006443#!" }, { "label" : "lobid Bestandsressource", @@ -256,12 +256,12 @@ "serialNumber" : "497047701", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763880006443#!" }, { "label" : "lobid Bestandsressource", @@ -269,12 +269,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763720006443#!" }, { "label" : "lobid Bestandsressource", @@ -283,12 +283,12 @@ "serialNumber" : "496523801", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763800006443#!" }, { "label" : "lobid Bestandsressource", @@ -297,12 +297,12 @@ "serialNumber" : "496976701", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763810006443#!" }, { "label" : "lobid Bestandsressource", @@ -310,12 +310,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763710006443#!" }, { "label" : "lobid Bestandsressource", @@ -323,12 +323,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763610006443#!" }, { "label" : "lobid Bestandsressource", @@ -336,12 +336,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763640006443#!" }, { "label" : "lobid Bestandsressource", @@ -349,12 +349,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763630006443#!" }, { "label" : "lobid Bestandsressource", @@ -362,12 +362,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763620006443#!" }, { "label" : "lobid Bestandsressource", @@ -375,12 +375,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763650006443#!" }, { "label" : "lobid Bestandsressource", @@ -388,12 +388,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763660006443#!" }, { "label" : "lobid Bestandsressource", @@ -401,12 +401,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763670006443#!" }, { "label" : "lobid Bestandsressource", @@ -415,12 +415,12 @@ "serialNumber" : "496805001", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763840006443#!" }, { "label" : "lobid Bestandsressource", @@ -428,12 +428,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763750006443#!" }, { "label" : "lobid Bestandsressource", @@ -442,12 +442,12 @@ "serialNumber" : "496725001", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763830006443#!" }, { "label" : "lobid Bestandsressource", @@ -456,12 +456,12 @@ "serialNumber" : "497056301", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763850006443#!" }, { "label" : "lobid Bestandsressource", @@ -469,12 +469,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763700006443#!" }, { "label" : "lobid Bestandsressource", @@ -482,12 +482,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763740006443#!" }, { "label" : "lobid Bestandsressource", @@ -496,12 +496,12 @@ "serialNumber" : "496626601", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763820006443#!" }, { "label" : "lobid Bestandsressource", @@ -510,12 +510,12 @@ "serialNumber" : "497168401", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763860006443#!" }, { "label" : "lobid Bestandsressource", @@ -524,12 +524,12 @@ "serialNumber" : "496523701", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763770006443#!" }, { "label" : "lobid Bestandsressource", @@ -537,12 +537,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763690006443#!" }, { "label" : "lobid Bestandsressource", @@ -550,12 +550,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763680006443#!" }, { "label" : "lobid Bestandsressource", @@ -563,12 +563,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763590006443#!" }, { "label" : "lobid Bestandsressource", @@ -576,12 +576,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763600006443#!" }, { "label" : "lobid Bestandsressource", @@ -589,12 +589,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763580006443#!" }, { "label" : "lobid Bestandsressource", @@ -602,12 +602,12 @@ "callNumber" : "rei/z0003", "currentLibrary" : "X0001", "currentLocation" : "93L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", "id" : "http://lobid.org/items/990054345550206441:DE-61:23349048300006443#!" }, { "label" : "lobid Bestandsressource", @@ -650,12 +650,12 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "callNumber" : "Z 95/130", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22619424-2%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22619424-2%22", "id" : "http://lobid.org/items/990054345550206441:DE-5:22214232350006467#!" }, { "label" : "lobid Bestandsressource", @@ -663,12 +663,12 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "callNumber" : "Z 95/130", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22619424-2%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22619424-2%22", "id" : "http://lobid.org/items/990054345550206441:DE-5:22214232360006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990055981810206441.json b/src/test/resources/alma-fix/990055981810206441.json index b1dcd12c5..60b6caf11 100644 --- a/src/test/resources/alma-fix/990055981810206441.json +++ b/src/test/resources/alma-fix/990055981810206441.json @@ -279,12 +279,12 @@ "serialNumber" : "ULB0054169", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "id" : "http://lobid.org/items/990055981810206441:DE-6:23651985810006449#!" }, { "label" : "lobid Bestandsressource", @@ -293,12 +293,12 @@ "serialNumber" : "ULB0041793", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "id" : "http://lobid.org/items/990055981810206441:DE-6:23650616280006449#!" }, { "label" : "lobid Bestandsressource", @@ -307,12 +307,12 @@ "serialNumber" : "ULB0041794", "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "id" : "http://lobid.org/items/990055981810206441:DE-6:23650616270006449#!" }, { "label" : "lobid Bestandsressource", @@ -332,12 +332,12 @@ "currentLibrary" : "UB", "currentLocation" : "UB_Z", "callNumber" : "ZYC 22", - "opacLink" : "https://suchen.ub.rub.de/zdbid/1089874-8", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, + "opacLink" : "https://suchen.ub.rub.de/zdbid/1089874-8", "id" : "http://lobid.org/items/990055981810206441:DE-294:22118612190006471#!" }, { "label" : "lobid Bestandsressource", @@ -345,12 +345,12 @@ "currentLibrary" : "UB", "currentLocation" : "UB_Z", "callNumber" : "ZGC 889", - "opacLink" : "https://suchen.ub.rub.de/zdbid/1089874-8", "heldBy" : { "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, + "opacLink" : "https://suchen.ub.rub.de/zdbid/1089874-8", "id" : "http://lobid.org/items/990055981810206441:DE-294:22118612210006471#!" }, { "label" : "lobid Bestandsressource", @@ -358,12 +358,12 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LS", "callNumber" : "WES 0.1:55", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "id" : "http://lobid.org/items/990055981810206441:DE-6:22547318240006449#!" }, { "label" : "lobid Bestandsressource", @@ -371,12 +371,12 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LS", "callNumber" : "WES 0.1:55", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", "id" : "http://lobid.org/items/990055981810206441:DE-6:22547318250006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990058434730206441.json b/src/test/resources/alma-fix/990058434730206441.json index 1ac7e70a9..16059cf2a 100644 --- a/src/test/resources/alma-fix/990058434730206441.json +++ b/src/test/resources/alma-fix/990058434730206441.json @@ -154,12 +154,12 @@ "serialNumber" : "000565227000010", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000893437", "id" : "http://lobid.org/items/990058434730206441:DE-468:23143362620006447#!" }, { "label" : "lobid Bestandsressource", @@ -168,12 +168,12 @@ "serialNumber" : "KN41$01478356", "currentLibrary" : "KP001", "currentLocation" : "MMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT000893437&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT000893437&local_base=ZBS01", "id" : "http://lobid.org/items/990058434730206441:DE-Kn41:2317181430006478#!" }, { "label" : "lobid Bestandsressource", @@ -234,12 +234,12 @@ "serialNumber" : "707452803107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000893437%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000893437%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990058434730206441:DE-107:2384300260007506#!" }, { "label" : "lobid Bestandsressource", @@ -248,12 +248,12 @@ "serialNumber" : "0176.4077.46", "currentLibrary" : "T0011", "currentLocation" : "31", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", "id" : "http://lobid.org/items/990058434730206441:DE-385:23283899660006470#!" }, { "label" : "lobid Bestandsressource", @@ -262,12 +262,12 @@ "serialNumber" : "0150.6604.89", "currentLibrary" : "T0011", "currentLocation" : "80", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", "id" : "http://lobid.org/items/990058434730206441:DE-385:23283899620006470#!" }, { "label" : "lobid Bestandsressource", @@ -276,12 +276,12 @@ "serialNumber" : "GA-112635", "currentLibrary" : "GA", "currentLocation" : "GA-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-74#!", "isil" : "DE-5-74", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Abteilung Alte Geschichte, Bibliothek" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", "id" : "http://lobid.org/items/990058434730206441:DE-5-74:23287792620006467#!" }, { "label" : "lobid Bestandsressource", @@ -290,12 +290,12 @@ "serialNumber" : "TK-077339", "currentLibrary" : "TK", "currentLocation" : "TK-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-108#!", "isil" : "DE-5-108", "label" : "Universität Bonn, Fachbibliothek der Evangelischen und Katholischen Theologie" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", "id" : "http://lobid.org/items/990058434730206441:DE-5-108:23287792640006467#!" }, { "label" : "lobid Bestandsressource", @@ -304,12 +304,12 @@ "serialNumber" : "69/4564", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", "id" : "http://lobid.org/items/990058434730206441:DE-5:23287792660006467#!" }, { "label" : "lobid Bestandsressource", @@ -370,12 +370,12 @@ "serialNumber" : "LBB1092", "currentLibrary" : "E0001", "currentLocation" : "E11", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990058434730206441:DE-465:23378107640006446#!" }, { "label" : "lobid Bestandsressource", @@ -384,12 +384,12 @@ "serialNumber" : "402856101", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", "id" : "http://lobid.org/items/990058434730206441:DE-61:23316394070006443#!" }, { "label" : "lobid Bestandsressource", @@ -398,12 +398,12 @@ "serialNumber" : "402856102", "currentLibrary" : "X0025", "currentLocation" : "25", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", "id" : "http://lobid.org/items/990058434730206441:DE-61:23316394030006443#!" }, { "label" : "lobid Bestandsressource", @@ -412,12 +412,12 @@ "serialNumber" : "402856103", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", "id" : "http://lobid.org/items/990058434730206441:DE-61:23316394050006443#!" }, { "label" : "lobid Bestandsressource", @@ -426,12 +426,12 @@ "serialNumber" : "1B4842", "currentLibrary" : "38", "currentLocation" : "38-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000893437", "id" : "http://lobid.org/items/990058434730206441:DE-38:23301320240006476#!" }, { "label" : "lobid Bestandsressource", @@ -440,12 +440,12 @@ "serialNumber" : "TEMP3414", "currentLibrary" : "38-622", "currentLocation" : "38-622-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-622#!", "isil" : "DE-38-622", "label" : "Institut für Katholische Theologie, Bibliothek" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000893437", "id" : "http://lobid.org/items/990058434730206441:DE-38-622:23301320220006476#!" }, { "label" : "lobid Bestandsressource", @@ -454,12 +454,12 @@ "serialNumber" : "Z140-016417", "currentLibrary" : "IJD", "currentLocation" : "IJD_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-119#!", "isil" : "DE-6-119", "label" : "Universität Münster, Institutum Judaicum Delitzschianum, Bibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990058434730206441:DE-6-119:23602951480006449#!" }, { "label" : "lobid Bestandsressource", @@ -468,12 +468,12 @@ "serialNumber" : "3G 18788", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990058434730206441:DE-6:23602951640006449#!" }, { "label" : "lobid Bestandsressource", @@ -482,12 +482,12 @@ "serialNumber" : "Z33-001736", "currentLibrary" : "EVT", "currentLocation" : "EVT_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-006#!", "isil" : "DE-6-006", "label" : "Universität Münster, Evangelisch-Theologische Fakultät, Bibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990058434730206441:DE-6-006:23602951510006449#!" }, { "label" : "lobid Bestandsressource", @@ -496,12 +496,12 @@ "serialNumber" : "Z30-002690", "currentLibrary" : "KATJ", "currentLocation" : "KATJ_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-011#!", "isil" : "DE-6-011", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abteilung Johannisstr." }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990058434730206441:DE-6-011:23602951550006449#!" }, { "label" : "lobid Bestandsressource", @@ -510,12 +510,12 @@ "serialNumber" : "Z15-000825", "currentLibrary" : "FBH", "currentLocation" : "FBH_KPBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990058434730206441:DE-6-248:23602951590006449#!" }, { "label" : "lobid Bestandsressource", @@ -524,12 +524,12 @@ "serialNumber" : "21INR1017", "currentLibrary" : "S0001", "currentLocation" : "H5", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", "label" : "Universitätsbibliothek Siegen" }, + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000893437", "id" : "http://lobid.org/items/990058434730206441:DE-467:2394453370006462#!" }, { "label" : "lobid Bestandsressource", @@ -538,12 +538,12 @@ "serialNumber" : "INR1067", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000893437", "id" : "http://lobid.org/items/990058434730206441:DE-466:23136243400006463#!" }, { "label" : "lobid Bestandsressource", @@ -605,12 +605,12 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", "id" : "http://lobid.org/items/990058434730206441:DE-385:22283899610006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990058567920206441.json b/src/test/resources/alma-fix/990058567920206441.json index 50726361f..b36fe9884 100644 --- a/src/test/resources/alma-fix/990058567920206441.json +++ b/src/test/resources/alma-fix/990058567920206441.json @@ -167,12 +167,12 @@ "serialNumber" : "000572482000010", "currentLibrary" : "W0001", "currentLocation" : "47", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-468:23108852790006447#!" }, { "label" : "lobid Bestandsressource", @@ -194,12 +194,12 @@ "serialNumber" : "750333401", "currentLibrary" : "F0001", "currentLocation" : "00", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", "label" : "Universitätsbibliothek der Fernuniversität" }, + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990058567920206441:DE-708:23110796430006464#!" }, { "label" : "lobid Bestandsressource", @@ -208,12 +208,12 @@ "serialNumber" : "101591605", "currentLibrary" : "R3032", "currentLocation" : "FHSOZ", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-386:2386676830007476#!" }, { "label" : "lobid Bestandsressource", @@ -222,12 +222,12 @@ "serialNumber" : "101591593", "currentLibrary" : "R3032", "currentLocation" : "FHSOZ", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-386:2386676840007476#!" }, { "label" : "lobid Bestandsressource", @@ -236,12 +236,12 @@ "serialNumber" : "C130374", "currentLibrary" : "RL002", "currentLocation" : "FHELD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", "label" : "Universitätsbibliothek der RPTU in Landau" }, + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-Lan1:2386676860007476#!" }, { "label" : "lobid Bestandsressource", @@ -250,12 +250,12 @@ "serialNumber" : "ZA5799-239=2", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_TK", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT000909138&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT000909138&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/990058567920206441:DE-82:23253024690006448#!" }, { "label" : "lobid Bestandsressource", @@ -264,12 +264,12 @@ "serialNumber" : "701883814107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000909138%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000909138%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990058567920206441:DE-107:2317906360007506#!" }, { "label" : "lobid Bestandsressource", @@ -278,12 +278,12 @@ "serialNumber" : "02130032", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000909138%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000909138%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990058567920206441:DE-929:2317906380007506#!" }, { "label" : "lobid Bestandsressource", @@ -292,12 +292,12 @@ "serialNumber" : ":94000371150", "currentLibrary" : "T0010", "currentLocation" : "RU", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT000909138&local_base=STR01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", "label" : "Wissenschaftliche Bibliothek der Stadt Trier" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT000909138&local_base=STR01", "id" : "http://lobid.org/items/990058567920206441:DE-121:2310241930007826#!" }, { "label" : "lobid Bestandsressource", @@ -306,12 +306,12 @@ "serialNumber" : "116597", "currentLibrary" : "ZB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000909138%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000909138%22", "id" : "http://lobid.org/items/990058567920206441:DE-290:23201690680006445#!" }, { "label" : "lobid Bestandsressource", @@ -320,12 +320,12 @@ "serialNumber" : "20105163", "currentLibrary" : "SFS", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000909138%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000909138%22", "id" : "http://lobid.org/items/990058567920206441:DE-290:23201690660006445#!" }, { "label" : "lobid Bestandsressource", @@ -334,12 +334,12 @@ "serialNumber" : "0163.8657.33", "currentLibrary" : "T0011", "currentLocation" : "38", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221800006470#!" }, { "label" : "lobid Bestandsressource", @@ -348,12 +348,12 @@ "serialNumber" : "0040.6826.86", "currentLibrary" : "T0011", "currentLocation" : "12", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221820006470#!" }, { "label" : "lobid Bestandsressource", @@ -362,12 +362,12 @@ "serialNumber" : "0089.0881.26", "currentLibrary" : "T0011", "currentLocation" : "39", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221780006470#!" }, { "label" : "lobid Bestandsressource", @@ -376,12 +376,12 @@ "serialNumber" : "75/2644", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-5:23263182640006467#!" }, { "label" : "lobid Bestandsressource", @@ -390,12 +390,12 @@ "serialNumber" : "PO-024839", "currentLibrary" : "PO", "currentLocation" : "PO-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-162#!", "isil" : "DE-5-162", "label" : "Universität Bonn, Institut für Politische Wissenschaft und Soziologie, Bibliothek" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-5-162:23263182590006467#!" }, { "label" : "lobid Bestandsressource", @@ -508,12 +508,12 @@ "serialNumber" : "DE00322121", "currentLibrary" : "D0001", "currentLocation" : "D21", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990058567920206441:DE-465:23421400070006446#!" }, { "label" : "lobid Bestandsressource", @@ -522,12 +522,12 @@ "serialNumber" : "ODU1117", "currentLibrary" : "E0001", "currentLocation" : "E11", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990058567920206441:DE-465:23421400050006446#!" }, { "label" : "lobid Bestandsressource", @@ -536,12 +536,12 @@ "serialNumber" : "021910701", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-61:23269116240006443#!" }, { "label" : "lobid Bestandsressource", @@ -550,12 +550,12 @@ "serialNumber" : "M18 8508", "currentLibrary" : "RL001", "currentLocation" : "MAGKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990058567920206441:DE-Kob7:2335729480008057#!" }, { "label" : "lobid Bestandsressource", @@ -564,12 +564,12 @@ "serialNumber" : "77/235", "currentLibrary" : "38-HWA", "currentLocation" : "38-HWA-MAG", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-38:23211428530006476#!" }, { "label" : "lobid Bestandsressource", @@ -578,12 +578,12 @@ "serialNumber" : "132/023307", "currentLibrary" : "38-132", "currentLocation" : "38-132-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-132#!", "isil" : "DE-38-132", "label" : "Gemeinsame Fachbibliothek Soziologie" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-38-132:23211428510006476#!" }, { "label" : "lobid Bestandsressource", @@ -592,12 +592,12 @@ "serialNumber" : "2G8474", "currentLibrary" : "38", "currentLocation" : "38-AWM", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-38:23211428550006476#!" }, { "label" : "lobid Bestandsressource", @@ -606,12 +606,12 @@ "serialNumber" : "Z16-144095", "currentLibrary" : "FBH", "currentLocation" : "FBH_HSBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990058567920206441:DE-6-248:23599273300006449#!" }, { "label" : "lobid Bestandsressource", @@ -620,12 +620,12 @@ "serialNumber" : "3E 45866", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990058567920206441:DE-6:23599273340006449#!" }, { "label" : "lobid Bestandsressource", @@ -634,12 +634,12 @@ "serialNumber" : "MD 1700/1", "currentLibrary" : "SOZ", "currentLocation" : "SOZ_MAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-A#!", "isil" : "DE-6-A", "label" : "Universitäts- und Landesbibliothek Münster, Zweigbibliothek Sozialwissenschaften" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990058567920206441:DE-6-A:23599273320006449#!" }, { "label" : "lobid Bestandsressource", @@ -648,12 +648,12 @@ "serialNumber" : "Z31-116242", "currentLibrary" : "KATH", "currentLocation" : "KATH_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-069#!", "isil" : "DE-6-069", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholischen-Theologischen Fakultät, Abteilung Hüfferstr." }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990058567920206441:DE-6-069:23599273180006449#!" }, { "label" : "lobid Bestandsressource", @@ -662,12 +662,12 @@ "serialNumber" : "Z17-002094", "currentLibrary" : "PHIL", "currentLocation" : "PHIL_PBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990058567920206441:DE-6-015:23599273260006449#!" }, { "label" : "lobid Bestandsressource", @@ -676,12 +676,12 @@ "serialNumber" : "Z30-092527", "currentLibrary" : "KATD", "currentLocation" : "KATD_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-011#!", "isil" : "DE-6-011", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abteilung Johannisstr." }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990058567920206441:DE-6-011:23599273210006449#!" }, { "label" : "lobid Bestandsressource", @@ -690,12 +690,12 @@ "serialNumber" : "Z19-001146", "currentLibrary" : "FBH", "currentLocation" : "FBH_DGBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990058567920206441:DE-6-248:23599273280006449#!" }, { "label" : "lobid Bestandsressource", @@ -704,12 +704,12 @@ "serialNumber" : "31OYV2405", "currentLibrary" : "S0001", "currentLocation" : "ERW", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", "label" : "Universitätsbibliothek Siegen" }, + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-467:2383523970006462#!" }, { "label" : "lobid Bestandsressource", @@ -718,60 +718,60 @@ "serialNumber" : "PBZ1028", "currentLibrary" : "P0001", "currentLocation" : "31", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-466:23139972710006463#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "F0001", "currentLocation" : "30", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", "label" : "Universitätsbibliothek der Fernuniversität" }, + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990058567920206441:DE-708:22110796420006464#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-385:22256221770006470#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990058567920206441:DE-Kob7:2235729470008057#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000909138", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000909138", "id" : "http://lobid.org/items/990058567920206441:DE-466:22139972700006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990059571560206441.json b/src/test/resources/alma-fix/990059571560206441.json index 6ab87eca5..920bbef80 100644 --- a/src/test/resources/alma-fix/990059571560206441.json +++ b/src/test/resources/alma-fix/990059571560206441.json @@ -132,12 +132,12 @@ "serialNumber" : "FK162-29+2", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_2", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT001039253&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT001039253&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/990059571560206441:DE-82:23246474340006448#!" }, { "label" : "lobid Bestandsressource", @@ -146,12 +146,12 @@ "serialNumber" : "33WBT1003(2)-29", "currentLibrary" : "DEUTZ", "currentLocation" : "33", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT001039253", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT001039253", "id" : "http://lobid.org/items/990059571560206441:DE-832:2349652950006477#!" }, { "label" : "lobid Bestandsressource", @@ -160,12 +160,12 @@ "serialNumber" : "51/964(29)+2", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT001039253", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT001039253", "id" : "http://lobid.org/items/990059571560206441:DE-5:23257517760006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990063549080206441.json b/src/test/resources/alma-fix/990063549080206441.json index d1c22634c..890a6d31c 100644 --- a/src/test/resources/alma-fix/990063549080206441.json +++ b/src/test/resources/alma-fix/990063549080206441.json @@ -122,12 +122,12 @@ "serialNumber" : "000226365000010", "currentLibrary" : "W0001", "currentLocation" : "04", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT003538502", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT003538502", "id" : "http://lobid.org/items/990063549080206441:DE-468:23124074000006447#!" }, { "label" : "lobid Bestandsressource", @@ -135,12 +135,12 @@ "callNumber" : "ZZN/APSA", "currentLibrary" : "F0001", "currentLocation" : "03", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT003538502&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", "label" : "Universitätsbibliothek der Fernuniversität" }, + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT003538502&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990063549080206441:DE-708:23104630370006464#!" }, { "label" : "lobid Bestandsressource", @@ -148,12 +148,12 @@ "serialNumber" : "261819-10", "currentLibrary" : "R3032", "currentLocation" : "AUS32", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT003538502", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT003538502", "id" : "http://lobid.org/items/990063549080206441:DE-386:2380642040007476#!" }, { "label" : "lobid Bestandsressource", @@ -188,12 +188,12 @@ "serialNumber" : "125/0003749", "currentLibrary" : "38-125", "currentLocation" : "38-125-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT003538502", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-125#!", "isil" : "DE-38-125", "label" : "Forschungsinstitut für Politische Wissenschaft und Europäische Fragen, Seminar für Politische Wissenschaft, Gemeinsame Bibliothek" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT003538502", "id" : "http://lobid.org/items/990063549080206441:DE-38-125:23286017520006476#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990065341720206441.json b/src/test/resources/alma-fix/990065341720206441.json index 7fd25846f..446cd940f 100644 --- a/src/test/resources/alma-fix/990065341720206441.json +++ b/src/test/resources/alma-fix/990065341720206441.json @@ -89,12 +89,12 @@ "serialNumber" : "Z 7835-41_42", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004764408&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004764408&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990065341720206441:DE-6:23553702130006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990075429930206441.json b/src/test/resources/alma-fix/990075429930206441.json index b93bb9e13..7413a169b 100644 --- a/src/test/resources/alma-fix/990075429930206441.json +++ b/src/test/resources/alma-fix/990075429930206441.json @@ -97,12 +97,12 @@ "serialNumber" : "702586422107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000944190%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000944190%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990075429930206441:DE-107:2377095800007506#!" }, { "label" : "lobid Bestandsressource", @@ -111,12 +111,12 @@ "serialNumber" : "011813549107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000944190%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000944190%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990075429930206441:DE-107:2377095810007506#!" }, { "label" : "lobid Bestandsressource", @@ -125,12 +125,12 @@ "serialNumber" : "78BDDS1079", "currentLibrary" : "DEUTZ", "currentLocation" : "78", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT000944190", "id" : "http://lobid.org/items/990075429930206441:DE-832:2344940620006477#!" }, { "label" : "lobid Bestandsressource", @@ -138,12 +138,12 @@ "callNumber" : "a4117-1934,3/11", "currentLibrary" : "T0011", "currentLocation" : "MAG", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000944190", "id" : "http://lobid.org/items/990075429930206441:DE-385:23280215020006470#!" }, { "label" : "lobid Bestandsressource", @@ -152,12 +152,12 @@ "serialNumber" : "TK-038705", "currentLibrary" : "TK", "currentLocation" : "TK-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-108#!", "isil" : "DE-5-108", "label" : "Universität Bonn, Fachbibliothek der Evangelischen und Katholischen Theologie" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000944190", "id" : "http://lobid.org/items/990075429930206441:DE-5-108:23276729420006467#!" }, { "label" : "lobid Bestandsressource", @@ -166,12 +166,12 @@ "serialNumber" : "GE-011615", "currentLibrary" : "GE", "currentLocation" : "GE-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-20#!", "isil" : "DE-5-20", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Bibliothek" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000944190", "id" : "http://lobid.org/items/990075429930206441:DE-5-20:23276729400006467#!" }, { "label" : "lobid Bestandsressource", @@ -232,12 +232,12 @@ "serialNumber" : "434/0007087", "currentLibrary" : "38-434", "currentLocation" : "38-434-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-434#!", "isil" : "DE-38-434", "label" : "Petrarca-Institut der Universität zu Köln, Bibliothek" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000944190", "id" : "http://lobid.org/items/990075429930206441:DE-38-434:23213349030006476#!" }, { "label" : "lobid Bestandsressource", @@ -246,12 +246,12 @@ "serialNumber" : "432/0014231", "currentLibrary" : "38-432", "currentLocation" : "38-432-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-432#!", "isil" : "DE-38-432", "label" : "Thomas-Institut, Bibliothek" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000944190", "id" : "http://lobid.org/items/990075429930206441:DE-38-432:23213349050006476#!" }, { "label" : "lobid Bestandsressource", @@ -260,12 +260,12 @@ "serialNumber" : "Z114-006972", "currentLibrary" : "ENGL", "currentLocation" : "ENGL_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-020#!", "isil" : "DE-6-020", "label" : "Universität Münster, Englisches Seminar, Bibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990075429930206441:DE-6-020:23595716610006449#!" }, { "label" : "lobid Bestandsressource", @@ -274,12 +274,12 @@ "serialNumber" : "Z56-017587", "currentLibrary" : "GERM", "currentLocation" : "GERM_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-246#!", "isil" : "DE-6-246", "label" : "Universität Münster, Germanistisches Institut, Bibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990075429930206441:DE-6-246:23595716590006449#!" }, { "label" : "lobid Bestandsressource", @@ -288,12 +288,12 @@ "serialNumber" : "Z 430-1934", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990075429930206441:DE-6:23595716630006449#!" }, { "label" : "lobid Bestandsressource", @@ -311,24 +311,24 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000944190", "id" : "http://lobid.org/items/990075429930206441:DE-385:22280215010006470#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000944190", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000944190", "id" : "http://lobid.org/items/990075429930206441:DE-466:22124728180006463#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990075538650206441.json b/src/test/resources/alma-fix/990075538650206441.json index 2defcfb1e..8d3311f20 100644 --- a/src/test/resources/alma-fix/990075538650206441.json +++ b/src/test/resources/alma-fix/990075538650206441.json @@ -133,12 +133,12 @@ "serialNumber" : "KN41$00285359", "currentLibrary" : "KP001", "currentLocation" : "MMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT003184116&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT003184116&local_base=ZBS01", "id" : "http://lobid.org/items/990075538650206441:DE-Kn41:2325727750006478#!" }, { "label" : "lobid Bestandsressource", @@ -147,12 +147,12 @@ "serialNumber" : "KRH1645", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT003184116", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT003184116", "id" : "http://lobid.org/items/990075538650206441:DE-466:23134766780006463#!" }, { "label" : "lobid Bestandsressource", @@ -172,12 +172,12 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT003184116", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT003184116", "id" : "http://lobid.org/items/990075538650206441:DE-466:22134766770006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990109712970206441.json b/src/test/resources/alma-fix/990109712970206441.json index 29f2b5388..d5d01c5d4 100644 --- a/src/test/resources/alma-fix/990109712970206441.json +++ b/src/test/resources/alma-fix/990109712970206441.json @@ -634,12 +634,12 @@ "currentLibrary" : "0", "currentLocation" : "0-Frei2", "callNumber" : "Z 2000/149", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", "id" : "http://lobid.org/items/990109712970206441:DE-5:22316628570006467#!" }, { "label" : "lobid Bestandsressource", @@ -647,12 +647,12 @@ "currentLibrary" : "B059", "currentLocation" : "B059-Zeit", "callNumber" : "Nc 2/1999 Bran", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bo59#!", "isil" : "DE-Bo59", "label" : "Beethoven-Haus Bonn, Bibliothek" }, + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", "id" : "http://lobid.org/items/990109712970206441:DE-Bo59:22316628560006467#!" }, { "label" : "lobid Bestandsressource", @@ -660,12 +660,12 @@ "currentLibrary" : "B059", "currentLocation" : "B059-Zeit", "callNumber" : "No 285/1999 Bran", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bo59#!", "isil" : "DE-Bo59", "label" : "Beethoven-Haus Bonn, Bibliothek" }, + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", "id" : "http://lobid.org/items/990109712970206441:DE-Bo59:22316628550006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990114098170206441.json b/src/test/resources/alma-fix/990114098170206441.json index 7d525dc9c..1fcf70fc7 100644 --- a/src/test/resources/alma-fix/990114098170206441.json +++ b/src/test/resources/alma-fix/990114098170206441.json @@ -143,12 +143,12 @@ "serialNumber" : "Z31-050265", "currentLibrary" : "KATH", "currentLocation" : "KATH_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT013083243&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-069#!", "isil" : "DE-6-069", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholischen-Theologischen Fakultät, Abteilung Hüfferstr." }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT013083243&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990114098170206441:DE-6-069:23507172540006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990114617880206441.json b/src/test/resources/alma-fix/990114617880206441.json index 2a81bd149..c0f183e89 100644 --- a/src/test/resources/alma-fix/990114617880206441.json +++ b/src/test/resources/alma-fix/990114617880206441.json @@ -90,12 +90,12 @@ "callNumber" : "qro/0011(1902)", "currentLibrary" : "X0001", "currentLocation" : "00L", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT013135581", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT013135581", "id" : "http://lobid.org/items/990114617880206441:DE-61:23257820090006443#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990118562160206441.json b/src/test/resources/alma-fix/990118562160206441.json index ae77b5518..f85732510 100644 --- a/src/test/resources/alma-fix/990118562160206441.json +++ b/src/test/resources/alma-fix/990118562160206441.json @@ -96,12 +96,12 @@ "serialNumber" : "912479-10", "currentLibrary" : "D0001", "currentLocation" : "D98", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT013532539&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT013532539&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990118562160206441:DE-465:23420787060006446#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990122511970206441.json b/src/test/resources/alma-fix/990122511970206441.json index 18b729469..b785394a1 100644 --- a/src/test/resources/alma-fix/990122511970206441.json +++ b/src/test/resources/alma-fix/990122511970206441.json @@ -77,12 +77,12 @@ "serialNumber" : "KN38$0000066609", "currentLibrary" : "Z9038", "currentLocation" : "MZ2V", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=TT000075751&local_base=MHK01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", "label" : "Hochschule für Musik und Tanz Köln, Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=TT000075751&local_base=MHK01", "id" : "http://lobid.org/items/990122511970206441:DE-Kn38:2319933740006460#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990126276700206441.json b/src/test/resources/alma-fix/990126276700206441.json index 523e9b6d2..15669737a 100644 --- a/src/test/resources/alma-fix/990126276700206441.json +++ b/src/test/resources/alma-fix/990126276700206441.json @@ -113,12 +113,12 @@ "serialNumber" : "W00020777", "currentLibrary" : "W0001", "currentLocation" : "11", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT014015351", "id" : "http://lobid.org/items/990126276700206441:DE-468:23148746030006447#!" }, { "label" : "lobid Bestandsressource", @@ -127,12 +127,12 @@ "serialNumber" : "90745439", "currentLibrary" : "MOP", "currentLocation" : "MOP_Haupt", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT014015351%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT014015351%22", "id" : "http://lobid.org/items/990126276700206441:DE-Dm13:2346678150006451#!" }, { "label" : "lobid Bestandsressource", @@ -141,12 +141,12 @@ "serialNumber" : "140533301", "currentLibrary" : "F0001", "currentLocation" : "00", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", "label" : "Universitätsbibliothek der Fernuniversität" }, + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990126276700206441:DE-708:2390329400006464#!" }, { "label" : "lobid Bestandsressource", @@ -155,12 +155,12 @@ "serialNumber" : "C372365", "currentLibrary" : "RL002", "currentLocation" : "FHULD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", "label" : "Universitätsbibliothek der RPTU in Landau" }, + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT014015351", "id" : "http://lobid.org/items/990126276700206441:DE-Lan1:2380082230007476#!" }, { "label" : "lobid Bestandsressource", @@ -169,12 +169,12 @@ "serialNumber" : "C372366", "currentLibrary" : "RL002", "currentLocation" : "FHULD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", "label" : "Universitätsbibliothek der RPTU in Landau" }, + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT014015351", "id" : "http://lobid.org/items/990126276700206441:DE-Lan1:2380082240007476#!" }, { "label" : "lobid Bestandsressource", @@ -183,12 +183,12 @@ "serialNumber" : "609:025732", "currentLibrary" : "609", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT014015351&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-609#!", "isil" : "DE-82-609", "label" : "Germanistisches Institut, Bibliothek" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT014015351&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/990126276700206441:DE-82-609:23232408510006448#!" }, { "label" : "lobid Bestandsressource", @@ -197,12 +197,12 @@ "serialNumber" : "2010/1208", "currentLibrary" : "0", "currentLocation" : "0-Frei1", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT014015351", "id" : "http://lobid.org/items/990126276700206441:DE-5:23261735310006467#!" }, { "label" : "lobid Bestandsressource", @@ -237,12 +237,12 @@ "serialNumber" : "109927001", "currentLibrary" : "X0031", "currentLocation" : "31", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT014015351", "id" : "http://lobid.org/items/990126276700206441:DE-61:23303488680006443#!" }, { "label" : "lobid Bestandsressource", @@ -251,12 +251,12 @@ "serialNumber" : "405/0019949", "currentLibrary" : "38-405", "currentLocation" : "38-405-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-405#!", "isil" : "DE-38-405", "label" : "Institut für Deutsche Sprache und Literatur mit Volkskundlicher Abteilung, Bibliothek" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT014015351", "id" : "http://lobid.org/items/990126276700206441:DE-38-405:23267503020006476#!" }, { "label" : "lobid Bestandsressource", @@ -265,12 +265,12 @@ "serialNumber" : "467/0000383", "currentLibrary" : "38-467", "currentLocation" : "38-467-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-467#!", "isil" : "DE-38-467", "label" : "Internationales Kolleg Morphomata, Bibliothek" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT014015351", "id" : "http://lobid.org/items/990126276700206441:DE-38-467:23267503000006476#!" }, { "label" : "lobid Bestandsressource", @@ -279,12 +279,12 @@ "serialNumber" : "3H 83949", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014015351&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014015351&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990126276700206441:DE-6:23535410630006449#!" }, { "label" : "lobid Bestandsressource", @@ -293,12 +293,12 @@ "serialNumber" : "21KKZJ1005", "currentLibrary" : "S0001", "currentLocation" : "AR2", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT014015351", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", "label" : "Universitätsbibliothek Siegen" }, + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT014015351", "id" : "http://lobid.org/items/990126276700206441:DE-467:2393571990006462#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990139686910206441.json b/src/test/resources/alma-fix/990139686910206441.json index 0f87f64c0..abd0223ba 100644 --- a/src/test/resources/alma-fix/990139686910206441.json +++ b/src/test/resources/alma-fix/990139686910206441.json @@ -75,12 +75,12 @@ "serialNumber" : "TEMPHBZ60030305140-000010", "currentLibrary" : "Z9036", "currentLocation" : "MGAB", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT014525099&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT014525099&local_base=MHE01", "id" : "http://lobid.org/items/990139686910206441:DE-1156:2310267000006459#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990141342350206441.json b/src/test/resources/alma-fix/990141342350206441.json index 111e51d45..3f57575b9 100644 --- a/src/test/resources/alma-fix/990141342350206441.json +++ b/src/test/resources/alma-fix/990141342350206441.json @@ -101,12 +101,12 @@ "serialNumber" : "701025920107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22TT001230001%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22TT001230001%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990141342350206441:DE-107:2379314410007506#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990143325070206441.json b/src/test/resources/alma-fix/990143325070206441.json index a4d8d024f..57c5246f4 100644 --- a/src/test/resources/alma-fix/990143325070206441.json +++ b/src/test/resources/alma-fix/990143325070206441.json @@ -164,12 +164,12 @@ "serialNumber" : "2007/5873", "currentLibrary" : "0", "currentLocation" : "0-Frei1", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT014601018", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT014601018", "id" : "http://lobid.org/items/990143325070206441:DE-5:23281591130006467#!" }, { "label" : "lobid Bestandsressource", @@ -178,12 +178,12 @@ "serialNumber" : "3H 94295", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014601018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014601018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990143325070206441:DE-6:23564603190006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990156060190206441.json b/src/test/resources/alma-fix/990156060190206441.json index 087fc6e7d..4652e1d6d 100644 --- a/src/test/resources/alma-fix/990156060190206441.json +++ b/src/test/resources/alma-fix/990156060190206441.json @@ -170,12 +170,12 @@ "serialNumber" : "W00159251", "currentLibrary" : "W0001", "currentLocation" : "01", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-468:23131370340006447#!" }, { "label" : "lobid Bestandsressource", @@ -184,12 +184,12 @@ "serialNumber" : "KN41$00705907", "currentLibrary" : "KP001", "currentLocation" : "FMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT015014677&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT015014677&local_base=ZBS01", "id" : "http://lobid.org/items/990156060190206441:DE-Kn41:2317986730006478#!" }, { "label" : "lobid Bestandsressource", @@ -198,12 +198,12 @@ "serialNumber" : "0212359", "currentLibrary" : "FHMH", "currentLocation" : "Freihand_H", - "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-836#!", "isil" : "DE-836", "label" : "FH Münster, Hochschulbibliothek" }, + "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-836:2329843240006485#!" }, { "label" : "lobid Bestandsressource", @@ -212,12 +212,12 @@ "serialNumber" : "070418501", "currentLibrary" : "F0001", "currentLocation" : "00", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", "label" : "Universitätsbibliothek der Fernuniversität" }, + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990156060190206441:DE-708:23109044830006464#!" }, { "label" : "lobid Bestandsressource", @@ -239,12 +239,12 @@ "serialNumber" : "20557430", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", "id" : "http://lobid.org/items/990156060190206441:DE-1044:2348092950006452#!" }, { "label" : "lobid Bestandsressource", @@ -253,12 +253,12 @@ "serialNumber" : "20619518", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", "id" : "http://lobid.org/items/990156060190206441:DE-1044:2348092970006452#!" }, { "label" : "lobid Bestandsressource", @@ -267,12 +267,12 @@ "serialNumber" : "017294901", "currentLibrary" : "cdd", "currentLocation" : "HBEMP", - "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, + "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-Due62:2336303640006455#!" }, { "label" : "lobid Bestandsressource", @@ -281,12 +281,12 @@ "serialNumber" : "081408ALN4WAS", "currentLibrary" : "MG", "currentLocation" : "MG_Public", - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", "label" : "Hochschule Niederrhein, Bibliothek" }, + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", "id" : "http://lobid.org/items/990156060190206441:DE-829:2347061880008056#!" }, { "label" : "lobid Bestandsressource", @@ -295,12 +295,12 @@ "serialNumber" : "11AVY1078", "currentLibrary" : "LE", "currentLocation" : "LE_Frei", - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT015014677%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT015014677%22", "id" : "http://lobid.org/items/990156060190206441:DE-743:2338250240006468#!" }, { "label" : "lobid Bestandsressource", @@ -348,12 +348,12 @@ "serialNumber" : "108249895", "currentLibrary" : "R3032", "currentLocation" : "FH45", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-386:2374193680007476#!" }, { "label" : "lobid Bestandsressource", @@ -362,12 +362,12 @@ "serialNumber" : "C168762", "currentLibrary" : "RL002", "currentLocation" : "FHELD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", "label" : "Universitätsbibliothek der RPTU in Landau" }, + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-Lan1:2374193700007476#!" }, { "label" : "lobid Bestandsressource", @@ -376,12 +376,12 @@ "serialNumber" : "108260133", "currentLibrary" : "R3032", "currentLocation" : "FH45", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-386:2374193670007476#!" }, { "label" : "lobid Bestandsressource", @@ -390,12 +390,12 @@ "serialNumber" : "RD7887-13", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_1", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT015014677&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT015014677&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/990156060190206441:DE-82:23233208590006448#!" }, { "label" : "lobid Bestandsressource", @@ -404,12 +404,12 @@ "serialNumber" : "013133072107", "currentLibrary" : "R0003", "currentLocation" : "00001000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015014677%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015014677%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990156060190206441:DE-107:2369296750007506#!" }, { "label" : "lobid Bestandsressource", @@ -418,12 +418,12 @@ "serialNumber" : "03531721", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015014677%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015014677%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990156060190206441:DE-929:2369296770007506#!" }, { "label" : "lobid Bestandsressource", @@ -432,12 +432,12 @@ "serialNumber" : "63BCNM1806", "currentLibrary" : "SUED", "currentLocation" : "63", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-832:2348954760006477#!" }, { "label" : "lobid Bestandsressource", @@ -446,12 +446,12 @@ "serialNumber" : "12837764", "currentLibrary" : "EFB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", "id" : "http://lobid.org/items/990156060190206441:DE-290:23194328940006445#!" }, { "label" : "lobid Bestandsressource", @@ -460,12 +460,12 @@ "serialNumber" : "0063.6230.87", "currentLibrary" : "T0011", "currentLocation" : "09", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-385:23271771200006470#!" }, { "label" : "lobid Bestandsressource", @@ -474,12 +474,12 @@ "serialNumber" : "2007/2934", "currentLibrary" : "0", "currentLocation" : "0-Frei1", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-5:23245806020006467#!" }, { "label" : "lobid Bestandsressource", @@ -540,12 +540,12 @@ "serialNumber" : "E00750581", "currentLibrary" : "E0001", "currentLocation" : "E91", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990156060190206441:DE-465:23390395420006446#!" }, { "label" : "lobid Bestandsressource", @@ -554,12 +554,12 @@ "serialNumber" : "E00290166", "currentLibrary" : "E0001", "currentLocation" : "E91", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990156060190206441:DE-465:23390395430006446#!" }, { "label" : "lobid Bestandsressource", @@ -568,12 +568,12 @@ "serialNumber" : "M20 4473", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990156060190206441:DE-Kob7:2330787680008057#!" }, { "label" : "lobid Bestandsressource", @@ -582,12 +582,12 @@ "serialNumber" : "34A7510#a", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-38:23308363920006476#!" }, { "label" : "lobid Bestandsressource", @@ -596,12 +596,12 @@ "serialNumber" : "34A7510", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-38:23308363930006476#!" }, { "label" : "lobid Bestandsressource", @@ -610,12 +610,12 @@ "serialNumber" : "302/0660013", "currentLibrary" : "38-307", "currentLocation" : "38-307-FHM", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-307#!", "isil" : "DE-38-307", "label" : "Humanwissenschaftliche Bibliothek: Gemeinsame Bibliothek der Humanwissenschaftlichen Fakultät und der USB" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-38-307:23308363900006476#!" }, { "label" : "lobid Bestandsressource", @@ -624,12 +624,12 @@ "serialNumber" : "3F 70852", "currentLibrary" : "ZB", "currentLocation" : "ZB_AUSB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990156060190206441:DE-6:23510054190006449#!" }, { "label" : "lobid Bestandsressource", @@ -638,12 +638,12 @@ "serialNumber" : "Z69-036921", "currentLibrary" : "PSY", "currentLocation" : "PSY_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-049#!", "isil" : "DE-6-049", "label" : "Universität Münster, Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek für Psychologie" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990156060190206441:DE-6-049:23510054150006449#!" }, { "label" : "lobid Bestandsressource", @@ -652,12 +652,12 @@ "serialNumber" : "Z67-064227", "currentLibrary" : "BEK", "currentLocation" : "BEK_MAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-123#!", "isil" : "DE-6-123", "label" : "Universität Münster, Bibliothek für Erziehungswissenschaft und Kommunikationswissenschaft" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990156060190206441:DE-6-123:23510054170006449#!" }, { "label" : "lobid Bestandsressource", @@ -666,12 +666,12 @@ "serialNumber" : "AVY1256", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-466:23115327380006463#!" }, { "label" : "lobid Bestandsressource", @@ -680,48 +680,48 @@ "serialNumber" : "00006901", "currentLibrary" : "GE", "currentLocation" : "01", - "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1010#!", "isil" : "DE-1010", "label" : "Westfälische Hochschule Gelsenkirchen Bocholt Recklinghausen, Hochschulbibliothek" }, + "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-1010:2313573740006456#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-385:22271771190006470#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990156060190206441:DE-Kob7:2230787670008057#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT015014677", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT015014677", "id" : "http://lobid.org/items/990156060190206441:DE-466:22115327370006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990167595410206441.json b/src/test/resources/alma-fix/990167595410206441.json index d4dbc7557..96086fab2 100644 --- a/src/test/resources/alma-fix/990167595410206441.json +++ b/src/test/resources/alma-fix/990167595410206441.json @@ -73,12 +73,12 @@ "serialNumber" : "KMB/1980.7637", "currentLibrary" : "KN3", "currentLocation" : "KN3-KMB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=TT002494857", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn3#!", "isil" : "DE-Kn3", "label" : "Kunst- und Museumsbibliothek der Stadt Köln" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=TT002494857", "id" : "http://lobid.org/items/990167595410206441:DE-Kn3:23283323610006476#!" }, { "label" : "lobid Bestandsressource", @@ -87,12 +87,12 @@ "serialNumber" : "Z143-028930", "currentLibrary" : "PHIL", "currentLocation" : "PHIL_KBIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,TT002494857&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,TT002494857&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990167595410206441:DE-6-015:23616315430006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990171142550206441.json b/src/test/resources/alma-fix/990171142550206441.json index 14a38578a..74f8dc0e4 100644 --- a/src/test/resources/alma-fix/990171142550206441.json +++ b/src/test/resources/alma-fix/990171142550206441.json @@ -131,12 +131,12 @@ "serialNumber" : "63BBV1290", "currentLibrary" : "SUED", "currentLocation" : "63", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT015671602", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT015671602", "id" : "http://lobid.org/items/990171142550206441:DE-832:2344668760006477#!" }, { "label" : "lobid Bestandsressource", @@ -145,12 +145,12 @@ "serialNumber" : "20139223", "currentLibrary" : "ZB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015671602%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015671602%22", "id" : "http://lobid.org/items/990171142550206441:DE-290:23199326600006445#!" }, { "label" : "lobid Bestandsressource", @@ -159,12 +159,12 @@ "serialNumber" : "0080.2818.77", "currentLibrary" : "T0011", "currentLocation" : "72", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015671602", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015671602", "id" : "http://lobid.org/items/990171142550206441:DE-385:23266502850006470#!" }, { "label" : "lobid Bestandsressource", @@ -186,24 +186,24 @@ "serialNumber" : "39A5443", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015671602", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015671602", "id" : "http://lobid.org/items/990171142550206441:DE-38:23179051250006476#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015671602", "heldBy" : { "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", "label" : "Universitätsbibliothek Trier" }, + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015671602", "id" : "http://lobid.org/items/990171142550206441:DE-385:22266502840006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990173811970206441.json b/src/test/resources/alma-fix/990173811970206441.json index 0ad60504a..a60858209 100644 --- a/src/test/resources/alma-fix/990173811970206441.json +++ b/src/test/resources/alma-fix/990173811970206441.json @@ -142,12 +142,12 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015865114%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015865114%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990173811970206441:DE-929:2282197540007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990181275760206441.json b/src/test/resources/alma-fix/990181275760206441.json index e676351a5..9572e75a3 100644 --- a/src/test/resources/alma-fix/990181275760206441.json +++ b/src/test/resources/alma-fix/990181275760206441.json @@ -105,12 +105,12 @@ "serialNumber" : "00782328", "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", "label" : "Hochschule Bochum, Hochschulbibliothek" }, + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839880006454#!" }, { "label" : "lobid Bestandsressource", @@ -119,12 +119,12 @@ "serialNumber" : "00782331", "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", "label" : "Hochschule Bochum, Hochschulbibliothek" }, + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839870006454#!" }, { "label" : "lobid Bestandsressource", @@ -133,12 +133,12 @@ "serialNumber" : "00782344", "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", "label" : "Hochschule Bochum, Hochschulbibliothek" }, + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839860006454#!" }, { "label" : "lobid Bestandsressource", @@ -147,12 +147,12 @@ "serialNumber" : "00830005", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", "label" : "Hochschule Bochum, Hochschulbibliothek" }, + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839840006454#!" }, { "label" : "lobid Bestandsressource", @@ -161,12 +161,12 @@ "serialNumber" : "00830018", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", "label" : "Hochschule Bochum, Hochschulbibliothek" }, + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839830006454#!" }, { "label" : "lobid Bestandsressource", @@ -175,12 +175,12 @@ "serialNumber" : "20037393", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914300006445#!" }, { "label" : "lobid Bestandsressource", @@ -189,12 +189,12 @@ "serialNumber" : "20076086", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914190006445#!" }, { "label" : "lobid Bestandsressource", @@ -203,12 +203,12 @@ "serialNumber" : "20086273", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914180006445#!" }, { "label" : "lobid Bestandsressource", @@ -217,12 +217,12 @@ "serialNumber" : "20076085", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914220006445#!" }, { "label" : "lobid Bestandsressource", @@ -231,12 +231,12 @@ "serialNumber" : "20076083", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914250006445#!" }, { "label" : "lobid Bestandsressource", @@ -245,12 +245,12 @@ "serialNumber" : "20076082", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914260006445#!" }, { "label" : "lobid Bestandsressource", @@ -259,12 +259,12 @@ "serialNumber" : "20066267", "currentLibrary" : "EFB", "currentLocation" : "LB", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914290006445#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990182814750206441.json b/src/test/resources/alma-fix/990182814750206441.json index 395d7feeb..ff074fc39 100644 --- a/src/test/resources/alma-fix/990182814750206441.json +++ b/src/test/resources/alma-fix/990182814750206441.json @@ -130,12 +130,12 @@ "serialNumber" : "122113301", "currentLibrary" : "X0001", "currentLocation" : "01", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT016580347", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT016580347", "id" : "http://lobid.org/items/990182814750206441:DE-61:23250747530006443#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990183958380206441.json b/src/test/resources/alma-fix/990183958380206441.json index 75f07c432..c83b48b74 100644 --- a/src/test/resources/alma-fix/990183958380206441.json +++ b/src/test/resources/alma-fix/990183958380206441.json @@ -185,12 +185,12 @@ "serialNumber" : "6-00113726-8", "currentLibrary" : "ZB", "currentLocation" : "ZB_GMAGL", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990183958380206441:DE-6:23619354250006449#!" }, { "label" : "lobid Bestandsressource", @@ -199,12 +199,12 @@ "serialNumber" : "Z193-024182", "currentLibrary" : "ALKU", "currentLocation" : "ALKU_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-139a#!", "isil" : "DE-6-139a", "label" : "Kommission Alltagskulturforschung für Westfalen (KAF), Bibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990183958380206441:DE-6-139a:23619354230006449#!" }, { "label" : "lobid Bestandsressource", @@ -213,24 +213,24 @@ "serialNumber" : "LUHB1738", "currentLibrary" : "P0001", "currentLocation" : "31", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT016692738", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT016692738", "id" : "http://lobid.org/items/990183958380206441:DE-466:23150297370006463#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT016692738", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT016692738", "id" : "http://lobid.org/items/990183958380206441:DE-466:22150297360006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990185607520206441.json b/src/test/resources/alma-fix/990185607520206441.json index bbe2cd7b3..1863d4624 100644 --- a/src/test/resources/alma-fix/990185607520206441.json +++ b/src/test/resources/alma-fix/990185607520206441.json @@ -78,12 +78,12 @@ "serialNumber" : "SM-007284", "currentLibrary" : "SM", "currentLocation" : "SM-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=TT003059252", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=TT003059252", "id" : "http://lobid.org/items/990185607520206441:DE-5-58:23213211150006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990185619180206441.json b/src/test/resources/alma-fix/990185619180206441.json index 82811e5a5..3b6b6afb3 100644 --- a/src/test/resources/alma-fix/990185619180206441.json +++ b/src/test/resources/alma-fix/990185619180206441.json @@ -87,12 +87,12 @@ "serialNumber" : "SM-009391", "currentLibrary" : "SM", "currentLocation" : "SM-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=TT003060418", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=TT003060418", "id" : "http://lobid.org/items/990185619180206441:DE-5-58:23233589480006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990189160110206441.json b/src/test/resources/alma-fix/990189160110206441.json index f756ac9eb..0f732efd3 100644 --- a/src/test/resources/alma-fix/990189160110206441.json +++ b/src/test/resources/alma-fix/990189160110206441.json @@ -150,12 +150,12 @@ "serialNumber" : "W00151217", "currentLibrary" : "W0001", "currentLocation" : "AA", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", "id" : "http://lobid.org/items/990189160110206441:DE-468:23146330000006447#!" }, { "label" : "lobid Bestandsressource", @@ -164,12 +164,12 @@ "serialNumber" : "W00185519", "currentLibrary" : "W0001", "currentLocation" : "20", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", "id" : "http://lobid.org/items/990189160110206441:DE-468:23146310030006447#!" }, { "label" : "lobid Bestandsressource", @@ -178,12 +178,12 @@ "serialNumber" : "W00328289", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", "id" : "http://lobid.org/items/990189160110206441:DE-468:23146310010006447#!" }, { "label" : "lobid Bestandsressource", @@ -192,12 +192,12 @@ "serialNumber" : "KN41$01599167", "currentLibrary" : "KP001", "currentLocation" : "FMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT017015300&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT017015300&local_base=ZBS01", "id" : "http://lobid.org/items/990189160110206441:DE-Kn41:2325303250006478#!" }, { "label" : "lobid Bestandsressource", @@ -206,12 +206,12 @@ "serialNumber" : "KN41$01339152", "currentLibrary" : "KP001", "currentLocation" : "FMONO", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT017015300&local_base=ZBS01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT017015300&local_base=ZBS01", "id" : "http://lobid.org/items/990189160110206441:DE-Kn41:2325303270006478#!" }, { "label" : "lobid Bestandsressource", @@ -220,12 +220,12 @@ "serialNumber" : "109382847", "currentLibrary" : "R3032", "currentLocation" : "FHSPO", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT017015300", "id" : "http://lobid.org/items/990189160110206441:DE-386:2385580290007476#!" }, { "label" : "lobid Bestandsressource", @@ -234,12 +234,12 @@ "serialNumber" : "20116184", "currentLibrary" : "ZB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017015300%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017015300%22", "id" : "http://lobid.org/items/990189160110206441:DE-290:23197228550006445#!" }, { "label" : "lobid Bestandsressource", @@ -248,12 +248,12 @@ "serialNumber" : "P2012/259", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT017015300", "id" : "http://lobid.org/items/990189160110206441:DE-5:23237586070006467#!" }, { "label" : "lobid Bestandsressource", @@ -262,12 +262,12 @@ "serialNumber" : "DE00286549", "currentLibrary" : "E0001", "currentLocation" : "E11", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990189160110206441:DE-465:23423021800006446#!" }, { "label" : "lobid Bestandsressource", @@ -276,12 +276,12 @@ "serialNumber" : "DE00286550", "currentLibrary" : "E0001", "currentLocation" : "E11", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990189160110206441:DE-465:23423021780006446#!" }, { "label" : "lobid Bestandsressource", @@ -290,12 +290,12 @@ "serialNumber" : "M28 6888", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990189160110206441:DE-Kob7:2329204570008057#!" }, { "label" : "lobid Bestandsressource", @@ -304,12 +304,12 @@ "serialNumber" : "M31 6464", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990189160110206441:DE-Kob7:2329204550008057#!" }, { "label" : "lobid Bestandsressource", @@ -318,12 +318,12 @@ "serialNumber" : "M28 6889", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990189160110206441:DE-Kob7:2329204560008057#!" }, { "label" : "lobid Bestandsressource", @@ -332,12 +332,12 @@ "serialNumber" : "Z68-032337", "currentLibrary" : "SPOR", "currentLocation" : "SPOR_BIB", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-058#!", "isil" : "DE-6-058", "label" : "Universität Münster, Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek Sportwissenschaft" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990189160110206441:DE-6-058:23527811750006449#!" }, { "label" : "lobid Bestandsressource", @@ -346,12 +346,12 @@ "serialNumber" : "6-00166844-1", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990189160110206441:DE-6:23527811780006449#!" }, { "label" : "lobid Bestandsressource", @@ -360,12 +360,12 @@ "serialNumber" : "6-00166843-9", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990189160110206441:DE-6:23527811770006449#!" }, { "label" : "lobid Bestandsressource", @@ -374,36 +374,36 @@ "serialNumber" : "KRRS1643", "currentLibrary" : "P0001", "currentLocation" : "11", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT017015300", "id" : "http://lobid.org/items/990189160110206441:DE-466:23142134120006463#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990189160110206441:DE-Kob7:2229204540008057#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT017015300", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT017015300", "id" : "http://lobid.org/items/990189160110206441:DE-466:22142134110006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990193094010206441.json b/src/test/resources/alma-fix/990193094010206441.json index f54a39f6b..0c4c98853 100644 --- a/src/test/resources/alma-fix/990193094010206441.json +++ b/src/test/resources/alma-fix/990193094010206441.json @@ -82,12 +82,12 @@ "serialNumber" : "63BBV1390", "currentLibrary" : "SUED", "currentLocation" : "63", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT017398609", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT017398609", "id" : "http://lobid.org/items/990193094010206441:DE-832:2347616480006477#!" }, { "label" : "lobid Bestandsressource", @@ -96,12 +96,12 @@ "serialNumber" : "20129967", "currentLibrary" : "EFB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017398609%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017398609%22", "id" : "http://lobid.org/items/990193094010206441:DE-290:23195293910006445#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990193806600206441.json b/src/test/resources/alma-fix/990193806600206441.json index 34b23a192..65a169da6 100644 --- a/src/test/resources/alma-fix/990193806600206441.json +++ b/src/test/resources/alma-fix/990193806600206441.json @@ -81,12 +81,12 @@ "serialNumber" : "6-00245554-2", "currentLibrary" : "HLS", "currentLocation" : "HLS_RAKAR", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017468042&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017468042&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990193806600206441:DE-6:23526297370006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990194668760206441.json b/src/test/resources/alma-fix/990194668760206441.json index 6cb36caa2..5ca9844db 100644 --- a/src/test/resources/alma-fix/990194668760206441.json +++ b/src/test/resources/alma-fix/990194668760206441.json @@ -89,12 +89,12 @@ "callNumber" : "K347:501", "currentLibrary" : "X0001", "currentLocation" : "16", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT017551955", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT017551955", "id" : "http://lobid.org/items/990194668760206441:DE-61:23289523250006443#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990194744870206441.json b/src/test/resources/alma-fix/990194744870206441.json index ad3904a4d..eea0695ae 100644 --- a/src/test/resources/alma-fix/990194744870206441.json +++ b/src/test/resources/alma-fix/990194744870206441.json @@ -78,12 +78,12 @@ "serialNumber" : "C004216", "currentLibrary" : "RL002", "currentLocation" : "MNBLD", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT017559543", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", "label" : "Universitätsbibliothek der RPTU in Landau" }, + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT017559543", "id" : "http://lobid.org/items/990194744870206441:DE-Lan1:2363975880007476#!" }, { "label" : "lobid Bestandsressource", @@ -92,24 +92,24 @@ "serialNumber" : "M23 9940", "currentLibrary" : "RL001", "currentLocation" : "MAGMK", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990194744870206441:DE-Kob7:2333571450008057#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990194744870206441:DE-Kob7:2233571440008057#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990198383780206441.json b/src/test/resources/alma-fix/990198383780206441.json index 32d760925..eeeaf1d6c 100644 --- a/src/test/resources/alma-fix/990198383780206441.json +++ b/src/test/resources/alma-fix/990198383780206441.json @@ -79,12 +79,12 @@ "serialNumber" : "130028201", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT017775049", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT017775049", "id" : "http://lobid.org/items/990198383780206441:DE-61:23317843550006443#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990202474680206441.json b/src/test/resources/alma-fix/990202474680206441.json index 65dc5970d..63eee8427 100644 --- a/src/test/resources/alma-fix/990202474680206441.json +++ b/src/test/resources/alma-fix/990202474680206441.json @@ -132,12 +132,12 @@ "serialNumber" : "AJ-143867", "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT018129805", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT018129805", "id" : "http://lobid.org/items/990202474680206441:DE-5-141:23273758380006467#!" }, { "label" : "lobid Bestandsressource", @@ -146,12 +146,12 @@ "serialNumber" : "JAP/0008615", "currentLibrary" : "38-459", "currentLocation" : "38-459-KEL", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT018129805", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", "label" : "Gemeinsame Fachbibliothek Asien / Japanologie" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT018129805", "id" : "http://lobid.org/items/990202474680206441:DE-38-459:23239122980006476#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990204246530206441.json b/src/test/resources/alma-fix/990204246530206441.json index 5a68bbfd7..e53bd7306 100644 --- a/src/test/resources/alma-fix/990204246530206441.json +++ b/src/test/resources/alma-fix/990204246530206441.json @@ -177,12 +177,12 @@ "serialNumber" : "04690647", "currentLibrary" : "R0001", "currentLocation" : "00000000", - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT018295975%22&selectedViewBranchlib=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT018295975%22&selectedViewBranchlib=0", "id" : "http://lobid.org/items/990204246530206441:DE-929:2358041170007506#!" }, { "label" : "lobid Bestandsressource", @@ -191,12 +191,12 @@ "serialNumber" : "GL-202825", "currentLibrary" : "GL", "currentLocation" : "GL-Frei", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT018295975", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-39#!", "isil" : "DE-5-39", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Abteilung für Geschichte der Frühen Neuzeit und Rheinische Landesgeschichte, Bibliothek" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT018295975", "id" : "http://lobid.org/items/990204246530206441:DE-5-39:23292096440006467#!" }, { "label" : "lobid Bestandsressource", @@ -205,12 +205,12 @@ "serialNumber" : "6-00342474-8", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018295975&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018295975&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990204246530206441:DE-6:23593081430006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990207668220206441.json b/src/test/resources/alma-fix/990207668220206441.json index dbc2cd1ac..dc7d572a7 100644 --- a/src/test/resources/alma-fix/990207668220206441.json +++ b/src/test/resources/alma-fix/990207668220206441.json @@ -93,12 +93,12 @@ "serialNumber" : "223:3 AP 16", "currentLibrary" : "223", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT003280170&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-223#!", "isil" : "DE-82-223", "label" : "Lehrstuhl für Siedlungswasserwirtschaft und Siedlungsabfallwirtschaft und Institut für Siedlungswasserwirtschaft, Bibliothek" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT003280170&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/990207668220206441:DE-82-223:23233358930006448#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990209515320206441.json b/src/test/resources/alma-fix/990209515320206441.json index df1600881..4da312410 100644 --- a/src/test/resources/alma-fix/990209515320206441.json +++ b/src/test/resources/alma-fix/990209515320206441.json @@ -104,12 +104,12 @@ "serialNumber" : "KN38$0000049839", "currentLibrary" : "Z9038", "currentLocation" : "MZ8V", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=HT018781534&local_base=MHK01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", "label" : "Hochschule für Musik und Tanz Köln, Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=HT018781534&local_base=MHK01", "id" : "http://lobid.org/items/990209515320206441:DE-Kn38:2313841820006460#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990209817770206441.json b/src/test/resources/alma-fix/990209817770206441.json index 36feb4ad8..1b6696a4a 100644 --- a/src/test/resources/alma-fix/990209817770206441.json +++ b/src/test/resources/alma-fix/990209817770206441.json @@ -168,12 +168,12 @@ "serialNumber" : "6-00415520-5", "currentLibrary" : "ZB", "currentLocation" : "ZB_GKL", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018811791&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018811791&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990209817770206441:DE-6:23490552480006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990210237770206441.json b/src/test/resources/alma-fix/990210237770206441.json index 7568fe84c..a4c89833f 100644 --- a/src/test/resources/alma-fix/990210237770206441.json +++ b/src/test/resources/alma-fix/990210237770206441.json @@ -88,12 +88,12 @@ "serialNumber" : "112628-550", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251010006459#!" }, { "label" : "lobid Bestandsressource", @@ -102,12 +102,12 @@ "serialNumber" : "112628-180", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251390006459#!" }, { "label" : "lobid Bestandsressource", @@ -116,12 +116,12 @@ "serialNumber" : "112628-540", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251020006459#!" }, { "label" : "lobid Bestandsressource", @@ -130,12 +130,12 @@ "serialNumber" : "112628-530", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251030006459#!" }, { "label" : "lobid Bestandsressource", @@ -144,12 +144,12 @@ "serialNumber" : "112628-560", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251000006459#!" }, { "label" : "lobid Bestandsressource", @@ -158,12 +158,12 @@ "serialNumber" : "112628-330", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251210006459#!" }, { "label" : "lobid Bestandsressource", @@ -172,12 +172,12 @@ "serialNumber" : "112628-520", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251040006459#!" }, { "label" : "lobid Bestandsressource", @@ -186,12 +186,12 @@ "serialNumber" : "112628-510", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251050006459#!" }, { "label" : "lobid Bestandsressource", @@ -200,12 +200,12 @@ "serialNumber" : "112628-320", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251220006459#!" }, { "label" : "lobid Bestandsressource", @@ -214,12 +214,12 @@ "serialNumber" : "112628-340", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251200006459#!" }, { "label" : "lobid Bestandsressource", @@ -228,12 +228,12 @@ "serialNumber" : "112628-360", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251190006459#!" }, { "label" : "lobid Bestandsressource", @@ -242,12 +242,12 @@ "serialNumber" : "112628-390", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251170006459#!" }, { "label" : "lobid Bestandsressource", @@ -256,12 +256,12 @@ "serialNumber" : "112628-370", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251180006459#!" }, { "label" : "lobid Bestandsressource", @@ -270,12 +270,12 @@ "serialNumber" : "112628-480", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251080006459#!" }, { "label" : "lobid Bestandsressource", @@ -284,12 +284,12 @@ "serialNumber" : "112628-290", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251250006459#!" }, { "label" : "lobid Bestandsressource", @@ -298,12 +298,12 @@ "serialNumber" : "112628-70", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251500006459#!" }, { "label" : "lobid Bestandsressource", @@ -312,12 +312,12 @@ "serialNumber" : "112628-230", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251340006459#!" }, { "label" : "lobid Bestandsressource", @@ -326,12 +326,12 @@ "serialNumber" : "112628-500", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251060006459#!" }, { "label" : "lobid Bestandsressource", @@ -340,12 +340,12 @@ "serialNumber" : "112628-310", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251230006459#!" }, { "label" : "lobid Bestandsressource", @@ -354,12 +354,12 @@ "serialNumber" : "112628-50", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251520006459#!" }, { "label" : "lobid Bestandsressource", @@ -368,12 +368,12 @@ "serialNumber" : "112628-270", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251270006459#!" }, { "label" : "lobid Bestandsressource", @@ -382,12 +382,12 @@ "serialNumber" : "112628-40", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251540006459#!" }, { "label" : "lobid Bestandsressource", @@ -396,12 +396,12 @@ "serialNumber" : "112628-250", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251300006459#!" }, { "label" : "lobid Bestandsressource", @@ -410,12 +410,12 @@ "serialNumber" : "112628-210", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251360006459#!" }, { "label" : "lobid Bestandsressource", @@ -424,12 +424,12 @@ "serialNumber" : "112628-190", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251380006459#!" }, { "label" : "lobid Bestandsressource", @@ -438,12 +438,12 @@ "serialNumber" : "112628-160", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251410006459#!" }, { "label" : "lobid Bestandsressource", @@ -452,12 +452,12 @@ "serialNumber" : "112628-140", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251430006459#!" }, { "label" : "lobid Bestandsressource", @@ -466,12 +466,12 @@ "serialNumber" : "112628-120", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251450006459#!" }, { "label" : "lobid Bestandsressource", @@ -480,12 +480,12 @@ "serialNumber" : "112628-100", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251470006459#!" }, { "label" : "lobid Bestandsressource", @@ -494,12 +494,12 @@ "serialNumber" : "112628-80", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251490006459#!" }, { "label" : "lobid Bestandsressource", @@ -508,12 +508,12 @@ "serialNumber" : "112628-600", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250960006459#!" }, { "label" : "lobid Bestandsressource", @@ -522,12 +522,12 @@ "serialNumber" : "112628-590", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250970006459#!" }, { "label" : "lobid Bestandsressource", @@ -536,12 +536,12 @@ "serialNumber" : "112628-430", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251130006459#!" }, { "label" : "lobid Bestandsressource", @@ -550,12 +550,12 @@ "serialNumber" : "112628-380", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250920006459#!" }, { "label" : "lobid Bestandsressource", @@ -564,12 +564,12 @@ "serialNumber" : "112628-260", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251290006459#!" }, { "label" : "lobid Bestandsressource", @@ -578,12 +578,12 @@ "serialNumber" : "112628-570", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250990006459#!" }, { "label" : "lobid Bestandsressource", @@ -592,12 +592,12 @@ "serialNumber" : "112628-610", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250940006459#!" }, { "label" : "lobid Bestandsressource", @@ -606,12 +606,12 @@ "serialNumber" : "112628-580", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250980006459#!" }, { "label" : "lobid Bestandsressource", @@ -620,12 +620,12 @@ "serialNumber" : "112628-450", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251110006459#!" }, { "label" : "lobid Bestandsressource", @@ -634,12 +634,12 @@ "serialNumber" : "112628-460", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251100006459#!" }, { "label" : "lobid Bestandsressource", @@ -648,12 +648,12 @@ "serialNumber" : "112628-440", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251120006459#!" }, { "label" : "lobid Bestandsressource", @@ -662,12 +662,12 @@ "serialNumber" : "112628-420", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251140006459#!" }, { "label" : "lobid Bestandsressource", @@ -676,12 +676,12 @@ "serialNumber" : "112628-410", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251150006459#!" }, { "label" : "lobid Bestandsressource", @@ -690,12 +690,12 @@ "serialNumber" : "112628-400", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251160006459#!" }, { "label" : "lobid Bestandsressource", @@ -704,12 +704,12 @@ "serialNumber" : "112628-490", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251070006459#!" }, { "label" : "lobid Bestandsressource", @@ -718,12 +718,12 @@ "serialNumber" : "112628-470", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251090006459#!" }, { "label" : "lobid Bestandsressource", @@ -732,12 +732,12 @@ "serialNumber" : "112628-300", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251240006459#!" }, { "label" : "lobid Bestandsressource", @@ -746,12 +746,12 @@ "serialNumber" : "112628-280", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251260006459#!" }, { "label" : "lobid Bestandsressource", @@ -760,12 +760,12 @@ "serialNumber" : "112628-60", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251510006459#!" }, { "label" : "lobid Bestandsressource", @@ -774,12 +774,12 @@ "serialNumber" : "112628-220", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251350006459#!" }, { "label" : "lobid Bestandsressource", @@ -788,12 +788,12 @@ "serialNumber" : "112628-240", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251310006459#!" }, { "label" : "lobid Bestandsressource", @@ -802,12 +802,12 @@ "serialNumber" : "112628-200", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251370006459#!" }, { "label" : "lobid Bestandsressource", @@ -816,12 +816,12 @@ "serialNumber" : "112628-170", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251400006459#!" }, { "label" : "lobid Bestandsressource", @@ -830,12 +830,12 @@ "serialNumber" : "112628-90", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251480006459#!" }, { "label" : "lobid Bestandsressource", @@ -844,12 +844,12 @@ "serialNumber" : "112628-150", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251420006459#!" }, { "label" : "lobid Bestandsressource", @@ -858,12 +858,12 @@ "serialNumber" : "112628-130", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251440006459#!" }, { "label" : "lobid Bestandsressource", @@ -872,12 +872,12 @@ "serialNumber" : "112628-110", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251460006459#!" }, { "label" : "lobid Bestandsressource", @@ -886,12 +886,12 @@ "serialNumber" : "112628-30", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251550006459#!" }, { "label" : "lobid Bestandsressource", @@ -900,12 +900,12 @@ "serialNumber" : "112628-20", "currentLibrary" : "Z9036", "currentLocation" : "FHA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", "label" : "Folkwang Universität der Künste | Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251590006459#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990210285400206441.json b/src/test/resources/alma-fix/990210285400206441.json index 666e011ae..0a0c7e777 100644 --- a/src/test/resources/alma-fix/990210285400206441.json +++ b/src/test/resources/alma-fix/990210285400206441.json @@ -124,12 +124,12 @@ "serialNumber" : "KN38$0000165230", "currentLibrary" : "Z9038", "currentLocation" : "MZ2V", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=HT018857620&local_base=MHK01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", "label" : "Hochschule für Musik und Tanz Köln, Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=HT018857620&local_base=MHK01", "id" : "http://lobid.org/items/990210285400206441:DE-Kn38:2317369740006460#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990210950050206441.json b/src/test/resources/alma-fix/990210950050206441.json index 6c07dbdd2..83a7c87c8 100644 --- a/src/test/resources/alma-fix/990210950050206441.json +++ b/src/test/resources/alma-fix/990210950050206441.json @@ -195,12 +195,12 @@ "serialNumber" : "136699801", "currentLibrary" : "X0001", "currentLocation" : "00", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT018924091", "heldBy" : { "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT018924091", "id" : "http://lobid.org/items/990210950050206441:DE-61:23260972720006443#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990217478660206441.json b/src/test/resources/alma-fix/990217478660206441.json index c3aeebf15..c27a13a3b 100644 --- a/src/test/resources/alma-fix/990217478660206441.json +++ b/src/test/resources/alma-fix/990217478660206441.json @@ -244,12 +244,12 @@ "serialNumber" : "W00268173", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719440006447#!" }, { "label" : "lobid Bestandsressource", @@ -258,12 +258,12 @@ "serialNumber" : "W00268170", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719430006447#!" }, { "label" : "lobid Bestandsressource", @@ -272,12 +272,12 @@ "serialNumber" : "W00268172", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719450006447#!" }, { "label" : "lobid Bestandsressource", @@ -286,12 +286,12 @@ "serialNumber" : "W00268164", "currentLibrary" : "W0001", "currentLocation" : "20", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719550006447#!" }, { "label" : "lobid Bestandsressource", @@ -300,12 +300,12 @@ "serialNumber" : "W00268165", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719500006447#!" }, { "label" : "lobid Bestandsressource", @@ -314,12 +314,12 @@ "serialNumber" : "W00268166", "currentLibrary" : "W0001", "currentLocation" : "21", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719530006447#!" }, { "label" : "lobid Bestandsressource", @@ -328,12 +328,12 @@ "serialNumber" : "W00268168", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719390006447#!" }, { "label" : "lobid Bestandsressource", @@ -342,12 +342,12 @@ "serialNumber" : "W00268167", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719400006447#!" }, { "label" : "lobid Bestandsressource", @@ -356,12 +356,12 @@ "serialNumber" : "W00268176", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719410006447#!" }, { "label" : "lobid Bestandsressource", @@ -370,12 +370,12 @@ "serialNumber" : "W00268171", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719470006447#!" }, { "label" : "lobid Bestandsressource", @@ -384,12 +384,12 @@ "serialNumber" : "W00268175", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719420006447#!" }, { "label" : "lobid Bestandsressource", @@ -398,12 +398,12 @@ "serialNumber" : "W00268174", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719370006447#!" }, { "label" : "lobid Bestandsressource", @@ -412,12 +412,12 @@ "serialNumber" : "W00268169", "currentLibrary" : "W0001", "currentLocation" : "91", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719380006447#!" }, { "label" : "lobid Bestandsressource", @@ -426,12 +426,12 @@ "serialNumber" : "91031017", "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT019246898%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT019246898%22", "id" : "http://lobid.org/items/990217478660206441:DE-Dm13:2346308310006451#!" }, { "label" : "lobid Bestandsressource", @@ -440,12 +440,12 @@ "serialNumber" : "180043101", "currentLibrary" : "F0001", "currentLocation" : "00", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", "label" : "Universitätsbibliothek der Fernuniversität" }, + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990217478660206441:DE-708:23101974750006464#!" }, { "label" : "lobid Bestandsressource", @@ -454,12 +454,12 @@ "serialNumber" : "180424", "currentLibrary" : "60", "currentLocation" : "CM_Freih", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT019246898%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT019246898%22", "id" : "http://lobid.org/items/990217478660206441:DE-Bi10:2321369680006450#!" }, { "label" : "lobid Bestandsressource", @@ -468,12 +468,12 @@ "serialNumber" : "01369368", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", "label" : "Hochschule Bochum, Hochschulbibliothek" }, + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-Bm40:2314295720006454#!" }, { "label" : "lobid Bestandsressource", @@ -482,12 +482,12 @@ "serialNumber" : "100000005149", "currentLibrary" : "KRW", "currentLocation" : "KRW_Public", - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT019246898%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", "label" : "Hochschule Niederrhein, Bibliothek" }, + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT019246898%22", "id" : "http://lobid.org/items/990217478660206441:DE-829:2347787920008056#!" }, { "label" : "lobid Bestandsressource", @@ -496,12 +496,12 @@ "serialNumber" : "21WTA314", "currentLibrary" : "DT", "currentLocation" : "DT_Frei", - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT019246898%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT019246898%22", "id" : "http://lobid.org/items/990217478660206441:DE-743:2338591810006468#!" }, { "label" : "lobid Bestandsressource", @@ -510,12 +510,12 @@ "serialNumber" : "046250 211", "currentLibrary" : "211", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT019246898&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-211#!", "isil" : "DE-82-211", "label" : "Lehrstuhl und Institut für Kunstgeschichte, Bibliothek" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT019246898&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/990217478660206441:DE-82-211:23243058570006448#!" }, { "label" : "lobid Bestandsressource", @@ -524,12 +524,12 @@ "serialNumber" : "50000027887", "currentLibrary" : "BAB", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019246898%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019246898%22", "id" : "http://lobid.org/items/990217478660206441:DE-290:23194214350006445#!" }, { "label" : "lobid Bestandsressource", @@ -538,12 +538,12 @@ "serialNumber" : "M33 3199", "currentLibrary" : "RL001", "currentLocation" : "FRHKO", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990217478660206441:DE-Kob7:2330360620008057#!" }, { "label" : "lobid Bestandsressource", @@ -552,12 +552,12 @@ "serialNumber" : "44A4782", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-38:23200826910006476#!" }, { "label" : "lobid Bestandsressource", @@ -566,12 +566,12 @@ "serialNumber" : "6-00536437-0", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019246898&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019246898&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990217478660206441:DE-6:23512237280006449#!" }, { "label" : "lobid Bestandsressource", @@ -580,12 +580,12 @@ "serialNumber" : "53WTA3654+1", "currentLibrary" : "S0001", "currentLocation" : "PB", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", "label" : "Universitätsbibliothek Siegen" }, + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-467:2393751950006462#!" }, { "label" : "lobid Bestandsressource", @@ -594,12 +594,12 @@ "serialNumber" : "53WTA3654", "currentLibrary" : "S0001", "currentLocation" : "PB", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", "label" : "Universitätsbibliothek Siegen" }, + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-467:2393751960006462#!" }, { "label" : "lobid Bestandsressource", @@ -608,36 +608,36 @@ "serialNumber" : "WTA2129", "currentLibrary" : "P0001", "currentLocation" : "51", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-466:23122059280006463#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", "label" : "Universitätsbibliothek Koblenz" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990217478660206441:DE-Kob7:2230360610008057#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019246898", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019246898", "id" : "http://lobid.org/items/990217478660206441:DE-466:22122059270006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990218189790206441.json b/src/test/resources/alma-fix/990218189790206441.json index cfb57d65e..c110599e3 100644 --- a/src/test/resources/alma-fix/990218189790206441.json +++ b/src/test/resources/alma-fix/990218189790206441.json @@ -109,12 +109,12 @@ "serialNumber" : "AJ-1019284", "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019317250", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019317250", "id" : "http://lobid.org/items/990218189790206441:DE-5-141:23264785760006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990220027540206441.json b/src/test/resources/alma-fix/990220027540206441.json index 43bde8df7..b05fd27d5 100644 --- a/src/test/resources/alma-fix/990220027540206441.json +++ b/src/test/resources/alma-fix/990220027540206441.json @@ -84,12 +84,12 @@ "serialNumber" : "AJ-196496", "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019496555", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019496555", "id" : "http://lobid.org/items/990220027540206441:DE-5-141:23219038300006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990223521400206441.json b/src/test/resources/alma-fix/990223521400206441.json index 96c210662..3ed36e4dd 100644 --- a/src/test/resources/alma-fix/990223521400206441.json +++ b/src/test/resources/alma-fix/990223521400206441.json @@ -231,12 +231,12 @@ "serialNumber" : "W00274368", "currentLibrary" : "W0001", "currentLocation" : "75", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", "label" : "Universitätsbibliothek Wuppertal" }, + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019631849", "id" : "http://lobid.org/items/990223521400206441:DE-468:23143395260006447#!" }, { "label" : "lobid Bestandsressource", @@ -245,12 +245,12 @@ "serialNumber" : "91036298", "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT019631849%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT019631849%22", "id" : "http://lobid.org/items/990223521400206441:DE-Dm13:2345522380006451#!" }, { "label" : "lobid Bestandsressource", @@ -311,12 +311,12 @@ "serialNumber" : "22253605", "currentLibrary" : "RHB", "currentLocation" : "RHB_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701840006452#!" }, { "label" : "lobid Bestandsressource", @@ -325,12 +325,12 @@ "serialNumber" : "22174458", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701860006452#!" }, { "label" : "lobid Bestandsressource", @@ -339,12 +339,12 @@ "serialNumber" : "22174464", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701900006452#!" }, { "label" : "lobid Bestandsressource", @@ -353,12 +353,12 @@ "serialNumber" : "22174441", "currentLibrary" : "STA", "currentLocation" : "STA_FH", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701880006452#!" }, { "label" : "lobid Bestandsressource", @@ -367,12 +367,12 @@ "serialNumber" : "11TYD398(3)", "currentLibrary" : "LE", "currentLocation" : "LE_Frei", - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT019631849%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT019631849%22", "id" : "http://lobid.org/items/990223521400206441:DE-743:2340036580006468#!" }, { "label" : "lobid Bestandsressource", @@ -381,12 +381,12 @@ "serialNumber" : "50000033216", "currentLibrary" : "S7", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", "id" : "http://lobid.org/items/990223521400206441:DE-290:23189128750006445#!" }, { "label" : "lobid Bestandsressource", @@ -395,12 +395,12 @@ "serialNumber" : "P2018/1480", "currentLibrary" : "0", "currentLocation" : "0-Mag", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019631849", "id" : "http://lobid.org/items/990223521400206441:DE-5:23214050900006467#!" }, { "label" : "lobid Bestandsressource", @@ -409,12 +409,12 @@ "serialNumber" : "DE00648926", "currentLibrary" : "D0001", "currentLocation" : "D05", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947900006446#!" }, { "label" : "lobid Bestandsressource", @@ -423,12 +423,12 @@ "serialNumber" : "DE00648925", "currentLibrary" : "D0001", "currentLocation" : "D05", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947910006446#!" }, { "label" : "lobid Bestandsressource", @@ -437,12 +437,12 @@ "serialNumber" : "DE00648924", "currentLibrary" : "D0001", "currentLocation" : "D05", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947920006446#!" }, { "label" : "lobid Bestandsressource", @@ -451,12 +451,12 @@ "serialNumber" : "DE00644940", "currentLibrary" : "E0001", "currentLocation" : "E33", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947870006446#!" }, { "label" : "lobid Bestandsressource", @@ -465,12 +465,12 @@ "serialNumber" : "DE00644939", "currentLibrary" : "E0001", "currentLocation" : "E33", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947880006446#!" }, { "label" : "lobid Bestandsressource", @@ -479,12 +479,12 @@ "serialNumber" : "DE00648923", "currentLibrary" : "D0001", "currentLocation" : "D01", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947940006446#!" }, { "label" : "lobid Bestandsressource", @@ -493,12 +493,12 @@ "serialNumber" : "DE00644942", "currentLibrary" : "E0001", "currentLocation" : "E33", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947850006446#!" }, { "label" : "lobid Bestandsressource", @@ -507,12 +507,12 @@ "serialNumber" : "DE00644941", "currentLibrary" : "E0001", "currentLocation" : "E33", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947860006446#!" }, { "label" : "lobid Bestandsressource", @@ -521,12 +521,12 @@ "serialNumber" : "44A6297", "currentLibrary" : "38", "currentLocation" : "38-SAB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT019631849", "id" : "http://lobid.org/items/990223521400206441:DE-38:23247867950006476#!" }, { "label" : "lobid Bestandsressource", @@ -535,12 +535,12 @@ "serialNumber" : "6-00557803-7", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990223521400206441:DE-6:23506634650006449#!" }, { "label" : "lobid Bestandsressource", @@ -549,12 +549,12 @@ "serialNumber" : "6-00557802-4", "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990223521400206441:DE-6:23506634640006449#!" }, { "label" : "lobid Bestandsressource", @@ -563,12 +563,12 @@ "serialNumber" : "TWP22152(3)", "currentLibrary" : "P0001", "currentLocation" : "41", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", "id" : "http://lobid.org/items/990223521400206441:DE-466:23127647720006463#!" }, { "label" : "lobid Bestandsressource", @@ -577,24 +577,24 @@ "serialNumber" : "TWP22152(3)+1", "currentLibrary" : "P0001", "currentLocation" : "41", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", "id" : "http://lobid.org/items/990223521400206441:DE-466:23127647710006463#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", "heldBy" : { "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", "label" : "Universitätsbibliothek Paderborn" }, + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", "id" : "http://lobid.org/items/990223521400206441:DE-466:22127647700006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990225056670206441.json b/src/test/resources/alma-fix/990225056670206441.json index 79431c242..d38942f2d 100644 --- a/src/test/resources/alma-fix/990225056670206441.json +++ b/src/test/resources/alma-fix/990225056670206441.json @@ -86,12 +86,12 @@ "serialNumber" : "501:000491", "currentLibrary" : "501", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT003907920&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-501#!", "isil" : "DE-82-501", "label" : "Lehrstuhl für Bildverarbeitung, Bibliothek" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT003907920&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/990225056670206441:DE-82-501:23217998250006448#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990366394400206441.json b/src/test/resources/alma-fix/990366394400206441.json index 5d7d8240f..791e2786d 100644 --- a/src/test/resources/alma-fix/990366394400206441.json +++ b/src/test/resources/alma-fix/990366394400206441.json @@ -69,12 +69,12 @@ "serialNumber" : "6-00461456-X", "currentLibrary" : "HLS", "currentLocation" : "HLS_HSMAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020446683&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020446683&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990366394400206441:DE-6:23534915260006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990367731740206441.json b/src/test/resources/alma-fix/990367731740206441.json index 48fbcce54..09c547033 100644 --- a/src/test/resources/alma-fix/990367731740206441.json +++ b/src/test/resources/alma-fix/990367731740206441.json @@ -251,12 +251,12 @@ "type" : [ "Item", "PhysikalischerTitel" ], "currentLibrary" : "R5001", "currentLocation" : "UNASSIGNED", - "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID=HT020579803", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1116#!", "isil" : "DE-1116", "label" : "Hochschule für Wirtschaft und Gesellschaft Ludwigshafen, Bibliothek" }, + "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID=HT020579803", "id" : "http://lobid.org/items/990367731740206441:DE-1116:229499030007824#!" }, { "type" : [ "Item", "DigitalDocument" ], diff --git a/src/test/resources/alma-fix/990367761810206441.json b/src/test/resources/alma-fix/990367761810206441.json index cff7600e8..c9c727163 100644 --- a/src/test/resources/alma-fix/990367761810206441.json +++ b/src/test/resources/alma-fix/990367761810206441.json @@ -141,12 +141,12 @@ "serialNumber" : "JAP/0018138", "currentLibrary" : "38-459", "currentLocation" : "38-459-FHM", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT020582812", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", "label" : "Gemeinsame Fachbibliothek Asien / Japanologie" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT020582812", "id" : "http://lobid.org/items/990367761810206441:DE-38-459:23197352380006476#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990368743120206441.json b/src/test/resources/alma-fix/990368743120206441.json index fcd8fb4d2..aa9d12e25 100644 --- a/src/test/resources/alma-fix/990368743120206441.json +++ b/src/test/resources/alma-fix/990368743120206441.json @@ -70,12 +70,12 @@ "serialNumber" : "6-00461538-5", "currentLibrary" : "HLS", "currentLocation" : "HLS_HSMAG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020681018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020681018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/990368743120206441:DE-6:23544500850006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99370771475306441.json b/src/test/resources/alma-fix/99370771475306441.json index 3026847e0..40550ef40 100644 --- a/src/test/resources/alma-fix/99370771475306441.json +++ b/src/test/resources/alma-fix/99370771475306441.json @@ -244,12 +244,12 @@ "serialNumber" : "91083416", "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT020919504%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT020919504%22", "id" : "http://lobid.org/items/99370771475306441:DE-Dm13:2346845850006451#!" }, { "label" : "lobid Bestandsressource", @@ -258,12 +258,12 @@ "serialNumber" : "211231", "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", "id" : "http://lobid.org/items/99370771475306441:DE-Bi10:2317935550006450#!" }, { "label" : "lobid Bestandsressource", @@ -272,12 +272,12 @@ "serialNumber" : "211230", "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", "id" : "http://lobid.org/items/99370771475306441:DE-Bi10:2317935560006450#!" }, { "label" : "lobid Bestandsressource", @@ -286,12 +286,12 @@ "serialNumber" : "211229", "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", "id" : "http://lobid.org/items/99370771475306441:DE-Bi10:2317935570006450#!" }, { "label" : "lobid Bestandsressource", @@ -300,12 +300,12 @@ "serialNumber" : "622040", "currentLibrary" : "R5001", "currentLocation" : "X0001", - "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID=HT020919504", "heldBy" : { "id" : "http://lobid.org/organisations/DE-1116#!", "isil" : "DE-1116", "label" : "Hochschule für Wirtschaft und Gesellschaft Ludwigshafen, Bibliothek" }, + "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID=HT020919504", "id" : "http://lobid.org/items/99370771475306441:DE-1116:2313341950007824#!" }, { "label" : "lobid Bestandsressource", @@ -314,12 +314,12 @@ "serialNumber" : "ZE-202720", "currentLibrary" : "ZE", "currentLocation" : "ZE-Bib", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020919504", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bo404#!", "isil" : "DE-Bo404", "label" : "Deutsches Referenzzentrum für Ethik in den Biowissenschaften, Bibliothek/Dokumentation" }, + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020919504", "id" : "http://lobid.org/items/99370771475306441:DE-Bo404:23299338990006467#!" }, { "label" : "lobid Bestandsressource", @@ -341,12 +341,12 @@ "serialNumber" : "DE00736175", "currentLibrary" : "D0001", "currentLocation" : "D01", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/99370771475306441:DE-465:23448803450006446#!" }, { "label" : "lobid Bestandsressource", @@ -355,12 +355,12 @@ "serialNumber" : "Z75-040987", "currentLibrary" : "MEGT", "currentLocation" : "MEGT_BIBEG", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6-164#!", "isil" : "DE-6-164", "label" : "Universität Münster, Institut für Ethik, Geschichte und Theorie der Medizin, Bibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/99370771475306441:DE-6-164:23545591700006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/99370782520706441.json b/src/test/resources/alma-fix/99370782520706441.json index 76a24e57b..67d19ac9f 100644 --- a/src/test/resources/alma-fix/99370782520706441.json +++ b/src/test/resources/alma-fix/99370782520706441.json @@ -274,12 +274,12 @@ "serialNumber" : "01383988", "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", "label" : "Hochschule Bochum, Hochschulbibliothek" }, + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT020936481", "id" : "http://lobid.org/items/99370782520706441:DE-Bm40:2313413830006454#!" }, { "label" : "lobid Bestandsressource", @@ -288,12 +288,12 @@ "serialNumber" : "21XBR190(2021)-2", "currentLibrary" : "DT", "currentLocation" : "DT_Frei", - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT020936481%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT020936481%22", "id" : "http://lobid.org/items/99370782520706441:DE-743:2339214060006468#!" }, { "label" : "lobid Bestandsressource", @@ -302,12 +302,12 @@ "serialNumber" : "ZI 3850 0003-2021,2=3", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957880006448#!" }, { "label" : "lobid Bestandsressource", @@ -316,12 +316,12 @@ "serialNumber" : "(1)62276", "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_3", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957810006448#!" }, { "label" : "lobid Bestandsressource", @@ -330,12 +330,12 @@ "serialNumber" : "022844 211", "currentLibrary" : "202", "currentLocation" : "7", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82-202#!", "isil" : "DE-82-202", "label" : "Kooperierende Bibliothek der Lehrstühle für Planungstheorie und Stadtentwicklung, für Städtebau und Landesplanung, für Wohnbau und Grundlagen des Entwerfens, für CAAD, für Individualisierte Bauproduktion, für Immobilienprojektentwicklung, Gemeinsame Bibliothek" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/99370782520706441:DE-82-202:23218957790006448#!" }, { "label" : "lobid Bestandsressource", @@ -344,12 +344,12 @@ "serialNumber" : "ZI 3850 0003-2021,2=1", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957850006448#!" }, { "label" : "lobid Bestandsressource", @@ -358,12 +358,12 @@ "serialNumber" : "ZI 3850 0003-2021,2=5", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957840006448#!" }, { "label" : "lobid Bestandsressource", @@ -372,12 +372,12 @@ "serialNumber" : "ZI 3850 0003-2021,2=4", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957830006448#!" }, { "label" : "lobid Bestandsressource", @@ -386,12 +386,12 @@ "serialNumber" : "ZI 3850 0003-2021,2=2", "currentLibrary" : "LBS", "currentLocation" : "0", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957870006448#!" }, { "label" : "lobid Bestandsressource", @@ -400,12 +400,12 @@ "serialNumber" : "31XBR1535-2021,2+2", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "id" : "http://lobid.org/items/99370782520706441:DE-832:2346585050006477#!" }, { "label" : "lobid Bestandsressource", @@ -414,12 +414,12 @@ "serialNumber" : "31XBR1535-2021,2+3", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "id" : "http://lobid.org/items/99370782520706441:DE-832:2346585040006477#!" }, { "label" : "lobid Bestandsressource", @@ -428,12 +428,12 @@ "serialNumber" : "31XBR1535-2021,2+4", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "id" : "http://lobid.org/items/99370782520706441:DE-832:2346585030006477#!" }, { "label" : "lobid Bestandsressource", @@ -442,12 +442,12 @@ "serialNumber" : "31XBR1535-2021,2+1", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "id" : "http://lobid.org/items/99370782520706441:DE-832:2346585060006477#!" }, { "label" : "lobid Bestandsressource", @@ -456,12 +456,12 @@ "serialNumber" : "31XBR1535-2021,2+6", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "id" : "http://lobid.org/items/99370782520706441:DE-832:2346585010006477#!" }, { "label" : "lobid Bestandsressource", @@ -470,12 +470,12 @@ "serialNumber" : "32XBR1535-2021,2", "currentLibrary" : "DEUTZ", "currentLocation" : "32", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "id" : "http://lobid.org/items/99370782520706441:DE-832:2346584960006477#!" }, { "label" : "lobid Bestandsressource", @@ -484,12 +484,12 @@ "serialNumber" : "31XBR1535-2021,2+7", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "id" : "http://lobid.org/items/99370782520706441:DE-832:2346585000006477#!" }, { "label" : "lobid Bestandsressource", @@ -498,12 +498,12 @@ "serialNumber" : "31XBR1535-2021,2+5", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "id" : "http://lobid.org/items/99370782520706441:DE-832:2346585020006477#!" }, { "label" : "lobid Bestandsressource", @@ -512,12 +512,12 @@ "serialNumber" : "31XBR1535-2021,2+9", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "id" : "http://lobid.org/items/99370782520706441:DE-832:2346584980006477#!" }, { "label" : "lobid Bestandsressource", @@ -526,12 +526,12 @@ "serialNumber" : "31XBR1535-2021,2+8", "currentLibrary" : "DEUTZ", "currentLocation" : "31", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", "id" : "http://lobid.org/items/99370782520706441:DE-832:2346584990006477#!" }, { "label" : "lobid Bestandsressource", @@ -540,12 +540,12 @@ "serialNumber" : "50000067433", "currentLibrary" : "BR", "currentLocation" : "Freihand", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT020936481%22", "heldBy" : { "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", "label" : "Universitätsbibliothek Dortmund" }, + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT020936481%22", "id" : "http://lobid.org/items/99370782520706441:DE-290:23212938760006445#!" }, { "label" : "lobid Bestandsressource", @@ -567,12 +567,12 @@ "serialNumber" : "DE00637881", "currentLibrary" : "E0001", "currentLocation" : "EHA", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/99370782520706441:DE-465:23448939910006446#!" }, { "label" : "lobid Bestandsressource", @@ -581,12 +581,12 @@ "serialNumber" : "DE00637884", "currentLibrary" : "E0001", "currentLocation" : "E31", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "id" : "http://lobid.org/items/99370782520706441:DE-465:23448939860006446#!" }, { "label" : "lobid Bestandsressource", @@ -595,12 +595,12 @@ "serialNumber" : "53XBR5068-2021,2", "currentLibrary" : "S0001", "currentLocation" : "PB", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT020936481", "heldBy" : { "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", "label" : "Universitätsbibliothek Siegen" }, + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT020936481", "id" : "http://lobid.org/items/99370782520706441:DE-467:2358786050006462#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99371014448006441.json b/src/test/resources/alma-fix/99371014448006441.json index 742a5242a..9c67d4cd9 100644 --- a/src/test/resources/alma-fix/99371014448006441.json +++ b/src/test/resources/alma-fix/99371014448006441.json @@ -118,12 +118,12 @@ "serialNumber" : "JAP/0020015", "currentLibrary" : "38-459", "currentLocation" : "38-459-FHM", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021117356", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", "label" : "Gemeinsame Fachbibliothek Asien / Japanologie" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021117356", "id" : "http://lobid.org/items/99371014448006441:DE-38-459:23187329000006476#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99371050452706441.json b/src/test/resources/alma-fix/99371050452706441.json index 5efc72de8..7f7af8ef7 100644 --- a/src/test/resources/alma-fix/99371050452706441.json +++ b/src/test/resources/alma-fix/99371050452706441.json @@ -220,12 +220,12 @@ "serialNumber" : "6-00724192-9", "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021137663&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021137663&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "id" : "http://lobid.org/items/99371050452706441:DE-6:23596739030006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99371530278506441.json b/src/test/resources/alma-fix/99371530278506441.json index bcaa8f56b..55c251b74 100644 --- a/src/test/resources/alma-fix/99371530278506441.json +++ b/src/test/resources/alma-fix/99371530278506441.json @@ -190,12 +190,12 @@ "serialNumber" : "432/0021005", "currentLibrary" : "38-432", "currentLocation" : "38-432-BIB", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021463169", "heldBy" : { "id" : "http://lobid.org/organisations/DE-38-432#!", "isil" : "DE-38-432", "label" : "Thomas-Institut, Bibliothek" }, + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021463169", "id" : "http://lobid.org/items/99371530278506441:DE-38-432:23292477910006476#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99372423490706441.json b/src/test/resources/alma-fix/99372423490706441.json index 4f35c342e..04a766857 100644 --- a/src/test/resources/alma-fix/99372423490706441.json +++ b/src/test/resources/alma-fix/99372423490706441.json @@ -106,12 +106,12 @@ "serialNumber" : ":94002761436", "currentLibrary" : "T0010", "currentLocation" : "kA", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT030002417&local_base=STR01", "heldBy" : { "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", "label" : "Wissenschaftliche Bibliothek der Stadt Trier" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT030002417&local_base=STR01", "id" : "http://lobid.org/items/99372423490706441:DE-121:2320209870007826#!" } ], "medium" : [ { From cd3547bcd9ef311170149fcf5a3b2e30ef4324a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20B=C3=BClte?= Date: Wed, 27 Sep 2023 12:52:37 +0200 Subject: [PATCH 13/23] Prefer sublibrary opac over IZ opac #1888 --- src/main/resources/alma/fix/item.fix | 10 ++++++++-- src/test/resources/alma-fix/990016782920206441.json | 3 ++- src/test/resources/alma-fix/990026405480206441.json | 4 ++-- src/test/resources/alma-fix/990050000600206441.json | 2 +- src/test/resources/alma-fix/990053976760206441.json | 1 + src/test/resources/alma-fix/990054301770206441.json | 1 + src/test/resources/alma-fix/990058434730206441.json | 2 +- src/test/resources/alma-fix/990058567920206441.json | 4 ++-- src/test/resources/alma-fix/990075429930206441.json | 4 ++-- src/test/resources/alma-fix/990103899140206441.json | 1 + src/test/resources/alma-fix/990108873860206441.json | 1 + src/test/resources/alma-fix/990126276700206441.json | 4 ++-- src/test/resources/alma-fix/990141342350206441.json | 2 +- src/test/resources/alma-fix/990156060190206441.json | 5 +++-- src/test/resources/alma-fix/990194744870206441.json | 2 +- src/test/resources/alma-fix/990197293880206441.json | 1 + src/test/resources/alma-fix/99371791018506441.json | 1 + 17 files changed, 31 insertions(+), 17 deletions(-) diff --git a/src/main/resources/alma/fix/item.fix b/src/main/resources/alma/fix/item.fix index 155b15d16..e7f1fe4e9 100644 --- a/src/main/resources/alma/fix/item.fix +++ b/src/main/resources/alma/fix/item.fix @@ -35,7 +35,10 @@ do list(path:"ITM ", "var": "$i") else copy_field("$i.@iz", "hasItem[].$last.heldBy.id") end - call_macro("opacLink", field:"@iz") + call_macro("opacLink", field:"@sublibraryIsil") + unless exists("hasItem[].$last.opacLink") + call_macro("opacLink", field:"@iz") + end copy_field("hasItem[].$last.heldBy.id","hasItem[].$last.heldBy.isil") prepend("hasItem[].$last.heldBy.id", "http://lobid.org/organisations/") append("hasItem[].$last.heldBy.id","#!") @@ -77,7 +80,10 @@ do list(path: "HOL ", "var": "$i") else copy_field("$i.@iz", "hasItem[].$last.heldBy.id") end - call_macro("opacLink", field:"@iz") + call_macro("opacLink", field:"@sublibraryIsil") + unless exists("hasItem[].$last.opacLink") + call_macro("opacLink", field:"@iz") + end copy_field("hasItem[].$last.heldBy.id","hasItem[].$last.heldBy.isil") prepend("hasItem[].$last.heldBy.id", "http://lobid.org/organisations/") append("hasItem[].$last.heldBy.id","#!") diff --git a/src/test/resources/alma-fix/990016782920206441.json b/src/test/resources/alma-fix/990016782920206441.json index 349401c7d..e9c8ca13d 100644 --- a/src/test/resources/alma-fix/990016782920206441.json +++ b/src/test/resources/alma-fix/990016782920206441.json @@ -107,6 +107,7 @@ "isil" : "DE-575", "label" : "Hochschule für Musik Detmold, Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHD01&doc_001_number=HT004285445&local_base=MHD01", "id" : "http://lobid.org/items/990016782920206441:DE-575:2393551510006480#!" }, { "label" : "lobid Bestandsressource", @@ -120,7 +121,7 @@ "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT004285445%22&selectedViewBranchlib=0", + "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT004285445%22", "id" : "http://lobid.org/items/990016782920206441:DE-107:237988430007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990026405480206441.json b/src/test/resources/alma-fix/990026405480206441.json index 9e1cc8cf6..6f2cd3862 100644 --- a/src/test/resources/alma-fix/990026405480206441.json +++ b/src/test/resources/alma-fix/990026405480206441.json @@ -130,7 +130,7 @@ "isil" : "DE-Zw1", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Bibliotheca Bipontina" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=2", "id" : "http://lobid.org/items/990026405480206441:DE-Zw1:2310230370007506#!" }, { "label" : "lobid Bestandsressource", @@ -144,7 +144,7 @@ "isil" : "DE-Zw1", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Bibliotheca Bipontina" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=0", + "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=2", "id" : "http://lobid.org/items/990026405480206441:DE-Zw1:2310230380007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990050000600206441.json b/src/test/resources/alma-fix/990050000600206441.json index 7e061781d..773ba4899 100644 --- a/src/test/resources/alma-fix/990050000600206441.json +++ b/src/test/resources/alma-fix/990050000600206441.json @@ -175,7 +175,7 @@ "isil" : "DE-Lan1", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT006855611&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990050000600206441:DE-Lan1:2365786130007476#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990053976760206441.json b/src/test/resources/alma-fix/990053976760206441.json index 1bd46bda9..5abbd9792 100644 --- a/src/test/resources/alma-fix/990053976760206441.json +++ b/src/test/resources/alma-fix/990053976760206441.json @@ -373,6 +373,7 @@ "isil" : "DE-Lan1", "label" : "Universitätsbibliothek der RPTU in Landau" }, + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990053976760206441:DE-Lan1:2266381790007476#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990054301770206441.json b/src/test/resources/alma-fix/990054301770206441.json index e4add9ac6..1002a6c9d 100644 --- a/src/test/resources/alma-fix/990054301770206441.json +++ b/src/test/resources/alma-fix/990054301770206441.json @@ -210,6 +210,7 @@ "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, + "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=-1=%22133469-4%22", "id" : "http://lobid.org/items/990054301770206441:DE-107:2285922320007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990058434730206441.json b/src/test/resources/alma-fix/990058434730206441.json index 16059cf2a..5469e6714 100644 --- a/src/test/resources/alma-fix/990058434730206441.json +++ b/src/test/resources/alma-fix/990058434730206441.json @@ -239,7 +239,7 @@ "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000893437%22&selectedViewBranchlib=0", + "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000893437%22", "id" : "http://lobid.org/items/990058434730206441:DE-107:2384300260007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990058567920206441.json b/src/test/resources/alma-fix/990058567920206441.json index b36fe9884..60708b78e 100644 --- a/src/test/resources/alma-fix/990058567920206441.json +++ b/src/test/resources/alma-fix/990058567920206441.json @@ -241,7 +241,7 @@ "isil" : "DE-Lan1", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990058567920206441:DE-Lan1:2386676860007476#!" }, { "label" : "lobid Bestandsressource", @@ -269,7 +269,7 @@ "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000909138%22&selectedViewBranchlib=0", + "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000909138%22", "id" : "http://lobid.org/items/990058567920206441:DE-107:2317906360007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990075429930206441.json b/src/test/resources/alma-fix/990075429930206441.json index 7413a169b..eb7885f39 100644 --- a/src/test/resources/alma-fix/990075429930206441.json +++ b/src/test/resources/alma-fix/990075429930206441.json @@ -102,7 +102,7 @@ "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000944190%22&selectedViewBranchlib=0", + "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000944190%22", "id" : "http://lobid.org/items/990075429930206441:DE-107:2377095800007506#!" }, { "label" : "lobid Bestandsressource", @@ -116,7 +116,7 @@ "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000944190%22&selectedViewBranchlib=0", + "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000944190%22", "id" : "http://lobid.org/items/990075429930206441:DE-107:2377095810007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990103899140206441.json b/src/test/resources/alma-fix/990103899140206441.json index 9abd4c432..1fa27da33 100644 --- a/src/test/resources/alma-fix/990103899140206441.json +++ b/src/test/resources/alma-fix/990103899140206441.json @@ -118,6 +118,7 @@ "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, + "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=-1=%22590016-5%22", "id" : "http://lobid.org/items/990103899140206441:DE-107:2263335540007506#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990108873860206441.json b/src/test/resources/alma-fix/990108873860206441.json index 2a98e343d..bdfbece38 100644 --- a/src/test/resources/alma-fix/990108873860206441.json +++ b/src/test/resources/alma-fix/990108873860206441.json @@ -157,6 +157,7 @@ "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, + "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=-1=%221500025-4%22", "id" : "http://lobid.org/items/990108873860206441:DE-107:2263798630007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990126276700206441.json b/src/test/resources/alma-fix/990126276700206441.json index 15669737a..560d7e526 100644 --- a/src/test/resources/alma-fix/990126276700206441.json +++ b/src/test/resources/alma-fix/990126276700206441.json @@ -160,7 +160,7 @@ "isil" : "DE-Lan1", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT014015351", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990126276700206441:DE-Lan1:2380082230007476#!" }, { "label" : "lobid Bestandsressource", @@ -174,7 +174,7 @@ "isil" : "DE-Lan1", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT014015351", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990126276700206441:DE-Lan1:2380082240007476#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990141342350206441.json b/src/test/resources/alma-fix/990141342350206441.json index 3f57575b9..406b72520 100644 --- a/src/test/resources/alma-fix/990141342350206441.json +++ b/src/test/resources/alma-fix/990141342350206441.json @@ -106,7 +106,7 @@ "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22TT001230001%22&selectedViewBranchlib=0", + "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22TT001230001%22", "id" : "http://lobid.org/items/990141342350206441:DE-107:2379314410007506#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990156060190206441.json b/src/test/resources/alma-fix/990156060190206441.json index 4652e1d6d..b4b045948 100644 --- a/src/test/resources/alma-fix/990156060190206441.json +++ b/src/test/resources/alma-fix/990156060190206441.json @@ -327,6 +327,7 @@ "isil" : "DE-575", "label" : "Hochschule für Musik Detmold, Bibliothek" }, + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHD01&doc_001_number=HT015014677&local_base=MHD01", "id" : "http://lobid.org/items/990156060190206441:DE-575:23101091890006480#!" }, { "label" : "lobid Bestandsressource", @@ -367,7 +368,7 @@ "isil" : "DE-Lan1", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990156060190206441:DE-Lan1:2374193700007476#!" }, { "label" : "lobid Bestandsressource", @@ -409,7 +410,7 @@ "isil" : "DE-107", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015014677%22&selectedViewBranchlib=0", + "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT015014677%22", "id" : "http://lobid.org/items/990156060190206441:DE-107:2369296750007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990194744870206441.json b/src/test/resources/alma-fix/990194744870206441.json index eea0695ae..fc288b10f 100644 --- a/src/test/resources/alma-fix/990194744870206441.json +++ b/src/test/resources/alma-fix/990194744870206441.json @@ -83,7 +83,7 @@ "isil" : "DE-Lan1", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT017559543", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990194744870206441:DE-Lan1:2363975880007476#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990197293880206441.json b/src/test/resources/alma-fix/990197293880206441.json index 7b04f7b60..29e7f1622 100644 --- a/src/test/resources/alma-fix/990197293880206441.json +++ b/src/test/resources/alma-fix/990197293880206441.json @@ -192,6 +192,7 @@ "isil" : "DE-1105", "label" : "Hochschule Koblenz, RheinAhrCampus, Bibliothek" }, + "opacLink" : "http://www.hs-koblenz.de/RACwebOPAC/start.do?Login=webopac&Query=0010=%22TT050421649%22", "id" : "http://lobid.org/items/990197293880206441:DE-1105:2219007830007829#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/99371791018506441.json b/src/test/resources/alma-fix/99371791018506441.json index 0c574197d..aa0b9a268 100644 --- a/src/test/resources/alma-fix/99371791018506441.json +++ b/src/test/resources/alma-fix/99371791018506441.json @@ -96,6 +96,7 @@ "isil" : "DE-1105", "label" : "Hochschule Koblenz, RheinAhrCampus, Bibliothek" }, + "opacLink" : "http://www.hs-koblenz.de/RACwebOPAC/start.do?Login=webopac&Query=0010=%22HT021613847%22", "id" : "http://lobid.org/items/99371791018506441:DE-1105:2213069980007829#!" }, { "type" : [ "Item", "DigitalDocument" ], From 515d577bb0018da25b65e55b96d42196af43f5ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20B=C3=BClte?= Date: Wed, 27 Sep 2023 13:47:34 +0200 Subject: [PATCH 14/23] Refacture heldBy mapping #1888 This provides changes that can be reused for the opacUrl macro --- src/main/resources/alma/fix/item.fix | 47 +++-- .../alma-fix/990001412590206441.json | 30 ++-- .../alma-fix/990011470300206441.json | 6 +- .../alma-fix/990014830510206441.json | 8 +- .../alma-fix/990016782920206441.json | 14 +- .../alma-fix/990021367710206441.json | 12 +- .../alma-fix/990021974470206441.json | 14 +- .../alma-fix/990026405480206441.json | 16 +- .../alma-fix/990030574430206441.json | 4 +- .../alma-fix/990033263300206441.json | 2 +- .../alma-fix/990035016180206441.json | 24 +-- .../alma-fix/990041403870206441.json | 4 +- .../alma-fix/990050000600206441.json | 62 +++---- .../alma-fix/990051708340206441.json | 4 +- .../alma-fix/990052965140206441.json | 24 +-- .../alma-fix/990053976760206441.json | 44 ++--- .../alma-fix/990054215550206441.json | 6 +- .../alma-fix/990054301770206441.json | 12 +- .../alma-fix/990054345550206441.json | 70 ++++---- .../alma-fix/990055981810206441.json | 16 +- .../alma-fix/990058434730206441.json | 70 ++++---- .../alma-fix/990058567920206441.json | 90 +++++----- .../alma-fix/990059571560206441.json | 16 +- .../alma-fix/990063549080206441.json | 14 +- .../alma-fix/990065341720206441.json | 2 +- .../alma-fix/990075429930206441.json | 42 ++--- .../alma-fix/990075538650206441.json | 8 +- .../alma-fix/990103899140206441.json | 2 +- .../alma-fix/990108873860206441.json | 10 +- .../alma-fix/990108874370206441.json | 4 +- .../alma-fix/990109712970206441.json | 80 ++++----- .../alma-fix/990112067120206441.json | 2 +- .../alma-fix/990114098170206441.json | 2 +- .../alma-fix/990114617880206441.json | 2 +- .../alma-fix/990118562160206441.json | 2 +- .../alma-fix/990122511970206441.json | 2 +- .../alma-fix/990124590390206441.json | 2 +- .../alma-fix/990126276700206441.json | 28 +-- .../alma-fix/990133067580206441.json | 8 +- .../alma-fix/990136041660206441.json | 2 +- .../alma-fix/990139686910206441.json | 2 +- .../alma-fix/990141342350206441.json | 2 +- .../alma-fix/990143325070206441.json | 4 +- .../alma-fix/990150856900206441.json | 2 +- .../alma-fix/990156027740206441.json | 2 +- .../alma-fix/990156060190206441.json | 82 ++++----- .../alma-fix/990167595410206441.json | 4 +- .../alma-fix/990171142550206441.json | 12 +- .../alma-fix/990173811970206441.json | 8 +- .../alma-fix/990181275760206441.json | 50 +++--- .../alma-fix/990182814750206441.json | 2 +- .../alma-fix/990183054020206441.json | 2 +- .../alma-fix/990183092590206441.json | 2 +- .../alma-fix/990183958380206441.json | 10 +- .../alma-fix/990184127410206441.json | 20 +-- .../alma-fix/990185607520206441.json | 2 +- .../alma-fix/990185619180206441.json | 2 +- .../alma-fix/990189160110206441.json | 38 ++-- .../alma-fix/990193094010206441.json | 6 +- .../alma-fix/990193229450206441.json | 12 +- .../alma-fix/990193806600206441.json | 2 +- .../alma-fix/990194668760206441.json | 2 +- .../alma-fix/990194744870206441.json | 6 +- .../alma-fix/990197067610206441.json | 12 +- .../alma-fix/990197293880206441.json | 64 +++---- .../alma-fix/990198383780206441.json | 2 +- .../alma-fix/990199611280206441.json | 6 +- .../alma-fix/990202474680206441.json | 4 +- .../alma-fix/990204246530206441.json | 6 +- .../alma-fix/990206060640206441.json | 4 +- .../alma-fix/990207668220206441.json | 2 +- .../alma-fix/990207856340206441.json | 2 +- .../alma-fix/990209515320206441.json | 2 +- .../alma-fix/990209817770206441.json | 2 +- .../alma-fix/990210093550206441.json | 22 +-- .../alma-fix/990210237770206441.json | 168 +++++++++--------- .../alma-fix/990210285400206441.json | 2 +- .../alma-fix/990210312460206441.json | 2 +- .../alma-fix/990210781980206441.json | 2 +- .../alma-fix/990210950050206441.json | 2 +- .../alma-fix/990213367870206441.json | 2 +- .../alma-fix/990217478660206441.json | 58 +++--- .../alma-fix/990218189790206441.json | 4 +- .../alma-fix/990219911120206441.json | 2 +- .../alma-fix/990220027540206441.json | 2 +- .../alma-fix/990223521400206441.json | 54 +++--- .../alma-fix/990225056670206441.json | 2 +- .../alma-fix/990226465800206441.json | 2 +- .../alma-fix/990363946050206441.json | 6 +- .../alma-fix/990365842280206441.json | 26 +-- .../alma-fix/990366394400206441.json | 2 +- .../alma-fix/990367731740206441.json | 4 +- .../alma-fix/990367761810206441.json | 2 +- .../alma-fix/990368743120206441.json | 2 +- .../alma-fix/991002103529706485.json | 2 +- .../alma-fix/991005935279706485.json | 2 +- .../resources/alma-fix/99370678063606441.json | 132 +++++++------- .../resources/alma-fix/99370682219806441.json | 18 +- .../resources/alma-fix/99370690532406441.json | 22 +-- .../resources/alma-fix/99370694196806441.json | 16 +- .../resources/alma-fix/99370699582506441.json | 12 +- .../resources/alma-fix/99370738710506441.json | 8 +- .../resources/alma-fix/99370746459806441.json | 12 +- .../resources/alma-fix/99370763433806441.json | 16 +- .../resources/alma-fix/99370763882706441.json | 14 +- .../resources/alma-fix/99370771475306441.json | 20 +-- .../resources/alma-fix/99370782520706441.json | 76 ++++---- .../resources/alma-fix/99371014448006441.json | 2 +- .../resources/alma-fix/99371050452706441.json | 2 +- .../resources/alma-fix/99371107766906441.json | 8 +- .../resources/alma-fix/99371123630706441.json | 18 +- .../resources/alma-fix/99371147104906441.json | 22 +-- .../resources/alma-fix/99371314897806441.json | 60 +++---- .../resources/alma-fix/99371447897606441.json | 6 +- .../resources/alma-fix/99371449208306441.json | 2 +- .../resources/alma-fix/99371530278506441.json | 2 +- .../resources/alma-fix/99371791018506441.json | 48 ++--- .../resources/alma-fix/99372423490706441.json | 2 +- .../resources/alma-fix/99372483173006441.json | 2 +- 119 files changed, 1035 insertions(+), 1042 deletions(-) diff --git a/src/main/resources/alma/fix/item.fix b/src/main/resources/alma/fix/item.fix index e7f1fe4e9..4c0fe93df 100644 --- a/src/main/resources/alma/fix/item.fix +++ b/src/main/resources/alma/fix/item.fix @@ -30,18 +30,16 @@ do list(path:"ITM ", "var": "$i") lookup("$i.@sublibraryIsil", "sublibraryIsil",delete:"true") end if exists("$i.@sublibraryIsil") - copy_field("$i.@sublibraryIsil", "hasItem[].$last.heldBy.id") + copy_field("$i.@sublibraryIsil","hasItem[].$last.heldBy.isil") # if no mapping for a sublocation code is provided or no sublocation code exists ($i.w) the main library ISIL is used. else - copy_field("$i.@iz", "hasItem[].$last.heldBy.id") + copy_field("$i.@iz","hasItem[].$last.heldBy.isil") end call_macro("opacLink", field:"@sublibraryIsil") unless exists("hasItem[].$last.opacLink") call_macro("opacLink", field:"@iz") end - copy_field("hasItem[].$last.heldBy.id","hasItem[].$last.heldBy.isil") - prepend("hasItem[].$last.heldBy.id", "http://lobid.org/organisations/") - append("hasItem[].$last.heldBy.id","#!") + paste("hasItem[].$last.heldBy.id", "~http://lobid.org/organisations/", "hasItem[].$last.heldBy.isil", "~#!", join_char:"") copy_field("hasItem[].$last.heldBy.id", "hasItem[].$last.heldBy.label") # item id is constructed "http://lobid.org/items/[almaMmsId of the record]:[isil of the Owner]:[almaMmsId of the holding]#!" paste("hasItem[].$last.id", "~http://lobid.org/items/","almaMmsId", "~:", "hasItem[].$last.heldBy.isil","~:", "$i.a","~#!", join_char: "") @@ -75,18 +73,16 @@ do list(path: "HOL ", "var": "$i") lookup("$i.@sublibraryIsil", "sublibraryIsil",delete:"true") end if exists("$i.@sublibraryIsil") - copy_field("$i.@sublibraryIsil", "hasItem[].$last.heldBy.id") + copy_field("$i.@sublibraryIsil", "hasItem[].$last.heldBy.isil") # if no mapping for a sublocation code is provided or no sublocation code exists ($i.w) the main library ISIL is used. else - copy_field("$i.@iz", "hasItem[].$last.heldBy.id") + copy_field("$i.@iz", "hasItem[].$last.heldBy.isil") end call_macro("opacLink", field:"@sublibraryIsil") unless exists("hasItem[].$last.opacLink") call_macro("opacLink", field:"@iz") end - copy_field("hasItem[].$last.heldBy.id","hasItem[].$last.heldBy.isil") - prepend("hasItem[].$last.heldBy.id", "http://lobid.org/organisations/") - append("hasItem[].$last.heldBy.id","#!") + paste("hasItem[].$last.heldBy.id", "~http://lobid.org/organisations/", "hasItem[].$last.heldBy.isil", "~#!", join_char:"") copy_field("hasItem[].$last.heldBy.id", "hasItem[].$last.heldBy.label") # item id is constructed "http://lobid.org/items/[almaMmsId of the record]:[isil of the Owner]:[almaMmsId of the holding]#!" paste("hasItem[].$last.id", "~http://lobid.org/items/","almaMmsId", "~:", "hasItem[].$last.heldBy.isil","~:","$i.8","~#!", join_char: "") @@ -109,12 +105,11 @@ do list(path:"POR ", "var": "$i") copy_field("$i.d", "$i.@sublocation") replace_all("$i.@sublocation","https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_NETWORK","") paste("hasItem[].$last.sublocation", "~https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/","$i.M","$i.@sublocation", join_char: "") - copy_field("$i.a", "hasItem[].$last.heldBy.id") - replace_all("hasItem[].$last.heldBy.id",".*(\\d{4})$","$1") - lookup("hasItem[].$last.heldBy.id", "alma-institution-code-to-isil") - copy_field("hasItem[].$last.heldBy.id","hasItem[].$last.heldBy.isil") - prepend("hasItem[].$last.heldBy.id", "http://lobid.org/organisations/") - append("hasItem[].$last.heldBy.id","#!") + copy_field("$i.a", "$i.@iz") + replace_all("$i.@iz",".*(\\d{4})$","$1") + lookup("$i.@iz", "alma-institution-code-to-isil") + copy_field("$i.@iz","hasItem[].$last.heldBy.isil") + paste("hasItem[].$last.heldBy.id", "~http://lobid.org/organisations/", "hasItem[].$last.heldBy.isil", "~#!", join_char:"") copy_field("hasItem[].$last.heldBy.id", "hasItem[].$last.heldBy.label") # item id is constructed "http://lobid.org/items/[almaMmsId of the record]:[isil of the Owner]:[almaMmsId of the holding]#!" paste("hasItem[].$last.id", "~http://lobid.org/items/","almaMmsId", "~:", "hasItem[].$last.heldBy.isil","~:", "$i.a","~#!", join_char: "") @@ -131,11 +126,10 @@ do list(path:"POR ", "var": "$i") add_field("hasItem[].$last.label", "Electronic Portfolio") paste("hasItem[].$last.electronicLocator", "~https://eu04.alma.exlibrisgroup.com/view/uresolver/","$j","$i.@electronicLocator", join_char: "") paste("hasItem[].$last.sublocation", "~https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/","$j","$i.@sublocation", join_char: "") - copy_field("$j", "hasItem[].$last.heldBy.id") - lookup("hasItem[].$last.heldBy.id", "alma-iz-code-to-isil") - copy_field("hasItem[].$last.heldBy.id","hasItem[].$last.heldBy.isil") - prepend("hasItem[].$last.heldBy.id", "http://lobid.org/organisations/") - append("hasItem[].$last.heldBy.id","#!") + copy_field("$j", "$i.@iz") + lookup("$i.@iz", "alma-iz-code-to-isil") + copy_field("$i.@iz","hasItem[].$last.heldBy.isil") + paste("hasItem[].$last.heldBy.id", "~http://lobid.org/organisations/", "hasItem[].$last.heldBy.isil", "~#!", join_char:"") copy_field("hasItem[].$last.heldBy.id", "hasItem[].$last.heldBy.label") # item id is constructed "http://lobid.org/items/[almaMmsId of the record]:[isil of the Owner]:[almaMmsId of the holding]#!" paste("hasItem[].$last.id", "~http://lobid.org/items/","almaMmsId", "~:", "hasItem[].$last.heldBy.isil","~:", "$i.a","~#!", join_char: "") @@ -149,12 +143,11 @@ do list(path: "MBD ", "var": "$i") add_field( "hasItem[].$append.test","") add_field("hasItem[].$last.label", "lobid Bestandsressource") set_array("hasItem[].$last.type[]", "Item","NurTitel") - copy_field("$i.i", "hasItem[].$last.heldBy.id") - replace_all("hasItem[].$last.heldBy.id",".*(\\d{4})$","$1") - lookup("hasItem[].$last.heldBy.id", "alma-institution-code-to-isil") - copy_field("hasItem[].$last.heldBy.id","hasItem[].$last.heldBy.isil") - prepend("hasItem[].$last.heldBy.id", "http://lobid.org/organisations/") - append("hasItem[].$last.heldBy.id","#!") + copy_field("$i.i", "$i.@iz") + replace_all("$i.@iz",".*(\\d{4})$","$1") + lookup("$i.@iz", "alma-institution-code-to-isil") + copy_field("$i.@iz","hasItem[].$last.heldBy.isil") + paste("hasItem[].$last.heldBy.id", "~http://lobid.org/organisations/", "hasItem[].$last.heldBy.isil", "~#!", join_char:"") copy_field("hasItem[].$last.heldBy.id", "hasItem[].$last.heldBy.label") # item id is constructed "http://lobid.org/items/[almaMmsId of the record]:[isil of the Owner]:[almaMmsId of the holding]#!" paste("hasItem[].$last.id", "~http://lobid.org/items/","almaMmsId", "~:", "hasItem[].$last.heldBy.isil","~:", "$i.i", "~#!", join_char: "") diff --git a/src/test/resources/alma-fix/990001412590206441.json b/src/test/resources/alma-fix/990001412590206441.json index 1a840a36a..a4418a861 100644 --- a/src/test/resources/alma-fix/990001412590206441.json +++ b/src/test/resources/alma-fix/990001412590206441.json @@ -115,8 +115,8 @@ "currentLibrary" : "W0001", "currentLocation" : "04", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000161712", @@ -129,8 +129,8 @@ "currentLibrary" : "F0001", "currentLocation" : "03", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000161712&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -143,8 +143,8 @@ "currentLibrary" : "R0001", "currentLocation" : "00000000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", + "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", @@ -157,8 +157,8 @@ "currentLibrary" : "R0001", "currentLocation" : "00000000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", + "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", @@ -171,8 +171,8 @@ "currentLibrary" : "R0001", "currentLocation" : "00000000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", + "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", @@ -185,8 +185,8 @@ "currentLibrary" : "T0010", "currentLocation" : "kA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", + "id" : "http://lobid.org/organisations/DE-121#!", "label" : "Wissenschaftliche Bibliothek der Stadt Trier" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT000161712&local_base=STR01", @@ -199,8 +199,8 @@ "currentLibrary" : "EFB", "currentLocation" : "Freihand", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000161712%22", @@ -213,8 +213,8 @@ "currentLibrary" : "0", "currentLocation" : "0-MagAlt", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000161712", @@ -227,8 +227,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "164_Mono", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990001412590206441:DE-361:23278036660006442#!" @@ -240,8 +240,8 @@ "currentLibrary" : "X0001", "currentLocation" : "00L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000161712", @@ -254,8 +254,8 @@ "currentLibrary" : "38", "currentLocation" : "38-MAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000161712", @@ -268,8 +268,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_GMAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000161712&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -282,8 +282,8 @@ "currentLibrary" : "S0001", "currentLocation" : "ERW", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000161712", @@ -296,8 +296,8 @@ "currentLibrary" : "P0001", "currentLocation" : "11", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000161712", @@ -308,8 +308,8 @@ "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000161712", diff --git a/src/test/resources/alma-fix/990011470300206441.json b/src/test/resources/alma-fix/990011470300206441.json index d56161f6f..afa0fbe6a 100644 --- a/src/test/resources/alma-fix/990011470300206441.json +++ b/src/test/resources/alma-fix/990011470300206441.json @@ -97,8 +97,8 @@ "currentLibrary" : "T0011", "currentLocation" : "38", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003109553", @@ -111,8 +111,8 @@ "currentLibrary" : "PHIL", "currentLocation" : "PHIL_PBIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", + "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003109553&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -123,8 +123,8 @@ "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003109553", diff --git a/src/test/resources/alma-fix/990014830510206441.json b/src/test/resources/alma-fix/990014830510206441.json index ca4c7ea04..ba4820a95 100644 --- a/src/test/resources/alma-fix/990014830510206441.json +++ b/src/test/resources/alma-fix/990014830510206441.json @@ -100,8 +100,8 @@ "currentLibrary" : "T0011", "currentLocation" : "21", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003864492", @@ -114,8 +114,8 @@ "currentLibrary" : "SM", "currentLocation" : "SM-Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", + "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT003864492", @@ -128,8 +128,8 @@ "currentLibrary" : "E0001", "currentLocation" : "E07IM", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT003864492&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -140,8 +140,8 @@ "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003864492", diff --git a/src/test/resources/alma-fix/990016782920206441.json b/src/test/resources/alma-fix/990016782920206441.json index e9c8ca13d..7622eda5f 100644 --- a/src/test/resources/alma-fix/990016782920206441.json +++ b/src/test/resources/alma-fix/990016782920206441.json @@ -89,8 +89,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT004285445&local_base=MHE01", @@ -103,8 +103,8 @@ "currentLibrary" : "HfM", "currentLocation" : "HfM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHD01&doc_001_number=HT004285445&local_base=MHD01", @@ -117,8 +117,8 @@ "currentLibrary" : "R0003", "currentLocation" : "00001000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", + "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT004285445%22", @@ -131,8 +131,8 @@ "currentLibrary" : "MUPA", "currentLocation" : "MUPA_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-286#!", "isil" : "DE-6-286", + "id" : "http://lobid.org/organisations/DE-6-286#!", "label" : "Universität Münster, Institut für Musikpädagogik, Bibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004285445&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -143,8 +143,8 @@ "currentLibrary" : "Z9029", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-52#!", "isil" : "DE-52", + "id" : "http://lobid.org/organisations/DE-52#!", "label" : "Stadtbibliothek Aachen" }, "id" : "http://lobid.org/items/990016782920206441:DE-52:228656420007816#!" @@ -154,8 +154,8 @@ "currentLibrary" : "Z9031", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-62#!", "isil" : "DE-62", + "id" : "http://lobid.org/organisations/DE-62#!", "label" : "Stadtbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990016782920206441:DE-62:228656390007816#!" @@ -165,8 +165,8 @@ "currentLibrary" : "Z9030", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-60#!", "isil" : "DE-60", + "id" : "http://lobid.org/organisations/DE-60#!", "label" : "Stadt- und Landesbibliothek Dortmund" }, "id" : "http://lobid.org/items/990016782920206441:DE-60:228656400007816#!" diff --git a/src/test/resources/alma-fix/990021367710206441.json b/src/test/resources/alma-fix/990021367710206441.json index 83a21260b..fadd575f9 100644 --- a/src/test/resources/alma-fix/990021367710206441.json +++ b/src/test/resources/alma-fix/990021367710206441.json @@ -96,8 +96,8 @@ "currentLibrary" : "SFS", "currentLocation" : "Freihand", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT005207972%22", @@ -110,8 +110,8 @@ "currentLibrary" : "ZB", "currentLocation" : "Freihand", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT005207972%22", @@ -124,8 +124,8 @@ "currentLibrary" : "T0011", "currentLocation" : "MAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005207972", @@ -138,8 +138,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "13W_Mono", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990021367710206441:DE-361:23251929370006442#!" @@ -149,8 +149,8 @@ "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005207972", @@ -159,8 +159,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/990021367710206441:DE-466:990014134660106463#!" diff --git a/src/test/resources/alma-fix/990021974470206441.json b/src/test/resources/alma-fix/990021974470206441.json index d081608f5..a8bb3021b 100644 --- a/src/test/resources/alma-fix/990021974470206441.json +++ b/src/test/resources/alma-fix/990021974470206441.json @@ -108,8 +108,8 @@ "currentLibrary" : "604", "currentLocation" : "0", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82-604#!", "isil" : "DE-82-604", + "id" : "http://lobid.org/organisations/DE-82-604#!", "label" : "Historisches Institut, Bibliothek" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT005271161&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", @@ -122,8 +122,8 @@ "currentLibrary" : "T0011", "currentLocation" : "MAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005271161", @@ -136,8 +136,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "11_Mono", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990021974470206441:DE-361:23252165950006442#!" @@ -149,8 +149,8 @@ "currentLibrary" : "HIS", "currentLocation" : "HIS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990021974470206441:DE-294:23118570990006471#!" @@ -162,8 +162,8 @@ "currentLibrary" : "38", "currentLocation" : "38-MAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT005271161", @@ -176,8 +176,8 @@ "currentLibrary" : "38-208", "currentLocation" : "38-208-VR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-208#!", "isil" : "DE-38-208", + "id" : "http://lobid.org/organisations/DE-38-208#!", "label" : "Gemeinschaftsbibliothek Internationales Recht" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT005271161", @@ -190,8 +190,8 @@ "currentLibrary" : "RWS1", "currentLocation" : "RWS1_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-016#!", "isil" : "DE-6-016", + "id" : "http://lobid.org/organisations/DE-6-016#!", "label" : "Universität Münster, Rechtswissenschaftliches Seminar, Bibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT005271161&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", diff --git a/src/test/resources/alma-fix/990026405480206441.json b/src/test/resources/alma-fix/990026405480206441.json index 6f2cd3862..046b54b02 100644 --- a/src/test/resources/alma-fix/990026405480206441.json +++ b/src/test/resources/alma-fix/990026405480206441.json @@ -98,8 +98,8 @@ "currentLibrary" : "SIE", "currentLocation" : "SIE_PRAES", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Sie5#!", "isil" : "DE-Sie5", + "id" : "http://lobid.org/organisations/DE-Sie5#!", "label" : "Wissenschaftliche Bibliothek des Rhein-Sieg-Kreises" }, "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT006813395%22", @@ -112,8 +112,8 @@ "currentLibrary" : "cdd", "currentLocation" : "HB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", + "id" : "http://lobid.org/organisations/DE-Due62#!", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT006813395", @@ -126,8 +126,8 @@ "currentLibrary" : "R0002", "currentLocation" : "00002000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Zw1#!", "isil" : "DE-Zw1", + "id" : "http://lobid.org/organisations/DE-Zw1#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Bibliotheca Bipontina" }, "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=2", @@ -140,8 +140,8 @@ "currentLibrary" : "R0002", "currentLocation" : "00002000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Zw1#!", "isil" : "DE-Zw1", + "id" : "http://lobid.org/organisations/DE-Zw1#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Bibliotheca Bipontina" }, "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=2", @@ -154,8 +154,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "14K_Mono", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990026405480206441:DE-361:23250908000006442#!" @@ -167,8 +167,8 @@ "currentLibrary" : "38-420", "currentLocation" : "38-420-MAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-420#!", "isil" : "DE-38-420", + "id" : "http://lobid.org/organisations/DE-38-420#!", "label" : "Historisches Institut, Abteilung für Mittlere und Neuere Geschichte mit Abteilung für Nationalismusforschung, Bibliothek" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT006813395", @@ -181,8 +181,8 @@ "currentLibrary" : "P0001", "currentLocation" : "51", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006813395", @@ -193,8 +193,8 @@ "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006813395", diff --git a/src/test/resources/alma-fix/990030574430206441.json b/src/test/resources/alma-fix/990030574430206441.json index a01bf767c..e89a75ff6 100644 --- a/src/test/resources/alma-fix/990030574430206441.json +++ b/src/test/resources/alma-fix/990030574430206441.json @@ -73,8 +73,8 @@ "currentLibrary" : "SG", "currentLocation" : "SG-Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5-13#!", "isil" : "DE-5-13", + "id" : "http://lobid.org/organisations/DE-5-13#!", "label" : "Universität Bonn, Institut für Germanistik, Vergleichende Literatur- und Kulturwissenschaft, Bibliothek" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT007847893", @@ -87,8 +87,8 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT007847893", diff --git a/src/test/resources/alma-fix/990033263300206441.json b/src/test/resources/alma-fix/990033263300206441.json index 4d3f7dc0c..2fdde2a8d 100644 --- a/src/test/resources/alma-fix/990033263300206441.json +++ b/src/test/resources/alma-fix/990033263300206441.json @@ -79,8 +79,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "99_Mag06", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990033263300206441:DE-361:23234824210006442#!" diff --git a/src/test/resources/alma-fix/990035016180206441.json b/src/test/resources/alma-fix/990035016180206441.json index 76286064c..accfadf1b 100644 --- a/src/test/resources/alma-fix/990035016180206441.json +++ b/src/test/resources/alma-fix/990035016180206441.json @@ -86,8 +86,8 @@ "currentLibrary" : "W0001", "currentLocation" : "06", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT008733617", @@ -100,8 +100,8 @@ "currentLibrary" : "EFB", "currentLocation" : "BibDtLit", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT008733617%22", @@ -114,8 +114,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "01_Temp", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990035016180206441:DE-361:23262944040006442#!" @@ -127,8 +127,8 @@ "currentLibrary" : "UB", "currentLocation" : "UB_LS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990035016180206441:DE-294:23153395620006471#!" @@ -140,8 +140,8 @@ "currentLibrary" : "D0001", "currentLocation" : "D98", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -154,8 +154,8 @@ "currentLibrary" : "E0001", "currentLocation" : "E06", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -168,8 +168,8 @@ "currentLibrary" : "38", "currentLocation" : "38-LS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT008733617", @@ -182,8 +182,8 @@ "currentLibrary" : "ZUP", "currentLocation" : "ZUP_MIKRO", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-Z#!", "isil" : "DE-6-Z", + "id" : "http://lobid.org/organisations/DE-6-Z#!", "label" : "Universitäts- und Landesbibliothek Münster, Zeitungs- und Pressearchiv" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -196,8 +196,8 @@ "currentLibrary" : "S0001", "currentLocation" : "ARMED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT008733617", @@ -210,8 +210,8 @@ "currentLibrary" : "P0001", "currentLocation" : "93", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT008733617", @@ -222,8 +222,8 @@ "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT008733617", @@ -232,8 +232,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "id" : "http://lobid.org/items/990035016180206441:DE-385:990009300190106470#!" diff --git a/src/test/resources/alma-fix/990041403870206441.json b/src/test/resources/alma-fix/990041403870206441.json index efe29cffd..460e8ab55 100644 --- a/src/test/resources/alma-fix/990041403870206441.json +++ b/src/test/resources/alma-fix/990041403870206441.json @@ -71,8 +71,8 @@ "currentLibrary" : "0", "currentLocation" : "0-Speich", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT009965981", @@ -85,8 +85,8 @@ "currentLibrary" : "38-HLS", "currentLocation" : "38-HLS-MAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT009965981", diff --git a/src/test/resources/alma-fix/990050000600206441.json b/src/test/resources/alma-fix/990050000600206441.json index 773ba4899..40b05eeb5 100644 --- a/src/test/resources/alma-fix/990050000600206441.json +++ b/src/test/resources/alma-fix/990050000600206441.json @@ -171,8 +171,8 @@ "currentLibrary" : "RL002", "currentLocation" : "ALLLD", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", + "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT006855611&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -185,8 +185,8 @@ "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006855611", @@ -197,8 +197,8 @@ "currentLibrary" : "T0013", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1042#!", "isil" : "DE-1042", + "id" : "http://lobid.org/organisations/DE-1042#!", "label" : "Hochschule Trier, Umwelt-Campus Birkenfeld, Bibliothek" }, "id" : "http://lobid.org/items/990050000600206441:DE-1042:228013380007821#!" @@ -209,8 +209,8 @@ "currentLocation" : "ALL42", "callNumber" : "MAS 024/012", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611", @@ -222,8 +222,8 @@ "currentLocation" : "ALL48", "callNumber" : "MAT Furl", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611", @@ -235,8 +235,8 @@ "currentLocation" : "EHS", "callNumber" : "TBM1318 <>", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -248,8 +248,8 @@ "currentLocation" : "DHS", "callNumber" : "TBM1318_d <>", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -258,8 +258,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990050000600206441:DE-468:990007452950206447#!" @@ -267,8 +267,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm3#!", "isil" : "DE-Bm3", + "id" : "http://lobid.org/organisations/DE-Bm3#!", "label" : "Bibliothek des Ruhrgebiets" }, "id" : "http://lobid.org/items/990050000600206441:DE-Bm3:9914904107508#!" @@ -276,8 +276,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", + "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990050000600206441:DE-Dm13:991001984839706451#!" @@ -285,8 +285,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Hag4#!", "isil" : "DE-Hag4", + "id" : "http://lobid.org/organisations/DE-Hag4#!", "label" : "Fachhochschule Südwestfalen, Fachbibliothek Hagen, Zentralbibliothek" }, "id" : "http://lobid.org/items/990050000600206441:DE-Hag4:990005940980106461#!" @@ -294,8 +294,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "id" : "http://lobid.org/items/990050000600206441:DE-708:990005940980106464#!" @@ -303,8 +303,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/990050000600206441:DE-A96:991002141299706444#!" @@ -312,8 +312,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", + "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990050000600206441:DE-Bi10:991001234009706450#!" @@ -321,8 +321,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", + "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990050000600206441:DE-Bm40:991000247429706454#!" @@ -330,8 +330,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "id" : "http://lobid.org/items/990050000600206441:DE-1044:991000161599706452#!" @@ -339,8 +339,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", + "id" : "http://lobid.org/organisations/DE-Due62#!", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, "id" : "http://lobid.org/items/990050000600206441:DE-Due62:991001481009706455#!" @@ -348,8 +348,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", + "id" : "http://lobid.org/organisations/DE-829#!", "label" : "Hochschule Niederrhein, Bibliothek" }, "id" : "http://lobid.org/items/990050000600206441:DE-829:991000603219708056#!" @@ -357,8 +357,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", + "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, "id" : "http://lobid.org/items/990050000600206441:DE-743:991000755699706468#!" @@ -366,8 +366,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1383#!", "isil" : "DE-1383", + "id" : "http://lobid.org/organisations/DE-1383#!", "label" : "Hochschule Rhein-Waal, Bibliothek" }, "id" : "http://lobid.org/items/990050000600206441:DE-1383:991000043939706479#!" @@ -375,8 +375,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1393#!", "isil" : "DE-1393", + "id" : "http://lobid.org/organisations/DE-1393#!", "label" : "Hochschule Ruhr West, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990050000600206441:DE-1393:991000857029706453#!" @@ -384,8 +384,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "id" : "http://lobid.org/items/990050000600206441:DE-82:991002777419706448#!" @@ -393,8 +393,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990050000600206441:DE-832:991008208009706477#!" @@ -402,8 +402,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/990050000600206441:DE-290:991001802079706445#!" @@ -411,8 +411,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/990050000600206441:DE-5:991016986139706467#!" @@ -420,8 +420,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990050000600206441:DE-361:991013990859706442#!" @@ -429,8 +429,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990050000600206441:DE-294:991012714479706471#!" @@ -438,8 +438,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990050000600206441:DE-61:990010318920206443#!" @@ -447,8 +447,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/990050000600206441:DE-6:991037504519706449#!" @@ -456,8 +456,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "id" : "http://lobid.org/items/990050000600206441:DE-467:990007901380106462#!" @@ -465,8 +465,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1010#!", "isil" : "DE-1010", + "id" : "http://lobid.org/organisations/DE-1010#!", "label" : "Westfälische Hochschule Gelsenkirchen Bocholt Recklinghausen, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990050000600206441:DE-1010:991001095739706456#!" diff --git a/src/test/resources/alma-fix/990051708340206441.json b/src/test/resources/alma-fix/990051708340206441.json index f07602427..d85d8464f 100644 --- a/src/test/resources/alma-fix/990051708340206441.json +++ b/src/test/resources/alma-fix/990051708340206441.json @@ -68,8 +68,8 @@ "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT009976241", @@ -78,8 +78,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990051708340206441:DE-361:991019320629706442#!" diff --git a/src/test/resources/alma-fix/990052965140206441.json b/src/test/resources/alma-fix/990052965140206441.json index e5b9526e1..0d11809c2 100644 --- a/src/test/resources/alma-fix/990052965140206441.json +++ b/src/test/resources/alma-fix/990052965140206441.json @@ -130,8 +130,8 @@ "currentLibrary" : "R0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", + "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT002529477%22&selectedViewBranchlib=0", @@ -142,8 +142,8 @@ "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT002529477", @@ -152,8 +152,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990052965140206441:DE-468:990004566360206447#!" @@ -161,8 +161,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm3#!", "isil" : "DE-Bm3", + "id" : "http://lobid.org/organisations/DE-Bm3#!", "label" : "Bibliothek des Ruhrgebiets" }, "id" : "http://lobid.org/items/990052965140206441:DE-Bm3:9917307907508#!" @@ -170,8 +170,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "id" : "http://lobid.org/items/990052965140206441:DE-1044:991003168089706452#!" @@ -179,8 +179,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "id" : "http://lobid.org/items/990052965140206441:DE-82:991023049269706448#!" @@ -188,8 +188,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/990052965140206441:DE-5:991006065489706467#!" @@ -197,8 +197,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/990052965140206441:DE-465:990004010910206446#!" @@ -206,8 +206,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990052965140206441:DE-61:990003684970206443#!" @@ -215,8 +215,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/990052965140206441:DE-38:991044980779706476#!" @@ -224,8 +224,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/990052965140206441:DE-6:991040627879706449#!" @@ -233,8 +233,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38M#!", "isil" : "DE-38M", + "id" : "http://lobid.org/organisations/DE-38M#!", "label" : "ZB MED - Informationszentrum Lebenswissenschaften, Köln" }, "id" : "http://lobid.org/items/990052965140206441:DE-38M:991000016349706472#!" diff --git a/src/test/resources/alma-fix/990053976760206441.json b/src/test/resources/alma-fix/990053976760206441.json index 5abbd9792..b27897423 100644 --- a/src/test/resources/alma-fix/990053976760206441.json +++ b/src/test/resources/alma-fix/990053976760206441.json @@ -222,8 +222,8 @@ "currentLibrary" : "D0001", "currentLocation" : "D30", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=00319244", @@ -236,8 +236,8 @@ "currentLibrary" : "RL001", "currentLocation" : "MAGZS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -250,8 +250,8 @@ "currentLibrary" : "RL001", "currentLocation" : "MAGZS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -264,8 +264,8 @@ "currentLibrary" : "RL001", "currentLocation" : "MAGZS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -278,8 +278,8 @@ "currentLibrary" : "RL001", "currentLocation" : "MAGZS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -292,8 +292,8 @@ "currentLibrary" : "RL001", "currentLocation" : "MAGZS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -306,8 +306,8 @@ "currentLibrary" : "RL001", "currentLocation" : "MAGZS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -320,8 +320,8 @@ "currentLibrary" : "S0001", "currentLocation" : "FMZS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "opacLink" : "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -333,8 +333,8 @@ "currentLocation" : "04", "callNumber" : "67P9", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990053976760206441:DE-468:22142187260006447#!" @@ -345,8 +345,8 @@ "currentLocation" : "ZSPHY", "callNumber" : "PHY Z 1646", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "id" : "http://lobid.org/items/990053976760206441:DE-386:2266381760007476#!" @@ -357,8 +357,8 @@ "currentLocation" : "ZSPHY", "callNumber" : "PHY Z 1646", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "id" : "http://lobid.org/items/990053976760206441:DE-386:2266381820007476#!" @@ -369,8 +369,8 @@ "currentLocation" : "FZSLD", "callNumber" : "fys 02-3", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", + "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -382,8 +382,8 @@ "currentLocation" : "0", "callNumber" : "Z5725", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "id" : "http://lobid.org/items/990053976760206441:DE-82:22222365420006448#!" @@ -394,8 +394,8 @@ "currentLocation" : "ZS", "callNumber" : "ZN 535", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22123550-3%22", @@ -407,8 +407,8 @@ "currentLocation" : "17_Zs", "callNumber" : "17 QD000 P600", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=00319244&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10", @@ -420,8 +420,8 @@ "currentLocation" : "PHYS_Z", "callNumber" : "ohne Sign.", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "opacLink" : "https://suchen.ub.rub.de/zdbid/123550-3", @@ -433,8 +433,8 @@ "currentLocation" : "03P", "callNumber" : "phy z p 455", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=00319244", @@ -446,8 +446,8 @@ "currentLocation" : "38-HWA-ZMA", "callNumber" : "EWA Z666", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/990053976760206441:DE-38:22292579360006476#!" @@ -458,8 +458,8 @@ "currentLocation" : "PHY_ZS", "callNumber" : "DP", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-023#!", "isil" : "DE-6-023", + "id" : "http://lobid.org/organisations/DE-6-023#!", "label" : "Universität Münster, Bibliothek des Fachbereichs Physik" }, "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", @@ -471,8 +471,8 @@ "currentLocation" : "BEK_ZS", "callNumber" : "Z 1011", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-123#!", "isil" : "DE-6-123", + "id" : "http://lobid.org/organisations/DE-6-123#!", "label" : "Universität Münster, Bibliothek für Erziehungswissenschaft und Kommunikationswissenschaft" }, "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", @@ -484,8 +484,8 @@ "currentLocation" : "ZB_ZS", "callNumber" : "Z Qu 4447", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", @@ -497,8 +497,8 @@ "currentLocation" : "40", "callNumber" : "67p54", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=00319244&scope=catalog&sf=rank", diff --git a/src/test/resources/alma-fix/990054215550206441.json b/src/test/resources/alma-fix/990054215550206441.json index 35d2c68e7..04c362194 100644 --- a/src/test/resources/alma-fix/990054215550206441.json +++ b/src/test/resources/alma-fix/990054215550206441.json @@ -151,8 +151,8 @@ "currentLocation" : "0-Mag", "callNumber" : "Z 4' 66/103", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%221257-9%22", @@ -164,8 +164,8 @@ "currentLocation" : "UB_Z", "callNumber" : "ZRC 828", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "opacLink" : "https://suchen.ub.rub.de/zdbid/1257-9", @@ -177,8 +177,8 @@ "currentLocation" : "38-ZS", "callNumber" : "Sh13", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/990054215550206441:DE-38:22238974440006476#!" diff --git a/src/test/resources/alma-fix/990054301770206441.json b/src/test/resources/alma-fix/990054301770206441.json index 1002a6c9d..7a8785ab8 100644 --- a/src/test/resources/alma-fix/990054301770206441.json +++ b/src/test/resources/alma-fix/990054301770206441.json @@ -194,8 +194,8 @@ "currentLocation" : "LLB_Magvl", "callNumber" : "K 3902(2)", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-51#!", "isil" : "DE-51", + "id" : "http://lobid.org/organisations/DE-51#!", "label" : "Lippische Landesbibliothek - Theologische Bibliothek und Mediothek" }, "id" : "http://lobid.org/items/990054301770206441:DE-51:2294873830006480#!" @@ -206,8 +206,8 @@ "currentLocation" : "kA", "callNumber" : "Per. 5502", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", + "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=-1=%22133469-4%22", @@ -219,8 +219,8 @@ "currentLocation" : "kA", "callNumber" : "Z 1703", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", + "id" : "http://lobid.org/organisations/DE-121#!", "label" : "Wissenschaftliche Bibliothek der Stadt Trier" }, "id" : "http://lobid.org/items/990054301770206441:DE-121:2224982290007826#!" @@ -231,8 +231,8 @@ "currentLocation" : "38-ZS", "callNumber" : "EkFOL577", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/990054301770206441:DE-38:22216279800006476#!" @@ -243,8 +243,8 @@ "currentLocation" : "ALKU_ZS", "callNumber" : "Fr 88", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-139a#!", "isil" : "DE-6-139a", + "id" : "http://lobid.org/organisations/DE-6-139a#!", "label" : "Kommission Alltagskulturforschung für Westfalen (KAF), Bibliothek" }, "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,01715224", @@ -253,8 +253,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/990054301770206441:DE-290:991007182009706445#!" diff --git a/src/test/resources/alma-fix/990054345550206441.json b/src/test/resources/alma-fix/990054345550206441.json index 7b13c0ad6..edac226c4 100644 --- a/src/test/resources/alma-fix/990054345550206441.json +++ b/src/test/resources/alma-fix/990054345550206441.json @@ -230,8 +230,8 @@ "currentLibrary" : "ZB", "currentLocation" : "0", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "id" : "http://lobid.org/items/990054345550206441:DE-82:23312187860006448#!" @@ -243,8 +243,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -257,8 +257,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -270,8 +270,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -284,8 +284,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -298,8 +298,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -311,8 +311,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -324,8 +324,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -337,8 +337,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -350,8 +350,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -363,8 +363,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -376,8 +376,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -389,8 +389,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -402,8 +402,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -416,8 +416,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -429,8 +429,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -443,8 +443,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -457,8 +457,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -470,8 +470,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -483,8 +483,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -497,8 +497,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -511,8 +511,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -525,8 +525,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -538,8 +538,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -551,8 +551,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -564,8 +564,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -577,8 +577,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -590,8 +590,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -603,8 +603,8 @@ "currentLibrary" : "X0001", "currentLocation" : "93L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", @@ -615,8 +615,8 @@ "currentLibrary" : "BDA01", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-2187#!", "isil" : "DE-2187", + "id" : "http://lobid.org/organisations/DE-2187#!", "label" : "Bischöfliches Diözesanarchiv Aachen" }, "id" : "http://lobid.org/items/990054345550206441:DE-2187:2247379360007507#!" @@ -627,8 +627,8 @@ "currentLocation" : "0", "callNumber" : "Md5099", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "id" : "http://lobid.org/items/990054345550206441:DE-82:22246727820006448#!" @@ -639,8 +639,8 @@ "currentLocation" : "kA", "callNumber" : "Z 5354", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", + "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, "id" : "http://lobid.org/items/990054345550206441:DE-929:2275368700007506#!" @@ -651,8 +651,8 @@ "currentLocation" : "0-Mag", "callNumber" : "Z 95/130", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22619424-2%22", @@ -664,8 +664,8 @@ "currentLocation" : "0-Mag", "callNumber" : "Z 95/130", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22619424-2%22", @@ -677,8 +677,8 @@ "currentLocation" : "38-445-ZS", "callNumber" : "Ff 176/52", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-445#!", "isil" : "DE-38-445", + "id" : "http://lobid.org/organisations/DE-38-445#!", "label" : "Kunsthistorisches Institut, Abteilung Architekturgeschichte, Bibliothek" }, "id" : "http://lobid.org/items/990054345550206441:DE-38-445:22321673870006476#!" diff --git a/src/test/resources/alma-fix/990055981810206441.json b/src/test/resources/alma-fix/990055981810206441.json index 60b6caf11..740ce2e3e 100644 --- a/src/test/resources/alma-fix/990055981810206441.json +++ b/src/test/resources/alma-fix/990055981810206441.json @@ -280,8 +280,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", @@ -294,8 +294,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", @@ -308,8 +308,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LSAZS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", @@ -321,8 +321,8 @@ "currentLocation" : "kA", "callNumber" : "Bg 223", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm3#!", "isil" : "DE-Bm3", + "id" : "http://lobid.org/organisations/DE-Bm3#!", "label" : "Bibliothek des Ruhrgebiets" }, "id" : "http://lobid.org/items/990055981810206441:DE-Bm3:2217998960007508#!" @@ -333,8 +333,8 @@ "currentLocation" : "UB_Z", "callNumber" : "ZYC 22", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "opacLink" : "https://suchen.ub.rub.de/zdbid/1089874-8", @@ -346,8 +346,8 @@ "currentLocation" : "UB_Z", "callNumber" : "ZGC 889", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "opacLink" : "https://suchen.ub.rub.de/zdbid/1089874-8", @@ -359,8 +359,8 @@ "currentLocation" : "ZB_LS", "callNumber" : "WES 0.1:55", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", @@ -372,8 +372,8 @@ "currentLocation" : "ZB_LS", "callNumber" : "WES 0.1:55", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", diff --git a/src/test/resources/alma-fix/990058434730206441.json b/src/test/resources/alma-fix/990058434730206441.json index 5469e6714..20625c8ca 100644 --- a/src/test/resources/alma-fix/990058434730206441.json +++ b/src/test/resources/alma-fix/990058434730206441.json @@ -155,8 +155,8 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000893437", @@ -169,8 +169,8 @@ "currentLibrary" : "KP001", "currentLocation" : "MMONO", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", + "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT000893437&local_base=ZBS01", @@ -183,8 +183,8 @@ "currentLibrary" : "ED001", "currentLocation" : "MAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn28#!", "isil" : "DE-Kn28", + "id" : "http://lobid.org/organisations/DE-Kn28#!", "label" : "Erzbischöfliche Diözesan- und Dombibliothek" }, "id" : "http://lobid.org/items/990058434730206441:DE-Kn28:2351376600007507#!" @@ -196,8 +196,8 @@ "currentLibrary" : "O9022", "currentLocation" : "OPDUE", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Walb1#!", "isil" : "DE-Walb1", + "id" : "http://lobid.org/organisations/DE-Walb1#!", "label" : "Bibliothek St. Albert" }, "id" : "http://lobid.org/items/990058434730206441:DE-Walb1:2351376580007507#!" @@ -209,8 +209,8 @@ "currentLibrary" : "LLB", "currentLocation" : "LLB_Magvl", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-51#!", "isil" : "DE-51", + "id" : "http://lobid.org/organisations/DE-51#!", "label" : "Lippische Landesbibliothek - Theologische Bibliothek und Mediothek" }, "id" : "http://lobid.org/items/990058434730206441:DE-51:23101485880006480#!" @@ -222,8 +222,8 @@ "currentLibrary" : "T0006", "currentLocation" : "M", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Tr2#!", "isil" : "DE-Tr2", + "id" : "http://lobid.org/organisations/DE-Tr2#!", "label" : "Bibliothek des Bischöflichen Priesterseminars Trier" }, "id" : "http://lobid.org/items/990058434730206441:DE-Tr2:2327546360007817#!" @@ -235,8 +235,8 @@ "currentLibrary" : "R0003", "currentLocation" : "00001000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", + "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000893437%22", @@ -249,8 +249,8 @@ "currentLibrary" : "T0011", "currentLocation" : "31", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", @@ -263,8 +263,8 @@ "currentLibrary" : "T0011", "currentLocation" : "80", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", @@ -277,8 +277,8 @@ "currentLibrary" : "GA", "currentLocation" : "GA-Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5-74#!", "isil" : "DE-5-74", + "id" : "http://lobid.org/organisations/DE-5-74#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Abteilung Alte Geschichte, Bibliothek" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", @@ -291,8 +291,8 @@ "currentLibrary" : "TK", "currentLocation" : "TK-Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5-108#!", "isil" : "DE-5-108", + "id" : "http://lobid.org/organisations/DE-5-108#!", "label" : "Universität Bonn, Fachbibliothek der Evangelischen und Katholischen Theologie" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", @@ -305,8 +305,8 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", @@ -319,8 +319,8 @@ "currentLibrary" : "UB", "currentLocation" : "UB_G2B1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990058434730206441:DE-294:23169547910006471#!" @@ -332,8 +332,8 @@ "currentLibrary" : "HIS", "currentLocation" : "HIS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990058434730206441:DE-294:23169547890006471#!" @@ -345,8 +345,8 @@ "currentLibrary" : "EVTH", "currentLocation" : "EVTH_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990058434730206441:DE-294:23169547870006471#!" @@ -358,8 +358,8 @@ "currentLibrary" : "KTH", "currentLocation" : "KTH_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990058434730206441:DE-294:23169547850006471#!" @@ -371,8 +371,8 @@ "currentLibrary" : "E0001", "currentLocation" : "E11", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -385,8 +385,8 @@ "currentLibrary" : "X0001", "currentLocation" : "00", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", @@ -399,8 +399,8 @@ "currentLibrary" : "X0025", "currentLocation" : "25", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", @@ -413,8 +413,8 @@ "currentLibrary" : "X0001", "currentLocation" : "00", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", @@ -427,8 +427,8 @@ "currentLibrary" : "38", "currentLocation" : "38-MAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000893437", @@ -441,8 +441,8 @@ "currentLibrary" : "38-622", "currentLocation" : "38-622-BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-622#!", "isil" : "DE-38-622", + "id" : "http://lobid.org/organisations/DE-38-622#!", "label" : "Institut für Katholische Theologie, Bibliothek" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000893437", @@ -455,8 +455,8 @@ "currentLibrary" : "IJD", "currentLocation" : "IJD_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-119#!", "isil" : "DE-6-119", + "id" : "http://lobid.org/organisations/DE-6-119#!", "label" : "Universität Münster, Institutum Judaicum Delitzschianum, Bibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -469,8 +469,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -483,8 +483,8 @@ "currentLibrary" : "EVT", "currentLocation" : "EVT_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-006#!", "isil" : "DE-6-006", + "id" : "http://lobid.org/organisations/DE-6-006#!", "label" : "Universität Münster, Evangelisch-Theologische Fakultät, Bibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -497,8 +497,8 @@ "currentLibrary" : "KATJ", "currentLocation" : "KATJ_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-011#!", "isil" : "DE-6-011", + "id" : "http://lobid.org/organisations/DE-6-011#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abteilung Johannisstr." }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -511,8 +511,8 @@ "currentLibrary" : "FBH", "currentLocation" : "FBH_KPBIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", + "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -525,8 +525,8 @@ "currentLibrary" : "S0001", "currentLocation" : "H5", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000893437", @@ -539,8 +539,8 @@ "currentLibrary" : "P0001", "currentLocation" : "11", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000893437", @@ -551,8 +551,8 @@ "currentLibrary" : "Z9031", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-62#!", "isil" : "DE-62", + "id" : "http://lobid.org/organisations/DE-62#!", "label" : "Stadtbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990058434730206441:DE-62:2288305570007816#!" @@ -562,8 +562,8 @@ "currentLibrary" : "O9002", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bet1#!", "isil" : "DE-Bet1", + "id" : "http://lobid.org/organisations/DE-Bet1#!", "label" : "Bibliothek der Kirchlichen Hochschule Wuppertal/Bethel, Arbeitsbereich Bethel" }, "id" : "http://lobid.org/items/990058434730206441:DE-Bet1:2288305550007816#!" @@ -573,8 +573,8 @@ "currentLibrary" : "Z9030", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-60#!", "isil" : "DE-60", + "id" : "http://lobid.org/organisations/DE-60#!", "label" : "Stadt- und Landesbibliothek Dortmund" }, "id" : "http://lobid.org/items/990058434730206441:DE-60:2288305580007816#!" @@ -584,8 +584,8 @@ "currentLibrary" : "O9023", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-211#!", "isil" : "DE-211", + "id" : "http://lobid.org/organisations/DE-211#!", "label" : "Erzbischöfliche Akademische Bibliothek Paderborn" }, "id" : "http://lobid.org/items/990058434730206441:DE-211:2288305560007816#!" @@ -595,8 +595,8 @@ "currentLibrary" : "Z9029", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-52#!", "isil" : "DE-52", + "id" : "http://lobid.org/organisations/DE-52#!", "label" : "Stadtbibliothek Aachen" }, "id" : "http://lobid.org/items/990058434730206441:DE-52:2288305600007816#!" @@ -606,8 +606,8 @@ "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", diff --git a/src/test/resources/alma-fix/990058567920206441.json b/src/test/resources/alma-fix/990058567920206441.json index 60708b78e..2702a0e87 100644 --- a/src/test/resources/alma-fix/990058567920206441.json +++ b/src/test/resources/alma-fix/990058567920206441.json @@ -168,8 +168,8 @@ "currentLibrary" : "W0001", "currentLocation" : "47", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000909138", @@ -182,8 +182,8 @@ "currentLibrary" : "R1007", "currentLocation" : "00000000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-987#!", "isil" : "DE-987", + "id" : "http://lobid.org/organisations/DE-987#!", "label" : "Hochschule Koblenz, Bibliothek RheinMoselCampus" }, "id" : "http://lobid.org/items/990058567920206441:DE-987:235067850007829#!" @@ -195,8 +195,8 @@ "currentLibrary" : "F0001", "currentLocation" : "00", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -209,8 +209,8 @@ "currentLibrary" : "R3032", "currentLocation" : "FHSOZ", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138", @@ -223,8 +223,8 @@ "currentLibrary" : "R3032", "currentLocation" : "FHSOZ", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138", @@ -237,8 +237,8 @@ "currentLibrary" : "RL002", "currentLocation" : "FHELD", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", + "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -251,8 +251,8 @@ "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_TK", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT000909138&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", @@ -265,8 +265,8 @@ "currentLibrary" : "R0003", "currentLocation" : "00001000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", + "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000909138%22", @@ -279,8 +279,8 @@ "currentLibrary" : "R0001", "currentLocation" : "00000000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", + "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000909138%22&selectedViewBranchlib=0", @@ -293,8 +293,8 @@ "currentLibrary" : "T0010", "currentLocation" : "RU", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", + "id" : "http://lobid.org/organisations/DE-121#!", "label" : "Wissenschaftliche Bibliothek der Stadt Trier" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT000909138&local_base=STR01", @@ -307,8 +307,8 @@ "currentLibrary" : "ZB", "currentLocation" : "Freihand", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000909138%22", @@ -321,8 +321,8 @@ "currentLibrary" : "SFS", "currentLocation" : "Freihand", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000909138%22", @@ -335,8 +335,8 @@ "currentLibrary" : "T0011", "currentLocation" : "38", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", @@ -349,8 +349,8 @@ "currentLibrary" : "T0011", "currentLocation" : "12", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", @@ -363,8 +363,8 @@ "currentLibrary" : "T0011", "currentLocation" : "39", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", @@ -377,8 +377,8 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000909138", @@ -391,8 +391,8 @@ "currentLibrary" : "PO", "currentLocation" : "PO-Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5-162#!", "isil" : "DE-5-162", + "id" : "http://lobid.org/organisations/DE-5-162#!", "label" : "Universität Bonn, Institut für Politische Wissenschaft und Soziologie, Bibliothek" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000909138", @@ -405,8 +405,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "12_Mono", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990058567920206441:DE-361:23251699480006442#!" @@ -418,8 +418,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "11_Mono", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990058567920206441:DE-361:23251699510006442#!" @@ -431,8 +431,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "12_Mono", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990058567920206441:DE-361:23251699490006442#!" @@ -444,8 +444,8 @@ "currentLibrary" : "SOZ", "currentLocation" : "SOZ_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990058567920206441:DE-294:23163521090006471#!" @@ -457,8 +457,8 @@ "currentLibrary" : "HIS", "currentLocation" : "HIS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990058567920206441:DE-294:23163521110006471#!" @@ -470,8 +470,8 @@ "currentLibrary" : "UB", "currentLocation" : "UB_G3B3", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990058567920206441:DE-294:23163521130006471#!" @@ -483,8 +483,8 @@ "currentLibrary" : "UB", "currentLocation" : "UB_G3B3", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990058567920206441:DE-294:23163521140006471#!" @@ -496,8 +496,8 @@ "currentLibrary" : "KTH", "currentLocation" : "KTH_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990058567920206441:DE-294:23163521070006471#!" @@ -509,8 +509,8 @@ "currentLibrary" : "D0001", "currentLocation" : "D21", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -523,8 +523,8 @@ "currentLibrary" : "E0001", "currentLocation" : "E11", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -537,8 +537,8 @@ "currentLibrary" : "X0001", "currentLocation" : "00", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000909138", @@ -551,8 +551,8 @@ "currentLibrary" : "RL001", "currentLocation" : "MAGKO", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -565,8 +565,8 @@ "currentLibrary" : "38-HWA", "currentLocation" : "38-HWA-MAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", @@ -579,8 +579,8 @@ "currentLibrary" : "38-132", "currentLocation" : "38-132-BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-132#!", "isil" : "DE-38-132", + "id" : "http://lobid.org/organisations/DE-38-132#!", "label" : "Gemeinsame Fachbibliothek Soziologie" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", @@ -593,8 +593,8 @@ "currentLibrary" : "38", "currentLocation" : "38-AWM", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", @@ -607,8 +607,8 @@ "currentLibrary" : "FBH", "currentLocation" : "FBH_HSBIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", + "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -621,8 +621,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -635,8 +635,8 @@ "currentLibrary" : "SOZ", "currentLocation" : "SOZ_MAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-A#!", "isil" : "DE-6-A", + "id" : "http://lobid.org/organisations/DE-6-A#!", "label" : "Universitäts- und Landesbibliothek Münster, Zweigbibliothek Sozialwissenschaften" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -649,8 +649,8 @@ "currentLibrary" : "KATH", "currentLocation" : "KATH_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-069#!", "isil" : "DE-6-069", + "id" : "http://lobid.org/organisations/DE-6-069#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholischen-Theologischen Fakultät, Abteilung Hüfferstr." }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -663,8 +663,8 @@ "currentLibrary" : "PHIL", "currentLocation" : "PHIL_PBIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", + "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -677,8 +677,8 @@ "currentLibrary" : "KATD", "currentLocation" : "KATD_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-011#!", "isil" : "DE-6-011", + "id" : "http://lobid.org/organisations/DE-6-011#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abteilung Johannisstr." }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -691,8 +691,8 @@ "currentLibrary" : "FBH", "currentLocation" : "FBH_DGBIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-248#!", "isil" : "DE-6-248", + "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -705,8 +705,8 @@ "currentLibrary" : "S0001", "currentLocation" : "ERW", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000909138", @@ -719,8 +719,8 @@ "currentLibrary" : "P0001", "currentLocation" : "31", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000909138", @@ -731,8 +731,8 @@ "currentLibrary" : "F0001", "currentLocation" : "30", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -743,8 +743,8 @@ "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", @@ -755,8 +755,8 @@ "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -767,8 +767,8 @@ "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000909138", diff --git a/src/test/resources/alma-fix/990059571560206441.json b/src/test/resources/alma-fix/990059571560206441.json index 920bbef80..a7ddaa723 100644 --- a/src/test/resources/alma-fix/990059571560206441.json +++ b/src/test/resources/alma-fix/990059571560206441.json @@ -120,8 +120,8 @@ "currentLibrary" : "T0012", "currentLocation" : "00000000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Tr5#!", "isil" : "DE-Tr5", + "id" : "http://lobid.org/organisations/DE-Tr5#!", "label" : "Hochschulbibliothek Trier" }, "id" : "http://lobid.org/items/990059571560206441:DE-Tr5:234944500007820#!" @@ -133,8 +133,8 @@ "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_2", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT001039253&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", @@ -147,8 +147,8 @@ "currentLibrary" : "DEUTZ", "currentLocation" : "33", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT001039253", @@ -161,8 +161,8 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT001039253", @@ -175,8 +175,8 @@ "currentLibrary" : "UB", "currentLocation" : "UB_G3/B4", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990059571560206441:DE-294:23129320140006471#!" @@ -186,8 +186,8 @@ "currentLibrary" : "Z9007", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-131#!", "isil" : "DE-131", + "id" : "http://lobid.org/organisations/DE-131#!", "label" : "Stadtbibliothek am Neumarkt" }, "id" : "http://lobid.org/items/990059571560206441:DE-131:2229557540007816#!" @@ -197,8 +197,8 @@ "currentLibrary" : "Z9030", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-60#!", "isil" : "DE-60", + "id" : "http://lobid.org/organisations/DE-60#!", "label" : "Stadt- und Landesbibliothek Dortmund" }, "id" : "http://lobid.org/items/990059571560206441:DE-60:2229557610007816#!" @@ -208,8 +208,8 @@ "currentLibrary" : "Z9031", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-62#!", "isil" : "DE-62", + "id" : "http://lobid.org/organisations/DE-62#!", "label" : "Stadtbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990059571560206441:DE-62:2229557570007816#!" diff --git a/src/test/resources/alma-fix/990063549080206441.json b/src/test/resources/alma-fix/990063549080206441.json index 890a6d31c..81ef2583f 100644 --- a/src/test/resources/alma-fix/990063549080206441.json +++ b/src/test/resources/alma-fix/990063549080206441.json @@ -123,8 +123,8 @@ "currentLibrary" : "W0001", "currentLocation" : "04", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT003538502", @@ -136,8 +136,8 @@ "currentLibrary" : "F0001", "currentLocation" : "03", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT003538502&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -149,8 +149,8 @@ "currentLibrary" : "R3032", "currentLocation" : "AUS32", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT003538502", @@ -163,8 +163,8 @@ "currentLibrary" : "UB", "currentLocation" : "UB_G2B3", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990063549080206441:DE-294:23126359060006471#!" @@ -176,8 +176,8 @@ "currentLibrary" : "UB", "currentLocation" : "UB_G2B3", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990063549080206441:DE-294:23126359080006471#!" @@ -189,8 +189,8 @@ "currentLibrary" : "38-125", "currentLocation" : "38-125-BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-125#!", "isil" : "DE-38-125", + "id" : "http://lobid.org/organisations/DE-38-125#!", "label" : "Forschungsinstitut für Politische Wissenschaft und Europäische Fragen, Seminar für Politische Wissenschaft, Gemeinsame Bibliothek" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT003538502", @@ -199,8 +199,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/990063549080206441:DE-6:991027259779706449#!" diff --git a/src/test/resources/alma-fix/990065341720206441.json b/src/test/resources/alma-fix/990065341720206441.json index 446cd940f..c4d43bc26 100644 --- a/src/test/resources/alma-fix/990065341720206441.json +++ b/src/test/resources/alma-fix/990065341720206441.json @@ -90,8 +90,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004764408&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", diff --git a/src/test/resources/alma-fix/990075429930206441.json b/src/test/resources/alma-fix/990075429930206441.json index eb7885f39..642b38828 100644 --- a/src/test/resources/alma-fix/990075429930206441.json +++ b/src/test/resources/alma-fix/990075429930206441.json @@ -85,8 +85,8 @@ "currentLibrary" : "T0006", "currentLocation" : "M", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Tr2#!", "isil" : "DE-Tr2", + "id" : "http://lobid.org/organisations/DE-Tr2#!", "label" : "Bibliothek des Bischöflichen Priesterseminars Trier" }, "id" : "http://lobid.org/items/990075429930206441:DE-Tr2:2325456820007817#!" @@ -98,8 +98,8 @@ "currentLibrary" : "R0003", "currentLocation" : "00001000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", + "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000944190%22", @@ -112,8 +112,8 @@ "currentLibrary" : "R0003", "currentLocation" : "00001000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", + "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000944190%22", @@ -126,8 +126,8 @@ "currentLibrary" : "DEUTZ", "currentLocation" : "78", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT000944190", @@ -139,8 +139,8 @@ "currentLibrary" : "T0011", "currentLocation" : "MAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000944190", @@ -153,8 +153,8 @@ "currentLibrary" : "TK", "currentLocation" : "TK-Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5-108#!", "isil" : "DE-5-108", + "id" : "http://lobid.org/organisations/DE-5-108#!", "label" : "Universität Bonn, Fachbibliothek der Evangelischen und Katholischen Theologie" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000944190", @@ -167,8 +167,8 @@ "currentLibrary" : "GE", "currentLocation" : "GE-Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5-20#!", "isil" : "DE-5-20", + "id" : "http://lobid.org/organisations/DE-5-20#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Bibliothek" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000944190", @@ -181,8 +181,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "99_TEMP", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990075429930206441:DE-361:23256260230006442#!" @@ -194,8 +194,8 @@ "currentLibrary" : "UB", "currentLocation" : "UB_G3B1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990075429930206441:DE-294:2399479500006471#!" @@ -207,8 +207,8 @@ "currentLibrary" : "HIS", "currentLocation" : "HIS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990075429930206441:DE-294:2399479480006471#!" @@ -220,8 +220,8 @@ "currentLibrary" : "GER", "currentLocation" : "GER_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990075429930206441:DE-294:2399479440006471#!" @@ -233,8 +233,8 @@ "currentLibrary" : "38-434", "currentLocation" : "38-434-BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-434#!", "isil" : "DE-38-434", + "id" : "http://lobid.org/organisations/DE-38-434#!", "label" : "Petrarca-Institut der Universität zu Köln, Bibliothek" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000944190", @@ -247,8 +247,8 @@ "currentLibrary" : "38-432", "currentLocation" : "38-432-BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-432#!", "isil" : "DE-38-432", + "id" : "http://lobid.org/organisations/DE-38-432#!", "label" : "Thomas-Institut, Bibliothek" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000944190", @@ -261,8 +261,8 @@ "currentLibrary" : "ENGL", "currentLocation" : "ENGL_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-020#!", "isil" : "DE-6-020", + "id" : "http://lobid.org/organisations/DE-6-020#!", "label" : "Universität Münster, Englisches Seminar, Bibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -275,8 +275,8 @@ "currentLibrary" : "GERM", "currentLocation" : "GERM_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-246#!", "isil" : "DE-6-246", + "id" : "http://lobid.org/organisations/DE-6-246#!", "label" : "Universität Münster, Germanistisches Institut, Bibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -289,8 +289,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -301,8 +301,8 @@ "currentLibrary" : "O9023", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-211#!", "isil" : "DE-211", + "id" : "http://lobid.org/organisations/DE-211#!", "label" : "Erzbischöfliche Akademische Bibliothek Paderborn" }, "id" : "http://lobid.org/items/990075429930206441:DE-211:2272700430007816#!" @@ -312,8 +312,8 @@ "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000944190", @@ -324,8 +324,8 @@ "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000944190", @@ -334,8 +334,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990075429930206441:DE-61:990023296720206443#!" @@ -343,8 +343,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "id" : "http://lobid.org/items/990075429930206441:DE-467:990002110800106462#!" diff --git a/src/test/resources/alma-fix/990075538650206441.json b/src/test/resources/alma-fix/990075538650206441.json index 8d3311f20..43e4b68a8 100644 --- a/src/test/resources/alma-fix/990075538650206441.json +++ b/src/test/resources/alma-fix/990075538650206441.json @@ -134,8 +134,8 @@ "currentLibrary" : "KP001", "currentLocation" : "MMONO", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", + "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT003184116&local_base=ZBS01", @@ -148,8 +148,8 @@ "currentLibrary" : "P0001", "currentLocation" : "11", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT003184116", @@ -162,8 +162,8 @@ "currentLibrary" : "KOELN", "currentLocation" : "Se_AM2", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38M#!", "isil" : "DE-38M", + "id" : "http://lobid.org/organisations/DE-38M#!", "label" : "ZB MED - Informationszentrum Lebenswissenschaften, Köln" }, "id" : "http://lobid.org/items/990075538650206441:DE-38M:23133481820006472#!" @@ -173,8 +173,8 @@ "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT003184116", diff --git a/src/test/resources/alma-fix/990103899140206441.json b/src/test/resources/alma-fix/990103899140206441.json index 1fa27da33..56cec54ee 100644 --- a/src/test/resources/alma-fix/990103899140206441.json +++ b/src/test/resources/alma-fix/990103899140206441.json @@ -114,8 +114,8 @@ "currentLocation" : "kA", "callNumber" : "Per. 5157", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", + "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=-1=%22590016-5%22", diff --git a/src/test/resources/alma-fix/990108873860206441.json b/src/test/resources/alma-fix/990108873860206441.json index bdfbece38..833dbc271 100644 --- a/src/test/resources/alma-fix/990108873860206441.json +++ b/src/test/resources/alma-fix/990108873860206441.json @@ -131,8 +131,8 @@ "currentLibrary" : "R1007", "currentLocation" : "kA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-987#!", "isil" : "DE-987", + "id" : "http://lobid.org/organisations/DE-987#!", "label" : "Hochschule Koblenz, Bibliothek RheinMoselCampus" }, "id" : "http://lobid.org/items/990108873860206441:DE-987:2213917230007829#!" @@ -142,8 +142,8 @@ "currentLibrary" : "T0006", "currentLocation" : "kA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Tr2#!", "isil" : "DE-Tr2", + "id" : "http://lobid.org/organisations/DE-Tr2#!", "label" : "Bibliothek des Bischöflichen Priesterseminars Trier" }, "id" : "http://lobid.org/items/990108873860206441:DE-Tr2:2221102140007817#!" @@ -153,8 +153,8 @@ "currentLibrary" : "R0003", "currentLocation" : "kA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", + "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=-1=%221500025-4%22", @@ -165,8 +165,8 @@ "currentLibrary" : "R0001", "currentLocation" : "kA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", + "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, "id" : "http://lobid.org/items/990108873860206441:DE-929:2263798660007506#!" @@ -174,8 +174,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/990108873860206441:DE-466:990009633110106463#!" diff --git a/src/test/resources/alma-fix/990108874370206441.json b/src/test/resources/alma-fix/990108874370206441.json index 2122d4a7b..effbd7769 100644 --- a/src/test/resources/alma-fix/990108874370206441.json +++ b/src/test/resources/alma-fix/990108874370206441.json @@ -177,8 +177,8 @@ "currentLibrary" : "R1007", "currentLocation" : "kA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-987#!", "isil" : "DE-987", + "id" : "http://lobid.org/organisations/DE-987#!", "label" : "Hochschule Koblenz, Bibliothek RheinMoselCampus" }, "id" : "http://lobid.org/items/990108874370206441:DE-987:2213916070007829#!" @@ -188,8 +188,8 @@ "currentLibrary" : "R2001", "currentLocation" : "kA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1105#!", "isil" : "DE-1105", + "id" : "http://lobid.org/organisations/DE-1105#!", "label" : "Hochschule Koblenz, RheinAhrCampus, Bibliothek" }, "id" : "http://lobid.org/items/990108874370206441:DE-1105:2213916050007829#!" diff --git a/src/test/resources/alma-fix/990109712970206441.json b/src/test/resources/alma-fix/990109712970206441.json index d5d01c5d4..1e40fd114 100644 --- a/src/test/resources/alma-fix/990109712970206441.json +++ b/src/test/resources/alma-fix/990109712970206441.json @@ -220,8 +220,8 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990109712970206441:DE-468:23121199900006447#!" @@ -233,8 +233,8 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990109712970206441:DE-468:23121199920006447#!" @@ -246,8 +246,8 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990109712970206441:DE-468:23121199950006447#!" @@ -259,8 +259,8 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990109712970206441:DE-468:23121199930006447#!" @@ -271,8 +271,8 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990109712970206441:DE-468:23171066570006447#!" @@ -284,8 +284,8 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990109712970206441:DE-468:23121199910006447#!" @@ -297,8 +297,8 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990109712970206441:DE-468:23121199890006447#!" @@ -309,8 +309,8 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990109712970206441:DE-468:23175079460006447#!" @@ -322,8 +322,8 @@ "currentLibrary" : "HfM", "currentLocation" : "HfM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-575:2390309400006480#!" @@ -335,8 +335,8 @@ "currentLibrary" : "HfM", "currentLocation" : "HfM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-575:2390309360006480#!" @@ -348,8 +348,8 @@ "currentLibrary" : "HfM", "currentLocation" : "HfM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-575:2390309380006480#!" @@ -361,8 +361,8 @@ "currentLibrary" : "HfM", "currentLocation" : "HfM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-575:2390309300006480#!" @@ -374,8 +374,8 @@ "currentLibrary" : "HfM", "currentLocation" : "HfM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-575:2390309320006480#!" @@ -387,8 +387,8 @@ "currentLibrary" : "HfM", "currentLocation" : "HfM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-575:2390309340006480#!" @@ -400,8 +400,8 @@ "currentLibrary" : "HfM", "currentLocation" : "HfM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-575:2390309440006480#!" @@ -413,8 +413,8 @@ "currentLibrary" : "HfM", "currentLocation" : "HfM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-575:2390309270006480#!" @@ -426,8 +426,8 @@ "currentLibrary" : "HfM", "currentLocation" : "HfM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-575:2390309500006480#!" @@ -439,8 +439,8 @@ "currentLibrary" : "HfM", "currentLocation" : "HfM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-575:2390309420006480#!" @@ -452,8 +452,8 @@ "currentLibrary" : "HfM", "currentLocation" : "HfM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-575:2390309460006480#!" @@ -465,8 +465,8 @@ "currentLibrary" : "HfM", "currentLocation" : "HfM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-575:2390309480006480#!" @@ -477,8 +477,8 @@ "currentLibrary" : "X0001", "currentLocation" : "00L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990109712970206441:DE-61:23375062020006443#!" @@ -489,8 +489,8 @@ "currentLibrary" : "X0001", "currentLocation" : "00L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990109712970206441:DE-61:23263476030006443#!" @@ -501,8 +501,8 @@ "currentLibrary" : "X0001", "currentLocation" : "00L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990109712970206441:DE-61:23263476050006443#!" @@ -513,8 +513,8 @@ "currentLibrary" : "X0001", "currentLocation" : "00L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990109712970206441:DE-61:23263476060006443#!" @@ -525,8 +525,8 @@ "currentLibrary" : "X0001", "currentLocation" : "00L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990109712970206441:DE-61:23263476080006443#!" @@ -537,8 +537,8 @@ "currentLibrary" : "X0001", "currentLocation" : "00L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990109712970206441:DE-61:23263476100006443#!" @@ -549,8 +549,8 @@ "currentLibrary" : "X0001", "currentLocation" : "00L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990109712970206441:DE-61:23263476110006443#!" @@ -562,8 +562,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-6:23653461490006449#!" @@ -575,8 +575,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM2", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-6:23653461500006449#!" @@ -587,8 +587,8 @@ "currentLocation" : "21", "callNumber" : "KJIB3585", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990109712970206441:DE-468:22121199860006447#!" @@ -599,8 +599,8 @@ "currentLocation" : "21", "callNumber" : "KJIB3790", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990109712970206441:DE-468:22175079420006447#!" @@ -611,8 +611,8 @@ "currentLocation" : "kA", "callNumber" : "(Einzelsign.)", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-2187#!", "isil" : "DE-2187", + "id" : "http://lobid.org/organisations/DE-2187#!", "label" : "Bischöfliches Diözesanarchiv Aachen" }, "id" : "http://lobid.org/items/990109712970206441:DE-2187:2245055030007507#!" @@ -623,8 +623,8 @@ "currentLocation" : "HfM_Mag1OG", "callNumber" : "BM 800 BeetL 6:4", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-575:2290309520006480#!" @@ -635,8 +635,8 @@ "currentLocation" : "0-Frei2", "callNumber" : "Z 2000/149", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", @@ -648,8 +648,8 @@ "currentLocation" : "B059-Zeit", "callNumber" : "Nc 2/1999 Bran", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bo59#!", "isil" : "DE-Bo59", + "id" : "http://lobid.org/organisations/DE-Bo59#!", "label" : "Beethoven-Haus Bonn, Bibliothek" }, "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", @@ -661,8 +661,8 @@ "currentLocation" : "B059-Zeit", "callNumber" : "No 285/1999 Bran", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bo59#!", "isil" : "DE-Bo59", + "id" : "http://lobid.org/organisations/DE-Bo59#!", "label" : "Beethoven-Haus Bonn, Bibliothek" }, "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", @@ -674,8 +674,8 @@ "currentLocation" : "FRHKO", "callNumber" : "MU/C 2014 115", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "id" : "http://lobid.org/items/990109712970206441:DE-Kob7:2229555290008057#!" @@ -686,8 +686,8 @@ "currentLocation" : "38-430-ZS", "callNumber" : "430/Bg/Beethoven005", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-430#!", "isil" : "DE-38-430", + "id" : "http://lobid.org/organisations/DE-38-430#!", "label" : "Musikwissenschaftliches Institut, Abteilung Historische Musikwissenschaft, Systematische Musikwissenschaft, Musikethnologie,, Collgium musicum, Bibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-38-430:22294277850006476#!" @@ -698,8 +698,8 @@ "currentLocation" : "38-ZS", "callNumber" : "XD475", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/990109712970206441:DE-38:22294277840006476#!" @@ -707,8 +707,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990109712970206441:DE-1972:990000519240506457#!" diff --git a/src/test/resources/alma-fix/990112067120206441.json b/src/test/resources/alma-fix/990112067120206441.json index 6f2fcac03..ed5904e77 100644 --- a/src/test/resources/alma-fix/990112067120206441.json +++ b/src/test/resources/alma-fix/990112067120206441.json @@ -154,8 +154,8 @@ "currentLibrary" : "Z9035", "currentLocation" : "kA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Sol1#!", "isil" : "DE-Sol1", + "id" : "http://lobid.org/organisations/DE-Sol1#!", "label" : "Stadtarchiv Solingen, Bibliothek" }, "id" : "http://lobid.org/items/990112067120206441:DE-Sol1:235274600007830#!" diff --git a/src/test/resources/alma-fix/990114098170206441.json b/src/test/resources/alma-fix/990114098170206441.json index 1fcf70fc7..8dbfc8463 100644 --- a/src/test/resources/alma-fix/990114098170206441.json +++ b/src/test/resources/alma-fix/990114098170206441.json @@ -144,8 +144,8 @@ "currentLibrary" : "KATH", "currentLocation" : "KATH_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-069#!", "isil" : "DE-6-069", + "id" : "http://lobid.org/organisations/DE-6-069#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholischen-Theologischen Fakultät, Abteilung Hüfferstr." }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT013083243&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", diff --git a/src/test/resources/alma-fix/990114617880206441.json b/src/test/resources/alma-fix/990114617880206441.json index c0f183e89..043ed27bd 100644 --- a/src/test/resources/alma-fix/990114617880206441.json +++ b/src/test/resources/alma-fix/990114617880206441.json @@ -91,8 +91,8 @@ "currentLibrary" : "X0001", "currentLocation" : "00L", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT013135581", diff --git a/src/test/resources/alma-fix/990118562160206441.json b/src/test/resources/alma-fix/990118562160206441.json index f85732510..bb1a753f4 100644 --- a/src/test/resources/alma-fix/990118562160206441.json +++ b/src/test/resources/alma-fix/990118562160206441.json @@ -97,8 +97,8 @@ "currentLibrary" : "D0001", "currentLocation" : "D98", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT013532539&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", diff --git a/src/test/resources/alma-fix/990122511970206441.json b/src/test/resources/alma-fix/990122511970206441.json index b785394a1..58f4daab9 100644 --- a/src/test/resources/alma-fix/990122511970206441.json +++ b/src/test/resources/alma-fix/990122511970206441.json @@ -78,8 +78,8 @@ "currentLibrary" : "Z9038", "currentLocation" : "MZ2V", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", + "id" : "http://lobid.org/organisations/DE-Kn38#!", "label" : "Hochschule für Musik und Tanz Köln, Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=TT000075751&local_base=MHK01", diff --git a/src/test/resources/alma-fix/990124590390206441.json b/src/test/resources/alma-fix/990124590390206441.json index a0e66e82b..ce791812a 100644 --- a/src/test/resources/alma-fix/990124590390206441.json +++ b/src/test/resources/alma-fix/990124590390206441.json @@ -98,8 +98,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "14G_Sond", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990124590390206441:DE-361:23240897810006442#!" diff --git a/src/test/resources/alma-fix/990126276700206441.json b/src/test/resources/alma-fix/990126276700206441.json index 560d7e526..bee3c433e 100644 --- a/src/test/resources/alma-fix/990126276700206441.json +++ b/src/test/resources/alma-fix/990126276700206441.json @@ -114,8 +114,8 @@ "currentLibrary" : "W0001", "currentLocation" : "11", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT014015351", @@ -128,8 +128,8 @@ "currentLibrary" : "MOP", "currentLocation" : "MOP_Haupt", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", + "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT014015351%22", @@ -142,8 +142,8 @@ "currentLibrary" : "F0001", "currentLocation" : "00", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -156,8 +156,8 @@ "currentLibrary" : "RL002", "currentLocation" : "FHULD", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", + "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -170,8 +170,8 @@ "currentLibrary" : "RL002", "currentLocation" : "FHULD", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", + "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -184,8 +184,8 @@ "currentLibrary" : "609", "currentLocation" : "0", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82-609#!", "isil" : "DE-82-609", + "id" : "http://lobid.org/organisations/DE-82-609#!", "label" : "Germanistisches Institut, Bibliothek" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT014015351&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", @@ -198,8 +198,8 @@ "currentLibrary" : "0", "currentLocation" : "0-Frei1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT014015351", @@ -212,8 +212,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "156_Mono", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990126276700206441:DE-361:23264458310006442#!" @@ -225,8 +225,8 @@ "currentLibrary" : "UB", "currentLocation" : "UB_G2B4", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990126276700206441:DE-294:23142334490006471#!" @@ -238,8 +238,8 @@ "currentLibrary" : "X0031", "currentLocation" : "31", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT014015351", @@ -252,8 +252,8 @@ "currentLibrary" : "38-405", "currentLocation" : "38-405-BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-405#!", "isil" : "DE-38-405", + "id" : "http://lobid.org/organisations/DE-38-405#!", "label" : "Institut für Deutsche Sprache und Literatur mit Volkskundlicher Abteilung, Bibliothek" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT014015351", @@ -266,8 +266,8 @@ "currentLibrary" : "38-467", "currentLocation" : "38-467-BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-467#!", "isil" : "DE-38-467", + "id" : "http://lobid.org/organisations/DE-38-467#!", "label" : "Internationales Kolleg Morphomata, Bibliothek" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT014015351", @@ -280,8 +280,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014015351&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -294,8 +294,8 @@ "currentLibrary" : "S0001", "currentLocation" : "AR2", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT014015351", diff --git a/src/test/resources/alma-fix/990133067580206441.json b/src/test/resources/alma-fix/990133067580206441.json index d04c2c72c..a4d7e476d 100644 --- a/src/test/resources/alma-fix/990133067580206441.json +++ b/src/test/resources/alma-fix/990133067580206441.json @@ -242,8 +242,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53804555180006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=990133067580206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990133067580206441:DE-61:53804555180006441#!" @@ -253,8 +253,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53804555180006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990133067580206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/990133067580206441:DE-5:53804555180006441#!" @@ -264,8 +264,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53804555180006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990133067580206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/990133067580206441:DE-465:53804555180006441#!" @@ -275,8 +275,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53804555180006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=990133067580206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/990133067580206441:DE-38:53804555180006441#!" diff --git a/src/test/resources/alma-fix/990136041660206441.json b/src/test/resources/alma-fix/990136041660206441.json index 115899b09..b45b54c68 100644 --- a/src/test/resources/alma-fix/990136041660206441.json +++ b/src/test/resources/alma-fix/990136041660206441.json @@ -192,8 +192,8 @@ "currentLocation" : "kA", "callNumber" : "ZA 4343", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", + "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, "id" : "http://lobid.org/items/990136041660206441:DE-929:2264740600007506#!" diff --git a/src/test/resources/alma-fix/990139686910206441.json b/src/test/resources/alma-fix/990139686910206441.json index abd0223ba..d391bd20e 100644 --- a/src/test/resources/alma-fix/990139686910206441.json +++ b/src/test/resources/alma-fix/990139686910206441.json @@ -76,8 +76,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "MGAB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT014525099&local_base=MHE01", diff --git a/src/test/resources/alma-fix/990141342350206441.json b/src/test/resources/alma-fix/990141342350206441.json index 406b72520..ce600111c 100644 --- a/src/test/resources/alma-fix/990141342350206441.json +++ b/src/test/resources/alma-fix/990141342350206441.json @@ -102,8 +102,8 @@ "currentLibrary" : "R0003", "currentLocation" : "00001000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", + "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22TT001230001%22", diff --git a/src/test/resources/alma-fix/990143325070206441.json b/src/test/resources/alma-fix/990143325070206441.json index 57c5246f4..1115e9685 100644 --- a/src/test/resources/alma-fix/990143325070206441.json +++ b/src/test/resources/alma-fix/990143325070206441.json @@ -165,8 +165,8 @@ "currentLibrary" : "0", "currentLocation" : "0-Frei1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT014601018", @@ -179,8 +179,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014601018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", diff --git a/src/test/resources/alma-fix/990150856900206441.json b/src/test/resources/alma-fix/990150856900206441.json index 95041c3bd..8f6247f59 100644 --- a/src/test/resources/alma-fix/990150856900206441.json +++ b/src/test/resources/alma-fix/990150856900206441.json @@ -92,8 +92,8 @@ "currentLibrary" : "ED001", "currentLocation" : "MAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn28#!", "isil" : "DE-Kn28", + "id" : "http://lobid.org/organisations/DE-Kn28#!", "label" : "Erzbischöfliche Diözesan- und Dombibliothek" }, "id" : "http://lobid.org/items/990150856900206441:DE-Kn28:2350360720007507#!" diff --git a/src/test/resources/alma-fix/990156027740206441.json b/src/test/resources/alma-fix/990156027740206441.json index 27031fe36..fa299177f 100644 --- a/src/test/resources/alma-fix/990156027740206441.json +++ b/src/test/resources/alma-fix/990156027740206441.json @@ -77,8 +77,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209607190006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991010117289706445", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/990156027740206441:DE-290:53209607190006445#!" diff --git a/src/test/resources/alma-fix/990156060190206441.json b/src/test/resources/alma-fix/990156060190206441.json index b4b045948..d2c719088 100644 --- a/src/test/resources/alma-fix/990156060190206441.json +++ b/src/test/resources/alma-fix/990156060190206441.json @@ -171,8 +171,8 @@ "currentLibrary" : "W0001", "currentLocation" : "01", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT015014677", @@ -185,8 +185,8 @@ "currentLibrary" : "KP001", "currentLocation" : "FMONO", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", + "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT015014677&local_base=ZBS01", @@ -199,8 +199,8 @@ "currentLibrary" : "FHMH", "currentLocation" : "Freihand_H", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-836#!", "isil" : "DE-836", + "id" : "http://lobid.org/organisations/DE-836#!", "label" : "FH Münster, Hochschulbibliothek" }, "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT015014677", @@ -213,8 +213,8 @@ "currentLibrary" : "F0001", "currentLocation" : "00", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -227,8 +227,8 @@ "currentLibrary" : "EUP", "currentLocation" : "EUP_BV", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/990156060190206441:DE-A96:2383400860006444#!" @@ -240,8 +240,8 @@ "currentLibrary" : "STA", "currentLocation" : "STA_FH", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", @@ -254,8 +254,8 @@ "currentLibrary" : "STA", "currentLocation" : "STA_FH", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", @@ -268,8 +268,8 @@ "currentLibrary" : "cdd", "currentLocation" : "HBEMP", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", + "id" : "http://lobid.org/organisations/DE-Due62#!", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT015014677", @@ -282,8 +282,8 @@ "currentLibrary" : "MG", "currentLocation" : "MG_Public", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", + "id" : "http://lobid.org/organisations/DE-829#!", "label" : "Hochschule Niederrhein, Bibliothek" }, "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", @@ -296,8 +296,8 @@ "currentLibrary" : "LE", "currentLocation" : "LE_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", + "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT015014677%22", @@ -310,8 +310,8 @@ "currentLibrary" : "T0013", "currentLocation" : "kA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1042#!", "isil" : "DE-1042", + "id" : "http://lobid.org/organisations/DE-1042#!", "label" : "Hochschule Trier, Umwelt-Campus Birkenfeld, Bibliothek" }, "id" : "http://lobid.org/items/990156060190206441:DE-1042:237127600007821#!" @@ -323,8 +323,8 @@ "currentLibrary" : "HfM", "currentLocation" : "HfM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-575#!", "isil" : "DE-575", + "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHD01&doc_001_number=HT015014677&local_base=MHD01", @@ -337,8 +337,8 @@ "currentLibrary" : "X6001", "currentLocation" : "HAKA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Due18#!", "isil" : "DE-Due18", + "id" : "http://lobid.org/organisations/DE-Due18#!", "label" : "Kunstakademie Düsseldorf, Bibliothek" }, "id" : "http://lobid.org/items/990156060190206441:DE-Due18:238720680006458#!" @@ -350,8 +350,8 @@ "currentLibrary" : "R3032", "currentLocation" : "FH45", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677", @@ -364,8 +364,8 @@ "currentLibrary" : "RL002", "currentLocation" : "FHELD", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", + "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -378,8 +378,8 @@ "currentLibrary" : "R3032", "currentLocation" : "FH45", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677", @@ -392,8 +392,8 @@ "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT015014677&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", @@ -406,8 +406,8 @@ "currentLibrary" : "R0003", "currentLocation" : "00001000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-107#!", "isil" : "DE-107", + "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT015014677%22", @@ -420,8 +420,8 @@ "currentLibrary" : "R0001", "currentLocation" : "00000000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", + "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015014677%22&selectedViewBranchlib=0", @@ -434,8 +434,8 @@ "currentLibrary" : "SUED", "currentLocation" : "63", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT015014677", @@ -448,8 +448,8 @@ "currentLibrary" : "EFB", "currentLocation" : "Freihand", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", @@ -462,8 +462,8 @@ "currentLibrary" : "T0011", "currentLocation" : "09", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015014677", @@ -476,8 +476,8 @@ "currentLibrary" : "0", "currentLocation" : "0-Frei1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT015014677", @@ -490,8 +490,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "01_Mono", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990156060190206441:DE-361:23274927800006442#!" @@ -503,8 +503,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "01_Mono", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990156060190206441:DE-361:23274927810006442#!" @@ -516,8 +516,8 @@ "currentLibrary" : "SOZ", "currentLocation" : "SOZ_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990156060190206441:DE-294:23181911570006471#!" @@ -529,8 +529,8 @@ "currentLibrary" : "PHILO", "currentLocation" : "PHILO_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990156060190206441:DE-294:23181911550006471#!" @@ -542,8 +542,8 @@ "currentLibrary" : "E0001", "currentLocation" : "E91", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -556,8 +556,8 @@ "currentLibrary" : "E0001", "currentLocation" : "E91", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -570,8 +570,8 @@ "currentLibrary" : "RL001", "currentLocation" : "FRHKO", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -584,8 +584,8 @@ "currentLibrary" : "38", "currentLocation" : "38-SAB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", @@ -598,8 +598,8 @@ "currentLibrary" : "38", "currentLocation" : "38-SAB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", @@ -612,8 +612,8 @@ "currentLibrary" : "38-307", "currentLocation" : "38-307-FHM", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-307#!", "isil" : "DE-38-307", + "id" : "http://lobid.org/organisations/DE-38-307#!", "label" : "Humanwissenschaftliche Bibliothek: Gemeinsame Bibliothek der Humanwissenschaftlichen Fakultät und der USB" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", @@ -626,8 +626,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_AUSB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -640,8 +640,8 @@ "currentLibrary" : "PSY", "currentLocation" : "PSY_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-049#!", "isil" : "DE-6-049", + "id" : "http://lobid.org/organisations/DE-6-049#!", "label" : "Universität Münster, Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek für Psychologie" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -654,8 +654,8 @@ "currentLibrary" : "BEK", "currentLocation" : "BEK_MAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-123#!", "isil" : "DE-6-123", + "id" : "http://lobid.org/organisations/DE-6-123#!", "label" : "Universität Münster, Bibliothek für Erziehungswissenschaft und Kommunikationswissenschaft" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -668,8 +668,8 @@ "currentLibrary" : "P0001", "currentLocation" : "11", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT015014677", @@ -682,8 +682,8 @@ "currentLibrary" : "GE", "currentLocation" : "01", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1010#!", "isil" : "DE-1010", + "id" : "http://lobid.org/organisations/DE-1010#!", "label" : "Westfälische Hochschule Gelsenkirchen Bocholt Recklinghausen, Hochschulbibliothek" }, "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT015014677", @@ -694,8 +694,8 @@ "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015014677", @@ -706,8 +706,8 @@ "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -718,8 +718,8 @@ "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT015014677", diff --git a/src/test/resources/alma-fix/990167595410206441.json b/src/test/resources/alma-fix/990167595410206441.json index 96086fab2..89124973a 100644 --- a/src/test/resources/alma-fix/990167595410206441.json +++ b/src/test/resources/alma-fix/990167595410206441.json @@ -74,8 +74,8 @@ "currentLibrary" : "KN3", "currentLocation" : "KN3-KMB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn3#!", "isil" : "DE-Kn3", + "id" : "http://lobid.org/organisations/DE-Kn3#!", "label" : "Kunst- und Museumsbibliothek der Stadt Köln" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=TT002494857", @@ -88,8 +88,8 @@ "currentLibrary" : "PHIL", "currentLocation" : "PHIL_KBIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-015#!", "isil" : "DE-6-015", + "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,TT002494857&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", diff --git a/src/test/resources/alma-fix/990171142550206441.json b/src/test/resources/alma-fix/990171142550206441.json index 74f8dc0e4..6f5df3986 100644 --- a/src/test/resources/alma-fix/990171142550206441.json +++ b/src/test/resources/alma-fix/990171142550206441.json @@ -132,8 +132,8 @@ "currentLibrary" : "SUED", "currentLocation" : "63", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT015671602", @@ -146,8 +146,8 @@ "currentLibrary" : "ZB", "currentLocation" : "Freihand", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015671602%22", @@ -160,8 +160,8 @@ "currentLibrary" : "T0011", "currentLocation" : "72", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015671602", @@ -174,8 +174,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "01_Mono", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990171142550206441:DE-361:23278788360006442#!" @@ -187,8 +187,8 @@ "currentLibrary" : "38", "currentLocation" : "38-SAB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015671602", @@ -199,8 +199,8 @@ "currentLibrary" : "T0011", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015671602", diff --git a/src/test/resources/alma-fix/990173811970206441.json b/src/test/resources/alma-fix/990173811970206441.json index a60858209..21f656956 100644 --- a/src/test/resources/alma-fix/990173811970206441.json +++ b/src/test/resources/alma-fix/990173811970206441.json @@ -143,8 +143,8 @@ "currentLibrary" : "R0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", + "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015865114%22&selectedViewBranchlib=0", @@ -153,8 +153,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "id" : "http://lobid.org/items/990173811970206441:DE-386:990006166350107476#!" @@ -162,8 +162,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990173811970206441:DE-294:991020566599706471#!" @@ -171,8 +171,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/990173811970206441:DE-6:991037863219706449#!" diff --git a/src/test/resources/alma-fix/990181275760206441.json b/src/test/resources/alma-fix/990181275760206441.json index 9572e75a3..595fc24db 100644 --- a/src/test/resources/alma-fix/990181275760206441.json +++ b/src/test/resources/alma-fix/990181275760206441.json @@ -106,8 +106,8 @@ "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", + "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", @@ -120,8 +120,8 @@ "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", + "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", @@ -134,8 +134,8 @@ "currentLibrary" : "CVH", "currentLocation" : "CVH_FREI", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", + "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", @@ -148,8 +148,8 @@ "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", + "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", @@ -162,8 +162,8 @@ "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", + "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", @@ -176,8 +176,8 @@ "currentLibrary" : "EFB", "currentLocation" : "LB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", @@ -190,8 +190,8 @@ "currentLibrary" : "EFB", "currentLocation" : "LB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", @@ -204,8 +204,8 @@ "currentLibrary" : "EFB", "currentLocation" : "LB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", @@ -218,8 +218,8 @@ "currentLibrary" : "EFB", "currentLocation" : "LB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", @@ -232,8 +232,8 @@ "currentLibrary" : "EFB", "currentLocation" : "LB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", @@ -246,8 +246,8 @@ "currentLibrary" : "EFB", "currentLocation" : "LB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", @@ -260,8 +260,8 @@ "currentLibrary" : "EFB", "currentLocation" : "LB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", @@ -274,8 +274,8 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990181275760206441:DE-294:23123524650006471#!" @@ -287,8 +287,8 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990181275760206441:DE-294:23123524560006471#!" @@ -300,8 +300,8 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990181275760206441:DE-294:23123524570006471#!" @@ -313,8 +313,8 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990181275760206441:DE-294:23123524630006471#!" @@ -326,8 +326,8 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990181275760206441:DE-294:23123524620006471#!" @@ -339,8 +339,8 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990181275760206441:DE-294:23123524640006471#!" @@ -352,8 +352,8 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990181275760206441:DE-294:23123524660006471#!" @@ -365,8 +365,8 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990181275760206441:DE-294:23123524600006471#!" @@ -378,8 +378,8 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990181275760206441:DE-294:23123524610006471#!" @@ -391,8 +391,8 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990181275760206441:DE-294:23123524590006471#!" @@ -404,8 +404,8 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990181275760206441:DE-294:23123524540006471#!" @@ -417,8 +417,8 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990181275760206441:DE-294:23123524550006471#!" @@ -430,8 +430,8 @@ "currentLibrary" : "PHYS", "currentLocation" : "PHYS_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990181275760206441:DE-294:23123524580006471#!" diff --git a/src/test/resources/alma-fix/990182814750206441.json b/src/test/resources/alma-fix/990182814750206441.json index ff074fc39..a15d5717f 100644 --- a/src/test/resources/alma-fix/990182814750206441.json +++ b/src/test/resources/alma-fix/990182814750206441.json @@ -131,8 +131,8 @@ "currentLibrary" : "X0001", "currentLocation" : "01", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT016580347", diff --git a/src/test/resources/alma-fix/990183054020206441.json b/src/test/resources/alma-fix/990183054020206441.json index c17808a9d..45a044b69 100644 --- a/src/test/resources/alma-fix/990183054020206441.json +++ b/src/test/resources/alma-fix/990183054020206441.json @@ -202,8 +202,8 @@ "currentLocation" : "ZB_ZS", "callNumber" : "XB 3534", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/990183054020206441:DE-6:22542862200006449#!" diff --git a/src/test/resources/alma-fix/990183092590206441.json b/src/test/resources/alma-fix/990183092590206441.json index 6f41ad77e..c7bb67328 100644 --- a/src/test/resources/alma-fix/990183092590206441.json +++ b/src/test/resources/alma-fix/990183092590206441.json @@ -82,8 +82,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-51#!", "isil" : "DE-51", + "id" : "http://lobid.org/organisations/DE-51#!", "label" : "Lippische Landesbibliothek - Theologische Bibliothek und Mediothek" }, "id" : "http://lobid.org/items/990183092590206441:DE-51:991007308989706480#!" diff --git a/src/test/resources/alma-fix/990183958380206441.json b/src/test/resources/alma-fix/990183958380206441.json index c83b48b74..b910ef7b1 100644 --- a/src/test/resources/alma-fix/990183958380206441.json +++ b/src/test/resources/alma-fix/990183958380206441.json @@ -173,8 +173,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "14G_Mono", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990183958380206441:DE-361:23292294010006442#!" @@ -186,8 +186,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_GMAGL", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -200,8 +200,8 @@ "currentLibrary" : "ALKU", "currentLocation" : "ALKU_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-139a#!", "isil" : "DE-6-139a", + "id" : "http://lobid.org/organisations/DE-6-139a#!", "label" : "Kommission Alltagskulturforschung für Westfalen (KAF), Bibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -214,8 +214,8 @@ "currentLibrary" : "P0001", "currentLocation" : "31", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT016692738", @@ -226,8 +226,8 @@ "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT016692738", diff --git a/src/test/resources/alma-fix/990184127410206441.json b/src/test/resources/alma-fix/990184127410206441.json index e936960d2..be59cff55 100644 --- a/src/test/resources/alma-fix/990184127410206441.json +++ b/src/test/resources/alma-fix/990184127410206441.json @@ -195,8 +195,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53738793900006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990184127410206441:DE-61:53738793900006441#!" @@ -206,8 +206,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53738793900006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/990184127410206441:DE-5:53738793900006441#!" @@ -217,8 +217,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53738793900006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990184127410206441:DE-294:53738793900006441#!" @@ -228,8 +228,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53738793940006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990184127410206441:DE-61:53738793940006441#!" @@ -239,8 +239,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53738793940006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/990184127410206441:DE-5:53738793940006441#!" @@ -250,8 +250,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53738793940006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990184127410206441:DE-294:53738793940006441#!" @@ -261,8 +261,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53804344220006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990184127410206441:DE-61:53804344220006441#!" @@ -272,8 +272,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53804344220006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/990184127410206441:DE-5:53804344220006441#!" @@ -283,8 +283,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53804344220006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/990184127410206441:DE-465:53804344220006441#!" @@ -294,8 +294,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53804344220006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/990184127410206441:DE-38:53804344220006441#!" diff --git a/src/test/resources/alma-fix/990185607520206441.json b/src/test/resources/alma-fix/990185607520206441.json index 1863d4624..8a71dc103 100644 --- a/src/test/resources/alma-fix/990185607520206441.json +++ b/src/test/resources/alma-fix/990185607520206441.json @@ -79,8 +79,8 @@ "currentLibrary" : "SM", "currentLocation" : "SM-Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", + "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=TT003059252", diff --git a/src/test/resources/alma-fix/990185619180206441.json b/src/test/resources/alma-fix/990185619180206441.json index 3b6b6afb3..c121864e5 100644 --- a/src/test/resources/alma-fix/990185619180206441.json +++ b/src/test/resources/alma-fix/990185619180206441.json @@ -88,8 +88,8 @@ "currentLibrary" : "SM", "currentLocation" : "SM-Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5-58#!", "isil" : "DE-5-58", + "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=TT003060418", diff --git a/src/test/resources/alma-fix/990189160110206441.json b/src/test/resources/alma-fix/990189160110206441.json index 0f732efd3..434a3da49 100644 --- a/src/test/resources/alma-fix/990189160110206441.json +++ b/src/test/resources/alma-fix/990189160110206441.json @@ -151,8 +151,8 @@ "currentLibrary" : "W0001", "currentLocation" : "AA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", @@ -165,8 +165,8 @@ "currentLibrary" : "W0001", "currentLocation" : "20", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", @@ -179,8 +179,8 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", @@ -193,8 +193,8 @@ "currentLibrary" : "KP001", "currentLocation" : "FMONO", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", + "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT017015300&local_base=ZBS01", @@ -207,8 +207,8 @@ "currentLibrary" : "KP001", "currentLocation" : "FMONO", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", + "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT017015300&local_base=ZBS01", @@ -221,8 +221,8 @@ "currentLibrary" : "R3032", "currentLocation" : "FHSPO", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT017015300", @@ -235,8 +235,8 @@ "currentLibrary" : "ZB", "currentLocation" : "Freihand", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017015300%22", @@ -249,8 +249,8 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT017015300", @@ -263,8 +263,8 @@ "currentLibrary" : "E0001", "currentLocation" : "E11", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -277,8 +277,8 @@ "currentLibrary" : "E0001", "currentLocation" : "E11", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -291,8 +291,8 @@ "currentLibrary" : "RL001", "currentLocation" : "FRHKO", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -305,8 +305,8 @@ "currentLibrary" : "RL001", "currentLocation" : "FRHKO", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -319,8 +319,8 @@ "currentLibrary" : "RL001", "currentLocation" : "FRHKO", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -333,8 +333,8 @@ "currentLibrary" : "SPOR", "currentLocation" : "SPOR_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-058#!", "isil" : "DE-6-058", + "id" : "http://lobid.org/organisations/DE-6-058#!", "label" : "Universität Münster, Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek Sportwissenschaft" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -347,8 +347,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -361,8 +361,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -375,8 +375,8 @@ "currentLibrary" : "P0001", "currentLocation" : "11", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT017015300", @@ -387,8 +387,8 @@ "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -399,8 +399,8 @@ "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT017015300", diff --git a/src/test/resources/alma-fix/990193094010206441.json b/src/test/resources/alma-fix/990193094010206441.json index 0c4c98853..50bf61d8e 100644 --- a/src/test/resources/alma-fix/990193094010206441.json +++ b/src/test/resources/alma-fix/990193094010206441.json @@ -83,8 +83,8 @@ "currentLibrary" : "SUED", "currentLocation" : "63", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT017398609", @@ -97,8 +97,8 @@ "currentLibrary" : "EFB", "currentLocation" : "Freihand", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017398609%22", @@ -111,8 +111,8 @@ "currentLibrary" : "UB", "currentLocation" : "UB_G3B1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990193094010206441:DE-294:23180110140006471#!" diff --git a/src/test/resources/alma-fix/990193229450206441.json b/src/test/resources/alma-fix/990193229450206441.json index 414519af6..83bffa9ff 100644 --- a/src/test/resources/alma-fix/990193229450206441.json +++ b/src/test/resources/alma-fix/990193229450206441.json @@ -265,8 +265,8 @@ "currentLibrary" : "BR003", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm3-3#!", "isil" : "DE-Bm3-3", + "id" : "http://lobid.org/organisations/DE-Bm3-3#!", "label" : "Bibliothek des Ruhrgebiets, Bestandsabteilung Bergbau-Bücherei und Ruhrgebiet" }, "id" : "http://lobid.org/items/990193229450206441:DE-Bm3-3:2214342300007508#!" @@ -276,8 +276,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53807024380006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=990193229450206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/990193229450206441:DE-38:53807024380006441#!" @@ -287,8 +287,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53807024380006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=990193229450206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990193229450206441:DE-61:53807024380006441#!" @@ -298,8 +298,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53807024380006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990193229450206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/990193229450206441:DE-5:53807024380006441#!" @@ -309,8 +309,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53807024380006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990193229450206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/990193229450206441:DE-465:53807024380006441#!" @@ -318,8 +318,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/990193229450206441:DE-6:991044950848906449#!" diff --git a/src/test/resources/alma-fix/990193806600206441.json b/src/test/resources/alma-fix/990193806600206441.json index 65a169da6..97661f6f7 100644 --- a/src/test/resources/alma-fix/990193806600206441.json +++ b/src/test/resources/alma-fix/990193806600206441.json @@ -82,8 +82,8 @@ "currentLibrary" : "HLS", "currentLocation" : "HLS_RAKAR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017468042&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", diff --git a/src/test/resources/alma-fix/990194668760206441.json b/src/test/resources/alma-fix/990194668760206441.json index 5ca9844db..fb9ff198d 100644 --- a/src/test/resources/alma-fix/990194668760206441.json +++ b/src/test/resources/alma-fix/990194668760206441.json @@ -90,8 +90,8 @@ "currentLibrary" : "X0001", "currentLocation" : "16", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT017551955", diff --git a/src/test/resources/alma-fix/990194744870206441.json b/src/test/resources/alma-fix/990194744870206441.json index fc288b10f..daec84c44 100644 --- a/src/test/resources/alma-fix/990194744870206441.json +++ b/src/test/resources/alma-fix/990194744870206441.json @@ -79,8 +79,8 @@ "currentLibrary" : "RL002", "currentLocation" : "MNBLD", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Lan1#!", "isil" : "DE-Lan1", + "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -93,8 +93,8 @@ "currentLibrary" : "RL001", "currentLocation" : "MAGMK", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -105,8 +105,8 @@ "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", diff --git a/src/test/resources/alma-fix/990197067610206441.json b/src/test/resources/alma-fix/990197067610206441.json index c2f022494..3eb68b6a6 100644 --- a/src/test/resources/alma-fix/990197067610206441.json +++ b/src/test/resources/alma-fix/990197067610206441.json @@ -96,8 +96,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/990197067610206441:DE-6:53723406060006441#!" @@ -107,8 +107,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/990197067610206441:DE-5:53723406060006441#!" @@ -118,8 +118,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/990197067610206441:DE-465:53723406060006441#!" @@ -129,8 +129,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/990197067610206441:DE-466:53723406060006441#!" @@ -140,8 +140,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990197067610206441:DE-61:53723406060006441#!" @@ -151,8 +151,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990197067610206441:DE-294:53723406060006441#!" diff --git a/src/test/resources/alma-fix/990197293880206441.json b/src/test/resources/alma-fix/990197293880206441.json index 29e7f1622..6e94dd5ae 100644 --- a/src/test/resources/alma-fix/990197293880206441.json +++ b/src/test/resources/alma-fix/990197293880206441.json @@ -177,8 +177,8 @@ "currentLibrary" : "R1007", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-987#!", "isil" : "DE-987", + "id" : "http://lobid.org/organisations/DE-987#!", "label" : "Hochschule Koblenz, Bibliothek RheinMoselCampus" }, "id" : "http://lobid.org/items/990197293880206441:DE-987:2219007810007829#!" @@ -188,8 +188,8 @@ "currentLibrary" : "R2001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1105#!", "isil" : "DE-1105", + "id" : "http://lobid.org/organisations/DE-1105#!", "label" : "Hochschule Koblenz, RheinAhrCampus, Bibliothek" }, "opacLink" : "http://www.hs-koblenz.de/RACwebOPAC/start.do?Login=webopac&Query=0010=%22TT050421649%22", @@ -200,8 +200,8 @@ "currentLibrary" : "T0012", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Tr5#!", "isil" : "DE-Tr5", + "id" : "http://lobid.org/organisations/DE-Tr5#!", "label" : "Hochschulbibliothek Trier" }, "id" : "http://lobid.org/items/990197293880206441:DE-Tr5:2210405900007820#!" @@ -211,8 +211,8 @@ "currentLibrary" : "T0013", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1042#!", "isil" : "DE-1042", + "id" : "http://lobid.org/organisations/DE-1042#!", "label" : "Hochschule Trier, Umwelt-Campus Birkenfeld, Bibliothek" }, "id" : "http://lobid.org/items/990197293880206441:DE-1042:228307120007821#!" @@ -222,8 +222,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990197293880206441:DE-832:53717454420006441#!" @@ -233,8 +233,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/990197293880206441:DE-38:53717454420006441#!" @@ -244,8 +244,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", + "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, "id" : "http://lobid.org/items/990197293880206441:DE-743:53717454420006441#!" @@ -255,8 +255,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/990197293880206441:DE-A96:53717454420006441#!" @@ -266,8 +266,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/990197293880206441:DE-465:53717454420006441#!" @@ -277,8 +277,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", + "id" : "http://lobid.org/organisations/DE-829#!", "label" : "Hochschule Niederrhein, Bibliothek" }, "id" : "http://lobid.org/items/990197293880206441:DE-829:53717454420006441#!" @@ -288,8 +288,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1010#!", "isil" : "DE-1010", + "id" : "http://lobid.org/organisations/DE-1010#!", "label" : "Westfälische Hochschule Gelsenkirchen Bocholt Recklinghausen, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990197293880206441:DE-1010:53717454420006441#!" @@ -299,8 +299,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1393#!", "isil" : "DE-1393", + "id" : "http://lobid.org/organisations/DE-1393#!", "label" : "Hochschule Ruhr West, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990197293880206441:DE-1393:53717454420006441#!" @@ -310,8 +310,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-836#!", "isil" : "DE-836", + "id" : "http://lobid.org/organisations/DE-836#!", "label" : "FH Münster, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990197293880206441:DE-836:53717454420006441#!" @@ -321,8 +321,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/990197293880206441:DE-466:53717454420006441#!" @@ -332,8 +332,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HGB/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HGB/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1866#!", "isil" : "DE-1866", + "id" : "http://lobid.org/organisations/DE-1866#!", "label" : "Hochschule für Gesundheit, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990197293880206441:DE-1866:53717454420006441#!" @@ -343,8 +343,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HHL/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HHL/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-583#!", "isil" : "DE-583", + "id" : "http://lobid.org/organisations/DE-583#!", "label" : "SRH Hochschule für Logistik und Wirtschaft Hamm, Bibliothek" }, "id" : "http://lobid.org/items/990197293880206441:DE-583:53717454420006441#!" @@ -354,8 +354,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990197293880206441:DE-468:53717454420006441#!" @@ -365,8 +365,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", + "id" : "http://lobid.org/organisations/DE-Due62#!", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, "id" : "http://lobid.org/items/990197293880206441:DE-Due62:53717454420006441#!" @@ -376,8 +376,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", + "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990197293880206441:DE-Bm40:53717454420006441#!" @@ -387,8 +387,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/990197293880206441:DE-290:53717454420006441#!" @@ -398,8 +398,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "id" : "http://lobid.org/items/990197293880206441:DE-1044:53717454420006441#!" @@ -409,8 +409,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", + "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990197293880206441:DE-Bi10:53717454420006441#!" @@ -420,8 +420,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FSW/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FSW/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Hag4#!", "isil" : "DE-Hag4", + "id" : "http://lobid.org/organisations/DE-Hag4#!", "label" : "Fachhochschule Südwestfalen, Fachbibliothek Hagen, Zentralbibliothek" }, "id" : "http://lobid.org/items/990197293880206441:DE-Hag4:53717454420006441#!" @@ -431,8 +431,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", + "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990197293880206441:DE-Dm13:53717454420006441#!" @@ -442,8 +442,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "id" : "http://lobid.org/items/990197293880206441:DE-386:53717454420006441#!" @@ -453,8 +453,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RHW/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RHW/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1383#!", "isil" : "DE-1383", + "id" : "http://lobid.org/organisations/DE-1383#!", "label" : "Hochschule Rhein-Waal, Bibliothek" }, "id" : "http://lobid.org/items/990197293880206441:DE-1383:53717454420006441#!" @@ -464,8 +464,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990197293880206441:DE-61:53717454420006441#!" @@ -475,8 +475,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "id" : "http://lobid.org/items/990197293880206441:DE-82:53717454420006441#!" @@ -486,8 +486,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990197293880206441:DE-294:53717454420006441#!" @@ -497,8 +497,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "id" : "http://lobid.org/items/990197293880206441:DE-467:53717454420006441#!" @@ -508,8 +508,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990197293880206441:DE-361:53717454420006441#!" @@ -517,8 +517,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990197293880206441:DE-361:991009118459706442#!" diff --git a/src/test/resources/alma-fix/990198383780206441.json b/src/test/resources/alma-fix/990198383780206441.json index eeeaf1d6c..a7c48bb7c 100644 --- a/src/test/resources/alma-fix/990198383780206441.json +++ b/src/test/resources/alma-fix/990198383780206441.json @@ -80,8 +80,8 @@ "currentLibrary" : "X0001", "currentLocation" : "00", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT017775049", diff --git a/src/test/resources/alma-fix/990199611280206441.json b/src/test/resources/alma-fix/990199611280206441.json index 44cdddd9a..13844a134 100644 --- a/src/test/resources/alma-fix/990199611280206441.json +++ b/src/test/resources/alma-fix/990199611280206441.json @@ -134,8 +134,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53155629910006447&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=990013137900206447", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/990199611280206441:DE-468:53155629910006447#!" @@ -143,8 +143,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/990199611280206441:DE-290:991009656879706445#!" @@ -152,8 +152,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "id" : "http://lobid.org/items/990199611280206441:DE-467:990195668690106462#!" diff --git a/src/test/resources/alma-fix/990202474680206441.json b/src/test/resources/alma-fix/990202474680206441.json index 63eee8427..3b8b70618 100644 --- a/src/test/resources/alma-fix/990202474680206441.json +++ b/src/test/resources/alma-fix/990202474680206441.json @@ -133,8 +133,8 @@ "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", + "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT018129805", @@ -147,8 +147,8 @@ "currentLibrary" : "38-459", "currentLocation" : "38-459-KEL", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", + "id" : "http://lobid.org/organisations/DE-38-459#!", "label" : "Gemeinsame Fachbibliothek Asien / Japanologie" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT018129805", diff --git a/src/test/resources/alma-fix/990204246530206441.json b/src/test/resources/alma-fix/990204246530206441.json index e53bd7306..b6fa58b0b 100644 --- a/src/test/resources/alma-fix/990204246530206441.json +++ b/src/test/resources/alma-fix/990204246530206441.json @@ -178,8 +178,8 @@ "currentLibrary" : "R0001", "currentLocation" : "00000000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-929#!", "isil" : "DE-929", + "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT018295975%22&selectedViewBranchlib=0", @@ -192,8 +192,8 @@ "currentLibrary" : "GL", "currentLocation" : "GL-Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5-39#!", "isil" : "DE-5-39", + "id" : "http://lobid.org/organisations/DE-5-39#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Abteilung für Geschichte der Frühen Neuzeit und Rheinische Landesgeschichte, Bibliothek" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT018295975", @@ -206,8 +206,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018295975&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", diff --git a/src/test/resources/alma-fix/990206060640206441.json b/src/test/resources/alma-fix/990206060640206441.json index b5f17c763..393a19c44 100644 --- a/src/test/resources/alma-fix/990206060640206441.json +++ b/src/test/resources/alma-fix/990206060640206441.json @@ -194,8 +194,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53307086040006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991019532669706442", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990206060640206441:DE-361:53307086040006442#!" @@ -205,8 +205,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53165716350006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=990017647970106463", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/990206060640206441:DE-466:53165716350006463#!" diff --git a/src/test/resources/alma-fix/990207668220206441.json b/src/test/resources/alma-fix/990207668220206441.json index dc7d572a7..1e4ce69e6 100644 --- a/src/test/resources/alma-fix/990207668220206441.json +++ b/src/test/resources/alma-fix/990207668220206441.json @@ -94,8 +94,8 @@ "currentLibrary" : "223", "currentLocation" : "0", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82-223#!", "isil" : "DE-82-223", + "id" : "http://lobid.org/organisations/DE-82-223#!", "label" : "Lehrstuhl für Siedlungswasserwirtschaft und Siedlungsabfallwirtschaft und Institut für Siedlungswasserwirtschaft, Bibliothek" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT003280170&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", diff --git a/src/test/resources/alma-fix/990207856340206441.json b/src/test/resources/alma-fix/990207856340206441.json index bbbc72601..9e355a463 100644 --- a/src/test/resources/alma-fix/990207856340206441.json +++ b/src/test/resources/alma-fix/990207856340206441.json @@ -92,8 +92,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38M#!", "isil" : "DE-38M", + "id" : "http://lobid.org/organisations/DE-38M#!", "label" : "ZB MED - Informationszentrum Lebenswissenschaften, Köln" }, "id" : "http://lobid.org/items/990207856340206441:DE-38M:991008179549706472#!" diff --git a/src/test/resources/alma-fix/990209515320206441.json b/src/test/resources/alma-fix/990209515320206441.json index 4da312410..743cf9746 100644 --- a/src/test/resources/alma-fix/990209515320206441.json +++ b/src/test/resources/alma-fix/990209515320206441.json @@ -105,8 +105,8 @@ "currentLibrary" : "Z9038", "currentLocation" : "MZ8V", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", + "id" : "http://lobid.org/organisations/DE-Kn38#!", "label" : "Hochschule für Musik und Tanz Köln, Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=HT018781534&local_base=MHK01", diff --git a/src/test/resources/alma-fix/990209817770206441.json b/src/test/resources/alma-fix/990209817770206441.json index 1b6696a4a..78ee49592 100644 --- a/src/test/resources/alma-fix/990209817770206441.json +++ b/src/test/resources/alma-fix/990209817770206441.json @@ -169,8 +169,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_GKL", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018811791&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", diff --git a/src/test/resources/alma-fix/990210093550206441.json b/src/test/resources/alma-fix/990210093550206441.json index 194142a66..096847648 100644 --- a/src/test/resources/alma-fix/990210093550206441.json +++ b/src/test/resources/alma-fix/990210093550206441.json @@ -100,8 +100,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&portfolio_pid=5322365740006450&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&rft.mms_id=991002429379706450", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", + "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210093550206441:DE-Bi10:5322365740006450#!" @@ -111,8 +111,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=5336568560006455&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=991004126629706455", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", + "id" : "http://lobid.org/organisations/DE-Due62#!", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, "id" : "http://lobid.org/items/990210093550206441:DE-Due62:5336568560006455#!" @@ -122,8 +122,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=5349051840008056&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=991001381899708056", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", + "id" : "http://lobid.org/organisations/DE-829#!", "label" : "Hochschule Niederrhein, Bibliothek" }, "id" : "http://lobid.org/items/990210093550206441:DE-829:5349051840008056#!" @@ -133,8 +133,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&portfolio_pid=5342681860006468&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&rft.mms_id=991002305499706468", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", + "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, "id" : "http://lobid.org/items/990210093550206441:DE-743:5342681860006468#!" @@ -144,8 +144,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53108868480007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=990010081250507476", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "id" : "http://lobid.org/items/990210093550206441:DE-386:53108868480007476#!" @@ -155,8 +155,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53313002580006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=990022076950106470", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "id" : "http://lobid.org/items/990210093550206441:DE-385:53313002580006470#!" @@ -166,8 +166,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53428417070006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990184689370206446", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/990210093550206441:DE-465:53428417070006446#!" @@ -177,8 +177,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53625317550006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991015595899706449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/990210093550206441:DE-6:53625317550006449#!" @@ -188,8 +188,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53164238820006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=990018348930106463", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/990210093550206441:DE-466:53164238820006463#!" @@ -199,8 +199,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&portfolio_pid=5316850710006456&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&rft.mms_id=991003351479706456", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1010#!", "isil" : "DE-1010", + "id" : "http://lobid.org/organisations/DE-1010#!", "label" : "Westfälische Hochschule Gelsenkirchen Bocholt Recklinghausen, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210093550206441:DE-1010:5316850710006456#!" @@ -208,8 +208,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-51#!", "isil" : "DE-51", + "id" : "http://lobid.org/organisations/DE-51#!", "label" : "Lippische Landesbibliothek - Theologische Bibliothek und Mediothek" }, "id" : "http://lobid.org/items/990210093550206441:DE-51:991006612549706480#!" diff --git a/src/test/resources/alma-fix/990210237770206441.json b/src/test/resources/alma-fix/990210237770206441.json index a4c89833f..9947fe4b3 100644 --- a/src/test/resources/alma-fix/990210237770206441.json +++ b/src/test/resources/alma-fix/990210237770206441.json @@ -89,8 +89,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -103,8 +103,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -117,8 +117,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -131,8 +131,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -145,8 +145,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -159,8 +159,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -173,8 +173,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -187,8 +187,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -201,8 +201,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -215,8 +215,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -229,8 +229,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -243,8 +243,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -257,8 +257,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -271,8 +271,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -285,8 +285,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -299,8 +299,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -313,8 +313,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -327,8 +327,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -341,8 +341,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -355,8 +355,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -369,8 +369,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -383,8 +383,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -397,8 +397,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -411,8 +411,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -425,8 +425,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -439,8 +439,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -453,8 +453,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -467,8 +467,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -481,8 +481,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -495,8 +495,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -509,8 +509,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -523,8 +523,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -537,8 +537,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -551,8 +551,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -565,8 +565,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -579,8 +579,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -593,8 +593,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -607,8 +607,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -621,8 +621,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -635,8 +635,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -649,8 +649,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -663,8 +663,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -677,8 +677,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -691,8 +691,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -705,8 +705,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -719,8 +719,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -733,8 +733,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -747,8 +747,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -761,8 +761,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -775,8 +775,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -789,8 +789,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -803,8 +803,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -817,8 +817,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -831,8 +831,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -845,8 +845,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -859,8 +859,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -873,8 +873,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -887,8 +887,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -901,8 +901,8 @@ "currentLibrary" : "Z9036", "currentLocation" : "FHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1156#!", "isil" : "DE-1156", + "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", @@ -915,8 +915,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534300006457#!" @@ -928,8 +928,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534310006457#!" @@ -941,8 +941,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534240006457#!" @@ -954,8 +954,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534230006457#!" @@ -967,8 +967,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534250006457#!" @@ -980,8 +980,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534390006457#!" @@ -993,8 +993,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534490006457#!" @@ -1006,8 +1006,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534460006457#!" @@ -1019,8 +1019,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534470006457#!" @@ -1032,8 +1032,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534480006457#!" @@ -1045,8 +1045,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534360006457#!" @@ -1058,8 +1058,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534280006457#!" @@ -1071,8 +1071,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534270006457#!" @@ -1084,8 +1084,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534350006457#!" @@ -1097,8 +1097,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534370006457#!" @@ -1110,8 +1110,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534260006457#!" @@ -1123,8 +1123,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534380006457#!" @@ -1136,8 +1136,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534290006457#!" @@ -1149,8 +1149,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534340006457#!" @@ -1162,8 +1162,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534320006457#!" @@ -1175,8 +1175,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534330006457#!" @@ -1188,8 +1188,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534400006457#!" @@ -1201,8 +1201,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534420006457#!" @@ -1214,8 +1214,8 @@ "currentLibrary" : "X5010", "currentLocation" : "MZBSR", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534430006457#!" @@ -1227,8 +1227,8 @@ "currentLibrary" : "X5010", "currentLocation" : "B2AW8", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1972#!", "isil" : "DE-1972", + "id" : "http://lobid.org/organisations/DE-1972#!", "label" : "Robert Schumann Hochschule, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990210237770206441:DE-1972:237534510006457#!" diff --git a/src/test/resources/alma-fix/990210285400206441.json b/src/test/resources/alma-fix/990210285400206441.json index 0a0c7e777..f99196727 100644 --- a/src/test/resources/alma-fix/990210285400206441.json +++ b/src/test/resources/alma-fix/990210285400206441.json @@ -125,8 +125,8 @@ "currentLibrary" : "Z9038", "currentLocation" : "MZ2V", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn38#!", "isil" : "DE-Kn38", + "id" : "http://lobid.org/organisations/DE-Kn38#!", "label" : "Hochschule für Musik und Tanz Köln, Bibliothek" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=HT018857620&local_base=MHK01", diff --git a/src/test/resources/alma-fix/990210312460206441.json b/src/test/resources/alma-fix/990210312460206441.json index 16a894d8c..05098be8e 100644 --- a/src/test/resources/alma-fix/990210312460206441.json +++ b/src/test/resources/alma-fix/990210312460206441.json @@ -150,8 +150,8 @@ "currentLibrary" : "BR004", "currentLocation" : "S", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm3-4#!", "isil" : "DE-Bm3-4", + "id" : "http://lobid.org/organisations/DE-Bm3-4#!", "label" : "Bibliothek des Ruhrgebiets, Dokumentation Ruhrgebiet" }, "id" : "http://lobid.org/items/990210312460206441:DE-Bm3-4:2312535990007508#!" diff --git a/src/test/resources/alma-fix/990210781980206441.json b/src/test/resources/alma-fix/990210781980206441.json index 8880c31b3..aa25f9d2c 100644 --- a/src/test/resources/alma-fix/990210781980206441.json +++ b/src/test/resources/alma-fix/990210781980206441.json @@ -105,8 +105,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBM/openurl?u.ignore_date_coverage=true&portfolio_pid=53140914040006472&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBM/openurl?u.ignore_date_coverage=true&rft.mms_id=991009334749706472", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38M#!", "isil" : "DE-38M", + "id" : "http://lobid.org/organisations/DE-38M#!", "label" : "ZB MED - Informationszentrum Lebenswissenschaften, Köln" }, "id" : "http://lobid.org/items/990210781980206441:DE-38M:53140914040006472#!" diff --git a/src/test/resources/alma-fix/990210950050206441.json b/src/test/resources/alma-fix/990210950050206441.json index 83a7c87c8..0c4ab4744 100644 --- a/src/test/resources/alma-fix/990210950050206441.json +++ b/src/test/resources/alma-fix/990210950050206441.json @@ -196,8 +196,8 @@ "currentLibrary" : "X0001", "currentLocation" : "00", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT018924091", diff --git a/src/test/resources/alma-fix/990213367870206441.json b/src/test/resources/alma-fix/990213367870206441.json index 272bb0e94..6058daa59 100644 --- a/src/test/resources/alma-fix/990213367870206441.json +++ b/src/test/resources/alma-fix/990213367870206441.json @@ -124,8 +124,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209196500006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991005259779706445", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/990213367870206441:DE-290:53209196500006445#!" diff --git a/src/test/resources/alma-fix/990217478660206441.json b/src/test/resources/alma-fix/990217478660206441.json index c27a13a3b..71c602aa8 100644 --- a/src/test/resources/alma-fix/990217478660206441.json +++ b/src/test/resources/alma-fix/990217478660206441.json @@ -245,8 +245,8 @@ "currentLibrary" : "W0001", "currentLocation" : "91", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", @@ -259,8 +259,8 @@ "currentLibrary" : "W0001", "currentLocation" : "91", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", @@ -273,8 +273,8 @@ "currentLibrary" : "W0001", "currentLocation" : "91", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", @@ -287,8 +287,8 @@ "currentLibrary" : "W0001", "currentLocation" : "20", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", @@ -301,8 +301,8 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", @@ -315,8 +315,8 @@ "currentLibrary" : "W0001", "currentLocation" : "21", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", @@ -329,8 +329,8 @@ "currentLibrary" : "W0001", "currentLocation" : "91", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", @@ -343,8 +343,8 @@ "currentLibrary" : "W0001", "currentLocation" : "91", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", @@ -357,8 +357,8 @@ "currentLibrary" : "W0001", "currentLocation" : "91", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", @@ -371,8 +371,8 @@ "currentLibrary" : "W0001", "currentLocation" : "91", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", @@ -385,8 +385,8 @@ "currentLibrary" : "W0001", "currentLocation" : "91", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", @@ -399,8 +399,8 @@ "currentLibrary" : "W0001", "currentLocation" : "91", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", @@ -413,8 +413,8 @@ "currentLibrary" : "W0001", "currentLocation" : "91", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", @@ -427,8 +427,8 @@ "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", + "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT019246898%22", @@ -441,8 +441,8 @@ "currentLibrary" : "F0001", "currentLocation" : "00", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -455,8 +455,8 @@ "currentLibrary" : "60", "currentLocation" : "CM_Freih", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", + "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT019246898%22", @@ -469,8 +469,8 @@ "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", + "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT019246898", @@ -483,8 +483,8 @@ "currentLibrary" : "KRW", "currentLocation" : "KRW_Public", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", + "id" : "http://lobid.org/organisations/DE-829#!", "label" : "Hochschule Niederrhein, Bibliothek" }, "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT019246898%22", @@ -497,8 +497,8 @@ "currentLibrary" : "DT", "currentLocation" : "DT_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", + "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT019246898%22", @@ -511,8 +511,8 @@ "currentLibrary" : "211", "currentLocation" : "0", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82-211#!", "isil" : "DE-82-211", + "id" : "http://lobid.org/organisations/DE-82-211#!", "label" : "Lehrstuhl und Institut für Kunstgeschichte, Bibliothek" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT019246898&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", @@ -525,8 +525,8 @@ "currentLibrary" : "BAB", "currentLocation" : "Freihand", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019246898%22", @@ -539,8 +539,8 @@ "currentLibrary" : "RL001", "currentLocation" : "FRHKO", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -553,8 +553,8 @@ "currentLibrary" : "38", "currentLocation" : "38-SAB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT019246898", @@ -567,8 +567,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019246898&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -581,8 +581,8 @@ "currentLibrary" : "S0001", "currentLocation" : "PB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT019246898", @@ -595,8 +595,8 @@ "currentLibrary" : "S0001", "currentLocation" : "PB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT019246898", @@ -609,8 +609,8 @@ "currentLibrary" : "P0001", "currentLocation" : "51", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019246898", @@ -621,8 +621,8 @@ "currentLibrary" : "RL001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", @@ -633,8 +633,8 @@ "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019246898", diff --git a/src/test/resources/alma-fix/990218189790206441.json b/src/test/resources/alma-fix/990218189790206441.json index c110599e3..8f9e15f43 100644 --- a/src/test/resources/alma-fix/990218189790206441.json +++ b/src/test/resources/alma-fix/990218189790206441.json @@ -110,8 +110,8 @@ "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", + "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019317250", @@ -124,8 +124,8 @@ "currentLibrary" : "OAW", "currentLocation" : "OAW_BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990218189790206441:DE-294:23109147250006471#!" diff --git a/src/test/resources/alma-fix/990219911120206441.json b/src/test/resources/alma-fix/990219911120206441.json index 77a2659ad..b9d88195b 100644 --- a/src/test/resources/alma-fix/990219911120206441.json +++ b/src/test/resources/alma-fix/990219911120206441.json @@ -84,8 +84,8 @@ "currentLibrary" : "UB", "currentLocation" : "UB_GMAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990219911120206441:DE-294:23179686150006471#!" diff --git a/src/test/resources/alma-fix/990220027540206441.json b/src/test/resources/alma-fix/990220027540206441.json index b05fd27d5..e49194869 100644 --- a/src/test/resources/alma-fix/990220027540206441.json +++ b/src/test/resources/alma-fix/990220027540206441.json @@ -85,8 +85,8 @@ "currentLibrary" : "AJ", "currentLocation" : "AJ--Mag", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5-141#!", "isil" : "DE-5-141", + "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019496555", diff --git a/src/test/resources/alma-fix/990223521400206441.json b/src/test/resources/alma-fix/990223521400206441.json index 3ed36e4dd..fc95dcd61 100644 --- a/src/test/resources/alma-fix/990223521400206441.json +++ b/src/test/resources/alma-fix/990223521400206441.json @@ -232,8 +232,8 @@ "currentLibrary" : "W0001", "currentLocation" : "75", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019631849", @@ -246,8 +246,8 @@ "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", + "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT019631849%22", @@ -260,8 +260,8 @@ "currentLibrary" : "I5002", "currentLocation" : "IS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Hag4-2#!", "isil" : "DE-Hag4-2", + "id" : "http://lobid.org/organisations/DE-Hag4-2#!", "label" : "Fachhochschule Südwestfalen, Fachbibliothek Iserlohn" }, "id" : "http://lobid.org/items/990223521400206441:DE-Hag4-2:2360781850006461#!" @@ -273,8 +273,8 @@ "currentLibrary" : "I5002", "currentLocation" : "IS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Hag4-2#!", "isil" : "DE-Hag4-2", + "id" : "http://lobid.org/organisations/DE-Hag4-2#!", "label" : "Fachhochschule Südwestfalen, Fachbibliothek Iserlohn" }, "id" : "http://lobid.org/items/990223521400206441:DE-Hag4-2:2360781840006461#!" @@ -286,8 +286,8 @@ "currentLibrary" : "JUE", "currentLocation" : "JUE_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/990223521400206441:DE-A96:2384742870006444#!" @@ -299,8 +299,8 @@ "currentLibrary" : "JUE", "currentLocation" : "JUE_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/990223521400206441:DE-A96:2384742860006444#!" @@ -312,8 +312,8 @@ "currentLibrary" : "RHB", "currentLocation" : "RHB_FH", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", @@ -326,8 +326,8 @@ "currentLibrary" : "STA", "currentLocation" : "STA_FH", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", @@ -340,8 +340,8 @@ "currentLibrary" : "STA", "currentLocation" : "STA_FH", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", @@ -354,8 +354,8 @@ "currentLibrary" : "STA", "currentLocation" : "STA_FH", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", @@ -368,8 +368,8 @@ "currentLibrary" : "LE", "currentLocation" : "LE_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", + "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT019631849%22", @@ -382,8 +382,8 @@ "currentLibrary" : "S7", "currentLocation" : "Freihand", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", @@ -396,8 +396,8 @@ "currentLibrary" : "0", "currentLocation" : "0-Mag", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019631849", @@ -410,8 +410,8 @@ "currentLibrary" : "D0001", "currentLocation" : "D05", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -424,8 +424,8 @@ "currentLibrary" : "D0001", "currentLocation" : "D05", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -438,8 +438,8 @@ "currentLibrary" : "D0001", "currentLocation" : "D05", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -452,8 +452,8 @@ "currentLibrary" : "E0001", "currentLocation" : "E33", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -466,8 +466,8 @@ "currentLibrary" : "E0001", "currentLocation" : "E33", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -480,8 +480,8 @@ "currentLibrary" : "D0001", "currentLocation" : "D01", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -494,8 +494,8 @@ "currentLibrary" : "E0001", "currentLocation" : "E33", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -508,8 +508,8 @@ "currentLibrary" : "E0001", "currentLocation" : "E33", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -522,8 +522,8 @@ "currentLibrary" : "38", "currentLocation" : "38-SAB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT019631849", @@ -536,8 +536,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -550,8 +550,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_LBM", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -564,8 +564,8 @@ "currentLibrary" : "P0001", "currentLocation" : "41", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", @@ -578,8 +578,8 @@ "currentLibrary" : "P0001", "currentLocation" : "41", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", @@ -590,8 +590,8 @@ "currentLibrary" : "P0001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", diff --git a/src/test/resources/alma-fix/990225056670206441.json b/src/test/resources/alma-fix/990225056670206441.json index d38942f2d..57958f604 100644 --- a/src/test/resources/alma-fix/990225056670206441.json +++ b/src/test/resources/alma-fix/990225056670206441.json @@ -87,8 +87,8 @@ "currentLibrary" : "501", "currentLocation" : "0", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82-501#!", "isil" : "DE-82-501", + "id" : "http://lobid.org/organisations/DE-82-501#!", "label" : "Lehrstuhl für Bildverarbeitung, Bibliothek" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT003907920&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", diff --git a/src/test/resources/alma-fix/990226465800206441.json b/src/test/resources/alma-fix/990226465800206441.json index 9545962f3..24fa111fb 100644 --- a/src/test/resources/alma-fix/990226465800206441.json +++ b/src/test/resources/alma-fix/990226465800206441.json @@ -111,8 +111,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBM/openurl?u.ignore_date_coverage=true&portfolio_pid=53140965120006472&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBM/openurl?u.ignore_date_coverage=true&rft.mms_id=991008847989706472", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38M#!", "isil" : "DE-38M", + "id" : "http://lobid.org/organisations/DE-38M#!", "label" : "ZB MED - Informationszentrum Lebenswissenschaften, Köln" }, "id" : "http://lobid.org/items/990226465800206441:DE-38M:53140965120006472#!" diff --git a/src/test/resources/alma-fix/990363946050206441.json b/src/test/resources/alma-fix/990363946050206441.json index 7099f4bb9..059fb7da6 100644 --- a/src/test/resources/alma-fix/990363946050206441.json +++ b/src/test/resources/alma-fix/990363946050206441.json @@ -131,8 +131,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209365020006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991009604019706445", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/990363946050206441:DE-290:53209365020006445#!" @@ -142,8 +142,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53319452280006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991044884199706467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/990363946050206441:DE-5:53319452280006467#!" @@ -153,8 +153,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53319452300006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991044884199706467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/990363946050206441:DE-5:53319452300006467#!" diff --git a/src/test/resources/alma-fix/990365842280206441.json b/src/test/resources/alma-fix/990365842280206441.json index 52ef86361..5a418d491 100644 --- a/src/test/resources/alma-fix/990365842280206441.json +++ b/src/test/resources/alma-fix/990365842280206441.json @@ -102,8 +102,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/990365842280206441:DE-5:53706734800006441#!" @@ -113,8 +113,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1010#!", "isil" : "DE-1010", + "id" : "http://lobid.org/organisations/DE-1010#!", "label" : "Westfälische Hochschule Gelsenkirchen Bocholt Recklinghausen, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990365842280206441:DE-1010:53706734800006441#!" @@ -124,8 +124,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-836#!", "isil" : "DE-836", + "id" : "http://lobid.org/organisations/DE-836#!", "label" : "FH Münster, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990365842280206441:DE-836:53706734800006441#!" @@ -135,8 +135,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/990365842280206441:DE-6:53706734800006441#!" @@ -146,8 +146,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/990365842280206441:DE-361:53706734800006441#!" @@ -157,8 +157,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", + "id" : "http://lobid.org/organisations/DE-Due62#!", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, "id" : "http://lobid.org/items/990365842280206441:DE-Due62:53706734800006441#!" @@ -168,8 +168,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "id" : "http://lobid.org/items/990365842280206441:DE-708:53706734800006441#!" @@ -179,8 +179,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "id" : "http://lobid.org/items/990365842280206441:DE-1044:53706734800006441#!" @@ -190,8 +190,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", + "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, "id" : "http://lobid.org/items/990365842280206441:DE-Dm13:53706734800006441#!" @@ -201,8 +201,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/990365842280206441:DE-294:53706734800006441#!" @@ -212,8 +212,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_KHO/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_KHO/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1032#!", "isil" : "DE-1032", + "id" : "http://lobid.org/organisations/DE-1032#!", "label" : "Katholische Hochschule Nordrhein-Westfalen (katho), Hochschulbibliothek" }, "id" : "http://lobid.org/items/990365842280206441:DE-1032:53706734800006441#!" @@ -223,8 +223,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/990365842280206441:DE-61:53706734800006441#!" @@ -234,8 +234,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53312504210006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=990025573850106470", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "id" : "http://lobid.org/items/990365842280206441:DE-385:53312504210006470#!" diff --git a/src/test/resources/alma-fix/990366394400206441.json b/src/test/resources/alma-fix/990366394400206441.json index 791e2786d..da6bf01b9 100644 --- a/src/test/resources/alma-fix/990366394400206441.json +++ b/src/test/resources/alma-fix/990366394400206441.json @@ -70,8 +70,8 @@ "currentLibrary" : "HLS", "currentLocation" : "HLS_HSMAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020446683&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", diff --git a/src/test/resources/alma-fix/990367731740206441.json b/src/test/resources/alma-fix/990367731740206441.json index 09c547033..524880d90 100644 --- a/src/test/resources/alma-fix/990367731740206441.json +++ b/src/test/resources/alma-fix/990367731740206441.json @@ -252,8 +252,8 @@ "currentLibrary" : "R5001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1116#!", "isil" : "DE-1116", + "id" : "http://lobid.org/organisations/DE-1116#!", "label" : "Hochschule für Wirtschaft und Gesellschaft Ludwigshafen, Bibliothek" }, "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID=HT020579803", @@ -264,8 +264,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=5349112190008056&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=991006234639708056", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", + "id" : "http://lobid.org/organisations/DE-829#!", "label" : "Hochschule Niederrhein, Bibliothek" }, "id" : "http://lobid.org/items/990367731740206441:DE-829:5349112190008056#!" diff --git a/src/test/resources/alma-fix/990367761810206441.json b/src/test/resources/alma-fix/990367761810206441.json index c9c727163..b9b275362 100644 --- a/src/test/resources/alma-fix/990367761810206441.json +++ b/src/test/resources/alma-fix/990367761810206441.json @@ -142,8 +142,8 @@ "currentLibrary" : "38-459", "currentLocation" : "38-459-FHM", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", + "id" : "http://lobid.org/organisations/DE-38-459#!", "label" : "Gemeinsame Fachbibliothek Asien / Japanologie" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT020582812", diff --git a/src/test/resources/alma-fix/990368743120206441.json b/src/test/resources/alma-fix/990368743120206441.json index aa9d12e25..0b6073d03 100644 --- a/src/test/resources/alma-fix/990368743120206441.json +++ b/src/test/resources/alma-fix/990368743120206441.json @@ -71,8 +71,8 @@ "currentLibrary" : "HLS", "currentLocation" : "HLS_HSMAG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020681018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", diff --git a/src/test/resources/alma-fix/991002103529706485.json b/src/test/resources/alma-fix/991002103529706485.json index d0432b967..9e7fc1ebd 100644 --- a/src/test/resources/alma-fix/991002103529706485.json +++ b/src/test/resources/alma-fix/991002103529706485.json @@ -90,8 +90,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=5340242020006485&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=991002103529706485", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-836#!", "isil" : "DE-836", + "id" : "http://lobid.org/organisations/DE-836#!", "label" : "FH Münster, Hochschulbibliothek" }, "id" : "http://lobid.org/items/991002103529706485:DE-836:5340242020006485#!" diff --git a/src/test/resources/alma-fix/991005935279706485.json b/src/test/resources/alma-fix/991005935279706485.json index 76b07dc1a..3b42a34e8 100644 --- a/src/test/resources/alma-fix/991005935279706485.json +++ b/src/test/resources/alma-fix/991005935279706485.json @@ -272,8 +272,8 @@ "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], "heldBy" : { - "id" : "http://lobid.org/organisations/DE-836#!", "isil" : "DE-836", + "id" : "http://lobid.org/organisations/DE-836#!", "label" : "FH Münster, Hochschulbibliothek" }, "id" : "http://lobid.org/items/991005935279706485:DE-836:991005935279706485#!" diff --git a/src/test/resources/alma-fix/99370678063606441.json b/src/test/resources/alma-fix/99370678063606441.json index 954a62ac4..2c118d07d 100644 --- a/src/test/resources/alma-fix/99370678063606441.json +++ b/src/test/resources/alma-fix/99370678063606441.json @@ -141,8 +141,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53158240510006447&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=9915971105106447", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/99370678063606441:DE-468:53158240510006447#!" @@ -152,8 +152,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53157563970006447&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=9915971105106447", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/99370678063606441:DE-468:53157563970006447#!" @@ -163,8 +163,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5328313150006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998470474006478", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", + "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, "id" : "http://lobid.org/items/99370678063606441:DE-Kn41:5328313150006478#!" @@ -174,8 +174,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5327889980006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998470474006478", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", + "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, "id" : "http://lobid.org/items/99370678063606441:DE-Kn41:5327889980006478#!" @@ -185,8 +185,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5327821250006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998470474006478", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", + "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, "id" : "http://lobid.org/items/99370678063606441:DE-Kn41:5327821250006478#!" @@ -196,8 +196,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=5336193550006485&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=991006386478506485", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-836#!", "isil" : "DE-836", + "id" : "http://lobid.org/organisations/DE-836#!", "label" : "FH Münster, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-836:5336193550006485#!" @@ -207,8 +207,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FSW/openurl?u.ignore_date_coverage=true&portfolio_pid=5385225080006461&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FSW/openurl?u.ignore_date_coverage=true&rft.mms_id=9916219546106461", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Hag4#!", "isil" : "DE-Hag4", + "id" : "http://lobid.org/organisations/DE-Hag4#!", "label" : "Fachhochschule Südwestfalen, Fachbibliothek Hagen, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-Hag4:5385225080006461#!" @@ -218,8 +218,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FSW/openurl?u.ignore_date_coverage=true&portfolio_pid=5382132500006461&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FSW/openurl?u.ignore_date_coverage=true&rft.mms_id=9916219546106461", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Hag4#!", "isil" : "DE-Hag4", + "id" : "http://lobid.org/organisations/DE-Hag4#!", "label" : "Fachhochschule Südwestfalen, Fachbibliothek Hagen, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-Hag4:5382132500006461#!" @@ -229,8 +229,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53137417580006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "id" : "http://lobid.org/items/99370678063606441:DE-708:53137417580006464#!" @@ -240,8 +240,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53149555660006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "id" : "http://lobid.org/items/99370678063606441:DE-708:53149555660006464#!" @@ -251,8 +251,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53141137810006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "id" : "http://lobid.org/items/99370678063606441:DE-708:53141137810006464#!" @@ -262,8 +262,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53153104540006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "id" : "http://lobid.org/items/99370678063606441:DE-708:53153104540006464#!" @@ -273,8 +273,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53137729250006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "id" : "http://lobid.org/items/99370678063606441:DE-708:53137729250006464#!" @@ -284,8 +284,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&portfolio_pid=5385583960006444&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&rft.mms_id=991005821828906444", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370678063606441:DE-A96:5385583960006444#!" @@ -295,8 +295,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&portfolio_pid=5324315100006450&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&rft.mms_id=991005482849106450", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", + "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-Bi10:5324315100006450#!" @@ -306,8 +306,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&portfolio_pid=5318214380006454&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&rft.mms_id=991000410720206454", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", + "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-Bm40:5318214380006454#!" @@ -317,8 +317,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=5352012540006452&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=991005694326706452", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "id" : "http://lobid.org/items/99370678063606441:DE-1044:5352012540006452#!" @@ -328,8 +328,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=5337268030006455&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=991005617479506455", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", + "id" : "http://lobid.org/organisations/DE-Due62#!", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, "id" : "http://lobid.org/items/99370678063606441:DE-Due62:5337268030006455#!" @@ -339,8 +339,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HHL/openurl?u.ignore_date_coverage=true&portfolio_pid=5331232610006482&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HHL/openurl?u.ignore_date_coverage=true&rft.mms_id=991001196541406482", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-583#!", "isil" : "DE-583", + "id" : "http://lobid.org/organisations/DE-583#!", "label" : "SRH Hochschule für Logistik und Wirtschaft Hamm, Bibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-583:5331232610006482#!" @@ -350,8 +350,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=5349662860008056&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=991008986786508056", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", + "id" : "http://lobid.org/organisations/DE-829#!", "label" : "Hochschule Niederrhein, Bibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-829:5349662860008056#!" @@ -361,8 +361,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&portfolio_pid=5340938590006468&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&rft.mms_id=991004336005906468", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", + "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, "id" : "http://lobid.org/items/99370678063606441:DE-743:5340938590006468#!" @@ -372,8 +372,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RHW/openurl?u.ignore_date_coverage=true&portfolio_pid=5319401000006479&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RHW/openurl?u.ignore_date_coverage=true&rft.mms_id=991002750769406479", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1383#!", "isil" : "DE-1383", + "id" : "http://lobid.org/organisations/DE-1383#!", "label" : "Hochschule Rhein-Waal, Bibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-1383:5319401000006479#!" @@ -383,8 +383,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RHW/openurl?u.ignore_date_coverage=true&portfolio_pid=5319505870006479&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RHW/openurl?u.ignore_date_coverage=true&rft.mms_id=991002750769406479", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1383#!", "isil" : "DE-1383", + "id" : "http://lobid.org/organisations/DE-1383#!", "label" : "Hochschule Rhein-Waal, Bibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-1383:5319505870006479#!" @@ -394,8 +394,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_EVH/openurl?u.ignore_date_coverage=true&portfolio_pid=53101634200006483&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_EVH/openurl?u.ignore_date_coverage=true&rft.mms_id=991001317956106483", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-956#!", "isil" : "DE-956", + "id" : "http://lobid.org/organisations/DE-956#!", "label" : "Evangelische Hochschule Rheinland-Westfalen-Lippe, Bibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-956:53101634200006483#!" @@ -405,8 +405,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=5323323830006453&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=991004112696706453", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1393#!", "isil" : "DE-1393", + "id" : "http://lobid.org/organisations/DE-1393#!", "label" : "Hochschule Ruhr West, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-1393:5323323830006453#!" @@ -416,8 +416,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HGB/openurl?u.ignore_date_coverage=true&portfolio_pid=5320046120006481&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HGB/openurl?u.ignore_date_coverage=true&rft.mms_id=991000893367206481", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1866#!", "isil" : "DE-1866", + "id" : "http://lobid.org/organisations/DE-1866#!", "label" : "Hochschule für Gesundheit, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-1866:5320046120006481#!" @@ -427,8 +427,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HGB/openurl?u.ignore_date_coverage=true&portfolio_pid=5320026740006481&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HGB/openurl?u.ignore_date_coverage=true&rft.mms_id=991000893367206481", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1866#!", "isil" : "DE-1866", + "id" : "http://lobid.org/organisations/DE-1866#!", "label" : "Hochschule für Gesundheit, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-1866:5320026740006481#!" @@ -438,8 +438,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_KHO/openurl?u.ignore_date_coverage=true&portfolio_pid=5331714390006474&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_KHO/openurl?u.ignore_date_coverage=true&rft.mms_id=991007151365906474", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1032#!", "isil" : "DE-1032", + "id" : "http://lobid.org/organisations/DE-1032#!", "label" : "Katholische Hochschule Nordrhein-Westfalen (katho), Hochschulbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-1032:5331714390006474#!" @@ -449,8 +449,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_KHO/openurl?u.ignore_date_coverage=true&portfolio_pid=5331475990006474&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_KHO/openurl?u.ignore_date_coverage=true&rft.mms_id=991007151365906474", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1032#!", "isil" : "DE-1032", + "id" : "http://lobid.org/organisations/DE-1032#!", "label" : "Katholische Hochschule Nordrhein-Westfalen (katho), Hochschulbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-1032:5331475990006474#!" @@ -460,8 +460,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53119227590007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022008758307476", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "id" : "http://lobid.org/items/99370678063606441:DE-386:53119227590007476#!" @@ -471,8 +471,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53109900770007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022008758307476", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "id" : "http://lobid.org/items/99370678063606441:DE-386:53109900770007476#!" @@ -482,8 +482,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53109489700007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022008758307476", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "id" : "http://lobid.org/items/99370678063606441:DE-386:53109489700007476#!" @@ -493,8 +493,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53266502540006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991025967647406448", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "id" : "http://lobid.org/items/99370678063606441:DE-82:53266502540006448#!" @@ -504,8 +504,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53265762980006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991025967647406448", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "id" : "http://lobid.org/items/99370678063606441:DE-82:53265762980006448#!" @@ -515,8 +515,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&portfolio_pid=5352678550006477&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&rft.mms_id=991008476427206477", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-832:5352678550006477#!" @@ -526,8 +526,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53206901250006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013481417006445", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/99370678063606441:DE-290:53206901250006445#!" @@ -537,8 +537,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53230941160006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013481417006445", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/99370678063606441:DE-290:53230941160006445#!" @@ -548,8 +548,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53216211500006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013481417006445", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/99370678063606441:DE-290:53216211500006445#!" @@ -559,8 +559,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53313992860006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927778655706470", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "id" : "http://lobid.org/items/99370678063606441:DE-385:53313992860006470#!" @@ -570,8 +570,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53314230740006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927778655706470", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "id" : "http://lobid.org/items/99370678063606441:DE-385:53314230740006470#!" @@ -581,8 +581,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53320721620006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180392606467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99370678063606441:DE-5:53320721620006467#!" @@ -592,8 +592,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53349719870006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180392606467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99370678063606441:DE-5:53349719870006467#!" @@ -603,8 +603,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53320689660006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180392606467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99370678063606441:DE-5:53320689660006467#!" @@ -614,8 +614,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53305968290006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025806681206442", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/99370678063606441:DE-361:53305968290006442#!" @@ -625,8 +625,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53305849380006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025806681206442", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/99370678063606441:DE-361:53305849380006442#!" @@ -636,8 +636,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53190076510006471&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=991027808804206471", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-294:53190076510006471#!" @@ -647,8 +647,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53452984420006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/99370678063606441:DE-465:53452984420006446#!" @@ -658,8 +658,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53441010540006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/99370678063606441:DE-465:53441010540006446#!" @@ -669,8 +669,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53455804610006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/99370678063606441:DE-465:53455804610006446#!" @@ -680,8 +680,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53333893140006443&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=9947406450506443", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/99370678063606441:DE-61:53333893140006443#!" @@ -691,8 +691,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53334490330006443&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=9947406450506443", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/99370678063606441:DE-61:53334490330006443#!" @@ -702,8 +702,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53358210520006443&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=9947406450506443", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/99370678063606441:DE-61:53358210520006443#!" @@ -713,8 +713,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UKO/openurl?u.ignore_date_coverage=true&portfolio_pid=5337281000008057&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UKO/openurl?u.ignore_date_coverage=true&rft.mms_id=9910060661008057", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kob7#!", "isil" : "DE-Kob7", + "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, "id" : "http://lobid.org/items/99370678063606441:DE-Kob7:5337281000008057#!" @@ -724,8 +724,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53335573230006476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=991055599442706476", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/99370678063606441:DE-38:53335573230006476#!" @@ -735,8 +735,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53333991750006476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=991055599442706476", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/99370678063606441:DE-38:53333991750006476#!" @@ -746,8 +746,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627078260006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-6:53627078260006449#!" @@ -757,8 +757,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53626936090006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-6:53626936090006449#!" @@ -768,8 +768,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627921000006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-6:53627921000006449#!" @@ -779,8 +779,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53673256170006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-6:53673256170006449#!" @@ -790,8 +790,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=5396251040006462&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99204507541206462", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "id" : "http://lobid.org/items/99370678063606441:DE-467:5396251040006462#!" @@ -801,8 +801,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53109067080006462&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99204507541206462", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "id" : "http://lobid.org/items/99370678063606441:DE-467:53109067080006462#!" @@ -812,8 +812,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53159673220006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925013376606463", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/99370678063606441:DE-466:53159673220006463#!" @@ -823,8 +823,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53160920940006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925013376606463", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/99370678063606441:DE-466:53160920940006463#!" @@ -834,8 +834,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53175909640006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925013376606463", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/99370678063606441:DE-466:53175909640006463#!" @@ -845,8 +845,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&portfolio_pid=5317399500006456&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&rft.mms_id=991006477834606456", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1010#!", "isil" : "DE-1010", + "id" : "http://lobid.org/organisations/DE-1010#!", "label" : "Westfälische Hochschule Gelsenkirchen Bocholt Recklinghausen, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99370678063606441:DE-1010:5317399500006456#!" @@ -856,8 +856,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBM/openurl?u.ignore_date_coverage=true&portfolio_pid=53139561080006472&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBM/openurl?u.ignore_date_coverage=true&rft.mms_id=991013864255706472", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38M#!", "isil" : "DE-38M", + "id" : "http://lobid.org/organisations/DE-38M#!", "label" : "ZB MED - Informationszentrum Lebenswissenschaften, Köln" }, "id" : "http://lobid.org/items/99370678063606441:DE-38M:53139561080006472#!" diff --git a/src/test/resources/alma-fix/99370682219806441.json b/src/test/resources/alma-fix/99370682219806441.json index eda11a701..da7204856 100644 --- a/src/test/resources/alma-fix/99370682219806441.json +++ b/src/test/resources/alma-fix/99370682219806441.json @@ -169,8 +169,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5329392030006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998475174506478", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", + "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, "id" : "http://lobid.org/items/99370682219806441:DE-Kn41:5329392030006478#!" @@ -180,8 +180,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53141951140006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381842456506464", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "id" : "http://lobid.org/items/99370682219806441:DE-708:53141951140006464#!" @@ -191,8 +191,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53118085990007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022039329107476", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "id" : "http://lobid.org/items/99370682219806441:DE-386:53118085990007476#!" @@ -202,8 +202,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53346185050006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045255047006467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99370682219806441:DE-5:53346185050006467#!" @@ -213,8 +213,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53346309900006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045255047006467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99370682219806441:DE-5:53346309900006467#!" @@ -224,8 +224,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53439629560006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206357887606446", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/99370682219806441:DE-465:53439629560006446#!" @@ -235,8 +235,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53354962310006443&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=9947420472406443", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/99370682219806441:DE-61:53354962310006443#!" @@ -246,8 +246,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53629253910006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044842060806449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370682219806441:DE-6:53629253910006449#!" @@ -257,8 +257,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53173949130006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925047386306463", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/99370682219806441:DE-466:53173949130006463#!" diff --git a/src/test/resources/alma-fix/99370690532406441.json b/src/test/resources/alma-fix/99370690532406441.json index 9ebc436d6..8714a3673 100644 --- a/src/test/resources/alma-fix/99370690532406441.json +++ b/src/test/resources/alma-fix/99370690532406441.json @@ -78,8 +78,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53157449900006447&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=9915970815606447", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/99370690532406441:DE-468:53157449900006447#!" @@ -89,8 +89,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53265843380006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991025967988406448", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "id" : "http://lobid.org/items/99370690532406441:DE-82:53265843380006448#!" @@ -100,8 +100,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53208220140006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013485396506445", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/99370690532406441:DE-290:53208220140006445#!" @@ -111,8 +111,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53320611800006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180157206467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99370690532406441:DE-5:53320611800006467#!" @@ -122,8 +122,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53317006550006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025806297206442", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/99370690532406441:DE-361:53317006550006442#!" @@ -133,8 +133,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53305666740006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025806297206442", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/99370690532406441:DE-361:53305666740006442#!" @@ -144,8 +144,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53185697690006471&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=991027794842406471", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/99370690532406441:DE-294:53185697690006471#!" @@ -155,8 +155,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53336433820006476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=991055606522306476", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/99370690532406441:DE-38:53336433820006476#!" @@ -166,8 +166,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53653301110006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044925061406449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370690532406441:DE-6:53653301110006449#!" @@ -177,8 +177,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=5397076270006462&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99204510098106462", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "id" : "http://lobid.org/items/99370690532406441:DE-467:5397076270006462#!" @@ -188,8 +188,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53161142230006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925018040106463", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/99370690532406441:DE-466:53161142230006463#!" diff --git a/src/test/resources/alma-fix/99370694196806441.json b/src/test/resources/alma-fix/99370694196806441.json index 340229fbb..85103175e 100644 --- a/src/test/resources/alma-fix/99370694196806441.json +++ b/src/test/resources/alma-fix/99370694196806441.json @@ -149,8 +149,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5327764320006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998470177306478", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", + "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, "id" : "http://lobid.org/items/99370694196806441:DE-Kn41:5327764320006478#!" @@ -160,8 +160,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53139375350006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381835239006464", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "id" : "http://lobid.org/items/99370694196806441:DE-708:53139375350006464#!" @@ -171,8 +171,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53118379390007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022040085807476", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "id" : "http://lobid.org/items/99370694196806441:DE-386:53118379390007476#!" @@ -182,8 +182,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53333829220006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045220310806467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99370694196806441:DE-5:53333829220006467#!" @@ -193,8 +193,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53440125350006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206359543306446", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/99370694196806441:DE-465:53440125350006446#!" @@ -204,8 +204,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53354279680006443&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=9947418435006443", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/99370694196806441:DE-61:53354279680006443#!" @@ -215,8 +215,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53630052410006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044844301206449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370694196806441:DE-6:53630052410006449#!" @@ -226,8 +226,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53174376380006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925048677906463", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/99370694196806441:DE-466:53174376380006463#!" diff --git a/src/test/resources/alma-fix/99370699582506441.json b/src/test/resources/alma-fix/99370699582506441.json index 93e02a6b7..f20d012f9 100644 --- a/src/test/resources/alma-fix/99370699582506441.json +++ b/src/test/resources/alma-fix/99370699582506441.json @@ -101,8 +101,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5329531840006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998475736206478", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", + "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, "id" : "http://lobid.org/items/99370699582506441:DE-Kn41:5329531840006478#!" @@ -112,8 +112,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53136878890006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381827500706464", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "id" : "http://lobid.org/items/99370699582506441:DE-708:53136878890006464#!" @@ -123,8 +123,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53355917830006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045280382606467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99370699582506441:DE-5:53355917830006467#!" @@ -134,8 +134,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53436686710006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206348251006446", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/99370699582506441:DE-465:53436686710006446#!" @@ -145,8 +145,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53630816910006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044846530706449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370699582506441:DE-6:53630816910006449#!" @@ -156,8 +156,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53174758710006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925050022906463", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/99370699582506441:DE-466:53174758710006463#!" diff --git a/src/test/resources/alma-fix/99370738710506441.json b/src/test/resources/alma-fix/99370738710506441.json index 1a92a0e30..3733c0509 100644 --- a/src/test/resources/alma-fix/99370738710506441.json +++ b/src/test/resources/alma-fix/99370738710506441.json @@ -169,8 +169,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53325094210006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991026176221006448", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "id" : "http://lobid.org/items/99370738710506441:DE-82:53325094210006448#!" @@ -180,8 +180,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53364332140006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927945109206470", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "id" : "http://lobid.org/items/99370738710506441:DE-385:53364332140006470#!" @@ -191,8 +191,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53315672950006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025813489606442", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/99370738710506441:DE-361:53315672950006442#!" @@ -202,8 +202,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53632399120006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044852279606449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370738710506441:DE-6:53632399120006449#!" diff --git a/src/test/resources/alma-fix/99370746459806441.json b/src/test/resources/alma-fix/99370746459806441.json index 3e4f12aa9..0136853eb 100644 --- a/src/test/resources/alma-fix/99370746459806441.json +++ b/src/test/resources/alma-fix/99370746459806441.json @@ -122,8 +122,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&portfolio_pid=5389416920006444&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&rft.mms_id=991005834559706444", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370746459806441:DE-A96:5389416920006444#!" @@ -133,8 +133,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53268579950006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991025971963706448", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "id" : "http://lobid.org/items/99370746459806441:DE-82:53268579950006448#!" @@ -144,8 +144,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53345300320006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927882174306470", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "id" : "http://lobid.org/items/99370746459806441:DE-385:53345300320006470#!" @@ -155,8 +155,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53347553910006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025844579206442", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/99370746459806441:DE-361:53347553910006442#!" @@ -166,8 +166,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53453590350006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99207421662506446", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/99370746459806441:DE-465:53453590350006446#!" @@ -177,8 +177,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53166319790006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925022310406463", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/99370746459806441:DE-466:53166319790006463#!" diff --git a/src/test/resources/alma-fix/99370763433806441.json b/src/test/resources/alma-fix/99370763433806441.json index 9ab9b9fae..86e4c1165 100644 --- a/src/test/resources/alma-fix/99370763433806441.json +++ b/src/test/resources/alma-fix/99370763433806441.json @@ -99,8 +99,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=5347363540006485&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=991006421689006485", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-836#!", "isil" : "DE-836", + "id" : "http://lobid.org/organisations/DE-836#!", "label" : "FH Münster, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99370763433806441:DE-836:5347363540006485#!" @@ -110,8 +110,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RHW/openurl?u.ignore_date_coverage=true&portfolio_pid=5321435670006479&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RHW/openurl?u.ignore_date_coverage=true&rft.mms_id=991002757315606479", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1383#!", "isil" : "DE-1383", + "id" : "http://lobid.org/organisations/DE-1383#!", "label" : "Hochschule Rhein-Waal, Bibliothek" }, "id" : "http://lobid.org/items/99370763433806441:DE-1383:5321435670006479#!" @@ -121,8 +121,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53319899750006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927798168806470", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "id" : "http://lobid.org/items/99370763433806441:DE-385:53319899750006470#!" @@ -132,8 +132,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53322962000006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025836919806442", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/99370763433806441:DE-361:53322962000006442#!" @@ -143,8 +143,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53345923180006476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=991055632104006476", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/99370763433806441:DE-38:53345923180006476#!" @@ -154,8 +154,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53659205700006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044860106206449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370763433806441:DE-6:53659205700006449#!" @@ -165,8 +165,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53648029900006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044860106206449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370763433806441:DE-6:53648029900006449#!" @@ -176,8 +176,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53642731060006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044860106206449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370763433806441:DE-6:53642731060006449#!" diff --git a/src/test/resources/alma-fix/99370763882706441.json b/src/test/resources/alma-fix/99370763882706441.json index 177a01303..c97042dd6 100644 --- a/src/test/resources/alma-fix/99370763882706441.json +++ b/src/test/resources/alma-fix/99370763882706441.json @@ -98,8 +98,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=5342364760006485&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=991006405493806485", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-836#!", "isil" : "DE-836", + "id" : "http://lobid.org/organisations/DE-836#!", "label" : "FH Münster, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99370763882706441:DE-836:5342364760006485#!" @@ -109,8 +109,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RHW/openurl?u.ignore_date_coverage=true&portfolio_pid=5323393200006479&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RHW/openurl?u.ignore_date_coverage=true&rft.mms_id=991002763941206479", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1383#!", "isil" : "DE-1383", + "id" : "http://lobid.org/organisations/DE-1383#!", "label" : "Hochschule Rhein-Waal, Bibliothek" }, "id" : "http://lobid.org/items/99370763882706441:DE-1383:5323393200006479#!" @@ -120,8 +120,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53326750220006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927820610606470", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "id" : "http://lobid.org/items/99370763882706441:DE-385:53326750220006470#!" @@ -131,8 +131,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53323069600006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025837084406442", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/99370763882706441:DE-361:53323069600006442#!" @@ -142,8 +142,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53448710470006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206804974006446", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/99370763882706441:DE-465:53448710470006446#!" @@ -153,8 +153,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53643672020006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044873991306449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370763882706441:DE-6:53643672020006449#!" @@ -164,8 +164,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53664134410006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044873991306449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99370763882706441:DE-6:53664134410006449#!" diff --git a/src/test/resources/alma-fix/99370771475306441.json b/src/test/resources/alma-fix/99370771475306441.json index 40550ef40..d2d664714 100644 --- a/src/test/resources/alma-fix/99370771475306441.json +++ b/src/test/resources/alma-fix/99370771475306441.json @@ -245,8 +245,8 @@ "currentLibrary" : "EFS", "currentLocation" : "EFS_Haupt", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", + "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT020919504%22", @@ -259,8 +259,8 @@ "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", + "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", @@ -273,8 +273,8 @@ "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", + "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", @@ -287,8 +287,8 @@ "currentLibrary" : "40", "currentLocation" : "CB_FreiE-1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", + "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", @@ -301,8 +301,8 @@ "currentLibrary" : "R5001", "currentLocation" : "X0001", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1116#!", "isil" : "DE-1116", + "id" : "http://lobid.org/organisations/DE-1116#!", "label" : "Hochschule für Wirtschaft und Gesellschaft Ludwigshafen, Bibliothek" }, "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID=HT020919504", @@ -315,8 +315,8 @@ "currentLibrary" : "ZE", "currentLocation" : "ZE-Bib", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bo404#!", "isil" : "DE-Bo404", + "id" : "http://lobid.org/organisations/DE-Bo404#!", "label" : "Deutsches Referenzzentrum für Ethik in den Biowissenschaften, Bibliothek/Dokumentation" }, "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020919504", @@ -329,8 +329,8 @@ "currentLibrary" : "UB_BI", "currentLocation" : "23_Mono", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/99370771475306441:DE-361:23349409990006442#!" @@ -342,8 +342,8 @@ "currentLibrary" : "D0001", "currentLocation" : "D01", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -356,8 +356,8 @@ "currentLibrary" : "MEGT", "currentLocation" : "MEGT_BIBEG", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6-164#!", "isil" : "DE-6-164", + "id" : "http://lobid.org/organisations/DE-6-164#!", "label" : "Universität Münster, Institut für Ethik, Geschichte und Theorie der Medizin, Bibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", @@ -370,8 +370,8 @@ "currentLibrary" : "KOELN", "currentLocation" : "NCA_LS", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38M#!", "isil" : "DE-38M", + "id" : "http://lobid.org/organisations/DE-38M#!", "label" : "ZB MED - Informationszentrum Lebenswissenschaften, Köln" }, "id" : "http://lobid.org/items/99370771475306441:DE-38M:23124753830006472#!" diff --git a/src/test/resources/alma-fix/99370782520706441.json b/src/test/resources/alma-fix/99370782520706441.json index 67d19ac9f..8e1c5ad3a 100644 --- a/src/test/resources/alma-fix/99370782520706441.json +++ b/src/test/resources/alma-fix/99370782520706441.json @@ -93,8 +93,8 @@ "currentLibrary" : "T0012", "currentLocation" : "00000000", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Tr5#!", "isil" : "DE-Tr5", + "id" : "http://lobid.org/organisations/DE-Tr5#!", "label" : "Hochschulbibliothek Trier" }, "id" : "http://lobid.org/items/99370782520706441:DE-Tr5:2311319960007820#!" @@ -106,8 +106,8 @@ "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370782520706441:DE-A96:2389819160006444#!" @@ -119,8 +119,8 @@ "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370782520706441:DE-A96:2389819170006444#!" @@ -132,8 +132,8 @@ "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370782520706441:DE-A96:2389819180006444#!" @@ -145,8 +145,8 @@ "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370782520706441:DE-A96:2389819140006444#!" @@ -158,8 +158,8 @@ "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370782520706441:DE-A96:2389819150006444#!" @@ -171,8 +171,8 @@ "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370782520706441:DE-A96:2389949700006444#!" @@ -184,8 +184,8 @@ "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370782520706441:DE-A96:2389949710006444#!" @@ -197,8 +197,8 @@ "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370782520706441:DE-A96:2389949690006444#!" @@ -210,8 +210,8 @@ "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370782520706441:DE-A96:2389949680006444#!" @@ -223,8 +223,8 @@ "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370782520706441:DE-A96:2389949720006444#!" @@ -236,8 +236,8 @@ "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370782520706441:DE-A96:2389949730006444#!" @@ -249,8 +249,8 @@ "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370782520706441:DE-A96:2389949740006444#!" @@ -262,8 +262,8 @@ "currentLibrary" : "BAY", "currentLocation" : "BAY_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99370782520706441:DE-A96:2389949750006444#!" @@ -275,8 +275,8 @@ "currentLibrary" : "BOT", "currentLocation" : "BOT_FREI", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", + "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT020936481", @@ -289,8 +289,8 @@ "currentLibrary" : "DT", "currentLocation" : "DT_Frei", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", + "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT020936481%22", @@ -303,8 +303,8 @@ "currentLibrary" : "LBS", "currentLocation" : "0", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", @@ -317,8 +317,8 @@ "currentLibrary" : "ZB", "currentLocation" : "MAGAZIN_3", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", @@ -331,8 +331,8 @@ "currentLibrary" : "202", "currentLocation" : "7", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82-202#!", "isil" : "DE-82-202", + "id" : "http://lobid.org/organisations/DE-82-202#!", "label" : "Kooperierende Bibliothek der Lehrstühle für Planungstheorie und Stadtentwicklung, für Städtebau und Landesplanung, für Wohnbau und Grundlagen des Entwerfens, für CAAD, für Individualisierte Bauproduktion, für Immobilienprojektentwicklung, Gemeinsame Bibliothek" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", @@ -345,8 +345,8 @@ "currentLibrary" : "LBS", "currentLocation" : "0", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", @@ -359,8 +359,8 @@ "currentLibrary" : "LBS", "currentLocation" : "0", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", @@ -373,8 +373,8 @@ "currentLibrary" : "LBS", "currentLocation" : "0", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", @@ -387,8 +387,8 @@ "currentLibrary" : "LBS", "currentLocation" : "0", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", @@ -401,8 +401,8 @@ "currentLibrary" : "DEUTZ", "currentLocation" : "31", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", @@ -415,8 +415,8 @@ "currentLibrary" : "DEUTZ", "currentLocation" : "31", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", @@ -429,8 +429,8 @@ "currentLibrary" : "DEUTZ", "currentLocation" : "31", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", @@ -443,8 +443,8 @@ "currentLibrary" : "DEUTZ", "currentLocation" : "31", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", @@ -457,8 +457,8 @@ "currentLibrary" : "DEUTZ", "currentLocation" : "31", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", @@ -471,8 +471,8 @@ "currentLibrary" : "DEUTZ", "currentLocation" : "32", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", @@ -485,8 +485,8 @@ "currentLibrary" : "DEUTZ", "currentLocation" : "31", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", @@ -499,8 +499,8 @@ "currentLibrary" : "DEUTZ", "currentLocation" : "31", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", @@ -513,8 +513,8 @@ "currentLibrary" : "DEUTZ", "currentLocation" : "31", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", @@ -527,8 +527,8 @@ "currentLibrary" : "DEUTZ", "currentLocation" : "31", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", @@ -541,8 +541,8 @@ "currentLibrary" : "BR", "currentLocation" : "Freihand", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT020936481%22", @@ -555,8 +555,8 @@ "currentLibrary" : "UB", "currentLocation" : "UB_G3/B4", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/99370782520706441:DE-294:23106203860006471#!" @@ -568,8 +568,8 @@ "currentLibrary" : "E0001", "currentLocation" : "EHA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -582,8 +582,8 @@ "currentLibrary" : "E0001", "currentLocation" : "E31", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", @@ -596,8 +596,8 @@ "currentLibrary" : "S0001", "currentLocation" : "PB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT020936481", diff --git a/src/test/resources/alma-fix/99371014448006441.json b/src/test/resources/alma-fix/99371014448006441.json index 9c67d4cd9..30265d159 100644 --- a/src/test/resources/alma-fix/99371014448006441.json +++ b/src/test/resources/alma-fix/99371014448006441.json @@ -119,8 +119,8 @@ "currentLibrary" : "38-459", "currentLocation" : "38-459-FHM", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-459#!", "isil" : "DE-38-459", + "id" : "http://lobid.org/organisations/DE-38-459#!", "label" : "Gemeinsame Fachbibliothek Asien / Japanologie" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021117356", diff --git a/src/test/resources/alma-fix/99371050452706441.json b/src/test/resources/alma-fix/99371050452706441.json index 7f7af8ef7..9d10d2ea6 100644 --- a/src/test/resources/alma-fix/99371050452706441.json +++ b/src/test/resources/alma-fix/99371050452706441.json @@ -221,8 +221,8 @@ "currentLibrary" : "ZB", "currentLocation" : "ZB_FHM1", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021137663&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", diff --git a/src/test/resources/alma-fix/99371107766906441.json b/src/test/resources/alma-fix/99371107766906441.json index 1358279d2..0ff1f5ddb 100644 --- a/src/test/resources/alma-fix/99371107766906441.json +++ b/src/test/resources/alma-fix/99371107766906441.json @@ -109,8 +109,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53215099760006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013521007106445", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/99371107766906441:DE-290:53215099760006445#!" @@ -120,8 +120,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53342898530006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025924501606442", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/99371107766906441:DE-361:53342898530006442#!" @@ -131,8 +131,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53335141470006476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=991055602702206476", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/99371107766906441:DE-38:53335141470006476#!" @@ -142,8 +142,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627314570006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044836260306449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99371107766906441:DE-6:53627314570006449#!" diff --git a/src/test/resources/alma-fix/99371123630706441.json b/src/test/resources/alma-fix/99371123630706441.json index 2cde95ce1..0043cce6f 100644 --- a/src/test/resources/alma-fix/99371123630706441.json +++ b/src/test/resources/alma-fix/99371123630706441.json @@ -233,8 +233,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=5368181550006452&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=991005719114506452", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "id" : "http://lobid.org/items/99371123630706441:DE-1044:5368181550006452#!" @@ -244,8 +244,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HGB/openurl?u.ignore_date_coverage=true&portfolio_pid=5318927880006481&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HGB/openurl?u.ignore_date_coverage=true&rft.mms_id=991000889803706481", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1866#!", "isil" : "DE-1866", + "id" : "http://lobid.org/organisations/DE-1866#!", "label" : "Hochschule für Gesundheit, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99371123630706441:DE-1866:5318927880006481#!" @@ -255,8 +255,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53330118430006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927831944606470", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "id" : "http://lobid.org/items/99371123630706441:DE-385:53330118430006470#!" @@ -266,8 +266,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53334619910006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045222644506467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99371123630706441:DE-5:53334619910006467#!" @@ -277,8 +277,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53343755270006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045222644506467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99371123630706441:DE-5:53343755270006467#!" @@ -288,8 +288,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53358090820006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045222644506467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99371123630706441:DE-5:53358090820006467#!" @@ -299,8 +299,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53337102680006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025886373806442", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/99371123630706441:DE-361:53337102680006442#!" @@ -310,8 +310,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53330270780006476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=991055588598006476", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/99371123630706441:DE-38:53330270780006476#!" @@ -321,8 +321,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53331262830006476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=991055588598006476", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/99371123630706441:DE-38:53331262830006476#!" diff --git a/src/test/resources/alma-fix/99371147104906441.json b/src/test/resources/alma-fix/99371147104906441.json index 61ded17a8..465e060e2 100644 --- a/src/test/resources/alma-fix/99371147104906441.json +++ b/src/test/resources/alma-fix/99371147104906441.json @@ -134,8 +134,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FSW/openurl?u.ignore_date_coverage=true&portfolio_pid=5390318570006461&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FSW/openurl?u.ignore_date_coverage=true&rft.mms_id=9916258194806461", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Hag4#!", "isil" : "DE-Hag4", + "id" : "http://lobid.org/organisations/DE-Hag4#!", "label" : "Fachhochschule Südwestfalen, Fachbibliothek Hagen, Zentralbibliothek" }, "id" : "http://lobid.org/items/99371147104906441:DE-Hag4:5390318570006461#!" @@ -145,8 +145,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&portfolio_pid=53111522090006444&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&rft.mms_id=991005885283006444", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99371147104906441:DE-A96:53111522090006444#!" @@ -156,8 +156,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&portfolio_pid=53100582450006444&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&rft.mms_id=991005885283006444", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99371147104906441:DE-A96:53100582450006444#!" @@ -167,8 +167,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=5355783850006452&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=991005705885506452", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "id" : "http://lobid.org/items/99371147104906441:DE-1044:5355783850006452#!" @@ -178,8 +178,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53220694770006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013572431006445", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/99371147104906441:DE-290:53220694770006445#!" @@ -189,8 +189,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53360282040006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99371147104906441:DE-5:53360282040006467#!" @@ -200,8 +200,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53346765620006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99371147104906441:DE-5:53346765620006467#!" @@ -211,8 +211,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53348545120006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99371147104906441:DE-5:53348545120006467#!" @@ -222,8 +222,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53349581340006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025971926406442", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/99371147104906441:DE-361:53349581340006442#!" @@ -233,8 +233,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53336581080006476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=991055606929906476", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/99371147104906441:DE-38:53336581080006476#!" @@ -244,8 +244,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53652173090006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044919564006449", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99371147104906441:DE-6:53652173090006449#!" diff --git a/src/test/resources/alma-fix/99371314897806441.json b/src/test/resources/alma-fix/99371314897806441.json index 610f8be43..0eeb9e6f8 100644 --- a/src/test/resources/alma-fix/99371314897806441.json +++ b/src/test/resources/alma-fix/99371314897806441.json @@ -100,8 +100,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99371314897806441:DE-A96:53769526120006441#!" @@ -111,8 +111,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-743#!", "isil" : "DE-743", + "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, "id" : "http://lobid.org/items/99371314897806441:DE-743:53769526120006441#!" @@ -122,8 +122,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1010#!", "isil" : "DE-1010", + "id" : "http://lobid.org/organisations/DE-1010#!", "label" : "Westfälische Hochschule Gelsenkirchen Bocholt Recklinghausen, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99371314897806441:DE-1010:53769526120006441#!" @@ -133,8 +133,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/99371314897806441:DE-61:53769526120006441#!" @@ -144,8 +144,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "id" : "http://lobid.org/items/99371314897806441:DE-82:53769526120006441#!" @@ -155,8 +155,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99371314897806441:DE-5:53769526120006441#!" @@ -166,8 +166,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99371314897806441:DE-6:53769526120006441#!" @@ -177,8 +177,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/99371314897806441:DE-294:53769526120006441#!" @@ -188,8 +188,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "id" : "http://lobid.org/items/99371314897806441:DE-467:53769526120006441#!" @@ -199,8 +199,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/99371314897806441:DE-466:53769526120006441#!" @@ -210,8 +210,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bi10#!", "isil" : "DE-Bi10", + "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99371314897806441:DE-Bi10:53769526120006441#!" @@ -221,8 +221,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1393#!", "isil" : "DE-1393", + "id" : "http://lobid.org/organisations/DE-1393#!", "label" : "Hochschule Ruhr West, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99371314897806441:DE-1393:53769526120006441#!" @@ -232,8 +232,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/99371314897806441:DE-468:53769526120006441#!" @@ -243,8 +243,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", + "id" : "http://lobid.org/organisations/DE-Due62#!", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, "id" : "http://lobid.org/items/99371314897806441:DE-Due62:53769526120006441#!" @@ -254,8 +254,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm40#!", "isil" : "DE-Bm40", + "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99371314897806441:DE-Bm40:53769526120006441#!" @@ -265,8 +265,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "id" : "http://lobid.org/items/99371314897806441:DE-1044:53769526120006441#!" @@ -276,8 +276,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_KHO/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_KHO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1032#!", "isil" : "DE-1032", + "id" : "http://lobid.org/organisations/DE-1032#!", "label" : "Katholische Hochschule Nordrhein-Westfalen (katho), Hochschulbibliothek" }, "id" : "http://lobid.org/items/99371314897806441:DE-1032:53769526120006441#!" @@ -287,8 +287,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/99371314897806441:DE-465:53769526120006441#!" @@ -298,8 +298,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", + "id" : "http://lobid.org/organisations/DE-829#!", "label" : "Hochschule Niederrhein, Bibliothek" }, "id" : "http://lobid.org/items/99371314897806441:DE-829:53769526120006441#!" @@ -309,8 +309,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-836#!", "isil" : "DE-836", + "id" : "http://lobid.org/organisations/DE-836#!", "label" : "FH Münster, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99371314897806441:DE-836:53769526120006441#!" @@ -320,8 +320,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/99371314897806441:DE-290:53769526120006441#!" @@ -331,8 +331,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-361#!", "isil" : "DE-361", + "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, "id" : "http://lobid.org/items/99371314897806441:DE-361:53769526120006441#!" @@ -342,8 +342,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FSW/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FSW/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Hag4#!", "isil" : "DE-Hag4", + "id" : "http://lobid.org/organisations/DE-Hag4#!", "label" : "Fachhochschule Südwestfalen, Fachbibliothek Hagen, Zentralbibliothek" }, "id" : "http://lobid.org/items/99371314897806441:DE-Hag4:53769526120006441#!" @@ -353,8 +353,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", + "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99371314897806441:DE-Dm13:53769526120006441#!" @@ -364,8 +364,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_KHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_KHM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn185#!", "isil" : "DE-Kn185", + "id" : "http://lobid.org/organisations/DE-Kn185#!", "label" : "Kunsthochschule für Medien, Bibliothek / Mediathek" }, "id" : "http://lobid.org/items/99371314897806441:DE-Kn185:53769526120006441#!" @@ -375,8 +375,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", + "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, "id" : "http://lobid.org/items/99371314897806441:DE-Kn41:53769526120006441#!" @@ -386,8 +386,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99371314897806441:DE-832:53769526120006441#!" @@ -397,8 +397,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_TGA/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_TGA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm1#!", "isil" : "DE-Bm1", + "id" : "http://lobid.org/organisations/DE-Bm1#!", "label" : "Technische Hochschule Georg Agricola, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99371314897806441:DE-Bm1:53769526120006441#!" @@ -408,8 +408,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38#!", "isil" : "DE-38", + "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, "id" : "http://lobid.org/items/99371314897806441:DE-38:53769526120006441#!" @@ -419,8 +419,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53133004370006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=990016111720106464", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "id" : "http://lobid.org/items/99371314897806441:DE-708:53133004370006464#!" diff --git a/src/test/resources/alma-fix/99371447897606441.json b/src/test/resources/alma-fix/99371447897606441.json index 42e03cc90..1cbc19cc6 100644 --- a/src/test/resources/alma-fix/99371447897606441.json +++ b/src/test/resources/alma-fix/99371447897606441.json @@ -143,8 +143,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FSW/openurl?u.ignore_date_coverage=true&portfolio_pid=5395685400006461&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FSW/openurl?u.ignore_date_coverage=true&rft.mms_id=9916291856306461", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Hag4#!", "isil" : "DE-Hag4", + "id" : "http://lobid.org/organisations/DE-Hag4#!", "label" : "Fachhochschule Südwestfalen, Fachbibliothek Hagen, Zentralbibliothek" }, "id" : "http://lobid.org/items/99371447897606441:DE-Hag4:5395685400006461#!" @@ -154,8 +154,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=5353633400006452&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=991005696549806452", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1044#!", "isil" : "DE-1044", + "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, "id" : "http://lobid.org/items/99371447897606441:DE-1044:5353633400006452#!" @@ -165,8 +165,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53322423530006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927806347606470", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "id" : "http://lobid.org/items/99371447897606441:DE-385:53322423530006470#!" diff --git a/src/test/resources/alma-fix/99371449208306441.json b/src/test/resources/alma-fix/99371449208306441.json index 0f9de2314..b358a2bca 100644 --- a/src/test/resources/alma-fix/99371449208306441.json +++ b/src/test/resources/alma-fix/99371449208306441.json @@ -105,8 +105,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53145570030006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381851853506464", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "id" : "http://lobid.org/items/99371449208306441:DE-708:53145570030006464#!" diff --git a/src/test/resources/alma-fix/99371530278506441.json b/src/test/resources/alma-fix/99371530278506441.json index 55c251b74..d2bcf6f8e 100644 --- a/src/test/resources/alma-fix/99371530278506441.json +++ b/src/test/resources/alma-fix/99371530278506441.json @@ -191,8 +191,8 @@ "currentLibrary" : "38-432", "currentLocation" : "38-432-BIB", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38-432#!", "isil" : "DE-38-432", + "id" : "http://lobid.org/organisations/DE-38-432#!", "label" : "Thomas-Institut, Bibliothek" }, "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021463169", diff --git a/src/test/resources/alma-fix/99371791018506441.json b/src/test/resources/alma-fix/99371791018506441.json index aa0b9a268..f607b7cd3 100644 --- a/src/test/resources/alma-fix/99371791018506441.json +++ b/src/test/resources/alma-fix/99371791018506441.json @@ -92,8 +92,8 @@ "currentLibrary" : "R2001", "currentLocation" : "UNASSIGNED", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1105#!", "isil" : "DE-1105", + "id" : "http://lobid.org/organisations/DE-1105#!", "label" : "Hochschule Koblenz, RheinAhrCampus, Bibliothek" }, "opacLink" : "http://www.hs-koblenz.de/RACwebOPAC/start.do?Login=webopac&Query=0010=%22HT021613847%22", @@ -104,8 +104,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-467#!", "isil" : "DE-467", + "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, "id" : "http://lobid.org/items/99371791018506441:DE-467:53800421430006441#!" @@ -115,8 +115,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-468#!", "isil" : "DE-468", + "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, "id" : "http://lobid.org/items/99371791018506441:DE-468:53800421430006441#!" @@ -126,8 +126,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HHL/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HHL/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-583#!", "isil" : "DE-583", + "id" : "http://lobid.org/organisations/DE-583#!", "label" : "SRH Hochschule für Logistik und Wirtschaft Hamm, Bibliothek" }, "id" : "http://lobid.org/items/99371791018506441:DE-583:53800421430006441#!" @@ -137,8 +137,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Due62#!", "isil" : "DE-Due62", + "id" : "http://lobid.org/organisations/DE-Due62#!", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, "id" : "http://lobid.org/items/99371791018506441:DE-Due62:53800421430006441#!" @@ -148,8 +148,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-386#!", "isil" : "DE-386", + "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, "id" : "http://lobid.org/items/99371791018506441:DE-386:53800421430006441#!" @@ -159,8 +159,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Kn41#!", "isil" : "DE-Kn41", + "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, "id" : "http://lobid.org/items/99371791018506441:DE-Kn41:53800421430006441#!" @@ -170,8 +170,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-832#!", "isil" : "DE-832", + "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99371791018506441:DE-832:53800421430006441#!" @@ -181,8 +181,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-385#!", "isil" : "DE-385", + "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, "id" : "http://lobid.org/items/99371791018506441:DE-385:53800421430006441#!" @@ -192,8 +192,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-1393#!", "isil" : "DE-1393", + "id" : "http://lobid.org/organisations/DE-1393#!", "label" : "Hochschule Ruhr West, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99371791018506441:DE-1393:53800421430006441#!" @@ -203,8 +203,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBM/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-38M#!", "isil" : "DE-38M", + "id" : "http://lobid.org/organisations/DE-38M#!", "label" : "ZB MED - Informationszentrum Lebenswissenschaften, Köln" }, "id" : "http://lobid.org/items/99371791018506441:DE-38M:53800421430006441#!" @@ -214,8 +214,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-836#!", "isil" : "DE-836", + "id" : "http://lobid.org/organisations/DE-836#!", "label" : "FH Münster, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99371791018506441:DE-836:53800421430006441#!" @@ -225,8 +225,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-6#!", "isil" : "DE-6", + "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, "id" : "http://lobid.org/items/99371791018506441:DE-6:53800421430006441#!" @@ -236,8 +236,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-294#!", "isil" : "DE-294", + "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, "id" : "http://lobid.org/items/99371791018506441:DE-294:53800421430006441#!" @@ -247,8 +247,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-466#!", "isil" : "DE-466", + "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, "id" : "http://lobid.org/items/99371791018506441:DE-466:53800421430006441#!" @@ -258,8 +258,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-61#!", "isil" : "DE-61", + "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, "id" : "http://lobid.org/items/99371791018506441:DE-61:53800421430006441#!" @@ -269,8 +269,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-A96#!", "isil" : "DE-A96", + "id" : "http://lobid.org/organisations/DE-A96#!", "label" : "Hochschulbibliothek der Fachhochschule Aachen" }, "id" : "http://lobid.org/items/99371791018506441:DE-A96:53800421430006441#!" @@ -280,8 +280,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-5#!", "isil" : "DE-5", + "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, "id" : "http://lobid.org/items/99371791018506441:DE-5:53800421430006441#!" @@ -291,8 +291,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-82#!", "isil" : "DE-82", + "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, "id" : "http://lobid.org/items/99371791018506441:DE-82:53800421430006441#!" @@ -302,8 +302,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-465#!", "isil" : "DE-465", + "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, "id" : "http://lobid.org/items/99371791018506441:DE-465:53800421430006441#!" @@ -313,8 +313,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-829#!", "isil" : "DE-829", + "id" : "http://lobid.org/organisations/DE-829#!", "label" : "Hochschule Niederrhein, Bibliothek" }, "id" : "http://lobid.org/items/99371791018506441:DE-829:53800421430006441#!" @@ -324,8 +324,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-290#!", "isil" : "DE-290", + "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, "id" : "http://lobid.org/items/99371791018506441:DE-290:53800421430006441#!" @@ -335,8 +335,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-708#!", "isil" : "DE-708", + "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, "id" : "http://lobid.org/items/99371791018506441:DE-708:53800421430006441#!" @@ -346,8 +346,8 @@ "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Dm13#!", "isil" : "DE-Dm13", + "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, "id" : "http://lobid.org/items/99371791018506441:DE-Dm13:53800421430006441#!" diff --git a/src/test/resources/alma-fix/99372423490706441.json b/src/test/resources/alma-fix/99372423490706441.json index 04a766857..bc4dabee8 100644 --- a/src/test/resources/alma-fix/99372423490706441.json +++ b/src/test/resources/alma-fix/99372423490706441.json @@ -107,8 +107,8 @@ "currentLibrary" : "T0010", "currentLocation" : "kA", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-121#!", "isil" : "DE-121", + "id" : "http://lobid.org/organisations/DE-121#!", "label" : "Wissenschaftliche Bibliothek der Stadt Trier" }, "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT030002417&local_base=STR01", diff --git a/src/test/resources/alma-fix/99372483173006441.json b/src/test/resources/alma-fix/99372483173006441.json index 90f064345..1d1a47972 100644 --- a/src/test/resources/alma-fix/99372483173006441.json +++ b/src/test/resources/alma-fix/99372483173006441.json @@ -187,8 +187,8 @@ "currentLibrary" : "BR004", "currentLocation" : "S", "heldBy" : { - "id" : "http://lobid.org/organisations/DE-Bm3-4#!", "isil" : "DE-Bm3-4", + "id" : "http://lobid.org/organisations/DE-Bm3-4#!", "label" : "Bibliothek des Ruhrgebiets, Dokumentation Ruhrgebiet" }, "id" : "http://lobid.org/items/99372483173006441:DE-Bm3-4:2317280700007508#!" From 27c7d495fc1b82c40b959a6db2fa7459dc1b43b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20B=C3=BClte?= Date: Wed, 27 Sep 2023 13:53:36 +0200 Subject: [PATCH 15/23] Add opac links to all non-physical resources #1888 --- src/main/resources/alma/fix/item.fix | 3 ++ .../alma-fix/990021367710206441.json | 1 + .../alma-fix/990035016180206441.json | 1 + .../alma-fix/990050000600206441.json | 18 +++++++++ .../alma-fix/990052965140206441.json | 8 ++++ .../alma-fix/990054301770206441.json | 1 + .../alma-fix/990063549080206441.json | 1 + .../alma-fix/990075429930206441.json | 2 + .../alma-fix/990108873860206441.json | 1 + .../alma-fix/990133067580206441.json | 1 + .../alma-fix/990156027740206441.json | 1 + .../alma-fix/990173811970206441.json | 2 + .../alma-fix/990184127410206441.json | 5 +++ .../alma-fix/990193229450206441.json | 1 + .../alma-fix/990197067610206441.json | 5 +++ .../alma-fix/990197293880206441.json | 20 ++++++++++ .../alma-fix/990199611280206441.json | 3 ++ .../alma-fix/990206060640206441.json | 1 + .../alma-fix/990210093550206441.json | 6 +++ .../alma-fix/990213367870206441.json | 1 + .../alma-fix/990363946050206441.json | 3 ++ .../alma-fix/990365842280206441.json | 10 +++++ .../alma-fix/990367731740206441.json | 1 + .../alma-fix/991005935279706485.json | 1 + .../resources/alma-fix/99370678063606441.json | 38 +++++++++++++++++++ .../resources/alma-fix/99370682219806441.json | 2 + .../resources/alma-fix/99370690532406441.json | 8 ++++ .../resources/alma-fix/99370694196806441.json | 1 + .../resources/alma-fix/99370699582506441.json | 1 + .../resources/alma-fix/99371147104906441.json | 9 +++++ .../resources/alma-fix/99371314897806441.json | 23 +++++++++++ .../resources/alma-fix/99371791018506441.json | 19 ++++++++++ 32 files changed, 198 insertions(+) diff --git a/src/main/resources/alma/fix/item.fix b/src/main/resources/alma/fix/item.fix index 4c0fe93df..6b8870c34 100644 --- a/src/main/resources/alma/fix/item.fix +++ b/src/main/resources/alma/fix/item.fix @@ -108,6 +108,7 @@ do list(path:"POR ", "var": "$i") copy_field("$i.a", "$i.@iz") replace_all("$i.@iz",".*(\\d{4})$","$1") lookup("$i.@iz", "alma-institution-code-to-isil") + call_macro("opacLink", field:"@iz") copy_field("$i.@iz","hasItem[].$last.heldBy.isil") paste("hasItem[].$last.heldBy.id", "~http://lobid.org/organisations/", "hasItem[].$last.heldBy.isil", "~#!", join_char:"") copy_field("hasItem[].$last.heldBy.id", "hasItem[].$last.heldBy.label") @@ -128,6 +129,7 @@ do list(path:"POR ", "var": "$i") paste("hasItem[].$last.sublocation", "~https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/","$j","$i.@sublocation", join_char: "") copy_field("$j", "$i.@iz") lookup("$i.@iz", "alma-iz-code-to-isil") + call_macro("opacLink", field:"@iz") copy_field("$i.@iz","hasItem[].$last.heldBy.isil") paste("hasItem[].$last.heldBy.id", "~http://lobid.org/organisations/", "hasItem[].$last.heldBy.isil", "~#!", join_char:"") copy_field("hasItem[].$last.heldBy.id", "hasItem[].$last.heldBy.label") @@ -146,6 +148,7 @@ do list(path: "MBD ", "var": "$i") copy_field("$i.i", "$i.@iz") replace_all("$i.@iz",".*(\\d{4})$","$1") lookup("$i.@iz", "alma-institution-code-to-isil") + call_macro("opacLink", field:"@iz") copy_field("$i.@iz","hasItem[].$last.heldBy.isil") paste("hasItem[].$last.heldBy.id", "~http://lobid.org/organisations/", "hasItem[].$last.heldBy.isil", "~#!", join_char:"") copy_field("hasItem[].$last.heldBy.id", "hasItem[].$last.heldBy.label") diff --git a/src/test/resources/alma-fix/990021367710206441.json b/src/test/resources/alma-fix/990021367710206441.json index fadd575f9..4652acd84 100644 --- a/src/test/resources/alma-fix/990021367710206441.json +++ b/src/test/resources/alma-fix/990021367710206441.json @@ -158,6 +158,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT005207972", "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", diff --git a/src/test/resources/alma-fix/990035016180206441.json b/src/test/resources/alma-fix/990035016180206441.json index accfadf1b..8285c0400 100644 --- a/src/test/resources/alma-fix/990035016180206441.json +++ b/src/test/resources/alma-fix/990035016180206441.json @@ -231,6 +231,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT008733617", "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", diff --git a/src/test/resources/alma-fix/990050000600206441.json b/src/test/resources/alma-fix/990050000600206441.json index 40b05eeb5..5aeb8be98 100644 --- a/src/test/resources/alma-fix/990050000600206441.json +++ b/src/test/resources/alma-fix/990050000600206441.json @@ -257,6 +257,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT006855611", "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -275,6 +276,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT006855611%22", "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", @@ -293,6 +295,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT006855611&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -311,6 +314,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT006855611%22", "heldBy" : { "isil" : "DE-Bi10", "id" : "http://lobid.org/organisations/DE-Bi10#!", @@ -320,6 +324,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT006855611", "heldBy" : { "isil" : "DE-Bm40", "id" : "http://lobid.org/organisations/DE-Bm40#!", @@ -329,6 +334,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT006855611%22", "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -338,6 +344,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT006855611", "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -347,6 +354,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT006855611%22", "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -356,6 +364,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT006855611%22", "heldBy" : { "isil" : "DE-743", "id" : "http://lobid.org/organisations/DE-743#!", @@ -374,6 +383,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22HT006855611%22", "heldBy" : { "isil" : "DE-1393", "id" : "http://lobid.org/organisations/DE-1393#!", @@ -383,6 +393,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT006855611&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -392,6 +403,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT006855611", "heldBy" : { "isil" : "DE-832", "id" : "http://lobid.org/organisations/DE-832#!", @@ -401,6 +413,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT006855611%22", "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -410,6 +423,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT006855611", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -437,6 +451,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT006855611", "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -446,6 +461,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -455,6 +471,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT006855611", "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -464,6 +481,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT006855611", "heldBy" : { "isil" : "DE-1010", "id" : "http://lobid.org/organisations/DE-1010#!", diff --git a/src/test/resources/alma-fix/990052965140206441.json b/src/test/resources/alma-fix/990052965140206441.json index 0d11809c2..c694df736 100644 --- a/src/test/resources/alma-fix/990052965140206441.json +++ b/src/test/resources/alma-fix/990052965140206441.json @@ -151,6 +151,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT002529477", "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -169,6 +170,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT002529477%22", "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -178,6 +180,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT002529477&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -187,6 +190,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT002529477", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -196,6 +200,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT002529477&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -205,6 +210,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT002529477", "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -214,6 +220,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT002529477", "heldBy" : { "isil" : "DE-38", "id" : "http://lobid.org/organisations/DE-38#!", @@ -223,6 +230,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT002529477&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990054301770206441.json b/src/test/resources/alma-fix/990054301770206441.json index 7a8785ab8..4251af39b 100644 --- a/src/test/resources/alma-fix/990054301770206441.json +++ b/src/test/resources/alma-fix/990054301770206441.json @@ -252,6 +252,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22133469-4%22", "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma-fix/990063549080206441.json b/src/test/resources/alma-fix/990063549080206441.json index 81ef2583f..19d6f63ec 100644 --- a/src/test/resources/alma-fix/990063549080206441.json +++ b/src/test/resources/alma-fix/990063549080206441.json @@ -198,6 +198,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003538502&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990075429930206441.json b/src/test/resources/alma-fix/990075429930206441.json index 642b38828..cce8dc97b 100644 --- a/src/test/resources/alma-fix/990075429930206441.json +++ b/src/test/resources/alma-fix/990075429930206441.json @@ -333,6 +333,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000944190", "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -342,6 +343,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000944190", "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", diff --git a/src/test/resources/alma-fix/990108873860206441.json b/src/test/resources/alma-fix/990108873860206441.json index 833dbc271..a19c3e732 100644 --- a/src/test/resources/alma-fix/990108873860206441.json +++ b/src/test/resources/alma-fix/990108873860206441.json @@ -173,6 +173,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=14735849&scope=catalog&sf=rank", "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", diff --git a/src/test/resources/alma-fix/990133067580206441.json b/src/test/resources/alma-fix/990133067580206441.json index a4d7e476d..cf83f524d 100644 --- a/src/test/resources/alma-fix/990133067580206441.json +++ b/src/test/resources/alma-fix/990133067580206441.json @@ -252,6 +252,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53804555180006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990133067580206441", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222163340-X%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/990156027740206441.json b/src/test/resources/alma-fix/990156027740206441.json index fa299177f..4438bb237 100644 --- a/src/test/resources/alma-fix/990156027740206441.json +++ b/src/test/resources/alma-fix/990156027740206441.json @@ -76,6 +76,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209607190006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991010117289706445", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015011399%22", "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma-fix/990173811970206441.json b/src/test/resources/alma-fix/990173811970206441.json index 21f656956..0bba51f50 100644 --- a/src/test/resources/alma-fix/990173811970206441.json +++ b/src/test/resources/alma-fix/990173811970206441.json @@ -152,6 +152,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015865114", "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -170,6 +171,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015865114&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990184127410206441.json b/src/test/resources/alma-fix/990184127410206441.json index be59cff55..514882ca7 100644 --- a/src/test/resources/alma-fix/990184127410206441.json +++ b/src/test/resources/alma-fix/990184127410206441.json @@ -205,6 +205,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53738793900006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222594002-8%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -216,6 +217,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53738793900006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", + "opacLink" : "https://suchen.ub.rub.de/zdbid/2594002-8", "heldBy" : { "isil" : "DE-294", "id" : "http://lobid.org/organisations/DE-294#!", @@ -238,6 +240,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53738793940006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222594002-8%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -249,6 +252,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53738793940006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", + "opacLink" : "https://suchen.ub.rub.de/zdbid/2594002-8", "heldBy" : { "isil" : "DE-294", "id" : "http://lobid.org/organisations/DE-294#!", @@ -271,6 +275,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53804344220006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222594002-8%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/990193229450206441.json b/src/test/resources/alma-fix/990193229450206441.json index 83bffa9ff..d99a8a1a2 100644 --- a/src/test/resources/alma-fix/990193229450206441.json +++ b/src/test/resources/alma-fix/990193229450206441.json @@ -297,6 +297,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53807024380006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990193229450206441", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222685248-2%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/990197067610206441.json b/src/test/resources/alma-fix/990197067610206441.json index 3eb68b6a6..7566fbc8a 100644 --- a/src/test/resources/alma-fix/990197067610206441.json +++ b/src/test/resources/alma-fix/990197067610206441.json @@ -95,6 +95,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,CT003043468&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -106,6 +107,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=CT003043468", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -117,6 +119,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,CT003043468&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -128,6 +131,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=CT003043468", "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", @@ -139,6 +143,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:CT003043468", "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", diff --git a/src/test/resources/alma-fix/990197293880206441.json b/src/test/resources/alma-fix/990197293880206441.json index 6e94dd5ae..8e5a17479 100644 --- a/src/test/resources/alma-fix/990197293880206441.json +++ b/src/test/resources/alma-fix/990197293880206441.json @@ -221,6 +221,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:TT050421649", "heldBy" : { "isil" : "DE-832", "id" : "http://lobid.org/organisations/DE-832#!", @@ -232,6 +233,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=TT050421649", "heldBy" : { "isil" : "DE-38", "id" : "http://lobid.org/organisations/DE-38#!", @@ -243,6 +245,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22TT050421649%22", "heldBy" : { "isil" : "DE-743", "id" : "http://lobid.org/organisations/DE-743#!", @@ -265,6 +268,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,TT050421649&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -276,6 +280,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22TT050421649%22", "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -287,6 +292,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=TT050421649", "heldBy" : { "isil" : "DE-1010", "id" : "http://lobid.org/organisations/DE-1010#!", @@ -298,6 +304,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22TT050421649%22", "heldBy" : { "isil" : "DE-1393", "id" : "http://lobid.org/organisations/DE-1393#!", @@ -309,6 +316,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=TT050421649", "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", @@ -320,6 +328,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=TT050421649", "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", @@ -353,6 +362,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=TT050421649", "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -364,6 +374,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=TT050421649", "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -375,6 +386,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=TT050421649", "heldBy" : { "isil" : "DE-Bm40", "id" : "http://lobid.org/organisations/DE-Bm40#!", @@ -386,6 +398,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22TT050421649%22", "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -397,6 +410,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22TT050421649%22", "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -408,6 +422,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22TT050421649%22", "heldBy" : { "isil" : "DE-Bi10", "id" : "http://lobid.org/organisations/DE-Bi10#!", @@ -430,6 +445,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22TT050421649%22", "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", @@ -441,6 +457,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=TT050421649", "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -463,6 +480,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:TT050421649", "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -474,6 +492,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT050421649&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -496,6 +515,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=TT050421649", "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", diff --git a/src/test/resources/alma-fix/990199611280206441.json b/src/test/resources/alma-fix/990199611280206441.json index 13844a134..e0686e6af 100644 --- a/src/test/resources/alma-fix/990199611280206441.json +++ b/src/test/resources/alma-fix/990199611280206441.json @@ -133,6 +133,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53155629910006447&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=990013137900206447", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017894012", "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -142,6 +143,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017894012%22", "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -151,6 +153,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT017894012", "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", diff --git a/src/test/resources/alma-fix/990206060640206441.json b/src/test/resources/alma-fix/990206060640206441.json index 393a19c44..f818fba7e 100644 --- a/src/test/resources/alma-fix/990206060640206441.json +++ b/src/test/resources/alma-fix/990206060640206441.json @@ -204,6 +204,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53165716350006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=990017647970106463", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT018468645", "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", diff --git a/src/test/resources/alma-fix/990210093550206441.json b/src/test/resources/alma-fix/990210093550206441.json index 096847648..60e61cf6e 100644 --- a/src/test/resources/alma-fix/990210093550206441.json +++ b/src/test/resources/alma-fix/990210093550206441.json @@ -99,6 +99,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&portfolio_pid=5322365740006450&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&rft.mms_id=991002429379706450", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%222842926-6%22", "heldBy" : { "isil" : "DE-Bi10", "id" : "http://lobid.org/organisations/DE-Bi10#!", @@ -121,6 +122,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=5349051840008056&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=991001381899708056", + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=-1=%222842926-6%22", "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -154,6 +156,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53313002580006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=990022076950106470", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,2366374X", "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -165,6 +168,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53428417070006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990184689370206446", + "opacLink" : "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=2366374X", "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -176,6 +180,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53625317550006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991015595899706449", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,2366374X", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -187,6 +192,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53164238820006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=990018348930106463", + "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=2366374X&scope=catalog&sf=rank", "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", diff --git a/src/test/resources/alma-fix/990213367870206441.json b/src/test/resources/alma-fix/990213367870206441.json index 6058daa59..5ca5d2dab 100644 --- a/src/test/resources/alma-fix/990213367870206441.json +++ b/src/test/resources/alma-fix/990213367870206441.json @@ -123,6 +123,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209196500006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991005259779706445", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019075404%22", "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma-fix/990363946050206441.json b/src/test/resources/alma-fix/990363946050206441.json index 059fb7da6..cd68fade9 100644 --- a/src/test/resources/alma-fix/990363946050206441.json +++ b/src/test/resources/alma-fix/990363946050206441.json @@ -130,6 +130,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209365020006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991009604019706445", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT020202475%22", "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -141,6 +142,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53319452280006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991044884199706467", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020202475", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -152,6 +154,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53319452300006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991044884199706467", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020202475", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/990365842280206441.json b/src/test/resources/alma-fix/990365842280206441.json index 5a418d491..9b8e52c2d 100644 --- a/src/test/resources/alma-fix/990365842280206441.json +++ b/src/test/resources/alma-fix/990365842280206441.json @@ -101,6 +101,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020391499", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -112,6 +113,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", + "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT020391499", "heldBy" : { "isil" : "DE-1010", "id" : "http://lobid.org/organisations/DE-1010#!", @@ -123,6 +125,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", + "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT020391499", "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", @@ -134,6 +137,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020391499&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -156,6 +160,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", + "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT020391499", "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -167,6 +172,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT020391499&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -178,6 +184,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT020391499%22", "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -189,6 +196,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT020391499%22", "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", @@ -222,6 +230,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT020391499", "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -233,6 +242,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53312504210006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=990025573850106470", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT020391499", "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", diff --git a/src/test/resources/alma-fix/990367731740206441.json b/src/test/resources/alma-fix/990367731740206441.json index 524880d90..1d98c1cf7 100644 --- a/src/test/resources/alma-fix/990367731740206441.json +++ b/src/test/resources/alma-fix/990367731740206441.json @@ -263,6 +263,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=5349112190008056&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=991006234639708056", + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT020579803%22", "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", diff --git a/src/test/resources/alma-fix/991005935279706485.json b/src/test/resources/alma-fix/991005935279706485.json index 3b42a34e8..cc3342c4f 100644 --- a/src/test/resources/alma-fix/991005935279706485.json +++ b/src/test/resources/alma-fix/991005935279706485.json @@ -271,6 +271,7 @@ "hasItem" : [ { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "opacLink" : "https://hb063.fh-muenster.de/webOPACClient/start.do?Query=-1=%22202777-X%22", "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", diff --git a/src/test/resources/alma-fix/99370678063606441.json b/src/test/resources/alma-fix/99370678063606441.json index 2c118d07d..6205c3335 100644 --- a/src/test/resources/alma-fix/99370678063606441.json +++ b/src/test/resources/alma-fix/99370678063606441.json @@ -195,6 +195,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=5336193550006485&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=991006386478506485", + "opacLink" : "https://hb063.fh-muenster.de/webOPACClient/start.do?Query=-1=%222598795-1%22", "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", @@ -228,6 +229,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53137417580006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -239,6 +241,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53149555660006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -250,6 +253,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53141137810006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -261,6 +265,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53153104540006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -272,6 +277,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53137729250006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -283,6 +289,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&portfolio_pid=5385583960006444&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&rft.mms_id=991005821828906444", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%222598795-1%22", "heldBy" : { "isil" : "DE-A96", "id" : "http://lobid.org/organisations/DE-A96#!", @@ -294,6 +301,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&portfolio_pid=5324315100006450&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&rft.mms_id=991005482849106450", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%222598795-1%22", "heldBy" : { "isil" : "DE-Bi10", "id" : "http://lobid.org/organisations/DE-Bi10#!", @@ -316,6 +324,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=5352012540006452&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=991005694326706452", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%222598795-1%22", "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -349,6 +358,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=5349662860008056&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=991008986786508056", + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=-1=%222598795-1%22", "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -404,6 +414,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=5323323830006453&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=991004112696706453", + "opacLink" : "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=-1=%222598795-1%22", "heldBy" : { "isil" : "DE-1393", "id" : "http://lobid.org/organisations/DE-1393#!", @@ -525,6 +536,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53206901250006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013481417006445", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%222598795-1%22", "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -536,6 +548,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53230941160006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013481417006445", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%222598795-1%22", "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -547,6 +560,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53216211500006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013481417006445", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%222598795-1%22", "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -558,6 +572,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53313992860006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927778655706470", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664", "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -569,6 +584,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53314230740006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927778655706470", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664", "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -580,6 +596,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53320721620006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180392606467", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222598795-1%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -591,6 +608,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53349719870006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180392606467", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222598795-1%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -602,6 +620,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53320689660006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180392606467", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222598795-1%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -613,6 +632,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53305968290006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025806681206442", + "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=21914664&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10", "heldBy" : { "isil" : "DE-361", "id" : "http://lobid.org/organisations/DE-361#!", @@ -624,6 +644,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53305849380006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025806681206442", + "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=21914664&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10", "heldBy" : { "isil" : "DE-361", "id" : "http://lobid.org/organisations/DE-361#!", @@ -635,6 +656,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53190076510006471&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=991027808804206471", + "opacLink" : "https://suchen.ub.rub.de/zdbid/2598795-1", "heldBy" : { "isil" : "DE-294", "id" : "http://lobid.org/organisations/DE-294#!", @@ -646,6 +668,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53452984420006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", + "opacLink" : "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=21914664", "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -657,6 +680,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53441010540006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", + "opacLink" : "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=21914664", "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -668,6 +692,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53455804610006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", + "opacLink" : "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=21914664", "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -679,6 +704,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53333893140006443&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=9947406450506443", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=21914664", "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -690,6 +716,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53334490330006443&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=9947406450506443", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=21914664", "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -701,6 +728,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53358210520006443&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=9947406450506443", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=21914664", "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -712,6 +740,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UKO/openurl?u.ignore_date_coverage=true&portfolio_pid=5337281000008057&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UKO/openurl?u.ignore_date_coverage=true&rft.mms_id=9910060661008057", + "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "isil" : "DE-Kob7", "id" : "http://lobid.org/organisations/DE-Kob7#!", @@ -745,6 +774,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627078260006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -756,6 +786,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53626936090006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -767,6 +798,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627921000006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -778,6 +810,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53673256170006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -789,6 +822,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=5396251040006462&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99204507541206462", + "opacLink" : "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -800,6 +834,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53109067080006462&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99204507541206462", + "opacLink" : "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -811,6 +846,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53159673220006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925013376606463", + "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=21914664&scope=catalog&sf=rank", "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", @@ -822,6 +858,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53160920940006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925013376606463", + "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=21914664&scope=catalog&sf=rank", "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", @@ -833,6 +870,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53175909640006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925013376606463", + "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=21914664&scope=catalog&sf=rank", "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", diff --git a/src/test/resources/alma-fix/99370682219806441.json b/src/test/resources/alma-fix/99370682219806441.json index da7204856..5596c790d 100644 --- a/src/test/resources/alma-fix/99370682219806441.json +++ b/src/test/resources/alma-fix/99370682219806441.json @@ -201,6 +201,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53346185050006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045255047006467", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222745694-8%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -212,6 +213,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53346309900006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045255047006467", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222745694-8%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/99370690532406441.json b/src/test/resources/alma-fix/99370690532406441.json index 8714a3673..c81074117 100644 --- a/src/test/resources/alma-fix/99370690532406441.json +++ b/src/test/resources/alma-fix/99370690532406441.json @@ -99,6 +99,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53208220140006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013485396506445", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0543=%2221968292%22", "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -110,6 +111,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53320611800006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180157206467", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2221968292%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -121,6 +123,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53317006550006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025806297206442", + "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=21968292&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10", "heldBy" : { "isil" : "DE-361", "id" : "http://lobid.org/organisations/DE-361#!", @@ -132,6 +135,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53305666740006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025806297206442", + "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=21968292&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10", "heldBy" : { "isil" : "DE-361", "id" : "http://lobid.org/organisations/DE-361#!", @@ -143,6 +147,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53185697690006471&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=991027794842406471", + "opacLink" : "https://suchen.ub.rub.de/issn/21968292", "heldBy" : { "isil" : "DE-294", "id" : "http://lobid.org/organisations/DE-294#!", @@ -165,6 +170,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53653301110006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044925061406449", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21968292", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -176,6 +182,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=5397076270006462&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99204510098106462", + "opacLink" : "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=21968292&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -187,6 +194,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53161142230006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925018040106463", + "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=21968292&scope=catalog&sf=rank", "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", diff --git a/src/test/resources/alma-fix/99370694196806441.json b/src/test/resources/alma-fix/99370694196806441.json index 85103175e..e180e195b 100644 --- a/src/test/resources/alma-fix/99370694196806441.json +++ b/src/test/resources/alma-fix/99370694196806441.json @@ -181,6 +181,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53333829220006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045220310806467", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222669828-6%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/99370699582506441.json b/src/test/resources/alma-fix/99370699582506441.json index f20d012f9..8e2b171b4 100644 --- a/src/test/resources/alma-fix/99370699582506441.json +++ b/src/test/resources/alma-fix/99370699582506441.json @@ -122,6 +122,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53355917830006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045280382606467", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222508993-6%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/99371147104906441.json b/src/test/resources/alma-fix/99371147104906441.json index 465e060e2..ae3996c39 100644 --- a/src/test/resources/alma-fix/99371147104906441.json +++ b/src/test/resources/alma-fix/99371147104906441.json @@ -144,6 +144,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&portfolio_pid=53111522090006444&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&rft.mms_id=991005885283006444", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=0543=%2227836207%22", "heldBy" : { "isil" : "DE-A96", "id" : "http://lobid.org/organisations/DE-A96#!", @@ -155,6 +156,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&portfolio_pid=53100582450006444&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&rft.mms_id=991005885283006444", + "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=0543=%2227836207%22", "heldBy" : { "isil" : "DE-A96", "id" : "http://lobid.org/organisations/DE-A96#!", @@ -166,6 +168,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=5355783850006452&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=991005705885506452", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0543=%2227836207%22", "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -177,6 +180,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53220694770006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013572431006445", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0543=%2227836207%22", "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -188,6 +192,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53360282040006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2227836207%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -199,6 +204,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53346765620006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2227836207%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -210,6 +216,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53348545120006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", + "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2227836207%22", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -221,6 +228,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53349581340006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025971926406442", + "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=27836207&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10", "heldBy" : { "isil" : "DE-361", "id" : "http://lobid.org/organisations/DE-361#!", @@ -243,6 +251,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53652173090006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044919564006449", + "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,27836207", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99371314897806441.json b/src/test/resources/alma-fix/99371314897806441.json index 0eeb9e6f8..138c13cab 100644 --- a/src/test/resources/alma-fix/99371314897806441.json +++ b/src/test/resources/alma-fix/99371314897806441.json @@ -110,6 +110,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT021352855%22", "heldBy" : { "isil" : "DE-743", "id" : "http://lobid.org/organisations/DE-743#!", @@ -121,6 +122,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT021352855", "heldBy" : { "isil" : "DE-1010", "id" : "http://lobid.org/organisations/DE-1010#!", @@ -132,6 +134,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT021352855", "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -143,6 +146,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT021352855&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -154,6 +158,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT021352855", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -165,6 +170,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021352855&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -187,6 +193,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021352855", "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -198,6 +205,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT021352855", "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", @@ -209,6 +217,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT021352855%22", "heldBy" : { "isil" : "DE-Bi10", "id" : "http://lobid.org/organisations/DE-Bi10#!", @@ -220,6 +229,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22HT021352855%22", "heldBy" : { "isil" : "DE-1393", "id" : "http://lobid.org/organisations/DE-1393#!", @@ -231,6 +241,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT021352855", "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -242,6 +253,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT021352855", "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -253,6 +265,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT021352855", "heldBy" : { "isil" : "DE-Bm40", "id" : "http://lobid.org/organisations/DE-Bm40#!", @@ -264,6 +277,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT021352855%22", "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -286,6 +300,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT021352855&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -297,6 +312,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT021352855%22", "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -308,6 +324,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021352855", "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", @@ -319,6 +336,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT021352855%22", "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -352,6 +370,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT021352855%22", "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", @@ -374,6 +393,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT021352855&local_base=ZBS01", "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -385,6 +405,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT021352855", "heldBy" : { "isil" : "DE-832", "id" : "http://lobid.org/organisations/DE-832#!", @@ -407,6 +428,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021352855", "heldBy" : { "isil" : "DE-38", "id" : "http://lobid.org/organisations/DE-38#!", @@ -418,6 +440,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53133004370006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=990016111720106464", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT021352855&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", diff --git a/src/test/resources/alma-fix/99371791018506441.json b/src/test/resources/alma-fix/99371791018506441.json index f607b7cd3..3befca832 100644 --- a/src/test/resources/alma-fix/99371791018506441.json +++ b/src/test/resources/alma-fix/99371791018506441.json @@ -103,6 +103,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021613847", "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -114,6 +115,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT021613847", "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -136,6 +138,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT021613847", "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -147,6 +150,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT021613847", "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -158,6 +162,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT021613847&local_base=ZBS01", "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -169,6 +174,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT021613847", "heldBy" : { "isil" : "DE-832", "id" : "http://lobid.org/organisations/DE-832#!", @@ -180,6 +186,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT021613847", "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -191,6 +198,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22HT021613847%22", "heldBy" : { "isil" : "DE-1393", "id" : "http://lobid.org/organisations/DE-1393#!", @@ -213,6 +221,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021613847", "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", @@ -224,6 +233,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021613847&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -246,6 +256,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT021613847", "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", @@ -257,6 +268,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT021613847", "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -279,6 +291,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT021613847", "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -290,6 +303,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT021613847&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -301,6 +315,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT021613847&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -312,6 +327,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT021613847%22", "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -323,6 +339,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT021613847%22", "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -334,6 +351,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT021613847&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -345,6 +363,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT021613847%22", "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", From a415cd834c4c0ff652ed6de24704e651334578d8 Mon Sep 17 00:00:00 2001 From: TobiasNx Date: Thu, 28 Sep 2023 13:18:21 +0200 Subject: [PATCH 16/23] Change property name to seeAlso #1888 --- src/main/resources/alma/fix/macros.fix | 9 +- .../alma-fix/990001412590206441.json | 28 ++--- .../alma-fix/990011470300206441.json | 6 +- .../alma-fix/990014830510206441.json | 8 +- .../alma-fix/990016782920206441.json | 7 +- .../alma-fix/990021367710206441.json | 10 +- .../alma-fix/990021974470206441.json | 10 +- .../alma-fix/990026405480206441.json | 14 +-- .../alma-fix/990030574430206441.json | 4 +- .../alma-fix/990035016180206441.json | 20 +-- .../alma-fix/990041403870206441.json | 4 +- .../alma-fix/990050000600206441.json | 48 +++---- .../alma-fix/990051708340206441.json | 2 +- .../alma-fix/990052965140206441.json | 20 +-- .../alma-fix/990053976760206441.json | 33 +++-- .../alma-fix/990054215550206441.json | 4 +- .../alma-fix/990054301770206441.json | 5 +- .../alma-fix/990054345550206441.json | 60 ++++----- .../alma-fix/990055981810206441.json | 14 +-- .../alma-fix/990058434730206441.json | 44 +++---- .../alma-fix/990058567920206441.json | 72 +++++------ .../alma-fix/990059571560206441.json | 6 +- .../alma-fix/990063549080206441.json | 10 +- .../alma-fix/990065341720206441.json | 2 +- .../alma-fix/990075429930206441.json | 30 ++--- .../alma-fix/990075538650206441.json | 6 +- .../alma-fix/990103899140206441.json | 1 - .../alma-fix/990108873860206441.json | 3 +- .../alma-fix/990109712970206441.json | 6 +- .../alma-fix/990114098170206441.json | 2 +- .../alma-fix/990114617880206441.json | 2 +- .../alma-fix/990118562160206441.json | 2 +- .../alma-fix/990122511970206441.json | 2 +- .../alma-fix/990126276700206441.json | 24 ++-- .../alma-fix/990133067580206441.json | 2 +- .../alma-fix/990139686910206441.json | 2 +- .../alma-fix/990141342350206441.json | 2 +- .../alma-fix/990143325070206441.json | 4 +- .../alma-fix/990156027740206441.json | 2 +- .../alma-fix/990156060190206441.json | 67 +++++----- .../alma-fix/990167595410206441.json | 4 +- .../alma-fix/990171142550206441.json | 10 +- .../alma-fix/990173811970206441.json | 6 +- .../alma-fix/990181275760206441.json | 24 ++-- .../alma-fix/990182814750206441.json | 2 +- .../alma-fix/990183958380206441.json | 8 +- .../alma-fix/990184127410206441.json | 10 +- .../alma-fix/990185607520206441.json | 2 +- .../alma-fix/990185619180206441.json | 2 +- .../alma-fix/990189160110206441.json | 38 +++--- .../alma-fix/990193094010206441.json | 4 +- .../alma-fix/990193229450206441.json | 2 +- .../alma-fix/990193806600206441.json | 2 +- .../alma-fix/990194668760206441.json | 2 +- .../alma-fix/990194744870206441.json | 6 +- .../alma-fix/990197067610206441.json | 10 +- .../alma-fix/990197293880206441.json | 41 +++--- .../alma-fix/990198383780206441.json | 2 +- .../alma-fix/990199611280206441.json | 6 +- .../alma-fix/990202474680206441.json | 4 +- .../alma-fix/990204246530206441.json | 6 +- .../alma-fix/990206060640206441.json | 2 +- .../alma-fix/990207668220206441.json | 2 +- .../alma-fix/990209515320206441.json | 2 +- .../alma-fix/990209817770206441.json | 2 +- .../alma-fix/990210093550206441.json | 12 +- .../alma-fix/990210237770206441.json | 118 +++++++++--------- .../alma-fix/990210285400206441.json | 2 +- .../alma-fix/990210950050206441.json | 2 +- .../alma-fix/990213367870206441.json | 2 +- .../alma-fix/990217478660206441.json | 58 ++++----- .../alma-fix/990218189790206441.json | 2 +- .../alma-fix/990220027540206441.json | 2 +- .../alma-fix/990223521400206441.json | 46 +++---- .../alma-fix/990225056670206441.json | 2 +- .../alma-fix/990363946050206441.json | 6 +- .../alma-fix/990365842280206441.json | 20 +-- .../alma-fix/990366394400206441.json | 2 +- .../alma-fix/990367731740206441.json | 4 +- .../alma-fix/990367761810206441.json | 2 +- .../alma-fix/990368743120206441.json | 2 +- .../alma-fix/991005935279706485.json | 2 +- .../resources/alma-fix/99370678063606441.json | 76 +++++------ .../resources/alma-fix/99370682219806441.json | 4 +- .../resources/alma-fix/99370690532406441.json | 16 +-- .../resources/alma-fix/99370694196806441.json | 2 +- .../resources/alma-fix/99370699582506441.json | 2 +- .../resources/alma-fix/99370771475306441.json | 16 +-- .../resources/alma-fix/99370782520706441.json | 46 +++---- .../resources/alma-fix/99371014448006441.json | 2 +- .../resources/alma-fix/99371050452706441.json | 2 +- .../resources/alma-fix/99371147104906441.json | 18 +-- .../resources/alma-fix/99371314897806441.json | 46 +++---- .../resources/alma-fix/99371530278506441.json | 2 +- .../resources/alma-fix/99371791018506441.json | 39 +++--- .../resources/alma-fix/99372423490706441.json | 2 +- 96 files changed, 673 insertions(+), 680 deletions(-) diff --git a/src/main/resources/alma/fix/macros.fix b/src/main/resources/alma/fix/macros.fix index e5594cd1d..5acc9ed0a 100644 --- a/src/main/resources/alma/fix/macros.fix +++ b/src/main/resources/alma/fix/macros.fix @@ -274,14 +274,15 @@ do put_macro("opacLink") lookup("$i.@opacLinkIsbn","isil2opac_isbn", delete:"true") split_field("$i.@opacLinkZdbId","\\{isbn\\}") end + set_array("hasItem[].$last.seeAlso[]") if exists("$i.@opacLinkZdbId.1") - paste("hasItem[].$last.opacLink","$i.@opacLinkZdbId.1","zdbId","$i.@opacLinkZdbId.2",join_char:"") + paste("hasItem[].$last.seeAlso[].$append","$i.@opacLinkZdbId.1","zdbId","$i.@opacLinkZdbId.2",join_char:"") elsif exists("$i.@opacLinkHbzId.1") - paste("hasItem[].$last.opacLink","$i.@opacLinkHbzId.1","hbzId","$i.@opacLinkHbzId.2",join_char:"") + paste("hasItem[].$last.seeAlso[].$append","$i.@opacLinkHbzId.1","hbzId","$i.@opacLinkHbzId.2",join_char:"") elsif exists("$i.@opacLinkIsbn.1") - paste("hasItem[].$last.opacLink","$i.@opacLinkIsbn.1","isbn[].1","$i.@opacLinkIsbn.2",join_char:"") + paste("hasItem[].$last.seeAlso[].$append","$i.@opacLinkIsbn.1","isbn[].1","$i.@opacLinkIsbn.2",join_char:"") elsif exists("$i.@opacLinkIssn.1") - paste("hasItem[].$last.opacLink","$i.@opacLinkIssn.1","issn[].1","$i.@opacLinkIssn.2",join_char:"") + paste("hasItem[].$last.seeAlso[].$append","$i.@opacLinkIssn.1","issn[].1","$i.@opacLinkIssn.2",join_char:"") end end diff --git a/src/test/resources/alma-fix/990001412590206441.json b/src/test/resources/alma-fix/990001412590206441.json index a4418a861..929e4846e 100644 --- a/src/test/resources/alma-fix/990001412590206441.json +++ b/src/test/resources/alma-fix/990001412590206441.json @@ -119,7 +119,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000161712", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000161712" ], "id" : "http://lobid.org/items/990001412590206441:DE-468:23138155830006447#!" }, { "label" : "lobid Bestandsressource", @@ -133,7 +133,7 @@ "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000161712&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000161712&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990001412590206441:DE-708:2397648970006464#!" }, { "label" : "lobid Bestandsressource", @@ -147,7 +147,7 @@ "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990001412590206441:DE-929:2367328890007506#!" }, { "label" : "lobid Bestandsressource", @@ -161,7 +161,7 @@ "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990001412590206441:DE-929:2367328900007506#!" }, { "label" : "lobid Bestandsressource", @@ -175,7 +175,7 @@ "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000161712%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990001412590206441:DE-929:2367328910007506#!" }, { "label" : "lobid Bestandsressource", @@ -189,7 +189,7 @@ "id" : "http://lobid.org/organisations/DE-121#!", "label" : "Wissenschaftliche Bibliothek der Stadt Trier" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT000161712&local_base=STR01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT000161712&local_base=STR01" ], "id" : "http://lobid.org/items/990001412590206441:DE-121:2319004410007826#!" }, { "label" : "lobid Bestandsressource", @@ -203,7 +203,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000161712%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000161712%22" ], "id" : "http://lobid.org/items/990001412590206441:DE-290:23197423230006445#!" }, { "label" : "lobid Bestandsressource", @@ -217,7 +217,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000161712", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000161712" ], "id" : "http://lobid.org/items/990001412590206441:DE-5:23231651750006467#!" }, { "label" : "lobid Bestandsressource", @@ -244,7 +244,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000161712", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000161712" ], "id" : "http://lobid.org/items/990001412590206441:DE-61:23299197890006443#!" }, { "label" : "lobid Bestandsressource", @@ -258,7 +258,7 @@ "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000161712", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000161712" ], "id" : "http://lobid.org/items/990001412590206441:DE-38:23307640680006476#!" }, { "label" : "lobid Bestandsressource", @@ -272,7 +272,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000161712&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000161712&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990001412590206441:DE-6:23507162560006449#!" }, { "label" : "lobid Bestandsressource", @@ -286,7 +286,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000161712", + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000161712" ], "id" : "http://lobid.org/items/990001412590206441:DE-467:2394316400006462#!" }, { "label" : "lobid Bestandsressource", @@ -300,7 +300,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000161712", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000161712" ], "id" : "http://lobid.org/items/990001412590206441:DE-466:23135518530006463#!" }, { "label" : "lobid Bestandsressource", @@ -312,7 +312,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000161712", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000161712" ], "id" : "http://lobid.org/items/990001412590206441:DE-466:22135518500006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990011470300206441.json b/src/test/resources/alma-fix/990011470300206441.json index afa0fbe6a..85567ffd5 100644 --- a/src/test/resources/alma-fix/990011470300206441.json +++ b/src/test/resources/alma-fix/990011470300206441.json @@ -101,7 +101,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003109553", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003109553" ], "id" : "http://lobid.org/items/990011470300206441:DE-385:23264500340006470#!" }, { "label" : "lobid Bestandsressource", @@ -115,7 +115,7 @@ "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003109553&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003109553&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990011470300206441:DE-6-015:23600509680006449#!" }, { "label" : "lobid Bestandsressource", @@ -127,7 +127,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003109553", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003109553" ], "id" : "http://lobid.org/items/990011470300206441:DE-385:22264500330006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990014830510206441.json b/src/test/resources/alma-fix/990014830510206441.json index ba4820a95..b410be581 100644 --- a/src/test/resources/alma-fix/990014830510206441.json +++ b/src/test/resources/alma-fix/990014830510206441.json @@ -104,7 +104,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003864492", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003864492" ], "id" : "http://lobid.org/items/990014830510206441:DE-385:23291734220006470#!" }, { "label" : "lobid Bestandsressource", @@ -118,7 +118,7 @@ "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT003864492", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT003864492" ], "id" : "http://lobid.org/items/990014830510206441:DE-5-58:23241836240006467#!" }, { "label" : "lobid Bestandsressource", @@ -132,7 +132,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT003864492&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT003864492&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990014830510206441:DE-465:23382608040006446#!" }, { "label" : "lobid Bestandsressource", @@ -144,7 +144,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003864492", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003864492" ], "id" : "http://lobid.org/items/990014830510206441:DE-385:22291734190006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990016782920206441.json b/src/test/resources/alma-fix/990016782920206441.json index 7622eda5f..0f8d0cfd8 100644 --- a/src/test/resources/alma-fix/990016782920206441.json +++ b/src/test/resources/alma-fix/990016782920206441.json @@ -93,7 +93,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT004285445&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT004285445&local_base=MHE01" ], "id" : "http://lobid.org/items/990016782920206441:DE-1156:2311409300006459#!" }, { "label" : "lobid Bestandsressource", @@ -107,7 +107,6 @@ "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHD01&doc_001_number=HT004285445&local_base=MHD01", "id" : "http://lobid.org/items/990016782920206441:DE-575:2393551510006480#!" }, { "label" : "lobid Bestandsressource", @@ -121,7 +120,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT004285445%22", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT004285445%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990016782920206441:DE-107:237988430007506#!" }, { "label" : "lobid Bestandsressource", @@ -135,7 +134,7 @@ "id" : "http://lobid.org/organisations/DE-6-286#!", "label" : "Universität Münster, Institut für Musikpädagogik, Bibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004285445&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004285445&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990016782920206441:DE-6-286:23506545980006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990021367710206441.json b/src/test/resources/alma-fix/990021367710206441.json index 4652acd84..040a64135 100644 --- a/src/test/resources/alma-fix/990021367710206441.json +++ b/src/test/resources/alma-fix/990021367710206441.json @@ -100,7 +100,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT005207972%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT005207972%22" ], "id" : "http://lobid.org/items/990021367710206441:DE-290:23198604440006445#!" }, { "label" : "lobid Bestandsressource", @@ -114,7 +114,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT005207972%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT005207972%22" ], "id" : "http://lobid.org/items/990021367710206441:DE-290:23198604460006445#!" }, { "label" : "lobid Bestandsressource", @@ -128,7 +128,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005207972", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005207972" ], "id" : "http://lobid.org/items/990021367710206441:DE-385:23252207750006470#!" }, { "label" : "lobid Bestandsressource", @@ -153,12 +153,12 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005207972", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005207972" ], "id" : "http://lobid.org/items/990021367710206441:DE-385:22252207740006470#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT005207972", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT005207972" ], "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", diff --git a/src/test/resources/alma-fix/990021974470206441.json b/src/test/resources/alma-fix/990021974470206441.json index a8bb3021b..02f2e95a1 100644 --- a/src/test/resources/alma-fix/990021974470206441.json +++ b/src/test/resources/alma-fix/990021974470206441.json @@ -112,7 +112,7 @@ "id" : "http://lobid.org/organisations/DE-82-604#!", "label" : "Historisches Institut, Bibliothek" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT005271161&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT005271161&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990021974470206441:DE-82-604:23253806030006448#!" }, { "label" : "lobid Bestandsressource", @@ -126,7 +126,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005271161", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005271161" ], "id" : "http://lobid.org/items/990021974470206441:DE-385:23288625180006470#!" }, { "label" : "lobid Bestandsressource", @@ -166,7 +166,7 @@ "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT005271161", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT005271161" ], "id" : "http://lobid.org/items/990021974470206441:DE-38:23290695210006476#!" }, { "label" : "lobid Bestandsressource", @@ -180,7 +180,7 @@ "id" : "http://lobid.org/organisations/DE-38-208#!", "label" : "Gemeinschaftsbibliothek Internationales Recht" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT005271161", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT005271161" ], "id" : "http://lobid.org/items/990021974470206441:DE-38-208:23290695190006476#!" }, { "label" : "lobid Bestandsressource", @@ -194,7 +194,7 @@ "id" : "http://lobid.org/organisations/DE-6-016#!", "label" : "Universität Münster, Rechtswissenschaftliches Seminar, Bibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT005271161&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT005271161&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990021974470206441:DE-6-016:23561372540006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990026405480206441.json b/src/test/resources/alma-fix/990026405480206441.json index 046b54b02..07ca5a018 100644 --- a/src/test/resources/alma-fix/990026405480206441.json +++ b/src/test/resources/alma-fix/990026405480206441.json @@ -102,7 +102,7 @@ "id" : "http://lobid.org/organisations/DE-Sie5#!", "label" : "Wissenschaftliche Bibliothek des Rhein-Sieg-Kreises" }, - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT006813395%22", + "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT006813395%22" ], "id" : "http://lobid.org/items/990026405480206441:DE-Sie5:2365555310006452#!" }, { "label" : "lobid Bestandsressource", @@ -116,7 +116,7 @@ "id" : "http://lobid.org/organisations/DE-Due62#!", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, - "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT006813395", + "seeAlso" : [ "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT006813395" ], "id" : "http://lobid.org/items/990026405480206441:DE-Due62:2332858470006455#!" }, { "label" : "lobid Bestandsressource", @@ -130,7 +130,7 @@ "id" : "http://lobid.org/organisations/DE-Zw1#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Bibliotheca Bipontina" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=2", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990026405480206441:DE-Zw1:2310230370007506#!" }, { "label" : "lobid Bestandsressource", @@ -144,7 +144,7 @@ "id" : "http://lobid.org/organisations/DE-Zw1#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Bibliotheca Bipontina" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=2", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990026405480206441:DE-Zw1:2310230380007506#!" }, { "label" : "lobid Bestandsressource", @@ -171,7 +171,7 @@ "id" : "http://lobid.org/organisations/DE-38-420#!", "label" : "Historisches Institut, Abteilung für Mittlere und Neuere Geschichte mit Abteilung für Nationalismusforschung, Bibliothek" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT006813395", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT006813395" ], "id" : "http://lobid.org/items/990026405480206441:DE-38-420:23288776350006476#!" }, { "label" : "lobid Bestandsressource", @@ -185,7 +185,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006813395", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006813395" ], "id" : "http://lobid.org/items/990026405480206441:DE-466:23148766830006463#!" }, { "label" : "lobid Bestandsressource", @@ -197,7 +197,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006813395", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006813395" ], "id" : "http://lobid.org/items/990026405480206441:DE-466:22148766820006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990030574430206441.json b/src/test/resources/alma-fix/990030574430206441.json index e89a75ff6..ae0f3d7ff 100644 --- a/src/test/resources/alma-fix/990030574430206441.json +++ b/src/test/resources/alma-fix/990030574430206441.json @@ -77,7 +77,7 @@ "id" : "http://lobid.org/organisations/DE-5-13#!", "label" : "Universität Bonn, Institut für Germanistik, Vergleichende Literatur- und Kulturwissenschaft, Bibliothek" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT007847893", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT007847893" ], "id" : "http://lobid.org/items/990030574430206441:DE-5-13:23308126210006467#!" }, { "label" : "lobid Bestandsressource", @@ -91,7 +91,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT007847893", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT007847893" ], "id" : "http://lobid.org/items/990030574430206441:DE-5:23308126230006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990035016180206441.json b/src/test/resources/alma-fix/990035016180206441.json index 8285c0400..4127968e0 100644 --- a/src/test/resources/alma-fix/990035016180206441.json +++ b/src/test/resources/alma-fix/990035016180206441.json @@ -90,7 +90,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT008733617", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT008733617" ], "id" : "http://lobid.org/items/990035016180206441:DE-468:23121154640006447#!" }, { "label" : "lobid Bestandsressource", @@ -104,7 +104,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT008733617%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT008733617%22" ], "id" : "http://lobid.org/items/990035016180206441:DE-290:23200446830006445#!" }, { "label" : "lobid Bestandsressource", @@ -144,7 +144,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990035016180206441:DE-465:23372647300006446#!" }, { "label" : "lobid Bestandsressource", @@ -158,7 +158,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990035016180206441:DE-465:23372647280006446#!" }, { "label" : "lobid Bestandsressource", @@ -172,7 +172,7 @@ "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT008733617", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT008733617" ], "id" : "http://lobid.org/items/990035016180206441:DE-38:23229037390006476#!" }, { "label" : "lobid Bestandsressource", @@ -186,7 +186,7 @@ "id" : "http://lobid.org/organisations/DE-6-Z#!", "label" : "Universitäts- und Landesbibliothek Münster, Zeitungs- und Pressearchiv" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990035016180206441:DE-6-Z:23504836650006449#!" }, { "label" : "lobid Bestandsressource", @@ -200,7 +200,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT008733617", + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT008733617" ], "id" : "http://lobid.org/items/990035016180206441:DE-467:2377634040006462#!" }, { "label" : "lobid Bestandsressource", @@ -214,7 +214,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT008733617", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT008733617" ], "id" : "http://lobid.org/items/990035016180206441:DE-466:23125280390006463#!" }, { "label" : "lobid Bestandsressource", @@ -226,12 +226,12 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT008733617", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT008733617" ], "id" : "http://lobid.org/items/990035016180206441:DE-466:22125280380006463#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT008733617", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT008733617" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", diff --git a/src/test/resources/alma-fix/990041403870206441.json b/src/test/resources/alma-fix/990041403870206441.json index 460e8ab55..a16682f76 100644 --- a/src/test/resources/alma-fix/990041403870206441.json +++ b/src/test/resources/alma-fix/990041403870206441.json @@ -75,7 +75,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT009965981", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT009965981" ], "id" : "http://lobid.org/items/990041403870206441:DE-5:23218652060006467#!" }, { "label" : "lobid Bestandsressource", @@ -89,7 +89,7 @@ "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT009965981", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT009965981" ], "id" : "http://lobid.org/items/990041403870206441:DE-38:23320523800006476#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990050000600206441.json b/src/test/resources/alma-fix/990050000600206441.json index 5aeb8be98..6c6ff3116 100644 --- a/src/test/resources/alma-fix/990050000600206441.json +++ b/src/test/resources/alma-fix/990050000600206441.json @@ -175,7 +175,7 @@ "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT006855611&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611" ], "id" : "http://lobid.org/items/990050000600206441:DE-Lan1:2365786130007476#!" }, { "label" : "lobid Bestandsressource", @@ -189,7 +189,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006855611", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT006855611" ], "id" : "http://lobid.org/items/990050000600206441:DE-466:23137495220006463#!" }, { "label" : "lobid Bestandsressource", @@ -213,7 +213,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611" ], "id" : "http://lobid.org/items/990050000600206441:DE-386:2265786120007476#!" }, { "label" : "lobid Bestandsressource", @@ -226,7 +226,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611" ], "id" : "http://lobid.org/items/990050000600206441:DE-386:2265786090007476#!" }, { "label" : "lobid Bestandsressource", @@ -239,7 +239,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990050000600206441:DE-465:22369588590006446#!" }, { "label" : "lobid Bestandsressource", @@ -252,12 +252,12 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990050000600206441:DE-465:22369588600006446#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT006855611", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT006855611" ], "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -276,7 +276,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT006855611%22", + "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT006855611%22" ], "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", @@ -295,7 +295,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT006855611&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT006855611&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -314,7 +314,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT006855611%22", + "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT006855611%22" ], "heldBy" : { "isil" : "DE-Bi10", "id" : "http://lobid.org/organisations/DE-Bi10#!", @@ -324,7 +324,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT006855611", + "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT006855611" ], "heldBy" : { "isil" : "DE-Bm40", "id" : "http://lobid.org/organisations/DE-Bm40#!", @@ -334,7 +334,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT006855611%22", + "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT006855611%22" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -344,7 +344,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT006855611", + "seeAlso" : [ "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT006855611" ], "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -354,7 +354,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT006855611%22", + "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT006855611%22" ], "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -364,7 +364,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT006855611%22", + "seeAlso" : [ "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT006855611%22" ], "heldBy" : { "isil" : "DE-743", "id" : "http://lobid.org/organisations/DE-743#!", @@ -383,7 +383,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22HT006855611%22", + "seeAlso" : [ "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22HT006855611%22" ], "heldBy" : { "isil" : "DE-1393", "id" : "http://lobid.org/organisations/DE-1393#!", @@ -393,7 +393,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT006855611&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT006855611&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -403,7 +403,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT006855611", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT006855611" ], "heldBy" : { "isil" : "DE-832", "id" : "http://lobid.org/organisations/DE-832#!", @@ -413,7 +413,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT006855611%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT006855611%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -423,7 +423,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT006855611", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT006855611" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -451,7 +451,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT006855611", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT006855611" ], "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -461,7 +461,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -471,7 +471,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT006855611", + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT006855611" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -481,7 +481,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT006855611", + "seeAlso" : [ "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT006855611" ], "heldBy" : { "isil" : "DE-1010", "id" : "http://lobid.org/organisations/DE-1010#!", diff --git a/src/test/resources/alma-fix/990051708340206441.json b/src/test/resources/alma-fix/990051708340206441.json index d85d8464f..33145159c 100644 --- a/src/test/resources/alma-fix/990051708340206441.json +++ b/src/test/resources/alma-fix/990051708340206441.json @@ -72,7 +72,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT009976241", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT009976241" ], "id" : "http://lobid.org/items/990051708340206441:DE-466:23139237860006463#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990052965140206441.json b/src/test/resources/alma-fix/990052965140206441.json index c694df736..16f8f75b7 100644 --- a/src/test/resources/alma-fix/990052965140206441.json +++ b/src/test/resources/alma-fix/990052965140206441.json @@ -134,7 +134,7 @@ "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT002529477%22&selectedViewBranchlib=0", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT002529477%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990052965140206441:DE-929:2217153360007506#!" }, { "label" : "lobid Bestandsressource", @@ -146,12 +146,12 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT002529477", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT002529477" ], "id" : "http://lobid.org/items/990052965140206441:DE-385:22279005870006470#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT002529477", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT002529477" ], "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -170,7 +170,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT002529477%22", + "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT002529477%22" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -180,7 +180,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT002529477&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT002529477&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -190,7 +190,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT002529477", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT002529477" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -200,7 +200,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT002529477&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT002529477&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -210,7 +210,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT002529477", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT002529477" ], "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -220,7 +220,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT002529477", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT002529477" ], "heldBy" : { "isil" : "DE-38", "id" : "http://lobid.org/organisations/DE-38#!", @@ -230,7 +230,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT002529477&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT002529477&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990053976760206441.json b/src/test/resources/alma-fix/990053976760206441.json index b27897423..64a36db1b 100644 --- a/src/test/resources/alma-fix/990053976760206441.json +++ b/src/test/resources/alma-fix/990053976760206441.json @@ -226,7 +226,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=00319244", + "seeAlso" : [ "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=00319244" ], "id" : "http://lobid.org/items/990053976760206441:DE-465:23409593810006446#!" }, { "label" : "lobid Bestandsressource", @@ -240,7 +240,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990053976760206441:DE-Kob7:2332332670008057#!" }, { "label" : "lobid Bestandsressource", @@ -254,7 +254,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990053976760206441:DE-Kob7:2332332740008057#!" }, { "label" : "lobid Bestandsressource", @@ -268,7 +268,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990053976760206441:DE-Kob7:2332332700008057#!" }, { "label" : "lobid Bestandsressource", @@ -282,7 +282,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990053976760206441:DE-Kob7:2332332710008057#!" }, { "label" : "lobid Bestandsressource", @@ -296,7 +296,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990053976760206441:DE-Kob7:2332332720008057#!" }, { "label" : "lobid Bestandsressource", @@ -310,7 +310,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990053976760206441:DE-Kob7:2332332730008057#!" }, { "label" : "lobid Bestandsressource", @@ -324,7 +324,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "opacLink" : "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990053976760206441:DE-467:2379886190006462#!" }, { "label" : "lobid Bestandsressource", @@ -373,7 +373,6 @@ "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", "id" : "http://lobid.org/items/990053976760206441:DE-Lan1:2266381790007476#!" }, { "label" : "lobid Bestandsressource", @@ -398,7 +397,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22123550-3%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22123550-3%22" ], "id" : "http://lobid.org/items/990053976760206441:DE-290:22189310720006445#!" }, { "label" : "lobid Bestandsressource", @@ -411,7 +410,7 @@ "id" : "http://lobid.org/organisations/DE-361#!", "label" : "Universitätsbibliothek Bielefeld" }, - "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=00319244&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10", + "seeAlso" : [ "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=00319244&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10" ], "id" : "http://lobid.org/items/990053976760206441:DE-361:22274254620006442#!" }, { "label" : "lobid Bestandsressource", @@ -424,7 +423,7 @@ "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, - "opacLink" : "https://suchen.ub.rub.de/zdbid/123550-3", + "seeAlso" : [ "https://suchen.ub.rub.de/zdbid/123550-3" ], "id" : "http://lobid.org/items/990053976760206441:DE-294:22175660800006471#!" }, { "label" : "lobid Bestandsressource", @@ -437,7 +436,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=00319244", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=00319244" ], "id" : "http://lobid.org/items/990053976760206441:DE-61:22302058760006443#!" }, { "label" : "lobid Bestandsressource", @@ -462,7 +461,7 @@ "id" : "http://lobid.org/organisations/DE-6-023#!", "label" : "Universität Münster, Bibliothek des Fachbereichs Physik" }, - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244" ], "id" : "http://lobid.org/items/990053976760206441:DE-6-023:22526741320006449#!" }, { "label" : "lobid Bestandsressource", @@ -475,7 +474,7 @@ "id" : "http://lobid.org/organisations/DE-6-123#!", "label" : "Universität Münster, Bibliothek für Erziehungswissenschaft und Kommunikationswissenschaft" }, - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244" ], "id" : "http://lobid.org/items/990053976760206441:DE-6-123:22526741310006449#!" }, { "label" : "lobid Bestandsressource", @@ -488,7 +487,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244" ], "id" : "http://lobid.org/items/990053976760206441:DE-6:22526741340006449#!" }, { "label" : "lobid Bestandsressource", @@ -501,7 +500,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=00319244&scope=catalog&sf=rank", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=00319244&scope=catalog&sf=rank" ], "id" : "http://lobid.org/items/990053976760206441:DE-466:22131234930006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990054215550206441.json b/src/test/resources/alma-fix/990054215550206441.json index 04c362194..2b41a0f31 100644 --- a/src/test/resources/alma-fix/990054215550206441.json +++ b/src/test/resources/alma-fix/990054215550206441.json @@ -155,7 +155,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%221257-9%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%221257-9%22" ], "id" : "http://lobid.org/items/990054215550206441:DE-5:22235621980006467#!" }, { "label" : "lobid Bestandsressource", @@ -168,7 +168,7 @@ "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, - "opacLink" : "https://suchen.ub.rub.de/zdbid/1257-9", + "seeAlso" : [ "https://suchen.ub.rub.de/zdbid/1257-9" ], "id" : "http://lobid.org/items/990054215550206441:DE-294:22184893700006471#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990054301770206441.json b/src/test/resources/alma-fix/990054301770206441.json index 4251af39b..6bd0d42ae 100644 --- a/src/test/resources/alma-fix/990054301770206441.json +++ b/src/test/resources/alma-fix/990054301770206441.json @@ -210,7 +210,6 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=-1=%22133469-4%22", "id" : "http://lobid.org/items/990054301770206441:DE-107:2285922320007506#!" }, { "label" : "lobid Bestandsressource", @@ -247,12 +246,12 @@ "id" : "http://lobid.org/organisations/DE-6-139a#!", "label" : "Kommission Alltagskulturforschung für Westfalen (KAF), Bibliothek" }, - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,01715224", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,01715224" ], "id" : "http://lobid.org/items/990054301770206441:DE-6-139a:22577982090006449#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22133469-4%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%22133469-4%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma-fix/990054345550206441.json b/src/test/resources/alma-fix/990054345550206441.json index edac226c4..fb4d220b0 100644 --- a/src/test/resources/alma-fix/990054345550206441.json +++ b/src/test/resources/alma-fix/990054345550206441.json @@ -247,7 +247,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763870006443#!" }, { "label" : "lobid Bestandsressource", @@ -261,7 +261,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763880006443#!" }, { "label" : "lobid Bestandsressource", @@ -274,7 +274,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763720006443#!" }, { "label" : "lobid Bestandsressource", @@ -288,7 +288,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763800006443#!" }, { "label" : "lobid Bestandsressource", @@ -302,7 +302,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763810006443#!" }, { "label" : "lobid Bestandsressource", @@ -315,7 +315,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763710006443#!" }, { "label" : "lobid Bestandsressource", @@ -328,7 +328,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763610006443#!" }, { "label" : "lobid Bestandsressource", @@ -341,7 +341,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763640006443#!" }, { "label" : "lobid Bestandsressource", @@ -354,7 +354,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763630006443#!" }, { "label" : "lobid Bestandsressource", @@ -367,7 +367,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763620006443#!" }, { "label" : "lobid Bestandsressource", @@ -380,7 +380,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763650006443#!" }, { "label" : "lobid Bestandsressource", @@ -393,7 +393,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763660006443#!" }, { "label" : "lobid Bestandsressource", @@ -406,7 +406,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763670006443#!" }, { "label" : "lobid Bestandsressource", @@ -420,7 +420,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763840006443#!" }, { "label" : "lobid Bestandsressource", @@ -433,7 +433,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763750006443#!" }, { "label" : "lobid Bestandsressource", @@ -447,7 +447,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763830006443#!" }, { "label" : "lobid Bestandsressource", @@ -461,7 +461,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763850006443#!" }, { "label" : "lobid Bestandsressource", @@ -474,7 +474,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763700006443#!" }, { "label" : "lobid Bestandsressource", @@ -487,7 +487,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763740006443#!" }, { "label" : "lobid Bestandsressource", @@ -501,7 +501,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763820006443#!" }, { "label" : "lobid Bestandsressource", @@ -515,7 +515,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763860006443#!" }, { "label" : "lobid Bestandsressource", @@ -529,7 +529,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763770006443#!" }, { "label" : "lobid Bestandsressource", @@ -542,7 +542,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763690006443#!" }, { "label" : "lobid Bestandsressource", @@ -555,7 +555,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763680006443#!" }, { "label" : "lobid Bestandsressource", @@ -568,7 +568,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763590006443#!" }, { "label" : "lobid Bestandsressource", @@ -581,7 +581,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763600006443#!" }, { "label" : "lobid Bestandsressource", @@ -594,7 +594,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23317763580006443#!" }, { "label" : "lobid Bestandsressource", @@ -607,7 +607,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=01770403" ], "id" : "http://lobid.org/items/990054345550206441:DE-61:23349048300006443#!" }, { "label" : "lobid Bestandsressource", @@ -655,7 +655,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22619424-2%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22619424-2%22" ], "id" : "http://lobid.org/items/990054345550206441:DE-5:22214232350006467#!" }, { "label" : "lobid Bestandsressource", @@ -668,7 +668,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22619424-2%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%22619424-2%22" ], "id" : "http://lobid.org/items/990054345550206441:DE-5:22214232360006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990055981810206441.json b/src/test/resources/alma-fix/990055981810206441.json index 740ce2e3e..c5e784e17 100644 --- a/src/test/resources/alma-fix/990055981810206441.json +++ b/src/test/resources/alma-fix/990055981810206441.json @@ -284,7 +284,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:23651985810006449#!" }, { "label" : "lobid Bestandsressource", @@ -298,7 +298,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:23650616280006449#!" }, { "label" : "lobid Bestandsressource", @@ -312,7 +312,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:23650616270006449#!" }, { "label" : "lobid Bestandsressource", @@ -337,7 +337,7 @@ "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, - "opacLink" : "https://suchen.ub.rub.de/zdbid/1089874-8", + "seeAlso" : [ "https://suchen.ub.rub.de/zdbid/1089874-8" ], "id" : "http://lobid.org/items/990055981810206441:DE-294:22118612190006471#!" }, { "label" : "lobid Bestandsressource", @@ -350,7 +350,7 @@ "id" : "http://lobid.org/organisations/DE-294#!", "label" : "Ruhr-Universität Bochum, Universitätsbibliothek" }, - "opacLink" : "https://suchen.ub.rub.de/zdbid/1089874-8", + "seeAlso" : [ "https://suchen.ub.rub.de/zdbid/1089874-8" ], "id" : "http://lobid.org/items/990055981810206441:DE-294:22118612210006471#!" }, { "label" : "lobid Bestandsressource", @@ -363,7 +363,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:22547318240006449#!" }, { "label" : "lobid Bestandsressource", @@ -376,7 +376,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:22547318250006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990058434730206441.json b/src/test/resources/alma-fix/990058434730206441.json index 20625c8ca..8b1015d4d 100644 --- a/src/test/resources/alma-fix/990058434730206441.json +++ b/src/test/resources/alma-fix/990058434730206441.json @@ -159,7 +159,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000893437", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-468:23143362620006447#!" }, { "label" : "lobid Bestandsressource", @@ -173,7 +173,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT000893437&local_base=ZBS01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT000893437&local_base=ZBS01" ], "id" : "http://lobid.org/items/990058434730206441:DE-Kn41:2317181430006478#!" }, { "label" : "lobid Bestandsressource", @@ -239,7 +239,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000893437%22", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000893437%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-107:2384300260007506#!" }, { "label" : "lobid Bestandsressource", @@ -253,7 +253,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-385:23283899660006470#!" }, { "label" : "lobid Bestandsressource", @@ -267,7 +267,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-385:23283899620006470#!" }, { "label" : "lobid Bestandsressource", @@ -281,7 +281,7 @@ "id" : "http://lobid.org/organisations/DE-5-74#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Abteilung Alte Geschichte, Bibliothek" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-5-74:23287792620006467#!" }, { "label" : "lobid Bestandsressource", @@ -295,7 +295,7 @@ "id" : "http://lobid.org/organisations/DE-5-108#!", "label" : "Universität Bonn, Fachbibliothek der Evangelischen und Katholischen Theologie" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-5-108:23287792640006467#!" }, { "label" : "lobid Bestandsressource", @@ -309,7 +309,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-5:23287792660006467#!" }, { "label" : "lobid Bestandsressource", @@ -375,7 +375,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-465:23378107640006446#!" }, { "label" : "lobid Bestandsressource", @@ -389,7 +389,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-61:23316394070006443#!" }, { "label" : "lobid Bestandsressource", @@ -403,7 +403,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-61:23316394030006443#!" }, { "label" : "lobid Bestandsressource", @@ -417,7 +417,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-61:23316394050006443#!" }, { "label" : "lobid Bestandsressource", @@ -431,7 +431,7 @@ "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000893437", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-38:23301320240006476#!" }, { "label" : "lobid Bestandsressource", @@ -445,7 +445,7 @@ "id" : "http://lobid.org/organisations/DE-38-622#!", "label" : "Institut für Katholische Theologie, Bibliothek" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000893437", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-38-622:23301320220006476#!" }, { "label" : "lobid Bestandsressource", @@ -459,7 +459,7 @@ "id" : "http://lobid.org/organisations/DE-6-119#!", "label" : "Universität Münster, Institutum Judaicum Delitzschianum, Bibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-119:23602951480006449#!" }, { "label" : "lobid Bestandsressource", @@ -473,7 +473,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6:23602951640006449#!" }, { "label" : "lobid Bestandsressource", @@ -487,7 +487,7 @@ "id" : "http://lobid.org/organisations/DE-6-006#!", "label" : "Universität Münster, Evangelisch-Theologische Fakultät, Bibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-006:23602951510006449#!" }, { "label" : "lobid Bestandsressource", @@ -501,7 +501,7 @@ "id" : "http://lobid.org/organisations/DE-6-011#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abteilung Johannisstr." }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-011:23602951550006449#!" }, { "label" : "lobid Bestandsressource", @@ -515,7 +515,7 @@ "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-248:23602951590006449#!" }, { "label" : "lobid Bestandsressource", @@ -529,7 +529,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000893437", + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-467:2394453370006462#!" }, { "label" : "lobid Bestandsressource", @@ -543,7 +543,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000893437", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-466:23136243400006463#!" }, { "label" : "lobid Bestandsressource", @@ -610,7 +610,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-385:22283899610006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990058567920206441.json b/src/test/resources/alma-fix/990058567920206441.json index 2702a0e87..6f81e05cb 100644 --- a/src/test/resources/alma-fix/990058567920206441.json +++ b/src/test/resources/alma-fix/990058567920206441.json @@ -172,7 +172,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000909138", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-468:23108852790006447#!" }, { "label" : "lobid Bestandsressource", @@ -199,7 +199,7 @@ "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990058567920206441:DE-708:23110796430006464#!" }, { "label" : "lobid Bestandsressource", @@ -213,7 +213,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-386:2386676830007476#!" }, { "label" : "lobid Bestandsressource", @@ -227,7 +227,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-386:2386676840007476#!" }, { "label" : "lobid Bestandsressource", @@ -241,7 +241,7 @@ "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-Lan1:2386676860007476#!" }, { "label" : "lobid Bestandsressource", @@ -255,7 +255,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT000909138&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT000909138&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-82:23253024690006448#!" }, { "label" : "lobid Bestandsressource", @@ -269,7 +269,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000909138%22", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000909138%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-107:2317906360007506#!" }, { "label" : "lobid Bestandsressource", @@ -283,7 +283,7 @@ "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000909138%22&selectedViewBranchlib=0", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000909138%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-929:2317906380007506#!" }, { "label" : "lobid Bestandsressource", @@ -297,7 +297,7 @@ "id" : "http://lobid.org/organisations/DE-121#!", "label" : "Wissenschaftliche Bibliothek der Stadt Trier" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT000909138&local_base=STR01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT000909138&local_base=STR01" ], "id" : "http://lobid.org/items/990058567920206441:DE-121:2310241930007826#!" }, { "label" : "lobid Bestandsressource", @@ -311,7 +311,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000909138%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000909138%22" ], "id" : "http://lobid.org/items/990058567920206441:DE-290:23201690680006445#!" }, { "label" : "lobid Bestandsressource", @@ -325,7 +325,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000909138%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000909138%22" ], "id" : "http://lobid.org/items/990058567920206441:DE-290:23201690660006445#!" }, { "label" : "lobid Bestandsressource", @@ -339,7 +339,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221800006470#!" }, { "label" : "lobid Bestandsressource", @@ -353,7 +353,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221820006470#!" }, { "label" : "lobid Bestandsressource", @@ -367,7 +367,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221780006470#!" }, { "label" : "lobid Bestandsressource", @@ -381,7 +381,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000909138", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-5:23263182640006467#!" }, { "label" : "lobid Bestandsressource", @@ -395,7 +395,7 @@ "id" : "http://lobid.org/organisations/DE-5-162#!", "label" : "Universität Bonn, Institut für Politische Wissenschaft und Soziologie, Bibliothek" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000909138", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-5-162:23263182590006467#!" }, { "label" : "lobid Bestandsressource", @@ -513,7 +513,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-465:23421400070006446#!" }, { "label" : "lobid Bestandsressource", @@ -527,7 +527,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-465:23421400050006446#!" }, { "label" : "lobid Bestandsressource", @@ -541,7 +541,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000909138", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-61:23269116240006443#!" }, { "label" : "lobid Bestandsressource", @@ -555,7 +555,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990058567920206441:DE-Kob7:2335729480008057#!" }, { "label" : "lobid Bestandsressource", @@ -569,7 +569,7 @@ "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-38:23211428530006476#!" }, { "label" : "lobid Bestandsressource", @@ -583,7 +583,7 @@ "id" : "http://lobid.org/organisations/DE-38-132#!", "label" : "Gemeinsame Fachbibliothek Soziologie" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-38-132:23211428510006476#!" }, { "label" : "lobid Bestandsressource", @@ -597,7 +597,7 @@ "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-38:23211428550006476#!" }, { "label" : "lobid Bestandsressource", @@ -611,7 +611,7 @@ "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-248:23599273300006449#!" }, { "label" : "lobid Bestandsressource", @@ -625,7 +625,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6:23599273340006449#!" }, { "label" : "lobid Bestandsressource", @@ -639,7 +639,7 @@ "id" : "http://lobid.org/organisations/DE-6-A#!", "label" : "Universitäts- und Landesbibliothek Münster, Zweigbibliothek Sozialwissenschaften" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-A:23599273320006449#!" }, { "label" : "lobid Bestandsressource", @@ -653,7 +653,7 @@ "id" : "http://lobid.org/organisations/DE-6-069#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholischen-Theologischen Fakultät, Abteilung Hüfferstr." }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-069:23599273180006449#!" }, { "label" : "lobid Bestandsressource", @@ -667,7 +667,7 @@ "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-015:23599273260006449#!" }, { "label" : "lobid Bestandsressource", @@ -681,7 +681,7 @@ "id" : "http://lobid.org/organisations/DE-6-011#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abteilung Johannisstr." }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-011:23599273210006449#!" }, { "label" : "lobid Bestandsressource", @@ -695,7 +695,7 @@ "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-248:23599273280006449#!" }, { "label" : "lobid Bestandsressource", @@ -709,7 +709,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000909138", + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-467:2383523970006462#!" }, { "label" : "lobid Bestandsressource", @@ -723,7 +723,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000909138", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-466:23139972710006463#!" }, { "label" : "lobid Bestandsressource", @@ -735,7 +735,7 @@ "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990058567920206441:DE-708:22110796420006464#!" }, { "label" : "lobid Bestandsressource", @@ -747,7 +747,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:22256221770006470#!" }, { "label" : "lobid Bestandsressource", @@ -759,7 +759,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990058567920206441:DE-Kob7:2235729470008057#!" }, { "label" : "lobid Bestandsressource", @@ -771,7 +771,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000909138", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-466:22139972700006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990059571560206441.json b/src/test/resources/alma-fix/990059571560206441.json index a7ddaa723..97e65c354 100644 --- a/src/test/resources/alma-fix/990059571560206441.json +++ b/src/test/resources/alma-fix/990059571560206441.json @@ -137,7 +137,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT001039253&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT001039253&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990059571560206441:DE-82:23246474340006448#!" }, { "label" : "lobid Bestandsressource", @@ -151,7 +151,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT001039253", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT001039253" ], "id" : "http://lobid.org/items/990059571560206441:DE-832:2349652950006477#!" }, { "label" : "lobid Bestandsressource", @@ -165,7 +165,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT001039253", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT001039253" ], "id" : "http://lobid.org/items/990059571560206441:DE-5:23257517760006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990063549080206441.json b/src/test/resources/alma-fix/990063549080206441.json index 19d6f63ec..fb02d6c9e 100644 --- a/src/test/resources/alma-fix/990063549080206441.json +++ b/src/test/resources/alma-fix/990063549080206441.json @@ -127,7 +127,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT003538502", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT003538502" ], "id" : "http://lobid.org/items/990063549080206441:DE-468:23124074000006447#!" }, { "label" : "lobid Bestandsressource", @@ -140,7 +140,7 @@ "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT003538502&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT003538502&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990063549080206441:DE-708:23104630370006464#!" }, { "label" : "lobid Bestandsressource", @@ -153,7 +153,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT003538502", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT003538502" ], "id" : "http://lobid.org/items/990063549080206441:DE-386:2380642040007476#!" }, { "label" : "lobid Bestandsressource", @@ -193,12 +193,12 @@ "id" : "http://lobid.org/organisations/DE-38-125#!", "label" : "Forschungsinstitut für Politische Wissenschaft und Europäische Fragen, Seminar für Politische Wissenschaft, Gemeinsame Bibliothek" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT003538502", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT003538502" ], "id" : "http://lobid.org/items/990063549080206441:DE-38-125:23286017520006476#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003538502&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003538502&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990065341720206441.json b/src/test/resources/alma-fix/990065341720206441.json index c4d43bc26..536e53d8a 100644 --- a/src/test/resources/alma-fix/990065341720206441.json +++ b/src/test/resources/alma-fix/990065341720206441.json @@ -94,7 +94,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004764408&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004764408&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990065341720206441:DE-6:23553702130006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990075429930206441.json b/src/test/resources/alma-fix/990075429930206441.json index cce8dc97b..1d4e952db 100644 --- a/src/test/resources/alma-fix/990075429930206441.json +++ b/src/test/resources/alma-fix/990075429930206441.json @@ -102,7 +102,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000944190%22", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000944190%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-107:2377095800007506#!" }, { "label" : "lobid Bestandsressource", @@ -116,7 +116,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000944190%22", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000944190%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-107:2377095810007506#!" }, { "label" : "lobid Bestandsressource", @@ -130,7 +130,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT000944190", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-832:2344940620006477#!" }, { "label" : "lobid Bestandsressource", @@ -143,7 +143,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000944190", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-385:23280215020006470#!" }, { "label" : "lobid Bestandsressource", @@ -157,7 +157,7 @@ "id" : "http://lobid.org/organisations/DE-5-108#!", "label" : "Universität Bonn, Fachbibliothek der Evangelischen und Katholischen Theologie" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000944190", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-5-108:23276729420006467#!" }, { "label" : "lobid Bestandsressource", @@ -171,7 +171,7 @@ "id" : "http://lobid.org/organisations/DE-5-20#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Bibliothek" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000944190", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-5-20:23276729400006467#!" }, { "label" : "lobid Bestandsressource", @@ -237,7 +237,7 @@ "id" : "http://lobid.org/organisations/DE-38-434#!", "label" : "Petrarca-Institut der Universität zu Köln, Bibliothek" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000944190", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-38-434:23213349030006476#!" }, { "label" : "lobid Bestandsressource", @@ -251,7 +251,7 @@ "id" : "http://lobid.org/organisations/DE-38-432#!", "label" : "Thomas-Institut, Bibliothek" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000944190", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-38-432:23213349050006476#!" }, { "label" : "lobid Bestandsressource", @@ -265,7 +265,7 @@ "id" : "http://lobid.org/organisations/DE-6-020#!", "label" : "Universität Münster, Englisches Seminar, Bibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-6-020:23595716610006449#!" }, { "label" : "lobid Bestandsressource", @@ -279,7 +279,7 @@ "id" : "http://lobid.org/organisations/DE-6-246#!", "label" : "Universität Münster, Germanistisches Institut, Bibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-6-246:23595716590006449#!" }, { "label" : "lobid Bestandsressource", @@ -293,7 +293,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-6:23595716630006449#!" }, { "label" : "lobid Bestandsressource", @@ -316,7 +316,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000944190", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-385:22280215010006470#!" }, { "label" : "lobid Bestandsressource", @@ -328,12 +328,12 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000944190", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-466:22124728180006463#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000944190", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT000944190" ], "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -343,7 +343,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000944190", + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000944190" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", diff --git a/src/test/resources/alma-fix/990075538650206441.json b/src/test/resources/alma-fix/990075538650206441.json index 43e4b68a8..ef269d5b1 100644 --- a/src/test/resources/alma-fix/990075538650206441.json +++ b/src/test/resources/alma-fix/990075538650206441.json @@ -138,7 +138,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT003184116&local_base=ZBS01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT003184116&local_base=ZBS01" ], "id" : "http://lobid.org/items/990075538650206441:DE-Kn41:2325727750006478#!" }, { "label" : "lobid Bestandsressource", @@ -152,7 +152,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT003184116", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT003184116" ], "id" : "http://lobid.org/items/990075538650206441:DE-466:23134766780006463#!" }, { "label" : "lobid Bestandsressource", @@ -177,7 +177,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT003184116", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT003184116" ], "id" : "http://lobid.org/items/990075538650206441:DE-466:22134766770006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990103899140206441.json b/src/test/resources/alma-fix/990103899140206441.json index 56cec54ee..47cb9b39b 100644 --- a/src/test/resources/alma-fix/990103899140206441.json +++ b/src/test/resources/alma-fix/990103899140206441.json @@ -118,7 +118,6 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=-1=%22590016-5%22", "id" : "http://lobid.org/items/990103899140206441:DE-107:2263335540007506#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990108873860206441.json b/src/test/resources/alma-fix/990108873860206441.json index a19c3e732..272b27a35 100644 --- a/src/test/resources/alma-fix/990108873860206441.json +++ b/src/test/resources/alma-fix/990108873860206441.json @@ -157,7 +157,6 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=-1=%221500025-4%22", "id" : "http://lobid.org/items/990108873860206441:DE-107:2263798630007506#!" }, { "label" : "lobid Bestandsressource", @@ -173,7 +172,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=14735849&scope=catalog&sf=rank", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=14735849&scope=catalog&sf=rank" ], "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", diff --git a/src/test/resources/alma-fix/990109712970206441.json b/src/test/resources/alma-fix/990109712970206441.json index 1e40fd114..f7e227267 100644 --- a/src/test/resources/alma-fix/990109712970206441.json +++ b/src/test/resources/alma-fix/990109712970206441.json @@ -639,7 +639,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22" ], "id" : "http://lobid.org/items/990109712970206441:DE-5:22316628570006467#!" }, { "label" : "lobid Bestandsressource", @@ -652,7 +652,7 @@ "id" : "http://lobid.org/organisations/DE-Bo59#!", "label" : "Beethoven-Haus Bonn, Bibliothek" }, - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22" ], "id" : "http://lobid.org/items/990109712970206441:DE-Bo59:22316628560006467#!" }, { "label" : "lobid Bestandsressource", @@ -665,7 +665,7 @@ "id" : "http://lobid.org/organisations/DE-Bo59#!", "label" : "Beethoven-Haus Bonn, Bibliothek" }, - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222000012-1%22" ], "id" : "http://lobid.org/items/990109712970206441:DE-Bo59:22316628550006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990114098170206441.json b/src/test/resources/alma-fix/990114098170206441.json index 8dbfc8463..3905690b6 100644 --- a/src/test/resources/alma-fix/990114098170206441.json +++ b/src/test/resources/alma-fix/990114098170206441.json @@ -148,7 +148,7 @@ "id" : "http://lobid.org/organisations/DE-6-069#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholischen-Theologischen Fakultät, Abteilung Hüfferstr." }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT013083243&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT013083243&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990114098170206441:DE-6-069:23507172540006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990114617880206441.json b/src/test/resources/alma-fix/990114617880206441.json index 043ed27bd..731515d1e 100644 --- a/src/test/resources/alma-fix/990114617880206441.json +++ b/src/test/resources/alma-fix/990114617880206441.json @@ -95,7 +95,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT013135581", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT013135581" ], "id" : "http://lobid.org/items/990114617880206441:DE-61:23257820090006443#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990118562160206441.json b/src/test/resources/alma-fix/990118562160206441.json index bb1a753f4..64cabbab7 100644 --- a/src/test/resources/alma-fix/990118562160206441.json +++ b/src/test/resources/alma-fix/990118562160206441.json @@ -101,7 +101,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT013532539&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT013532539&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990118562160206441:DE-465:23420787060006446#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990122511970206441.json b/src/test/resources/alma-fix/990122511970206441.json index 58f4daab9..c2e50a230 100644 --- a/src/test/resources/alma-fix/990122511970206441.json +++ b/src/test/resources/alma-fix/990122511970206441.json @@ -82,7 +82,7 @@ "id" : "http://lobid.org/organisations/DE-Kn38#!", "label" : "Hochschule für Musik und Tanz Köln, Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=TT000075751&local_base=MHK01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=TT000075751&local_base=MHK01" ], "id" : "http://lobid.org/items/990122511970206441:DE-Kn38:2319933740006460#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990126276700206441.json b/src/test/resources/alma-fix/990126276700206441.json index bee3c433e..c1a2188cd 100644 --- a/src/test/resources/alma-fix/990126276700206441.json +++ b/src/test/resources/alma-fix/990126276700206441.json @@ -118,7 +118,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT014015351", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT014015351" ], "id" : "http://lobid.org/items/990126276700206441:DE-468:23148746030006447#!" }, { "label" : "lobid Bestandsressource", @@ -132,7 +132,7 @@ "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT014015351%22", + "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT014015351%22" ], "id" : "http://lobid.org/items/990126276700206441:DE-Dm13:2346678150006451#!" }, { "label" : "lobid Bestandsressource", @@ -146,7 +146,7 @@ "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990126276700206441:DE-708:2390329400006464#!" }, { "label" : "lobid Bestandsressource", @@ -160,7 +160,7 @@ "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT014015351" ], "id" : "http://lobid.org/items/990126276700206441:DE-Lan1:2380082230007476#!" }, { "label" : "lobid Bestandsressource", @@ -174,7 +174,7 @@ "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT014015351" ], "id" : "http://lobid.org/items/990126276700206441:DE-Lan1:2380082240007476#!" }, { "label" : "lobid Bestandsressource", @@ -188,7 +188,7 @@ "id" : "http://lobid.org/organisations/DE-82-609#!", "label" : "Germanistisches Institut, Bibliothek" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT014015351&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT014015351&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990126276700206441:DE-82-609:23232408510006448#!" }, { "label" : "lobid Bestandsressource", @@ -202,7 +202,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT014015351", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT014015351" ], "id" : "http://lobid.org/items/990126276700206441:DE-5:23261735310006467#!" }, { "label" : "lobid Bestandsressource", @@ -242,7 +242,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT014015351", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT014015351" ], "id" : "http://lobid.org/items/990126276700206441:DE-61:23303488680006443#!" }, { "label" : "lobid Bestandsressource", @@ -256,7 +256,7 @@ "id" : "http://lobid.org/organisations/DE-38-405#!", "label" : "Institut für Deutsche Sprache und Literatur mit Volkskundlicher Abteilung, Bibliothek" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT014015351", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT014015351" ], "id" : "http://lobid.org/items/990126276700206441:DE-38-405:23267503020006476#!" }, { "label" : "lobid Bestandsressource", @@ -270,7 +270,7 @@ "id" : "http://lobid.org/organisations/DE-38-467#!", "label" : "Internationales Kolleg Morphomata, Bibliothek" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT014015351", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT014015351" ], "id" : "http://lobid.org/items/990126276700206441:DE-38-467:23267503000006476#!" }, { "label" : "lobid Bestandsressource", @@ -284,7 +284,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014015351&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014015351&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990126276700206441:DE-6:23535410630006449#!" }, { "label" : "lobid Bestandsressource", @@ -298,7 +298,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT014015351", + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT014015351" ], "id" : "http://lobid.org/items/990126276700206441:DE-467:2393571990006462#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990133067580206441.json b/src/test/resources/alma-fix/990133067580206441.json index cf83f524d..71bbaf3a9 100644 --- a/src/test/resources/alma-fix/990133067580206441.json +++ b/src/test/resources/alma-fix/990133067580206441.json @@ -252,7 +252,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53804555180006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990133067580206441", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222163340-X%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222163340-X%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/990139686910206441.json b/src/test/resources/alma-fix/990139686910206441.json index d391bd20e..8de2746b1 100644 --- a/src/test/resources/alma-fix/990139686910206441.json +++ b/src/test/resources/alma-fix/990139686910206441.json @@ -80,7 +80,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT014525099&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT014525099&local_base=MHE01" ], "id" : "http://lobid.org/items/990139686910206441:DE-1156:2310267000006459#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990141342350206441.json b/src/test/resources/alma-fix/990141342350206441.json index ce600111c..829b64585 100644 --- a/src/test/resources/alma-fix/990141342350206441.json +++ b/src/test/resources/alma-fix/990141342350206441.json @@ -106,7 +106,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22TT001230001%22", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22TT001230001%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990141342350206441:DE-107:2379314410007506#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990143325070206441.json b/src/test/resources/alma-fix/990143325070206441.json index 1115e9685..459ce1779 100644 --- a/src/test/resources/alma-fix/990143325070206441.json +++ b/src/test/resources/alma-fix/990143325070206441.json @@ -169,7 +169,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT014601018", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT014601018" ], "id" : "http://lobid.org/items/990143325070206441:DE-5:23281591130006467#!" }, { "label" : "lobid Bestandsressource", @@ -183,7 +183,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014601018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014601018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990143325070206441:DE-6:23564603190006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990156027740206441.json b/src/test/resources/alma-fix/990156027740206441.json index 4438bb237..db1c79686 100644 --- a/src/test/resources/alma-fix/990156027740206441.json +++ b/src/test/resources/alma-fix/990156027740206441.json @@ -76,7 +76,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209607190006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991010117289706445", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015011399%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015011399%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma-fix/990156060190206441.json b/src/test/resources/alma-fix/990156060190206441.json index d2c719088..41ba5b61a 100644 --- a/src/test/resources/alma-fix/990156060190206441.json +++ b/src/test/resources/alma-fix/990156060190206441.json @@ -175,7 +175,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT015014677", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-468:23131370340006447#!" }, { "label" : "lobid Bestandsressource", @@ -189,7 +189,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT015014677&local_base=ZBS01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT015014677&local_base=ZBS01" ], "id" : "http://lobid.org/items/990156060190206441:DE-Kn41:2317986730006478#!" }, { "label" : "lobid Bestandsressource", @@ -203,7 +203,7 @@ "id" : "http://lobid.org/organisations/DE-836#!", "label" : "FH Münster, Hochschulbibliothek" }, - "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT015014677", + "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-836:2329843240006485#!" }, { "label" : "lobid Bestandsressource", @@ -217,7 +217,7 @@ "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990156060190206441:DE-708:23109044830006464#!" }, { "label" : "lobid Bestandsressource", @@ -244,7 +244,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", + "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT015014677%22" ], "id" : "http://lobid.org/items/990156060190206441:DE-1044:2348092950006452#!" }, { "label" : "lobid Bestandsressource", @@ -258,7 +258,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", + "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT015014677%22" ], "id" : "http://lobid.org/items/990156060190206441:DE-1044:2348092970006452#!" }, { "label" : "lobid Bestandsressource", @@ -272,7 +272,7 @@ "id" : "http://lobid.org/organisations/DE-Due62#!", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, - "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT015014677", + "seeAlso" : [ "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-Due62:2336303640006455#!" }, { "label" : "lobid Bestandsressource", @@ -286,7 +286,7 @@ "id" : "http://lobid.org/organisations/DE-829#!", "label" : "Hochschule Niederrhein, Bibliothek" }, - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", + "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT015014677%22" ], "id" : "http://lobid.org/items/990156060190206441:DE-829:2347061880008056#!" }, { "label" : "lobid Bestandsressource", @@ -300,7 +300,7 @@ "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT015014677%22", + "seeAlso" : [ "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT015014677%22" ], "id" : "http://lobid.org/items/990156060190206441:DE-743:2338250240006468#!" }, { "label" : "lobid Bestandsressource", @@ -327,7 +327,6 @@ "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHD01&doc_001_number=HT015014677&local_base=MHD01", "id" : "http://lobid.org/items/990156060190206441:DE-575:23101091890006480#!" }, { "label" : "lobid Bestandsressource", @@ -354,7 +353,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-386:2374193680007476#!" }, { "label" : "lobid Bestandsressource", @@ -368,7 +367,7 @@ "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-Lan1:2374193700007476#!" }, { "label" : "lobid Bestandsressource", @@ -382,7 +381,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-386:2374193670007476#!" }, { "label" : "lobid Bestandsressource", @@ -396,7 +395,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT015014677&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT015014677&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-82:23233208590006448#!" }, { "label" : "lobid Bestandsressource", @@ -410,7 +409,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "opacLink" : "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT015014677%22", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015014677%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-107:2369296750007506#!" }, { "label" : "lobid Bestandsressource", @@ -424,7 +423,7 @@ "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015014677%22&selectedViewBranchlib=0", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015014677%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-929:2369296770007506#!" }, { "label" : "lobid Bestandsressource", @@ -438,7 +437,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT015014677", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-832:2348954760006477#!" }, { "label" : "lobid Bestandsressource", @@ -452,7 +451,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015014677%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015014677%22" ], "id" : "http://lobid.org/items/990156060190206441:DE-290:23194328940006445#!" }, { "label" : "lobid Bestandsressource", @@ -466,7 +465,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015014677", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-385:23271771200006470#!" }, { "label" : "lobid Bestandsressource", @@ -480,7 +479,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT015014677", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-5:23245806020006467#!" }, { "label" : "lobid Bestandsressource", @@ -546,7 +545,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-465:23390395420006446#!" }, { "label" : "lobid Bestandsressource", @@ -560,7 +559,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-465:23390395430006446#!" }, { "label" : "lobid Bestandsressource", @@ -574,7 +573,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990156060190206441:DE-Kob7:2330787680008057#!" }, { "label" : "lobid Bestandsressource", @@ -588,7 +587,7 @@ "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-38:23308363920006476#!" }, { "label" : "lobid Bestandsressource", @@ -602,7 +601,7 @@ "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-38:23308363930006476#!" }, { "label" : "lobid Bestandsressource", @@ -616,7 +615,7 @@ "id" : "http://lobid.org/organisations/DE-38-307#!", "label" : "Humanwissenschaftliche Bibliothek: Gemeinsame Bibliothek der Humanwissenschaftlichen Fakultät und der USB" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-38-307:23308363900006476#!" }, { "label" : "lobid Bestandsressource", @@ -630,7 +629,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-6:23510054190006449#!" }, { "label" : "lobid Bestandsressource", @@ -644,7 +643,7 @@ "id" : "http://lobid.org/organisations/DE-6-049#!", "label" : "Universität Münster, Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek für Psychologie" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-6-049:23510054150006449#!" }, { "label" : "lobid Bestandsressource", @@ -658,7 +657,7 @@ "id" : "http://lobid.org/organisations/DE-6-123#!", "label" : "Universität Münster, Bibliothek für Erziehungswissenschaft und Kommunikationswissenschaft" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-6-123:23510054170006449#!" }, { "label" : "lobid Bestandsressource", @@ -672,7 +671,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT015014677", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-466:23115327380006463#!" }, { "label" : "lobid Bestandsressource", @@ -686,7 +685,7 @@ "id" : "http://lobid.org/organisations/DE-1010#!", "label" : "Westfälische Hochschule Gelsenkirchen Bocholt Recklinghausen, Hochschulbibliothek" }, - "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT015014677", + "seeAlso" : [ "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-1010:2313573740006456#!" }, { "label" : "lobid Bestandsressource", @@ -698,7 +697,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015014677", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-385:22271771190006470#!" }, { "label" : "lobid Bestandsressource", @@ -710,7 +709,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990156060190206441:DE-Kob7:2230787670008057#!" }, { "label" : "lobid Bestandsressource", @@ -722,7 +721,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT015014677", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-466:22115327370006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990167595410206441.json b/src/test/resources/alma-fix/990167595410206441.json index 89124973a..115170ef1 100644 --- a/src/test/resources/alma-fix/990167595410206441.json +++ b/src/test/resources/alma-fix/990167595410206441.json @@ -78,7 +78,7 @@ "id" : "http://lobid.org/organisations/DE-Kn3#!", "label" : "Kunst- und Museumsbibliothek der Stadt Köln" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=TT002494857", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=TT002494857" ], "id" : "http://lobid.org/items/990167595410206441:DE-Kn3:23283323610006476#!" }, { "label" : "lobid Bestandsressource", @@ -92,7 +92,7 @@ "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,TT002494857&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,TT002494857&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990167595410206441:DE-6-015:23616315430006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990171142550206441.json b/src/test/resources/alma-fix/990171142550206441.json index 6f5df3986..f6b9ceed0 100644 --- a/src/test/resources/alma-fix/990171142550206441.json +++ b/src/test/resources/alma-fix/990171142550206441.json @@ -136,7 +136,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT015671602", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT015671602" ], "id" : "http://lobid.org/items/990171142550206441:DE-832:2344668760006477#!" }, { "label" : "lobid Bestandsressource", @@ -150,7 +150,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015671602%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015671602%22" ], "id" : "http://lobid.org/items/990171142550206441:DE-290:23199326600006445#!" }, { "label" : "lobid Bestandsressource", @@ -164,7 +164,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015671602", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015671602" ], "id" : "http://lobid.org/items/990171142550206441:DE-385:23266502850006470#!" }, { "label" : "lobid Bestandsressource", @@ -191,7 +191,7 @@ "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015671602", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT015671602" ], "id" : "http://lobid.org/items/990171142550206441:DE-38:23179051250006476#!" }, { "label" : "lobid Bestandsressource", @@ -203,7 +203,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015671602", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015671602" ], "id" : "http://lobid.org/items/990171142550206441:DE-385:22266502840006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990173811970206441.json b/src/test/resources/alma-fix/990173811970206441.json index 0bba51f50..7c8ad66ea 100644 --- a/src/test/resources/alma-fix/990173811970206441.json +++ b/src/test/resources/alma-fix/990173811970206441.json @@ -147,12 +147,12 @@ "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015865114%22&selectedViewBranchlib=0", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015865114%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990173811970206441:DE-929:2282197540007506#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015865114", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015865114" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -171,7 +171,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015865114&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015865114&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990181275760206441.json b/src/test/resources/alma-fix/990181275760206441.json index 595fc24db..0e268c34e 100644 --- a/src/test/resources/alma-fix/990181275760206441.json +++ b/src/test/resources/alma-fix/990181275760206441.json @@ -110,7 +110,7 @@ "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", + "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839880006454#!" }, { "label" : "lobid Bestandsressource", @@ -124,7 +124,7 @@ "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", + "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839870006454#!" }, { "label" : "lobid Bestandsressource", @@ -138,7 +138,7 @@ "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", + "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839860006454#!" }, { "label" : "lobid Bestandsressource", @@ -152,7 +152,7 @@ "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", + "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839840006454#!" }, { "label" : "lobid Bestandsressource", @@ -166,7 +166,7 @@ "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929", + "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839830006454#!" }, { "label" : "lobid Bestandsressource", @@ -180,7 +180,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914300006445#!" }, { "label" : "lobid Bestandsressource", @@ -194,7 +194,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914190006445#!" }, { "label" : "lobid Bestandsressource", @@ -208,7 +208,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914180006445#!" }, { "label" : "lobid Bestandsressource", @@ -222,7 +222,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914220006445#!" }, { "label" : "lobid Bestandsressource", @@ -236,7 +236,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914250006445#!" }, { "label" : "lobid Bestandsressource", @@ -250,7 +250,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914260006445#!" }, { "label" : "lobid Bestandsressource", @@ -264,7 +264,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914290006445#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990182814750206441.json b/src/test/resources/alma-fix/990182814750206441.json index a15d5717f..e7b716079 100644 --- a/src/test/resources/alma-fix/990182814750206441.json +++ b/src/test/resources/alma-fix/990182814750206441.json @@ -135,7 +135,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT016580347", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT016580347" ], "id" : "http://lobid.org/items/990182814750206441:DE-61:23250747530006443#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990183958380206441.json b/src/test/resources/alma-fix/990183958380206441.json index b910ef7b1..318214ef9 100644 --- a/src/test/resources/alma-fix/990183958380206441.json +++ b/src/test/resources/alma-fix/990183958380206441.json @@ -190,7 +190,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990183958380206441:DE-6:23619354250006449#!" }, { "label" : "lobid Bestandsressource", @@ -204,7 +204,7 @@ "id" : "http://lobid.org/organisations/DE-6-139a#!", "label" : "Kommission Alltagskulturforschung für Westfalen (KAF), Bibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990183958380206441:DE-6-139a:23619354230006449#!" }, { "label" : "lobid Bestandsressource", @@ -218,7 +218,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT016692738", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT016692738" ], "id" : "http://lobid.org/items/990183958380206441:DE-466:23150297370006463#!" }, { "label" : "lobid Bestandsressource", @@ -230,7 +230,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT016692738", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT016692738" ], "id" : "http://lobid.org/items/990183958380206441:DE-466:22150297360006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990184127410206441.json b/src/test/resources/alma-fix/990184127410206441.json index 514882ca7..7e58fb715 100644 --- a/src/test/resources/alma-fix/990184127410206441.json +++ b/src/test/resources/alma-fix/990184127410206441.json @@ -205,7 +205,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53738793900006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222594002-8%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222594002-8%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -217,7 +217,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53738793900006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", - "opacLink" : "https://suchen.ub.rub.de/zdbid/2594002-8", + "seeAlso" : [ "https://suchen.ub.rub.de/zdbid/2594002-8" ], "heldBy" : { "isil" : "DE-294", "id" : "http://lobid.org/organisations/DE-294#!", @@ -240,7 +240,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53738793940006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222594002-8%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222594002-8%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -252,7 +252,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53738793940006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", - "opacLink" : "https://suchen.ub.rub.de/zdbid/2594002-8", + "seeAlso" : [ "https://suchen.ub.rub.de/zdbid/2594002-8" ], "heldBy" : { "isil" : "DE-294", "id" : "http://lobid.org/organisations/DE-294#!", @@ -275,7 +275,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53804344220006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222594002-8%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222594002-8%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/990185607520206441.json b/src/test/resources/alma-fix/990185607520206441.json index 8a71dc103..b097a76f2 100644 --- a/src/test/resources/alma-fix/990185607520206441.json +++ b/src/test/resources/alma-fix/990185607520206441.json @@ -83,7 +83,7 @@ "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=TT003059252", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=TT003059252" ], "id" : "http://lobid.org/items/990185607520206441:DE-5-58:23213211150006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990185619180206441.json b/src/test/resources/alma-fix/990185619180206441.json index c121864e5..8a9572823 100644 --- a/src/test/resources/alma-fix/990185619180206441.json +++ b/src/test/resources/alma-fix/990185619180206441.json @@ -92,7 +92,7 @@ "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=TT003060418", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=TT003060418" ], "id" : "http://lobid.org/items/990185619180206441:DE-5-58:23233589480006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990189160110206441.json b/src/test/resources/alma-fix/990189160110206441.json index 434a3da49..81f570b88 100644 --- a/src/test/resources/alma-fix/990189160110206441.json +++ b/src/test/resources/alma-fix/990189160110206441.json @@ -155,7 +155,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-468:23146330000006447#!" }, { "label" : "lobid Bestandsressource", @@ -169,7 +169,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-468:23146310030006447#!" }, { "label" : "lobid Bestandsressource", @@ -183,7 +183,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-468:23146310010006447#!" }, { "label" : "lobid Bestandsressource", @@ -197,7 +197,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT017015300&local_base=ZBS01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT017015300&local_base=ZBS01" ], "id" : "http://lobid.org/items/990189160110206441:DE-Kn41:2325303250006478#!" }, { "label" : "lobid Bestandsressource", @@ -211,7 +211,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT017015300&local_base=ZBS01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT017015300&local_base=ZBS01" ], "id" : "http://lobid.org/items/990189160110206441:DE-Kn41:2325303270006478#!" }, { "label" : "lobid Bestandsressource", @@ -225,7 +225,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT017015300", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-386:2385580290007476#!" }, { "label" : "lobid Bestandsressource", @@ -239,7 +239,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017015300%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017015300%22" ], "id" : "http://lobid.org/items/990189160110206441:DE-290:23197228550006445#!" }, { "label" : "lobid Bestandsressource", @@ -253,7 +253,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT017015300", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-5:23237586070006467#!" }, { "label" : "lobid Bestandsressource", @@ -267,7 +267,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-465:23423021800006446#!" }, { "label" : "lobid Bestandsressource", @@ -281,7 +281,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-465:23423021780006446#!" }, { "label" : "lobid Bestandsressource", @@ -295,7 +295,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990189160110206441:DE-Kob7:2329204570008057#!" }, { "label" : "lobid Bestandsressource", @@ -309,7 +309,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990189160110206441:DE-Kob7:2329204550008057#!" }, { "label" : "lobid Bestandsressource", @@ -323,7 +323,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990189160110206441:DE-Kob7:2329204560008057#!" }, { "label" : "lobid Bestandsressource", @@ -337,7 +337,7 @@ "id" : "http://lobid.org/organisations/DE-6-058#!", "label" : "Universität Münster, Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek Sportwissenschaft" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-6-058:23527811750006449#!" }, { "label" : "lobid Bestandsressource", @@ -351,7 +351,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-6:23527811780006449#!" }, { "label" : "lobid Bestandsressource", @@ -365,7 +365,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-6:23527811770006449#!" }, { "label" : "lobid Bestandsressource", @@ -379,7 +379,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT017015300", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-466:23142134120006463#!" }, { "label" : "lobid Bestandsressource", @@ -391,7 +391,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017015300&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990189160110206441:DE-Kob7:2229204540008057#!" }, { "label" : "lobid Bestandsressource", @@ -403,7 +403,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT017015300", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-466:22142134110006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990193094010206441.json b/src/test/resources/alma-fix/990193094010206441.json index 50bf61d8e..6aab240ae 100644 --- a/src/test/resources/alma-fix/990193094010206441.json +++ b/src/test/resources/alma-fix/990193094010206441.json @@ -87,7 +87,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT017398609", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT017398609" ], "id" : "http://lobid.org/items/990193094010206441:DE-832:2347616480006477#!" }, { "label" : "lobid Bestandsressource", @@ -101,7 +101,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017398609%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017398609%22" ], "id" : "http://lobid.org/items/990193094010206441:DE-290:23195293910006445#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990193229450206441.json b/src/test/resources/alma-fix/990193229450206441.json index d99a8a1a2..1c4cbf6b6 100644 --- a/src/test/resources/alma-fix/990193229450206441.json +++ b/src/test/resources/alma-fix/990193229450206441.json @@ -297,7 +297,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53807024380006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990193229450206441", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222685248-2%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222685248-2%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/990193806600206441.json b/src/test/resources/alma-fix/990193806600206441.json index 97661f6f7..2c220f253 100644 --- a/src/test/resources/alma-fix/990193806600206441.json +++ b/src/test/resources/alma-fix/990193806600206441.json @@ -86,7 +86,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017468042&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017468042&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990193806600206441:DE-6:23526297370006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990194668760206441.json b/src/test/resources/alma-fix/990194668760206441.json index fb9ff198d..2ad860547 100644 --- a/src/test/resources/alma-fix/990194668760206441.json +++ b/src/test/resources/alma-fix/990194668760206441.json @@ -94,7 +94,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT017551955", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT017551955" ], "id" : "http://lobid.org/items/990194668760206441:DE-61:23289523250006443#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990194744870206441.json b/src/test/resources/alma-fix/990194744870206441.json index daec84c44..f40d2d8d4 100644 --- a/src/test/resources/alma-fix/990194744870206441.json +++ b/src/test/resources/alma-fix/990194744870206441.json @@ -83,7 +83,7 @@ "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT017559543" ], "id" : "http://lobid.org/items/990194744870206441:DE-Lan1:2363975880007476#!" }, { "label" : "lobid Bestandsressource", @@ -97,7 +97,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990194744870206441:DE-Kob7:2333571450008057#!" }, { "label" : "lobid Bestandsressource", @@ -109,7 +109,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990194744870206441:DE-Kob7:2233571440008057#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990197067610206441.json b/src/test/resources/alma-fix/990197067610206441.json index 7566fbc8a..1127b7a0a 100644 --- a/src/test/resources/alma-fix/990197067610206441.json +++ b/src/test/resources/alma-fix/990197067610206441.json @@ -95,7 +95,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,CT003043468&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,CT003043468&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -107,7 +107,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=CT003043468", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=CT003043468" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -119,7 +119,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,CT003043468&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,CT003043468&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -131,7 +131,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=CT003043468", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=CT003043468" ], "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", @@ -143,7 +143,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:CT003043468", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:CT003043468" ], "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", diff --git a/src/test/resources/alma-fix/990197293880206441.json b/src/test/resources/alma-fix/990197293880206441.json index 8e5a17479..f8e8e765f 100644 --- a/src/test/resources/alma-fix/990197293880206441.json +++ b/src/test/resources/alma-fix/990197293880206441.json @@ -192,7 +192,6 @@ "id" : "http://lobid.org/organisations/DE-1105#!", "label" : "Hochschule Koblenz, RheinAhrCampus, Bibliothek" }, - "opacLink" : "http://www.hs-koblenz.de/RACwebOPAC/start.do?Login=webopac&Query=0010=%22TT050421649%22", "id" : "http://lobid.org/items/990197293880206441:DE-1105:2219007830007829#!" }, { "label" : "lobid Bestandsressource", @@ -221,7 +220,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:TT050421649", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:TT050421649" ], "heldBy" : { "isil" : "DE-832", "id" : "http://lobid.org/organisations/DE-832#!", @@ -233,7 +232,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=TT050421649", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=TT050421649" ], "heldBy" : { "isil" : "DE-38", "id" : "http://lobid.org/organisations/DE-38#!", @@ -245,7 +244,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22TT050421649%22", + "seeAlso" : [ "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22TT050421649%22" ], "heldBy" : { "isil" : "DE-743", "id" : "http://lobid.org/organisations/DE-743#!", @@ -268,7 +267,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,TT050421649&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,TT050421649&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -280,7 +279,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22TT050421649%22", + "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22TT050421649%22" ], "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -292,7 +291,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=TT050421649", + "seeAlso" : [ "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=TT050421649" ], "heldBy" : { "isil" : "DE-1010", "id" : "http://lobid.org/organisations/DE-1010#!", @@ -304,7 +303,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22TT050421649%22", + "seeAlso" : [ "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22TT050421649%22" ], "heldBy" : { "isil" : "DE-1393", "id" : "http://lobid.org/organisations/DE-1393#!", @@ -316,7 +315,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=TT050421649", + "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=TT050421649" ], "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", @@ -328,7 +327,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=TT050421649", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=TT050421649" ], "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", @@ -362,7 +361,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=TT050421649", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=TT050421649" ], "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -374,7 +373,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=TT050421649", + "seeAlso" : [ "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=TT050421649" ], "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -386,7 +385,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=TT050421649", + "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=TT050421649" ], "heldBy" : { "isil" : "DE-Bm40", "id" : "http://lobid.org/organisations/DE-Bm40#!", @@ -398,7 +397,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22TT050421649%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22TT050421649%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -410,7 +409,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22TT050421649%22", + "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22TT050421649%22" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -422,7 +421,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22TT050421649%22", + "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22TT050421649%22" ], "heldBy" : { "isil" : "DE-Bi10", "id" : "http://lobid.org/organisations/DE-Bi10#!", @@ -445,7 +444,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22TT050421649%22", + "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22TT050421649%22" ], "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", @@ -457,7 +456,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=TT050421649", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=TT050421649" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -480,7 +479,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:TT050421649", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:TT050421649" ], "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -492,7 +491,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT050421649&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT050421649&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -515,7 +514,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=TT050421649", + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=TT050421649" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", diff --git a/src/test/resources/alma-fix/990198383780206441.json b/src/test/resources/alma-fix/990198383780206441.json index a7c48bb7c..24de57930 100644 --- a/src/test/resources/alma-fix/990198383780206441.json +++ b/src/test/resources/alma-fix/990198383780206441.json @@ -84,7 +84,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT017775049", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT017775049" ], "id" : "http://lobid.org/items/990198383780206441:DE-61:23317843550006443#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990199611280206441.json b/src/test/resources/alma-fix/990199611280206441.json index e0686e6af..d6a8dcd3f 100644 --- a/src/test/resources/alma-fix/990199611280206441.json +++ b/src/test/resources/alma-fix/990199611280206441.json @@ -133,7 +133,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53155629910006447&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=990013137900206447", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017894012", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017894012" ], "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -143,7 +143,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017894012%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017894012%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -153,7 +153,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT017894012", + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT017894012" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", diff --git a/src/test/resources/alma-fix/990202474680206441.json b/src/test/resources/alma-fix/990202474680206441.json index 3b8b70618..0696f9a8a 100644 --- a/src/test/resources/alma-fix/990202474680206441.json +++ b/src/test/resources/alma-fix/990202474680206441.json @@ -137,7 +137,7 @@ "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT018129805", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT018129805" ], "id" : "http://lobid.org/items/990202474680206441:DE-5-141:23273758380006467#!" }, { "label" : "lobid Bestandsressource", @@ -151,7 +151,7 @@ "id" : "http://lobid.org/organisations/DE-38-459#!", "label" : "Gemeinsame Fachbibliothek Asien / Japanologie" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT018129805", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT018129805" ], "id" : "http://lobid.org/items/990202474680206441:DE-38-459:23239122980006476#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990204246530206441.json b/src/test/resources/alma-fix/990204246530206441.json index b6fa58b0b..9e355a6bc 100644 --- a/src/test/resources/alma-fix/990204246530206441.json +++ b/src/test/resources/alma-fix/990204246530206441.json @@ -182,7 +182,7 @@ "id" : "http://lobid.org/organisations/DE-929#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Rheinische Landesbibliothek" }, - "opacLink" : "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT018295975%22&selectedViewBranchlib=0", + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT018295975%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990204246530206441:DE-929:2358041170007506#!" }, { "label" : "lobid Bestandsressource", @@ -196,7 +196,7 @@ "id" : "http://lobid.org/organisations/DE-5-39#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Abteilung für Geschichte der Frühen Neuzeit und Rheinische Landesgeschichte, Bibliothek" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT018295975", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT018295975" ], "id" : "http://lobid.org/items/990204246530206441:DE-5-39:23292096440006467#!" }, { "label" : "lobid Bestandsressource", @@ -210,7 +210,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018295975&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018295975&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990204246530206441:DE-6:23593081430006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990206060640206441.json b/src/test/resources/alma-fix/990206060640206441.json index f818fba7e..bc7c5af31 100644 --- a/src/test/resources/alma-fix/990206060640206441.json +++ b/src/test/resources/alma-fix/990206060640206441.json @@ -204,7 +204,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53165716350006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=990017647970106463", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT018468645", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT018468645" ], "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", diff --git a/src/test/resources/alma-fix/990207668220206441.json b/src/test/resources/alma-fix/990207668220206441.json index 1e4ce69e6..ad8e346a8 100644 --- a/src/test/resources/alma-fix/990207668220206441.json +++ b/src/test/resources/alma-fix/990207668220206441.json @@ -98,7 +98,7 @@ "id" : "http://lobid.org/organisations/DE-82-223#!", "label" : "Lehrstuhl für Siedlungswasserwirtschaft und Siedlungsabfallwirtschaft und Institut für Siedlungswasserwirtschaft, Bibliothek" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT003280170&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT003280170&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990207668220206441:DE-82-223:23233358930006448#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990209515320206441.json b/src/test/resources/alma-fix/990209515320206441.json index 743cf9746..40f6831f8 100644 --- a/src/test/resources/alma-fix/990209515320206441.json +++ b/src/test/resources/alma-fix/990209515320206441.json @@ -109,7 +109,7 @@ "id" : "http://lobid.org/organisations/DE-Kn38#!", "label" : "Hochschule für Musik und Tanz Köln, Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=HT018781534&local_base=MHK01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=HT018781534&local_base=MHK01" ], "id" : "http://lobid.org/items/990209515320206441:DE-Kn38:2313841820006460#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990209817770206441.json b/src/test/resources/alma-fix/990209817770206441.json index 78ee49592..09129d2a2 100644 --- a/src/test/resources/alma-fix/990209817770206441.json +++ b/src/test/resources/alma-fix/990209817770206441.json @@ -173,7 +173,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018811791&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018811791&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990209817770206441:DE-6:23490552480006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990210093550206441.json b/src/test/resources/alma-fix/990210093550206441.json index 60e61cf6e..cf038149e 100644 --- a/src/test/resources/alma-fix/990210093550206441.json +++ b/src/test/resources/alma-fix/990210093550206441.json @@ -99,7 +99,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&portfolio_pid=5322365740006450&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&rft.mms_id=991002429379706450", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%222842926-6%22", + "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%222842926-6%22" ], "heldBy" : { "isil" : "DE-Bi10", "id" : "http://lobid.org/organisations/DE-Bi10#!", @@ -122,7 +122,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=5349051840008056&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=991001381899708056", - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=-1=%222842926-6%22", + "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=-1=%222842926-6%22" ], "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -156,7 +156,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53313002580006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=990022076950106470", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,2366374X", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,2366374X" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -168,7 +168,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53428417070006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990184689370206446", - "opacLink" : "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=2366374X", + "seeAlso" : [ "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=2366374X" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -180,7 +180,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53625317550006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991015595899706449", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,2366374X", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,2366374X" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -192,7 +192,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53164238820006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=990018348930106463", - "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=2366374X&scope=catalog&sf=rank", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=2366374X&scope=catalog&sf=rank" ], "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", diff --git a/src/test/resources/alma-fix/990210237770206441.json b/src/test/resources/alma-fix/990210237770206441.json index 9947fe4b3..0b698aaa4 100644 --- a/src/test/resources/alma-fix/990210237770206441.json +++ b/src/test/resources/alma-fix/990210237770206441.json @@ -93,7 +93,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251010006459#!" }, { "label" : "lobid Bestandsressource", @@ -107,7 +107,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251390006459#!" }, { "label" : "lobid Bestandsressource", @@ -121,7 +121,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251020006459#!" }, { "label" : "lobid Bestandsressource", @@ -135,7 +135,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251030006459#!" }, { "label" : "lobid Bestandsressource", @@ -149,7 +149,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251000006459#!" }, { "label" : "lobid Bestandsressource", @@ -163,7 +163,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251210006459#!" }, { "label" : "lobid Bestandsressource", @@ -177,7 +177,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251040006459#!" }, { "label" : "lobid Bestandsressource", @@ -191,7 +191,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251050006459#!" }, { "label" : "lobid Bestandsressource", @@ -205,7 +205,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251220006459#!" }, { "label" : "lobid Bestandsressource", @@ -219,7 +219,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251200006459#!" }, { "label" : "lobid Bestandsressource", @@ -233,7 +233,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251190006459#!" }, { "label" : "lobid Bestandsressource", @@ -247,7 +247,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251170006459#!" }, { "label" : "lobid Bestandsressource", @@ -261,7 +261,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251180006459#!" }, { "label" : "lobid Bestandsressource", @@ -275,7 +275,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251080006459#!" }, { "label" : "lobid Bestandsressource", @@ -289,7 +289,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251250006459#!" }, { "label" : "lobid Bestandsressource", @@ -303,7 +303,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251500006459#!" }, { "label" : "lobid Bestandsressource", @@ -317,7 +317,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251340006459#!" }, { "label" : "lobid Bestandsressource", @@ -331,7 +331,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251060006459#!" }, { "label" : "lobid Bestandsressource", @@ -345,7 +345,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251230006459#!" }, { "label" : "lobid Bestandsressource", @@ -359,7 +359,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251520006459#!" }, { "label" : "lobid Bestandsressource", @@ -373,7 +373,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251270006459#!" }, { "label" : "lobid Bestandsressource", @@ -387,7 +387,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251540006459#!" }, { "label" : "lobid Bestandsressource", @@ -401,7 +401,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251300006459#!" }, { "label" : "lobid Bestandsressource", @@ -415,7 +415,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251360006459#!" }, { "label" : "lobid Bestandsressource", @@ -429,7 +429,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251380006459#!" }, { "label" : "lobid Bestandsressource", @@ -443,7 +443,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251410006459#!" }, { "label" : "lobid Bestandsressource", @@ -457,7 +457,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251430006459#!" }, { "label" : "lobid Bestandsressource", @@ -471,7 +471,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251450006459#!" }, { "label" : "lobid Bestandsressource", @@ -485,7 +485,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251470006459#!" }, { "label" : "lobid Bestandsressource", @@ -499,7 +499,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251490006459#!" }, { "label" : "lobid Bestandsressource", @@ -513,7 +513,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250960006459#!" }, { "label" : "lobid Bestandsressource", @@ -527,7 +527,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250970006459#!" }, { "label" : "lobid Bestandsressource", @@ -541,7 +541,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251130006459#!" }, { "label" : "lobid Bestandsressource", @@ -555,7 +555,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250920006459#!" }, { "label" : "lobid Bestandsressource", @@ -569,7 +569,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251290006459#!" }, { "label" : "lobid Bestandsressource", @@ -583,7 +583,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250990006459#!" }, { "label" : "lobid Bestandsressource", @@ -597,7 +597,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250940006459#!" }, { "label" : "lobid Bestandsressource", @@ -611,7 +611,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250980006459#!" }, { "label" : "lobid Bestandsressource", @@ -625,7 +625,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251110006459#!" }, { "label" : "lobid Bestandsressource", @@ -639,7 +639,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251100006459#!" }, { "label" : "lobid Bestandsressource", @@ -653,7 +653,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251120006459#!" }, { "label" : "lobid Bestandsressource", @@ -667,7 +667,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251140006459#!" }, { "label" : "lobid Bestandsressource", @@ -681,7 +681,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251150006459#!" }, { "label" : "lobid Bestandsressource", @@ -695,7 +695,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251160006459#!" }, { "label" : "lobid Bestandsressource", @@ -709,7 +709,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251070006459#!" }, { "label" : "lobid Bestandsressource", @@ -723,7 +723,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251090006459#!" }, { "label" : "lobid Bestandsressource", @@ -737,7 +737,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251240006459#!" }, { "label" : "lobid Bestandsressource", @@ -751,7 +751,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251260006459#!" }, { "label" : "lobid Bestandsressource", @@ -765,7 +765,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251510006459#!" }, { "label" : "lobid Bestandsressource", @@ -779,7 +779,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251350006459#!" }, { "label" : "lobid Bestandsressource", @@ -793,7 +793,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251310006459#!" }, { "label" : "lobid Bestandsressource", @@ -807,7 +807,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251370006459#!" }, { "label" : "lobid Bestandsressource", @@ -821,7 +821,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251400006459#!" }, { "label" : "lobid Bestandsressource", @@ -835,7 +835,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251480006459#!" }, { "label" : "lobid Bestandsressource", @@ -849,7 +849,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251420006459#!" }, { "label" : "lobid Bestandsressource", @@ -863,7 +863,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251440006459#!" }, { "label" : "lobid Bestandsressource", @@ -877,7 +877,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251460006459#!" }, { "label" : "lobid Bestandsressource", @@ -891,7 +891,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251550006459#!" }, { "label" : "lobid Bestandsressource", @@ -905,7 +905,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251590006459#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990210285400206441.json b/src/test/resources/alma-fix/990210285400206441.json index f99196727..9a3788409 100644 --- a/src/test/resources/alma-fix/990210285400206441.json +++ b/src/test/resources/alma-fix/990210285400206441.json @@ -129,7 +129,7 @@ "id" : "http://lobid.org/organisations/DE-Kn38#!", "label" : "Hochschule für Musik und Tanz Köln, Bibliothek" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=HT018857620&local_base=MHK01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=HT018857620&local_base=MHK01" ], "id" : "http://lobid.org/items/990210285400206441:DE-Kn38:2317369740006460#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990210950050206441.json b/src/test/resources/alma-fix/990210950050206441.json index 0c4ab4744..14b452ef5 100644 --- a/src/test/resources/alma-fix/990210950050206441.json +++ b/src/test/resources/alma-fix/990210950050206441.json @@ -200,7 +200,7 @@ "id" : "http://lobid.org/organisations/DE-61#!", "label" : "Universitäts- und Landesbibliothek Düsseldorf" }, - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT018924091", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT018924091" ], "id" : "http://lobid.org/items/990210950050206441:DE-61:23260972720006443#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990213367870206441.json b/src/test/resources/alma-fix/990213367870206441.json index 5ca5d2dab..584c934d4 100644 --- a/src/test/resources/alma-fix/990213367870206441.json +++ b/src/test/resources/alma-fix/990213367870206441.json @@ -123,7 +123,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209196500006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991005259779706445", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019075404%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019075404%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma-fix/990217478660206441.json b/src/test/resources/alma-fix/990217478660206441.json index 71c602aa8..7041b500a 100644 --- a/src/test/resources/alma-fix/990217478660206441.json +++ b/src/test/resources/alma-fix/990217478660206441.json @@ -249,7 +249,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719440006447#!" }, { "label" : "lobid Bestandsressource", @@ -263,7 +263,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719430006447#!" }, { "label" : "lobid Bestandsressource", @@ -277,7 +277,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719450006447#!" }, { "label" : "lobid Bestandsressource", @@ -291,7 +291,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719550006447#!" }, { "label" : "lobid Bestandsressource", @@ -305,7 +305,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719500006447#!" }, { "label" : "lobid Bestandsressource", @@ -319,7 +319,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719530006447#!" }, { "label" : "lobid Bestandsressource", @@ -333,7 +333,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719390006447#!" }, { "label" : "lobid Bestandsressource", @@ -347,7 +347,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719400006447#!" }, { "label" : "lobid Bestandsressource", @@ -361,7 +361,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719410006447#!" }, { "label" : "lobid Bestandsressource", @@ -375,7 +375,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719470006447#!" }, { "label" : "lobid Bestandsressource", @@ -389,7 +389,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719420006447#!" }, { "label" : "lobid Bestandsressource", @@ -403,7 +403,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719370006447#!" }, { "label" : "lobid Bestandsressource", @@ -417,7 +417,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719380006447#!" }, { "label" : "lobid Bestandsressource", @@ -431,7 +431,7 @@ "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT019246898%22", + "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT019246898%22" ], "id" : "http://lobid.org/items/990217478660206441:DE-Dm13:2346308310006451#!" }, { "label" : "lobid Bestandsressource", @@ -445,7 +445,7 @@ "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990217478660206441:DE-708:23101974750006464#!" }, { "label" : "lobid Bestandsressource", @@ -459,7 +459,7 @@ "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT019246898%22", + "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT019246898%22" ], "id" : "http://lobid.org/items/990217478660206441:DE-Bi10:2321369680006450#!" }, { "label" : "lobid Bestandsressource", @@ -473,7 +473,7 @@ "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT019246898", + "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-Bm40:2314295720006454#!" }, { "label" : "lobid Bestandsressource", @@ -487,7 +487,7 @@ "id" : "http://lobid.org/organisations/DE-829#!", "label" : "Hochschule Niederrhein, Bibliothek" }, - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT019246898%22", + "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT019246898%22" ], "id" : "http://lobid.org/items/990217478660206441:DE-829:2347787920008056#!" }, { "label" : "lobid Bestandsressource", @@ -501,7 +501,7 @@ "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT019246898%22", + "seeAlso" : [ "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT019246898%22" ], "id" : "http://lobid.org/items/990217478660206441:DE-743:2338591810006468#!" }, { "label" : "lobid Bestandsressource", @@ -515,7 +515,7 @@ "id" : "http://lobid.org/organisations/DE-82-211#!", "label" : "Lehrstuhl und Institut für Kunstgeschichte, Bibliothek" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT019246898&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT019246898&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990217478660206441:DE-82-211:23243058570006448#!" }, { "label" : "lobid Bestandsressource", @@ -529,7 +529,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019246898%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019246898%22" ], "id" : "http://lobid.org/items/990217478660206441:DE-290:23194214350006445#!" }, { "label" : "lobid Bestandsressource", @@ -543,7 +543,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990217478660206441:DE-Kob7:2330360620008057#!" }, { "label" : "lobid Bestandsressource", @@ -557,7 +557,7 @@ "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT019246898", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-38:23200826910006476#!" }, { "label" : "lobid Bestandsressource", @@ -571,7 +571,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019246898&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019246898&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990217478660206441:DE-6:23512237280006449#!" }, { "label" : "lobid Bestandsressource", @@ -585,7 +585,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT019246898", + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-467:2393751950006462#!" }, { "label" : "lobid Bestandsressource", @@ -599,7 +599,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT019246898", + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-467:2393751960006462#!" }, { "label" : "lobid Bestandsressource", @@ -613,7 +613,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019246898", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-466:23122059280006463#!" }, { "label" : "lobid Bestandsressource", @@ -625,7 +625,7 @@ "id" : "http://lobid.org/organisations/DE-Kob7#!", "label" : "Universitätsbibliothek Koblenz" }, - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990217478660206441:DE-Kob7:2230360610008057#!" }, { "label" : "lobid Bestandsressource", @@ -637,7 +637,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019246898", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-466:22122059270006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990218189790206441.json b/src/test/resources/alma-fix/990218189790206441.json index 8f9e15f43..cee0e5b96 100644 --- a/src/test/resources/alma-fix/990218189790206441.json +++ b/src/test/resources/alma-fix/990218189790206441.json @@ -114,7 +114,7 @@ "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019317250", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019317250" ], "id" : "http://lobid.org/items/990218189790206441:DE-5-141:23264785760006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990220027540206441.json b/src/test/resources/alma-fix/990220027540206441.json index e49194869..729784638 100644 --- a/src/test/resources/alma-fix/990220027540206441.json +++ b/src/test/resources/alma-fix/990220027540206441.json @@ -89,7 +89,7 @@ "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019496555", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019496555" ], "id" : "http://lobid.org/items/990220027540206441:DE-5-141:23219038300006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990223521400206441.json b/src/test/resources/alma-fix/990223521400206441.json index fc95dcd61..db55b525e 100644 --- a/src/test/resources/alma-fix/990223521400206441.json +++ b/src/test/resources/alma-fix/990223521400206441.json @@ -236,7 +236,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019631849", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-468:23143395260006447#!" }, { "label" : "lobid Bestandsressource", @@ -250,7 +250,7 @@ "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT019631849%22", + "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT019631849%22" ], "id" : "http://lobid.org/items/990223521400206441:DE-Dm13:2345522380006451#!" }, { "label" : "lobid Bestandsressource", @@ -316,7 +316,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", + "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701840006452#!" }, { "label" : "lobid Bestandsressource", @@ -330,7 +330,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", + "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701860006452#!" }, { "label" : "lobid Bestandsressource", @@ -344,7 +344,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", + "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701900006452#!" }, { "label" : "lobid Bestandsressource", @@ -358,7 +358,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", + "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701880006452#!" }, { "label" : "lobid Bestandsressource", @@ -372,7 +372,7 @@ "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT019631849%22", + "seeAlso" : [ "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT019631849%22" ], "id" : "http://lobid.org/items/990223521400206441:DE-743:2340036580006468#!" }, { "label" : "lobid Bestandsressource", @@ -386,7 +386,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019631849%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019631849%22" ], "id" : "http://lobid.org/items/990223521400206441:DE-290:23189128750006445#!" }, { "label" : "lobid Bestandsressource", @@ -400,7 +400,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019631849", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-5:23214050900006467#!" }, { "label" : "lobid Bestandsressource", @@ -414,7 +414,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947900006446#!" }, { "label" : "lobid Bestandsressource", @@ -428,7 +428,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947910006446#!" }, { "label" : "lobid Bestandsressource", @@ -442,7 +442,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947920006446#!" }, { "label" : "lobid Bestandsressource", @@ -456,7 +456,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947870006446#!" }, { "label" : "lobid Bestandsressource", @@ -470,7 +470,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947880006446#!" }, { "label" : "lobid Bestandsressource", @@ -484,7 +484,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947940006446#!" }, { "label" : "lobid Bestandsressource", @@ -498,7 +498,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947850006446#!" }, { "label" : "lobid Bestandsressource", @@ -512,7 +512,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947860006446#!" }, { "label" : "lobid Bestandsressource", @@ -526,7 +526,7 @@ "id" : "http://lobid.org/organisations/DE-38#!", "label" : "Universitäts- und Stadtbibliothek Köln, Hauptabteilung" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT019631849", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-38:23247867950006476#!" }, { "label" : "lobid Bestandsressource", @@ -540,7 +540,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-6:23506634650006449#!" }, { "label" : "lobid Bestandsressource", @@ -554,7 +554,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-6:23506634640006449#!" }, { "label" : "lobid Bestandsressource", @@ -568,7 +568,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-466:23127647720006463#!" }, { "label" : "lobid Bestandsressource", @@ -582,7 +582,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-466:23127647710006463#!" }, { "label" : "lobid Bestandsressource", @@ -594,7 +594,7 @@ "id" : "http://lobid.org/organisations/DE-466#!", "label" : "Universitätsbibliothek Paderborn" }, - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-466:22127647700006463#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990225056670206441.json b/src/test/resources/alma-fix/990225056670206441.json index 57958f604..2371a015e 100644 --- a/src/test/resources/alma-fix/990225056670206441.json +++ b/src/test/resources/alma-fix/990225056670206441.json @@ -91,7 +91,7 @@ "id" : "http://lobid.org/organisations/DE-82-501#!", "label" : "Lehrstuhl für Bildverarbeitung, Bibliothek" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT003907920&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT003907920&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990225056670206441:DE-82-501:23217998250006448#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990363946050206441.json b/src/test/resources/alma-fix/990363946050206441.json index cd68fade9..470afba6b 100644 --- a/src/test/resources/alma-fix/990363946050206441.json +++ b/src/test/resources/alma-fix/990363946050206441.json @@ -130,7 +130,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209365020006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991009604019706445", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT020202475%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT020202475%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -142,7 +142,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53319452280006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991044884199706467", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020202475", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020202475" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -154,7 +154,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53319452300006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991044884199706467", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020202475", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020202475" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/990365842280206441.json b/src/test/resources/alma-fix/990365842280206441.json index 9b8e52c2d..d302da791 100644 --- a/src/test/resources/alma-fix/990365842280206441.json +++ b/src/test/resources/alma-fix/990365842280206441.json @@ -101,7 +101,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020391499", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020391499" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -113,7 +113,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT020391499", + "seeAlso" : [ "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT020391499" ], "heldBy" : { "isil" : "DE-1010", "id" : "http://lobid.org/organisations/DE-1010#!", @@ -125,7 +125,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT020391499", + "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT020391499" ], "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", @@ -137,7 +137,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020391499&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020391499&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -160,7 +160,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT020391499", + "seeAlso" : [ "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT020391499" ], "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -172,7 +172,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT020391499&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT020391499&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -184,7 +184,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT020391499%22", + "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT020391499%22" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -196,7 +196,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT020391499%22", + "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT020391499%22" ], "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", @@ -230,7 +230,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT020391499", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT020391499" ], "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -242,7 +242,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53312504210006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=990025573850106470", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT020391499", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT020391499" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", diff --git a/src/test/resources/alma-fix/990366394400206441.json b/src/test/resources/alma-fix/990366394400206441.json index da6bf01b9..c619554a4 100644 --- a/src/test/resources/alma-fix/990366394400206441.json +++ b/src/test/resources/alma-fix/990366394400206441.json @@ -74,7 +74,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020446683&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020446683&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990366394400206441:DE-6:23534915260006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990367731740206441.json b/src/test/resources/alma-fix/990367731740206441.json index 1d98c1cf7..165bfb0dc 100644 --- a/src/test/resources/alma-fix/990367731740206441.json +++ b/src/test/resources/alma-fix/990367731740206441.json @@ -256,14 +256,14 @@ "id" : "http://lobid.org/organisations/DE-1116#!", "label" : "Hochschule für Wirtschaft und Gesellschaft Ludwigshafen, Bibliothek" }, - "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID=HT020579803", + "seeAlso" : [ "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID=HT020579803" ], "id" : "http://lobid.org/items/990367731740206441:DE-1116:229499030007824#!" }, { "type" : [ "Item", "DigitalDocument" ], "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=5349112190008056&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=991006234639708056", - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT020579803%22", + "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT020579803%22" ], "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", diff --git a/src/test/resources/alma-fix/990367761810206441.json b/src/test/resources/alma-fix/990367761810206441.json index b9b275362..91124bd96 100644 --- a/src/test/resources/alma-fix/990367761810206441.json +++ b/src/test/resources/alma-fix/990367761810206441.json @@ -146,7 +146,7 @@ "id" : "http://lobid.org/organisations/DE-38-459#!", "label" : "Gemeinsame Fachbibliothek Asien / Japanologie" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT020582812", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT020582812" ], "id" : "http://lobid.org/items/990367761810206441:DE-38-459:23197352380006476#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990368743120206441.json b/src/test/resources/alma-fix/990368743120206441.json index 0b6073d03..49248a33a 100644 --- a/src/test/resources/alma-fix/990368743120206441.json +++ b/src/test/resources/alma-fix/990368743120206441.json @@ -75,7 +75,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020681018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020681018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990368743120206441:DE-6:23544500850006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/991005935279706485.json b/src/test/resources/alma-fix/991005935279706485.json index cc3342c4f..1f53d20e0 100644 --- a/src/test/resources/alma-fix/991005935279706485.json +++ b/src/test/resources/alma-fix/991005935279706485.json @@ -271,7 +271,7 @@ "hasItem" : [ { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "opacLink" : "https://hb063.fh-muenster.de/webOPACClient/start.do?Query=-1=%22202777-X%22", + "seeAlso" : [ "https://hb063.fh-muenster.de/webOPACClient/start.do?Query=-1=%22202777-X%22" ], "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", diff --git a/src/test/resources/alma-fix/99370678063606441.json b/src/test/resources/alma-fix/99370678063606441.json index 6205c3335..166e5b263 100644 --- a/src/test/resources/alma-fix/99370678063606441.json +++ b/src/test/resources/alma-fix/99370678063606441.json @@ -195,7 +195,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=5336193550006485&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=991006386478506485", - "opacLink" : "https://hb063.fh-muenster.de/webOPACClient/start.do?Query=-1=%222598795-1%22", + "seeAlso" : [ "https://hb063.fh-muenster.de/webOPACClient/start.do?Query=-1=%222598795-1%22" ], "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", @@ -229,7 +229,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53137417580006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -241,7 +241,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53149555660006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -253,7 +253,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53141137810006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -265,7 +265,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53153104540006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -277,7 +277,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53137729250006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99381829355006464", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -289,7 +289,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&portfolio_pid=5385583960006444&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&rft.mms_id=991005821828906444", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%222598795-1%22", + "seeAlso" : [ "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%222598795-1%22" ], "heldBy" : { "isil" : "DE-A96", "id" : "http://lobid.org/organisations/DE-A96#!", @@ -301,7 +301,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&portfolio_pid=5324315100006450&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&rft.mms_id=991005482849106450", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%222598795-1%22", + "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%222598795-1%22" ], "heldBy" : { "isil" : "DE-Bi10", "id" : "http://lobid.org/organisations/DE-Bi10#!", @@ -324,7 +324,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=5352012540006452&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=991005694326706452", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%222598795-1%22", + "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%222598795-1%22" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -358,7 +358,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=5349662860008056&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=991008986786508056", - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=-1=%222598795-1%22", + "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=-1=%222598795-1%22" ], "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -414,7 +414,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=5323323830006453&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=991004112696706453", - "opacLink" : "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=-1=%222598795-1%22", + "seeAlso" : [ "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=-1=%222598795-1%22" ], "heldBy" : { "isil" : "DE-1393", "id" : "http://lobid.org/organisations/DE-1393#!", @@ -536,7 +536,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53206901250006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013481417006445", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%222598795-1%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%222598795-1%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -548,7 +548,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53230941160006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013481417006445", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%222598795-1%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%222598795-1%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -560,7 +560,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53216211500006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013481417006445", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%222598795-1%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=-1=%222598795-1%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -572,7 +572,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53313992860006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927778655706470", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -584,7 +584,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53314230740006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927778655706470", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -596,7 +596,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53320721620006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180392606467", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222598795-1%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222598795-1%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -608,7 +608,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53349719870006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180392606467", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222598795-1%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222598795-1%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -620,7 +620,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53320689660006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180392606467", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222598795-1%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222598795-1%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -632,7 +632,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53305968290006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025806681206442", - "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=21914664&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10", + "seeAlso" : [ "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=21914664&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10" ], "heldBy" : { "isil" : "DE-361", "id" : "http://lobid.org/organisations/DE-361#!", @@ -644,7 +644,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53305849380006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025806681206442", - "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=21914664&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10", + "seeAlso" : [ "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=21914664&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10" ], "heldBy" : { "isil" : "DE-361", "id" : "http://lobid.org/organisations/DE-361#!", @@ -656,7 +656,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53190076510006471&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=991027808804206471", - "opacLink" : "https://suchen.ub.rub.de/zdbid/2598795-1", + "seeAlso" : [ "https://suchen.ub.rub.de/zdbid/2598795-1" ], "heldBy" : { "isil" : "DE-294", "id" : "http://lobid.org/organisations/DE-294#!", @@ -668,7 +668,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53452984420006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", - "opacLink" : "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=21914664", + "seeAlso" : [ "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=21914664" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -680,7 +680,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53441010540006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", - "opacLink" : "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=21914664", + "seeAlso" : [ "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=21914664" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -692,7 +692,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53455804610006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", - "opacLink" : "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=21914664", + "seeAlso" : [ "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=21914664" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -704,7 +704,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53333893140006443&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=9947406450506443", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=21914664", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=21914664" ], "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -716,7 +716,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53334490330006443&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=9947406450506443", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=21914664", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=21914664" ], "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -728,7 +728,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53358210520006443&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=9947406450506443", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=21914664", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D=21914664" ], "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -740,7 +740,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UKO/openurl?u.ignore_date_coverage=true&portfolio_pid=5337281000008057&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UKO/openurl?u.ignore_date_coverage=true&rft.mms_id=9910060661008057", - "opacLink" : "http://aleph1.uni-koblenz.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "heldBy" : { "isil" : "DE-Kob7", "id" : "http://lobid.org/organisations/DE-Kob7#!", @@ -774,7 +774,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627078260006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -786,7 +786,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53626936090006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -798,7 +798,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627921000006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -810,7 +810,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53673256170006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -822,7 +822,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=5396251040006462&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99204507541206462", - "opacLink" : "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -834,7 +834,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53109067080006462&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99204507541206462", - "opacLink" : "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=21914664&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -846,7 +846,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53159673220006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925013376606463", - "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=21914664&scope=catalog&sf=rank", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=21914664&scope=catalog&sf=rank" ], "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", @@ -858,7 +858,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53160920940006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925013376606463", - "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=21914664&scope=catalog&sf=rank", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=21914664&scope=catalog&sf=rank" ], "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", @@ -870,7 +870,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53175909640006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925013376606463", - "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=21914664&scope=catalog&sf=rank", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=21914664&scope=catalog&sf=rank" ], "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", diff --git a/src/test/resources/alma-fix/99370682219806441.json b/src/test/resources/alma-fix/99370682219806441.json index 5596c790d..bf3745fd1 100644 --- a/src/test/resources/alma-fix/99370682219806441.json +++ b/src/test/resources/alma-fix/99370682219806441.json @@ -201,7 +201,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53346185050006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045255047006467", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222745694-8%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222745694-8%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -213,7 +213,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53346309900006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045255047006467", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222745694-8%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222745694-8%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/99370690532406441.json b/src/test/resources/alma-fix/99370690532406441.json index c81074117..01c5089cb 100644 --- a/src/test/resources/alma-fix/99370690532406441.json +++ b/src/test/resources/alma-fix/99370690532406441.json @@ -99,7 +99,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53208220140006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013485396506445", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0543=%2221968292%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0543=%2221968292%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -111,7 +111,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53320611800006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180157206467", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2221968292%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2221968292%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -123,7 +123,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53317006550006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025806297206442", - "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=21968292&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10", + "seeAlso" : [ "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=21968292&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10" ], "heldBy" : { "isil" : "DE-361", "id" : "http://lobid.org/organisations/DE-361#!", @@ -135,7 +135,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53305666740006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025806297206442", - "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=21968292&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10", + "seeAlso" : [ "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=21968292&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10" ], "heldBy" : { "isil" : "DE-361", "id" : "http://lobid.org/organisations/DE-361#!", @@ -147,7 +147,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53185697690006471&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBO/openurl?u.ignore_date_coverage=true&rft.mms_id=991027794842406471", - "opacLink" : "https://suchen.ub.rub.de/issn/21968292", + "seeAlso" : [ "https://suchen.ub.rub.de/issn/21968292" ], "heldBy" : { "isil" : "DE-294", "id" : "http://lobid.org/organisations/DE-294#!", @@ -170,7 +170,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53653301110006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044925061406449", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21968292", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21968292" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -182,7 +182,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=5397076270006462&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99204510098106462", - "opacLink" : "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=21968292&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://obelix.ub.uni-siegen.de/F/?func=find-b&request=21968292&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -194,7 +194,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53161142230006463&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=9925018040106463", - "opacLink" : "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=21968292&scope=catalog&sf=rank", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D=21968292&scope=catalog&sf=rank" ], "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", diff --git a/src/test/resources/alma-fix/99370694196806441.json b/src/test/resources/alma-fix/99370694196806441.json index e180e195b..37899bf65 100644 --- a/src/test/resources/alma-fix/99370694196806441.json +++ b/src/test/resources/alma-fix/99370694196806441.json @@ -181,7 +181,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53333829220006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045220310806467", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222669828-6%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222669828-6%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/99370699582506441.json b/src/test/resources/alma-fix/99370699582506441.json index 8e2b171b4..4164f8985 100644 --- a/src/test/resources/alma-fix/99370699582506441.json +++ b/src/test/resources/alma-fix/99370699582506441.json @@ -122,7 +122,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53355917830006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045280382606467", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222508993-6%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=-1=%222508993-6%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/99370771475306441.json b/src/test/resources/alma-fix/99370771475306441.json index d2d664714..dfe97ed42 100644 --- a/src/test/resources/alma-fix/99370771475306441.json +++ b/src/test/resources/alma-fix/99370771475306441.json @@ -249,7 +249,7 @@ "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT020919504%22", + "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT020919504%22" ], "id" : "http://lobid.org/items/99370771475306441:DE-Dm13:2346845850006451#!" }, { "label" : "lobid Bestandsressource", @@ -263,7 +263,7 @@ "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", + "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22" ], "id" : "http://lobid.org/items/99370771475306441:DE-Bi10:2317935550006450#!" }, { "label" : "lobid Bestandsressource", @@ -277,7 +277,7 @@ "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", + "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22" ], "id" : "http://lobid.org/items/99370771475306441:DE-Bi10:2317935560006450#!" }, { "label" : "lobid Bestandsressource", @@ -291,7 +291,7 @@ "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22", + "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22" ], "id" : "http://lobid.org/items/99370771475306441:DE-Bi10:2317935570006450#!" }, { "label" : "lobid Bestandsressource", @@ -305,7 +305,7 @@ "id" : "http://lobid.org/organisations/DE-1116#!", "label" : "Hochschule für Wirtschaft und Gesellschaft Ludwigshafen, Bibliothek" }, - "opacLink" : "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID=HT020919504", + "seeAlso" : [ "http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID=HT020919504" ], "id" : "http://lobid.org/items/99370771475306441:DE-1116:2313341950007824#!" }, { "label" : "lobid Bestandsressource", @@ -319,7 +319,7 @@ "id" : "http://lobid.org/organisations/DE-Bo404#!", "label" : "Deutsches Referenzzentrum für Ethik in den Biowissenschaften, Bibliothek/Dokumentation" }, - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020919504", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020919504" ], "id" : "http://lobid.org/items/99370771475306441:DE-Bo404:23299338990006467#!" }, { "label" : "lobid Bestandsressource", @@ -346,7 +346,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/99370771475306441:DE-465:23448803450006446#!" }, { "label" : "lobid Bestandsressource", @@ -360,7 +360,7 @@ "id" : "http://lobid.org/organisations/DE-6-164#!", "label" : "Universität Münster, Institut für Ethik, Geschichte und Theorie der Medizin, Bibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/99370771475306441:DE-6-164:23545591700006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/99370782520706441.json b/src/test/resources/alma-fix/99370782520706441.json index 8e1c5ad3a..69530bd72 100644 --- a/src/test/resources/alma-fix/99370782520706441.json +++ b/src/test/resources/alma-fix/99370782520706441.json @@ -279,7 +279,7 @@ "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT020936481", + "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-Bm40:2313413830006454#!" }, { "label" : "lobid Bestandsressource", @@ -293,7 +293,7 @@ "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT020936481%22", + "seeAlso" : [ "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT020936481%22" ], "id" : "http://lobid.org/items/99370782520706441:DE-743:2339214060006468#!" }, { "label" : "lobid Bestandsressource", @@ -307,7 +307,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957880006448#!" }, { "label" : "lobid Bestandsressource", @@ -321,7 +321,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957810006448#!" }, { "label" : "lobid Bestandsressource", @@ -335,7 +335,7 @@ "id" : "http://lobid.org/organisations/DE-82-202#!", "label" : "Kooperierende Bibliothek der Lehrstühle für Planungstheorie und Stadtentwicklung, für Städtebau und Landesplanung, für Wohnbau und Grundlagen des Entwerfens, für CAAD, für Individualisierte Bauproduktion, für Immobilienprojektentwicklung, Gemeinsame Bibliothek" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-82-202:23218957790006448#!" }, { "label" : "lobid Bestandsressource", @@ -349,7 +349,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957850006448#!" }, { "label" : "lobid Bestandsressource", @@ -363,7 +363,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957840006448#!" }, { "label" : "lobid Bestandsressource", @@ -377,7 +377,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957830006448#!" }, { "label" : "lobid Bestandsressource", @@ -391,7 +391,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957870006448#!" }, { "label" : "lobid Bestandsressource", @@ -405,7 +405,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-832:2346585050006477#!" }, { "label" : "lobid Bestandsressource", @@ -419,7 +419,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-832:2346585040006477#!" }, { "label" : "lobid Bestandsressource", @@ -433,7 +433,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-832:2346585030006477#!" }, { "label" : "lobid Bestandsressource", @@ -447,7 +447,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-832:2346585060006477#!" }, { "label" : "lobid Bestandsressource", @@ -461,7 +461,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-832:2346585010006477#!" }, { "label" : "lobid Bestandsressource", @@ -475,7 +475,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-832:2346584960006477#!" }, { "label" : "lobid Bestandsressource", @@ -489,7 +489,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-832:2346585000006477#!" }, { "label" : "lobid Bestandsressource", @@ -503,7 +503,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-832:2346585020006477#!" }, { "label" : "lobid Bestandsressource", @@ -517,7 +517,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-832:2346584980006477#!" }, { "label" : "lobid Bestandsressource", @@ -531,7 +531,7 @@ "id" : "http://lobid.org/organisations/DE-832#!", "label" : "Technische Hochschule Köln, Hochschulbibliothek" }, - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-832:2346584990006477#!" }, { "label" : "lobid Bestandsressource", @@ -545,7 +545,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT020936481%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT020936481%22" ], "id" : "http://lobid.org/items/99370782520706441:DE-290:23212938760006445#!" }, { "label" : "lobid Bestandsressource", @@ -572,7 +572,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-465:23448939910006446#!" }, { "label" : "lobid Bestandsressource", @@ -586,7 +586,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-465:23448939860006446#!" }, { "label" : "lobid Bestandsressource", @@ -600,7 +600,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT020936481", + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-467:2358786050006462#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99371014448006441.json b/src/test/resources/alma-fix/99371014448006441.json index 30265d159..4a4e4d902 100644 --- a/src/test/resources/alma-fix/99371014448006441.json +++ b/src/test/resources/alma-fix/99371014448006441.json @@ -123,7 +123,7 @@ "id" : "http://lobid.org/organisations/DE-38-459#!", "label" : "Gemeinsame Fachbibliothek Asien / Japanologie" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021117356", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021117356" ], "id" : "http://lobid.org/items/99371014448006441:DE-38-459:23187329000006476#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99371050452706441.json b/src/test/resources/alma-fix/99371050452706441.json index 9d10d2ea6..37b980aea 100644 --- a/src/test/resources/alma-fix/99371050452706441.json +++ b/src/test/resources/alma-fix/99371050452706441.json @@ -225,7 +225,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021137663&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021137663&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/99371050452706441:DE-6:23596739030006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99371147104906441.json b/src/test/resources/alma-fix/99371147104906441.json index ae3996c39..71794778a 100644 --- a/src/test/resources/alma-fix/99371147104906441.json +++ b/src/test/resources/alma-fix/99371147104906441.json @@ -144,7 +144,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&portfolio_pid=53111522090006444&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&rft.mms_id=991005885283006444", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=0543=%2227836207%22", + "seeAlso" : [ "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=0543=%2227836207%22" ], "heldBy" : { "isil" : "DE-A96", "id" : "http://lobid.org/organisations/DE-A96#!", @@ -156,7 +156,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&portfolio_pid=53100582450006444&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHA/openurl?u.ignore_date_coverage=true&rft.mms_id=991005885283006444", - "opacLink" : "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=0543=%2227836207%22", + "seeAlso" : [ "https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=0543=%2227836207%22" ], "heldBy" : { "isil" : "DE-A96", "id" : "http://lobid.org/organisations/DE-A96#!", @@ -168,7 +168,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=5355783850006452&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=991005705885506452", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0543=%2227836207%22", + "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0543=%2227836207%22" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -180,7 +180,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53220694770006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013572431006445", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0543=%2227836207%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0543=%2227836207%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -192,7 +192,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53360282040006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2227836207%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2227836207%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -204,7 +204,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53346765620006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2227836207%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2227836207%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -216,7 +216,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53348545120006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", - "opacLink" : "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2227836207%22", + "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2227836207%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -228,7 +228,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53349581340006442&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BIE/openurl?u.ignore_date_coverage=true&rft.mms_id=991025971926406442", - "opacLink" : "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=27836207&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10", + "seeAlso" : [ "http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1=27836207&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10" ], "heldBy" : { "isil" : "DE-361", "id" : "http://lobid.org/organisations/DE-361#!", @@ -251,7 +251,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53652173090006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044919564006449", - "opacLink" : "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,27836207", + "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,27836207" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99371314897806441.json b/src/test/resources/alma-fix/99371314897806441.json index 138c13cab..e758ca331 100644 --- a/src/test/resources/alma-fix/99371314897806441.json +++ b/src/test/resources/alma-fix/99371314897806441.json @@ -110,7 +110,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT021352855%22", + "seeAlso" : [ "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT021352855%22" ], "heldBy" : { "isil" : "DE-743", "id" : "http://lobid.org/organisations/DE-743#!", @@ -122,7 +122,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT021352855", + "seeAlso" : [ "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT021352855" ], "heldBy" : { "isil" : "DE-1010", "id" : "http://lobid.org/organisations/DE-1010#!", @@ -134,7 +134,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT021352855", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT021352855" ], "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -146,7 +146,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT021352855&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT021352855&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -158,7 +158,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT021352855", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT021352855" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -170,7 +170,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021352855&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021352855&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -193,7 +193,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021352855", + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021352855" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -205,7 +205,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT021352855", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT021352855" ], "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", @@ -217,7 +217,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT021352855%22", + "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT021352855%22" ], "heldBy" : { "isil" : "DE-Bi10", "id" : "http://lobid.org/organisations/DE-Bi10#!", @@ -229,7 +229,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22HT021352855%22", + "seeAlso" : [ "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22HT021352855%22" ], "heldBy" : { "isil" : "DE-1393", "id" : "http://lobid.org/organisations/DE-1393#!", @@ -241,7 +241,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT021352855", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT021352855" ], "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -253,7 +253,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT021352855", + "seeAlso" : [ "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT021352855" ], "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -265,7 +265,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT021352855", + "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT021352855" ], "heldBy" : { "isil" : "DE-Bm40", "id" : "http://lobid.org/organisations/DE-Bm40#!", @@ -277,7 +277,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT021352855%22", + "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT021352855%22" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -300,7 +300,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT021352855&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT021352855&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -312,7 +312,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT021352855%22", + "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT021352855%22" ], "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -324,7 +324,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021352855", + "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021352855" ], "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", @@ -336,7 +336,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT021352855%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT021352855%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -370,7 +370,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT021352855%22", + "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT021352855%22" ], "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", @@ -393,7 +393,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT021352855&local_base=ZBS01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT021352855&local_base=ZBS01" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -405,7 +405,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT021352855", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT021352855" ], "heldBy" : { "isil" : "DE-832", "id" : "http://lobid.org/organisations/DE-832#!", @@ -428,7 +428,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBK/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021352855", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021352855" ], "heldBy" : { "isil" : "DE-38", "id" : "http://lobid.org/organisations/DE-38#!", @@ -440,7 +440,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53133004370006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=990016111720106464", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT021352855&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT021352855&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", diff --git a/src/test/resources/alma-fix/99371530278506441.json b/src/test/resources/alma-fix/99371530278506441.json index d2bcf6f8e..c0085315d 100644 --- a/src/test/resources/alma-fix/99371530278506441.json +++ b/src/test/resources/alma-fix/99371530278506441.json @@ -195,7 +195,7 @@ "id" : "http://lobid.org/organisations/DE-38-432#!", "label" : "Thomas-Institut, Bibliothek" }, - "opacLink" : "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021463169", + "seeAlso" : [ "http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid=HT021463169" ], "id" : "http://lobid.org/items/99371530278506441:DE-38-432:23292477910006476#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99371791018506441.json b/src/test/resources/alma-fix/99371791018506441.json index 3befca832..92e94335f 100644 --- a/src/test/resources/alma-fix/99371791018506441.json +++ b/src/test/resources/alma-fix/99371791018506441.json @@ -96,14 +96,13 @@ "id" : "http://lobid.org/organisations/DE-1105#!", "label" : "Hochschule Koblenz, RheinAhrCampus, Bibliothek" }, - "opacLink" : "http://www.hs-koblenz.de/RACwebOPAC/start.do?Login=webopac&Query=0010=%22HT021613847%22", "id" : "http://lobid.org/items/99371791018506441:DE-1105:2213069980007829#!" }, { "type" : [ "Item", "DigitalDocument" ], "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021613847", + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021613847" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -115,7 +114,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT021613847", + "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT021613847" ], "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -138,7 +137,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT021613847", + "seeAlso" : [ "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT021613847" ], "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -150,7 +149,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT021613847", + "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT021613847" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -162,7 +161,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT021613847&local_base=ZBS01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT021613847&local_base=ZBS01" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -174,7 +173,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_THK/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT021613847", + "seeAlso" : [ "http://www.digibib.net/permalink/832/FHBK-x/HBZ:HT021613847" ], "heldBy" : { "isil" : "DE-832", "id" : "http://lobid.org/organisations/DE-832#!", @@ -186,7 +185,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT021613847", + "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT021613847" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -198,7 +197,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22HT021613847%22", + "seeAlso" : [ "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22HT021613847%22" ], "heldBy" : { "isil" : "DE-1393", "id" : "http://lobid.org/organisations/DE-1393#!", @@ -221,7 +220,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021613847", + "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021613847" ], "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", @@ -233,7 +232,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021613847&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021613847&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -256,7 +255,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_PAD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT021613847", + "seeAlso" : [ "https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D=HT021613847" ], "heldBy" : { "isil" : "DE-466", "id" : "http://lobid.org/organisations/DE-466#!", @@ -268,7 +267,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_DUE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT021613847", + "seeAlso" : [ "https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:HT021613847" ], "heldBy" : { "isil" : "DE-61", "id" : "http://lobid.org/organisations/DE-61#!", @@ -291,7 +290,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT021613847", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT021613847" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -303,7 +302,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT021613847&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT021613847&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -315,7 +314,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "https://primo.uni-due.de/discovery/search?query=any,contains,HT021613847&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT021613847&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -327,7 +326,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT021613847%22", + "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT021613847%22" ], "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -339,7 +338,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT021613847%22", + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT021613847%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -351,7 +350,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT021613847&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=", + "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT021613847&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -363,7 +362,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "opacLink" : "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT021613847%22", + "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT021613847%22" ], "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", diff --git a/src/test/resources/alma-fix/99372423490706441.json b/src/test/resources/alma-fix/99372423490706441.json index bc4dabee8..ee37d5dfc 100644 --- a/src/test/resources/alma-fix/99372423490706441.json +++ b/src/test/resources/alma-fix/99372423490706441.json @@ -111,7 +111,7 @@ "id" : "http://lobid.org/organisations/DE-121#!", "label" : "Wissenschaftliche Bibliothek der Stadt Trier" }, - "opacLink" : "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT030002417&local_base=STR01", + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT030002417&local_base=STR01" ], "id" : "http://lobid.org/items/99372423490706441:DE-121:2320209870007826#!" } ], "medium" : [ { From 5599f3d5fe0e16892910f0d3bd03ce64132b9641 Mon Sep 17 00:00:00 2001 From: TobiasNx <61879957+TobiasNx@users.noreply.github.com> Date: Thu, 28 Sep 2023 15:31:51 +0200 Subject: [PATCH 17/23] Update src/main/resources/alma/fix/item.fix Co-authored-by: Jens Wille --- src/main/resources/alma/fix/item.fix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/alma/fix/item.fix b/src/main/resources/alma/fix/item.fix index 6b8870c34..5949b6072 100644 --- a/src/main/resources/alma/fix/item.fix +++ b/src/main/resources/alma/fix/item.fix @@ -79,7 +79,7 @@ do list(path: "HOL ", "var": "$i") copy_field("$i.@iz", "hasItem[].$last.heldBy.isil") end call_macro("opacLink", field:"@sublibraryIsil") - unless exists("hasItem[].$last.opacLink") + unless exists("hasItem[].$last.seeAlso[]") call_macro("opacLink", field:"@iz") end paste("hasItem[].$last.heldBy.id", "~http://lobid.org/organisations/", "hasItem[].$last.heldBy.isil", "~#!", join_char:"") From dca4580de3fc2abb019ba1c26780e3479d386148 Mon Sep 17 00:00:00 2001 From: TobiasNx Date: Thu, 28 Sep 2023 15:33:53 +0200 Subject: [PATCH 18/23] Fix forgotten change in property name #1888 --- src/main/resources/alma/fix/item.fix | 4 ++-- src/test/resources/alma-fix/990016782920206441.json | 3 ++- src/test/resources/alma-fix/990026405480206441.json | 4 ++-- src/test/resources/alma-fix/990050000600206441.json | 2 +- src/test/resources/alma-fix/990053976760206441.json | 1 + src/test/resources/alma-fix/990054301770206441.json | 1 + src/test/resources/alma-fix/990058434730206441.json | 2 +- src/test/resources/alma-fix/990058567920206441.json | 4 ++-- src/test/resources/alma-fix/990075429930206441.json | 4 ++-- src/test/resources/alma-fix/990103899140206441.json | 1 + src/test/resources/alma-fix/990108873860206441.json | 1 + src/test/resources/alma-fix/990126276700206441.json | 4 ++-- src/test/resources/alma-fix/990141342350206441.json | 2 +- src/test/resources/alma-fix/990156060190206441.json | 5 +++-- src/test/resources/alma-fix/990194744870206441.json | 2 +- src/test/resources/alma-fix/990197293880206441.json | 1 + src/test/resources/alma-fix/99371791018506441.json | 1 + 17 files changed, 25 insertions(+), 17 deletions(-) diff --git a/src/main/resources/alma/fix/item.fix b/src/main/resources/alma/fix/item.fix index 5949b6072..f71b9a71a 100644 --- a/src/main/resources/alma/fix/item.fix +++ b/src/main/resources/alma/fix/item.fix @@ -36,7 +36,7 @@ do list(path:"ITM ", "var": "$i") copy_field("$i.@iz","hasItem[].$last.heldBy.isil") end call_macro("opacLink", field:"@sublibraryIsil") - unless exists("hasItem[].$last.opacLink") + unless exists("hasItem[].$last.seeAlso[].1") call_macro("opacLink", field:"@iz") end paste("hasItem[].$last.heldBy.id", "~http://lobid.org/organisations/", "hasItem[].$last.heldBy.isil", "~#!", join_char:"") @@ -79,7 +79,7 @@ do list(path: "HOL ", "var": "$i") copy_field("$i.@iz", "hasItem[].$last.heldBy.isil") end call_macro("opacLink", field:"@sublibraryIsil") - unless exists("hasItem[].$last.seeAlso[]") + unless exists("hasItem[].$last.seeAlso[].1") call_macro("opacLink", field:"@iz") end paste("hasItem[].$last.heldBy.id", "~http://lobid.org/organisations/", "hasItem[].$last.heldBy.isil", "~#!", join_char:"") diff --git a/src/test/resources/alma-fix/990016782920206441.json b/src/test/resources/alma-fix/990016782920206441.json index 0f8d0cfd8..5a4550d34 100644 --- a/src/test/resources/alma-fix/990016782920206441.json +++ b/src/test/resources/alma-fix/990016782920206441.json @@ -107,6 +107,7 @@ "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHD01&doc_001_number=HT004285445&local_base=MHD01" ], "id" : "http://lobid.org/items/990016782920206441:DE-575:2393551510006480#!" }, { "label" : "lobid Bestandsressource", @@ -120,7 +121,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT004285445%22&selectedViewBranchlib=0" ], + "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT004285445%22" ], "id" : "http://lobid.org/items/990016782920206441:DE-107:237988430007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990026405480206441.json b/src/test/resources/alma-fix/990026405480206441.json index 07ca5a018..e329af891 100644 --- a/src/test/resources/alma-fix/990026405480206441.json +++ b/src/test/resources/alma-fix/990026405480206441.json @@ -130,7 +130,7 @@ "id" : "http://lobid.org/organisations/DE-Zw1#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Bibliotheca Bipontina" }, - "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=0" ], + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=2" ], "id" : "http://lobid.org/items/990026405480206441:DE-Zw1:2310230370007506#!" }, { "label" : "lobid Bestandsressource", @@ -144,7 +144,7 @@ "id" : "http://lobid.org/organisations/DE-Zw1#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Bibliotheca Bipontina" }, - "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=0" ], + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT006813395%22&selectedViewBranchlib=2" ], "id" : "http://lobid.org/items/990026405480206441:DE-Zw1:2310230380007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990050000600206441.json b/src/test/resources/alma-fix/990050000600206441.json index 6c6ff3116..9088e9a24 100644 --- a/src/test/resources/alma-fix/990050000600206441.json +++ b/src/test/resources/alma-fix/990050000600206441.json @@ -175,7 +175,7 @@ "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611" ], + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT006855611&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990050000600206441:DE-Lan1:2365786130007476#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990053976760206441.json b/src/test/resources/alma-fix/990053976760206441.json index 64a36db1b..09c995977 100644 --- a/src/test/resources/alma-fix/990053976760206441.json +++ b/src/test/resources/alma-fix/990053976760206441.json @@ -373,6 +373,7 @@ "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=00319244&find_code=ISN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990053976760206441:DE-Lan1:2266381790007476#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990054301770206441.json b/src/test/resources/alma-fix/990054301770206441.json index 6bd0d42ae..1e27fc98d 100644 --- a/src/test/resources/alma-fix/990054301770206441.json +++ b/src/test/resources/alma-fix/990054301770206441.json @@ -210,6 +210,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, + "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=-1=%22133469-4%22" ], "id" : "http://lobid.org/items/990054301770206441:DE-107:2285922320007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990058434730206441.json b/src/test/resources/alma-fix/990058434730206441.json index 8b1015d4d..c1c87239d 100644 --- a/src/test/resources/alma-fix/990058434730206441.json +++ b/src/test/resources/alma-fix/990058434730206441.json @@ -239,7 +239,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000893437%22&selectedViewBranchlib=0" ], + "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000893437%22" ], "id" : "http://lobid.org/items/990058434730206441:DE-107:2384300260007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990058567920206441.json b/src/test/resources/alma-fix/990058567920206441.json index 6f81e05cb..c93714625 100644 --- a/src/test/resources/alma-fix/990058567920206441.json +++ b/src/test/resources/alma-fix/990058567920206441.json @@ -241,7 +241,7 @@ "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138" ], + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990058567920206441:DE-Lan1:2386676860007476#!" }, { "label" : "lobid Bestandsressource", @@ -269,7 +269,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000909138%22&selectedViewBranchlib=0" ], + "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000909138%22" ], "id" : "http://lobid.org/items/990058567920206441:DE-107:2317906360007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990075429930206441.json b/src/test/resources/alma-fix/990075429930206441.json index 1d4e952db..f058bf302 100644 --- a/src/test/resources/alma-fix/990075429930206441.json +++ b/src/test/resources/alma-fix/990075429930206441.json @@ -102,7 +102,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000944190%22&selectedViewBranchlib=0" ], + "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000944190%22" ], "id" : "http://lobid.org/items/990075429930206441:DE-107:2377095800007506#!" }, { "label" : "lobid Bestandsressource", @@ -116,7 +116,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000944190%22&selectedViewBranchlib=0" ], + "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000944190%22" ], "id" : "http://lobid.org/items/990075429930206441:DE-107:2377095810007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990103899140206441.json b/src/test/resources/alma-fix/990103899140206441.json index 47cb9b39b..b6be166fb 100644 --- a/src/test/resources/alma-fix/990103899140206441.json +++ b/src/test/resources/alma-fix/990103899140206441.json @@ -118,6 +118,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, + "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=-1=%22590016-5%22" ], "id" : "http://lobid.org/items/990103899140206441:DE-107:2263335540007506#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990108873860206441.json b/src/test/resources/alma-fix/990108873860206441.json index 272b27a35..7854371ba 100644 --- a/src/test/resources/alma-fix/990108873860206441.json +++ b/src/test/resources/alma-fix/990108873860206441.json @@ -157,6 +157,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, + "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=-1=%221500025-4%22" ], "id" : "http://lobid.org/items/990108873860206441:DE-107:2263798630007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990126276700206441.json b/src/test/resources/alma-fix/990126276700206441.json index c1a2188cd..16a0c761c 100644 --- a/src/test/resources/alma-fix/990126276700206441.json +++ b/src/test/resources/alma-fix/990126276700206441.json @@ -160,7 +160,7 @@ "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT014015351" ], + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990126276700206441:DE-Lan1:2380082230007476#!" }, { "label" : "lobid Bestandsressource", @@ -174,7 +174,7 @@ "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT014015351" ], + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990126276700206441:DE-Lan1:2380082240007476#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990141342350206441.json b/src/test/resources/alma-fix/990141342350206441.json index 829b64585..81a0e16e3 100644 --- a/src/test/resources/alma-fix/990141342350206441.json +++ b/src/test/resources/alma-fix/990141342350206441.json @@ -106,7 +106,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22TT001230001%22&selectedViewBranchlib=0" ], + "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22TT001230001%22" ], "id" : "http://lobid.org/items/990141342350206441:DE-107:2379314410007506#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990156060190206441.json b/src/test/resources/alma-fix/990156060190206441.json index 41ba5b61a..fea272dbc 100644 --- a/src/test/resources/alma-fix/990156060190206441.json +++ b/src/test/resources/alma-fix/990156060190206441.json @@ -327,6 +327,7 @@ "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, + "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHD01&doc_001_number=HT015014677&local_base=MHD01" ], "id" : "http://lobid.org/items/990156060190206441:DE-575:23101091890006480#!" }, { "label" : "lobid Bestandsressource", @@ -367,7 +368,7 @@ "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677" ], + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990156060190206441:DE-Lan1:2374193700007476#!" }, { "label" : "lobid Bestandsressource", @@ -409,7 +410,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015014677%22&selectedViewBranchlib=0" ], + "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT015014677%22" ], "id" : "http://lobid.org/items/990156060190206441:DE-107:2369296750007506#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990194744870206441.json b/src/test/resources/alma-fix/990194744870206441.json index f40d2d8d4..3f498200b 100644 --- a/src/test/resources/alma-fix/990194744870206441.json +++ b/src/test/resources/alma-fix/990194744870206441.json @@ -83,7 +83,7 @@ "id" : "http://lobid.org/organisations/DE-Lan1#!", "label" : "Universitätsbibliothek der RPTU in Landau" }, - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT017559543" ], + "seeAlso" : [ "http://aleph1.uni-koblenz.de/F/?func=find-b&request=HT017559543&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], "id" : "http://lobid.org/items/990194744870206441:DE-Lan1:2363975880007476#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990197293880206441.json b/src/test/resources/alma-fix/990197293880206441.json index f8e8e765f..14aa00c44 100644 --- a/src/test/resources/alma-fix/990197293880206441.json +++ b/src/test/resources/alma-fix/990197293880206441.json @@ -192,6 +192,7 @@ "id" : "http://lobid.org/organisations/DE-1105#!", "label" : "Hochschule Koblenz, RheinAhrCampus, Bibliothek" }, + "seeAlso" : [ "http://www.hs-koblenz.de/RACwebOPAC/start.do?Login=webopac&Query=0010=%22TT050421649%22" ], "id" : "http://lobid.org/items/990197293880206441:DE-1105:2219007830007829#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/99371791018506441.json b/src/test/resources/alma-fix/99371791018506441.json index 92e94335f..1b37ac9d5 100644 --- a/src/test/resources/alma-fix/99371791018506441.json +++ b/src/test/resources/alma-fix/99371791018506441.json @@ -96,6 +96,7 @@ "id" : "http://lobid.org/organisations/DE-1105#!", "label" : "Hochschule Koblenz, RheinAhrCampus, Bibliothek" }, + "seeAlso" : [ "http://www.hs-koblenz.de/RACwebOPAC/start.do?Login=webopac&Query=0010=%22HT021613847%22" ], "id" : "http://lobid.org/items/99371791018506441:DE-1105:2213069980007829#!" }, { "type" : [ "Item", "DigitalDocument" ], From 20c01d400e1bbd0b8ec572135eb353a97f53a925 Mon Sep 17 00:00:00 2001 From: TobiasNx Date: Thu, 28 Sep 2023 15:45:01 +0200 Subject: [PATCH 19/23] Use local maps in test and submodul in prod #1888 --- .../lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java | 8 ++++---- .../resources/AlmaMarc21XmlToLobidJsonMetafixTest.java | 8 ++++---- .../resources/alma/maps/isil2opac_hbzId.tsv | 0 src/{main => test}/resources/alma/maps/isil2opac_isbn.tsv | 0 src/{main => test}/resources/alma/maps/isil2opac_issn.tsv | 0 .../resources/alma/maps/isil2opac_zdbId.tsv | 0 6 files changed, 8 insertions(+), 8 deletions(-) rename src/{main => test}/resources/alma/maps/isil2opac_hbzId.tsv (100%) rename src/{main => test}/resources/alma/maps/isil2opac_isbn.tsv (100%) rename src/{main => test}/resources/alma/maps/isil2opac_issn.tsv (100%) rename src/{main => test}/resources/alma/maps/isil2opac_zdbId.tsv (100%) diff --git a/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java b/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java index b63194f34..2e7409694 100644 --- a/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java +++ b/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java @@ -131,10 +131,10 @@ public void run() { fixVariables.put("rpb-spatial.ttl", "../../../../../../vocabs/rpb/rpb-spatial.ttl"); fixVariables.put("rpb.ttl", "../../../../../../vocabs/rpb/rpb.ttl"); fixVariables.put("hbzId2zdbId.tsv", "./maps/hbzId2zdbId.tsv.gz"); - fixVariables.put("isil2opac_hbzId.tsv", "./maps/isil2opac_hbzId.tsv"); - fixVariables.put("isil2opac_isbn.tsv", "./maps/isil2opac_isbn.tsv"); - fixVariables.put("isil2opac_issn.tsv", "./maps/isil2opac_issn.tsv"); - fixVariables.put("isil2opac_zdbId.tsv", "./maps/isil2opac_zdbId.tsv"); + fixVariables.put("isil2opac_hbzId.tsv", "../../../../../../lookup-tables/data/opacLinks/isil2opac_hbzId.tsv"); + fixVariables.put("isil2opac_isbn.tsv", "../../../../../../lookup-tables/data/opacLinks/isil2opac_isbn.tsv"); + fixVariables.put("isil2opac_issn.tsv", "../../../../../../lookup-tables/data/opacLinks/isil2opac_issn.tsv"); + fixVariables.put("isil2opac_zdbId.tsv", "../../../../../../lookup-tables/data/opacLinks/isil2opac_zdbId.tsv"); XmlElementSplitter xmlElementSplitter = new XmlElementSplitter(); diff --git a/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java b/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java index 84c91a350..b23c76ac5 100644 --- a/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java +++ b/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java @@ -75,10 +75,10 @@ public void setup() { fixVariables.put("rpb-spatial.ttl", "src/test/resources/alma/maps/rpb-spatial.ttl"); fixVariables.put("rpb.ttl", "src/test/resources/alma/maps/rpb.ttl"); fixVariables.put("hbzId2zdbId.tsv", "src/main/resources/alma/maps/hbzId2zdbId.tsv.gz"); - fixVariables.put("isil2opac_hbzId.tsv", "src/main/resources/alma/maps/isil2opac_hbzId.tsv"); - fixVariables.put("isil2opac_isbn.tsv", "src/main/resources/alma/maps/isil2opac_isbn.tsv"); - fixVariables.put("isil2opac_issn.tsv", "src/main/resources/alma/maps/isil2opac_issn.tsv"); - fixVariables.put("isil2opac_zdbId.tsv", "src/main/resources/alma/maps/isil2opac_zdbId.tsv"); + fixVariables.put("isil2opac_hbzId.tsv", "src/test/resources/alma/maps/isil2opac_hbzId.tsv"); + fixVariables.put("isil2opac_isbn.tsv", "src/test/resources/alma/maps/isil2opac_isbn.tsv"); + fixVariables.put("isil2opac_issn.tsv", "src/test/resources/alma/maps/isil2opac_issn.tsv"); + fixVariables.put("isil2opac_zdbId.tsv", "src/test/resources/alma/maps/isil2opac_zdbId.tsv"); } /** diff --git a/src/main/resources/alma/maps/isil2opac_hbzId.tsv b/src/test/resources/alma/maps/isil2opac_hbzId.tsv similarity index 100% rename from src/main/resources/alma/maps/isil2opac_hbzId.tsv rename to src/test/resources/alma/maps/isil2opac_hbzId.tsv diff --git a/src/main/resources/alma/maps/isil2opac_isbn.tsv b/src/test/resources/alma/maps/isil2opac_isbn.tsv similarity index 100% rename from src/main/resources/alma/maps/isil2opac_isbn.tsv rename to src/test/resources/alma/maps/isil2opac_isbn.tsv diff --git a/src/main/resources/alma/maps/isil2opac_issn.tsv b/src/test/resources/alma/maps/isil2opac_issn.tsv similarity index 100% rename from src/main/resources/alma/maps/isil2opac_issn.tsv rename to src/test/resources/alma/maps/isil2opac_issn.tsv diff --git a/src/main/resources/alma/maps/isil2opac_zdbId.tsv b/src/test/resources/alma/maps/isil2opac_zdbId.tsv similarity index 100% rename from src/main/resources/alma/maps/isil2opac_zdbId.tsv rename to src/test/resources/alma/maps/isil2opac_zdbId.tsv From adbda88f9c841f4e52491147078137be025bdbaf Mon Sep 17 00:00:00 2001 From: TobiasNx Date: Thu, 28 Sep 2023 15:46:22 +0200 Subject: [PATCH 20/23] Update opac maps #1888 --- .../alma-fix/990001412590206441.json | 10 +- .../alma-fix/990011470300206441.json | 3 - .../alma-fix/990014830510206441.json | 4 - .../alma-fix/990016782920206441.json | 7 +- .../alma-fix/990021367710206441.json | 4 - .../alma-fix/990021974470206441.json | 3 - .../alma-fix/990026405480206441.json | 3 +- .../alma-fix/990030574430206441.json | 2 - .../alma-fix/990035016180206441.json | 9 +- .../alma-fix/990041403870206441.json | 1 - .../alma-fix/990050000600206441.json | 31 +-- .../alma-fix/990052965140206441.json | 8 +- .../alma-fix/990053976760206441.json | 4 - .../alma-fix/990054301770206441.json | 1 - .../alma-fix/990055981810206441.json | 5 - .../alma-fix/990058434730206441.json | 19 +- .../alma-fix/990058567920206441.json | 31 +-- .../alma-fix/990059571560206441.json | 2 - .../alma-fix/990063549080206441.json | 6 +- .../alma-fix/990065341720206441.json | 1 - .../alma-fix/990075429930206441.json | 13 +- .../alma-fix/990075538650206441.json | 1 - .../alma-fix/990114098170206441.json | 1 - .../alma-fix/990118562160206441.json | 1 - .../alma-fix/990122511970206441.json | 2 +- .../alma-fix/990126276700206441.json | 11 +- .../alma-fix/990139686910206441.json | 2 +- .../alma-fix/990141342350206441.json | 2 +- .../alma-fix/990143325070206441.json | 2 - .../alma-fix/990156027740206441.json | 1 - .../alma-fix/990156060190206441.json | 33 +-- .../alma-fix/990167595410206441.json | 1 - .../alma-fix/990171142550206441.json | 3 - .../alma-fix/990173811970206441.json | 2 - .../alma-fix/990181275760206441.json | 17 +- .../alma-fix/990183958380206441.json | 2 - .../alma-fix/990185607520206441.json | 1 - .../alma-fix/990185619180206441.json | 1 - .../alma-fix/990189160110206441.json | 16 +- .../alma-fix/990193094010206441.json | 1 - .../alma-fix/990193806600206441.json | 1 - .../alma-fix/990197067610206441.json | 3 - .../alma-fix/990197293880206441.json | 27 +-- .../alma-fix/990199611280206441.json | 6 +- .../alma-fix/990202474680206441.json | 1 - .../alma-fix/990204246530206441.json | 2 - .../alma-fix/990207668220206441.json | 1 - .../alma-fix/990209515320206441.json | 2 +- .../alma-fix/990209817770206441.json | 1 - .../alma-fix/990210093550206441.json | 3 - .../alma-fix/990210237770206441.json | 118 +++++------ .../alma-fix/990210285400206441.json | 2 +- .../alma-fix/990213367870206441.json | 1 - .../alma-fix/990217478660206441.json | 45 ++-- .../alma-fix/990218189790206441.json | 1 - .../alma-fix/990220027540206441.json | 1 - .../alma-fix/990223521400206441.json | 22 +- .../alma-fix/990225056670206441.json | 1 - .../alma-fix/990363946050206441.json | 3 - .../alma-fix/990365842280206441.json | 14 +- .../alma-fix/990366394400206441.json | 1 - .../alma-fix/990367731740206441.json | 2 +- .../alma-fix/990368743120206441.json | 1 - .../resources/alma-fix/99370678063606441.json | 9 - .../resources/alma-fix/99370690532406441.json | 2 - .../resources/alma-fix/99370771475306441.json | 11 +- .../resources/alma-fix/99370782520706441.json | 16 +- .../resources/alma-fix/99371050452706441.json | 1 - .../resources/alma-fix/99371147104906441.json | 4 - .../resources/alma-fix/99371314897806441.json | 31 ++- .../resources/alma-fix/99371791018506441.json | 24 +-- .../resources/alma-fix/99372423490706441.json | 1 - .../resources/alma/maps/isil2opac_hbzId.tsv | 193 ++---------------- .../resources/alma/maps/isil2opac_isbn.tsv | 161 +-------------- .../resources/alma/maps/isil2opac_issn.tsv | 159 --------------- .../resources/alma/maps/isil2opac_zdbId.tsv | 10 +- 76 files changed, 210 insertions(+), 938 deletions(-) diff --git a/src/test/resources/alma-fix/990001412590206441.json b/src/test/resources/alma-fix/990001412590206441.json index 929e4846e..715f0b942 100644 --- a/src/test/resources/alma-fix/990001412590206441.json +++ b/src/test/resources/alma-fix/990001412590206441.json @@ -119,7 +119,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000161712" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT000161712" ], "id" : "http://lobid.org/items/990001412590206441:DE-468:23138155830006447#!" }, { "label" : "lobid Bestandsressource", @@ -133,7 +133,7 @@ "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, - "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000161712&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], + "seeAlso" : [ "https://fub-hagen.digibib.net/search/katalog/record/(DE-605)HT000161712" ], "id" : "http://lobid.org/items/990001412590206441:DE-708:2397648970006464#!" }, { "label" : "lobid Bestandsressource", @@ -189,7 +189,6 @@ "id" : "http://lobid.org/organisations/DE-121#!", "label" : "Wissenschaftliche Bibliothek der Stadt Trier" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT000161712&local_base=STR01" ], "id" : "http://lobid.org/items/990001412590206441:DE-121:2319004410007826#!" }, { "label" : "lobid Bestandsressource", @@ -203,7 +202,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000161712%22" ], "id" : "http://lobid.org/items/990001412590206441:DE-290:23197423230006445#!" }, { "label" : "lobid Bestandsressource", @@ -217,7 +215,6 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000161712" ], "id" : "http://lobid.org/items/990001412590206441:DE-5:23231651750006467#!" }, { "label" : "lobid Bestandsressource", @@ -272,7 +269,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000161712&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990001412590206441:DE-6:23507162560006449#!" }, { "label" : "lobid Bestandsressource", @@ -286,7 +282,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000161712" ], + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)HT000161712" ], "id" : "http://lobid.org/items/990001412590206441:DE-467:2394316400006462#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990011470300206441.json b/src/test/resources/alma-fix/990011470300206441.json index 85567ffd5..9913b06a4 100644 --- a/src/test/resources/alma-fix/990011470300206441.json +++ b/src/test/resources/alma-fix/990011470300206441.json @@ -101,7 +101,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003109553" ], "id" : "http://lobid.org/items/990011470300206441:DE-385:23264500340006470#!" }, { "label" : "lobid Bestandsressource", @@ -115,7 +114,6 @@ "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003109553&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990011470300206441:DE-6-015:23600509680006449#!" }, { "label" : "lobid Bestandsressource", @@ -127,7 +125,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003109553" ], "id" : "http://lobid.org/items/990011470300206441:DE-385:22264500330006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990014830510206441.json b/src/test/resources/alma-fix/990014830510206441.json index b410be581..764c95166 100644 --- a/src/test/resources/alma-fix/990014830510206441.json +++ b/src/test/resources/alma-fix/990014830510206441.json @@ -104,7 +104,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003864492" ], "id" : "http://lobid.org/items/990014830510206441:DE-385:23291734220006470#!" }, { "label" : "lobid Bestandsressource", @@ -118,7 +117,6 @@ "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT003864492" ], "id" : "http://lobid.org/items/990014830510206441:DE-5-58:23241836240006467#!" }, { "label" : "lobid Bestandsressource", @@ -132,7 +130,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT003864492&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990014830510206441:DE-465:23382608040006446#!" }, { "label" : "lobid Bestandsressource", @@ -144,7 +141,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT003864492" ], "id" : "http://lobid.org/items/990014830510206441:DE-385:22291734190006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990016782920206441.json b/src/test/resources/alma-fix/990016782920206441.json index 5a4550d34..ce6b9f36c 100644 --- a/src/test/resources/alma-fix/990016782920206441.json +++ b/src/test/resources/alma-fix/990016782920206441.json @@ -93,7 +93,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT004285445&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT004285445" ], "id" : "http://lobid.org/items/990016782920206441:DE-1156:2311409300006459#!" }, { "label" : "lobid Bestandsressource", @@ -107,7 +107,7 @@ "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHD01&doc_001_number=HT004285445&local_base=MHD01" ], + "seeAlso" : [ "https://det.digibib.net/search/katalog/record/(DE-605)HT004285445" ], "id" : "http://lobid.org/items/990016782920206441:DE-575:2393551510006480#!" }, { "label" : "lobid Bestandsressource", @@ -121,7 +121,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT004285445%22" ], + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT004285445%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990016782920206441:DE-107:237988430007506#!" }, { "label" : "lobid Bestandsressource", @@ -135,7 +135,6 @@ "id" : "http://lobid.org/organisations/DE-6-286#!", "label" : "Universität Münster, Institut für Musikpädagogik, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004285445&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990016782920206441:DE-6-286:23506545980006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990021367710206441.json b/src/test/resources/alma-fix/990021367710206441.json index 040a64135..161586ac2 100644 --- a/src/test/resources/alma-fix/990021367710206441.json +++ b/src/test/resources/alma-fix/990021367710206441.json @@ -100,7 +100,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT005207972%22" ], "id" : "http://lobid.org/items/990021367710206441:DE-290:23198604440006445#!" }, { "label" : "lobid Bestandsressource", @@ -114,7 +113,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT005207972%22" ], "id" : "http://lobid.org/items/990021367710206441:DE-290:23198604460006445#!" }, { "label" : "lobid Bestandsressource", @@ -128,7 +126,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005207972" ], "id" : "http://lobid.org/items/990021367710206441:DE-385:23252207750006470#!" }, { "label" : "lobid Bestandsressource", @@ -153,7 +150,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005207972" ], "id" : "http://lobid.org/items/990021367710206441:DE-385:22252207740006470#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990021974470206441.json b/src/test/resources/alma-fix/990021974470206441.json index 02f2e95a1..de2bf8129 100644 --- a/src/test/resources/alma-fix/990021974470206441.json +++ b/src/test/resources/alma-fix/990021974470206441.json @@ -112,7 +112,6 @@ "id" : "http://lobid.org/organisations/DE-82-604#!", "label" : "Historisches Institut, Bibliothek" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT005271161&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990021974470206441:DE-82-604:23253806030006448#!" }, { "label" : "lobid Bestandsressource", @@ -126,7 +125,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT005271161" ], "id" : "http://lobid.org/items/990021974470206441:DE-385:23288625180006470#!" }, { "label" : "lobid Bestandsressource", @@ -194,7 +192,6 @@ "id" : "http://lobid.org/organisations/DE-6-016#!", "label" : "Universität Münster, Rechtswissenschaftliches Seminar, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT005271161&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990021974470206441:DE-6-016:23561372540006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990026405480206441.json b/src/test/resources/alma-fix/990026405480206441.json index e329af891..48c9cf439 100644 --- a/src/test/resources/alma-fix/990026405480206441.json +++ b/src/test/resources/alma-fix/990026405480206441.json @@ -102,7 +102,6 @@ "id" : "http://lobid.org/organisations/DE-Sie5#!", "label" : "Wissenschaftliche Bibliothek des Rhein-Sieg-Kreises" }, - "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT006813395%22" ], "id" : "http://lobid.org/items/990026405480206441:DE-Sie5:2365555310006452#!" }, { "label" : "lobid Bestandsressource", @@ -116,7 +115,7 @@ "id" : "http://lobid.org/organisations/DE-Due62#!", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, - "seeAlso" : [ "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT006813395" ], + "seeAlso" : [ "https://hs-duesseldorf.digibib.net/search/katalog/record/(DE-605)HT006813395" ], "id" : "http://lobid.org/items/990026405480206441:DE-Due62:2332858470006455#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990030574430206441.json b/src/test/resources/alma-fix/990030574430206441.json index ae0f3d7ff..5d5c2d9ce 100644 --- a/src/test/resources/alma-fix/990030574430206441.json +++ b/src/test/resources/alma-fix/990030574430206441.json @@ -77,7 +77,6 @@ "id" : "http://lobid.org/organisations/DE-5-13#!", "label" : "Universität Bonn, Institut für Germanistik, Vergleichende Literatur- und Kulturwissenschaft, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT007847893" ], "id" : "http://lobid.org/items/990030574430206441:DE-5-13:23308126210006467#!" }, { "label" : "lobid Bestandsressource", @@ -91,7 +90,6 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT007847893" ], "id" : "http://lobid.org/items/990030574430206441:DE-5:23308126230006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990035016180206441.json b/src/test/resources/alma-fix/990035016180206441.json index 4127968e0..49750894d 100644 --- a/src/test/resources/alma-fix/990035016180206441.json +++ b/src/test/resources/alma-fix/990035016180206441.json @@ -90,7 +90,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT008733617" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT008733617" ], "id" : "http://lobid.org/items/990035016180206441:DE-468:23121154640006447#!" }, { "label" : "lobid Bestandsressource", @@ -104,7 +104,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT008733617%22" ], "id" : "http://lobid.org/items/990035016180206441:DE-290:23200446830006445#!" }, { "label" : "lobid Bestandsressource", @@ -144,7 +143,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990035016180206441:DE-465:23372647300006446#!" }, { "label" : "lobid Bestandsressource", @@ -158,7 +156,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990035016180206441:DE-465:23372647280006446#!" }, { "label" : "lobid Bestandsressource", @@ -186,7 +183,6 @@ "id" : "http://lobid.org/organisations/DE-6-Z#!", "label" : "Universitäts- und Landesbibliothek Münster, Zeitungs- und Pressearchiv" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990035016180206441:DE-6-Z:23504836650006449#!" }, { "label" : "lobid Bestandsressource", @@ -200,7 +196,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT008733617" ], + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)HT008733617" ], "id" : "http://lobid.org/items/990035016180206441:DE-467:2377634040006462#!" }, { "label" : "lobid Bestandsressource", @@ -231,7 +227,6 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT008733617" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", diff --git a/src/test/resources/alma-fix/990041403870206441.json b/src/test/resources/alma-fix/990041403870206441.json index a16682f76..63b43f3fc 100644 --- a/src/test/resources/alma-fix/990041403870206441.json +++ b/src/test/resources/alma-fix/990041403870206441.json @@ -75,7 +75,6 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT009965981" ], "id" : "http://lobid.org/items/990041403870206441:DE-5:23218652060006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990050000600206441.json b/src/test/resources/alma-fix/990050000600206441.json index 9088e9a24..72b041ae5 100644 --- a/src/test/resources/alma-fix/990050000600206441.json +++ b/src/test/resources/alma-fix/990050000600206441.json @@ -213,7 +213,6 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611" ], "id" : "http://lobid.org/items/990050000600206441:DE-386:2265786120007476#!" }, { "label" : "lobid Bestandsressource", @@ -226,7 +225,6 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT006855611" ], "id" : "http://lobid.org/items/990050000600206441:DE-386:2265786090007476#!" }, { "label" : "lobid Bestandsressource", @@ -239,7 +237,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990050000600206441:DE-465:22369588590006446#!" }, { "label" : "lobid Bestandsressource", @@ -252,12 +249,11 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990050000600206441:DE-465:22369588600006446#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT006855611" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT006855611" ], "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -276,7 +272,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT006855611%22" ], + "seeAlso" : [ "http://www.fhb.fh-dortmund.de/webOPACClient/start.do?Query=0010=%22HT006855611%22" ], "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", @@ -295,7 +291,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT006855611&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], + "seeAlso" : [ "https://fub-hagen.digibib.net/search/katalog/record/(DE-605)HT006855611" ], "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -314,7 +310,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT006855611%22" ], + "seeAlso" : [ "https://fhb-bielefeld.digibib.net/search/katalog/record/(DE-605)HT006855611" ], "heldBy" : { "isil" : "DE-Bi10", "id" : "http://lobid.org/organisations/DE-Bi10#!", @@ -324,7 +320,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT006855611" ], + "seeAlso" : [ "https://hsb-bochum.digibib.net/search/katalog/record/(DE-605)HT006855611" ], "heldBy" : { "isil" : "DE-Bm40", "id" : "http://lobid.org/organisations/DE-Bm40#!", @@ -334,7 +330,6 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT006855611%22" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -344,7 +339,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT006855611" ], + "seeAlso" : [ "https://hs-duesseldorf.digibib.net/search/katalog/record/(DE-605)HT006855611" ], "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -354,7 +349,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT006855611%22" ], + "seeAlso" : [ "https://hs-niederrhein.digibib.net/search/katalog/record/(DE-605)HT006855611" ], "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -364,7 +359,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT006855611%22" ], + "seeAlso" : [ "https://th-owl.digibib.net/search/katalog/record/(DE-605)HT006855611" ], "heldBy" : { "isil" : "DE-743", "id" : "http://lobid.org/organisations/DE-743#!", @@ -383,7 +378,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22HT006855611%22" ], + "seeAlso" : [ "https://hsb-ruhr-west.digibib.net/search/katalog/record/(DE-605)HT006855611" ], "heldBy" : { "isil" : "DE-1393", "id" : "http://lobid.org/organisations/DE-1393#!", @@ -393,7 +388,6 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT006855611&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -413,7 +407,6 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT006855611%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -423,7 +416,6 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT006855611" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -461,7 +453,6 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -471,7 +462,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT006855611" ], + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)HT006855611" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -481,7 +472,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT006855611" ], + "seeAlso" : [ "https://w-hs.digibib.net/search/katalog/record/(DE-605)HT006855611" ], "heldBy" : { "isil" : "DE-1010", "id" : "http://lobid.org/organisations/DE-1010#!", diff --git a/src/test/resources/alma-fix/990052965140206441.json b/src/test/resources/alma-fix/990052965140206441.json index 16f8f75b7..14bfed1ca 100644 --- a/src/test/resources/alma-fix/990052965140206441.json +++ b/src/test/resources/alma-fix/990052965140206441.json @@ -146,12 +146,11 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT002529477" ], "id" : "http://lobid.org/items/990052965140206441:DE-385:22279005870006470#!" }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT002529477" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT002529477" ], "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -170,7 +169,6 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT002529477%22" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -180,7 +178,6 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT002529477&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -190,7 +187,6 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT002529477" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -200,7 +196,6 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT002529477&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -230,7 +225,6 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT002529477&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990053976760206441.json b/src/test/resources/alma-fix/990053976760206441.json index 09c995977..b8ab4ae03 100644 --- a/src/test/resources/alma-fix/990053976760206441.json +++ b/src/test/resources/alma-fix/990053976760206441.json @@ -226,7 +226,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=00319244" ], "id" : "http://lobid.org/items/990053976760206441:DE-465:23409593810006446#!" }, { "label" : "lobid Bestandsressource", @@ -462,7 +461,6 @@ "id" : "http://lobid.org/organisations/DE-6-023#!", "label" : "Universität Münster, Bibliothek des Fachbereichs Physik" }, - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244" ], "id" : "http://lobid.org/items/990053976760206441:DE-6-023:22526741320006449#!" }, { "label" : "lobid Bestandsressource", @@ -475,7 +473,6 @@ "id" : "http://lobid.org/organisations/DE-6-123#!", "label" : "Universität Münster, Bibliothek für Erziehungswissenschaft und Kommunikationswissenschaft" }, - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244" ], "id" : "http://lobid.org/items/990053976760206441:DE-6-123:22526741310006449#!" }, { "label" : "lobid Bestandsressource", @@ -488,7 +485,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,00319244" ], "id" : "http://lobid.org/items/990053976760206441:DE-6:22526741340006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990054301770206441.json b/src/test/resources/alma-fix/990054301770206441.json index 1e27fc98d..90fcdebe4 100644 --- a/src/test/resources/alma-fix/990054301770206441.json +++ b/src/test/resources/alma-fix/990054301770206441.json @@ -247,7 +247,6 @@ "id" : "http://lobid.org/organisations/DE-6-139a#!", "label" : "Kommission Alltagskulturforschung für Westfalen (KAF), Bibliothek" }, - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,01715224" ], "id" : "http://lobid.org/items/990054301770206441:DE-6-139a:22577982090006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990055981810206441.json b/src/test/resources/alma-fix/990055981810206441.json index c5e784e17..0d4f472a8 100644 --- a/src/test/resources/alma-fix/990055981810206441.json +++ b/src/test/resources/alma-fix/990055981810206441.json @@ -284,7 +284,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:23651985810006449#!" }, { "label" : "lobid Bestandsressource", @@ -298,7 +297,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:23650616280006449#!" }, { "label" : "lobid Bestandsressource", @@ -312,7 +310,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:23650616270006449#!" }, { "label" : "lobid Bestandsressource", @@ -363,7 +360,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:22547318240006449#!" }, { "label" : "lobid Bestandsressource", @@ -376,7 +372,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,09405453" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:22547318250006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990058434730206441.json b/src/test/resources/alma-fix/990058434730206441.json index c1c87239d..263c135d1 100644 --- a/src/test/resources/alma-fix/990058434730206441.json +++ b/src/test/resources/alma-fix/990058434730206441.json @@ -159,7 +159,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000893437" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-468:23143362620006447#!" }, { "label" : "lobid Bestandsressource", @@ -173,7 +173,6 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT000893437&local_base=ZBS01" ], "id" : "http://lobid.org/items/990058434730206441:DE-Kn41:2317181430006478#!" }, { "label" : "lobid Bestandsressource", @@ -239,7 +238,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000893437%22" ], + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000893437%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-107:2384300260007506#!" }, { "label" : "lobid Bestandsressource", @@ -253,7 +252,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-385:23283899660006470#!" }, { "label" : "lobid Bestandsressource", @@ -267,7 +265,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-385:23283899620006470#!" }, { "label" : "lobid Bestandsressource", @@ -281,7 +278,6 @@ "id" : "http://lobid.org/organisations/DE-5-74#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Abteilung Alte Geschichte, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-5-74:23287792620006467#!" }, { "label" : "lobid Bestandsressource", @@ -295,7 +291,6 @@ "id" : "http://lobid.org/organisations/DE-5-108#!", "label" : "Universität Bonn, Fachbibliothek der Evangelischen und Katholischen Theologie" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-5-108:23287792640006467#!" }, { "label" : "lobid Bestandsressource", @@ -309,7 +304,6 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-5:23287792660006467#!" }, { "label" : "lobid Bestandsressource", @@ -375,7 +369,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-465:23378107640006446#!" }, { "label" : "lobid Bestandsressource", @@ -459,7 +452,6 @@ "id" : "http://lobid.org/organisations/DE-6-119#!", "label" : "Universität Münster, Institutum Judaicum Delitzschianum, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-119:23602951480006449#!" }, { "label" : "lobid Bestandsressource", @@ -473,7 +465,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6:23602951640006449#!" }, { "label" : "lobid Bestandsressource", @@ -487,7 +478,6 @@ "id" : "http://lobid.org/organisations/DE-6-006#!", "label" : "Universität Münster, Evangelisch-Theologische Fakultät, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-006:23602951510006449#!" }, { "label" : "lobid Bestandsressource", @@ -501,7 +491,6 @@ "id" : "http://lobid.org/organisations/DE-6-011#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abteilung Johannisstr." }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-011:23602951550006449#!" }, { "label" : "lobid Bestandsressource", @@ -515,7 +504,6 @@ "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-248:23602951590006449#!" }, { "label" : "lobid Bestandsressource", @@ -529,7 +517,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000893437" ], + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-467:2394453370006462#!" }, { "label" : "lobid Bestandsressource", @@ -610,7 +598,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-385:22283899610006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990058567920206441.json b/src/test/resources/alma-fix/990058567920206441.json index c93714625..280e25e8f 100644 --- a/src/test/resources/alma-fix/990058567920206441.json +++ b/src/test/resources/alma-fix/990058567920206441.json @@ -172,7 +172,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT000909138" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-468:23108852790006447#!" }, { "label" : "lobid Bestandsressource", @@ -199,7 +199,7 @@ "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, - "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], + "seeAlso" : [ "https://fub-hagen.digibib.net/search/katalog/record/(DE-605)HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-708:23110796430006464#!" }, { "label" : "lobid Bestandsressource", @@ -213,7 +213,6 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-386:2386676830007476#!" }, { "label" : "lobid Bestandsressource", @@ -227,7 +226,6 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-386:2386676840007476#!" }, { "label" : "lobid Bestandsressource", @@ -255,7 +253,6 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT000909138&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-82:23253024690006448#!" }, { "label" : "lobid Bestandsressource", @@ -269,7 +266,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000909138%22" ], + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000909138%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-107:2317906360007506#!" }, { "label" : "lobid Bestandsressource", @@ -297,7 +294,6 @@ "id" : "http://lobid.org/organisations/DE-121#!", "label" : "Wissenschaftliche Bibliothek der Stadt Trier" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT000909138&local_base=STR01" ], "id" : "http://lobid.org/items/990058567920206441:DE-121:2310241930007826#!" }, { "label" : "lobid Bestandsressource", @@ -311,7 +307,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000909138%22" ], "id" : "http://lobid.org/items/990058567920206441:DE-290:23201690680006445#!" }, { "label" : "lobid Bestandsressource", @@ -325,7 +320,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT000909138%22" ], "id" : "http://lobid.org/items/990058567920206441:DE-290:23201690660006445#!" }, { "label" : "lobid Bestandsressource", @@ -339,7 +333,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221800006470#!" }, { "label" : "lobid Bestandsressource", @@ -353,7 +346,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221820006470#!" }, { "label" : "lobid Bestandsressource", @@ -367,7 +359,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221780006470#!" }, { "label" : "lobid Bestandsressource", @@ -381,7 +372,6 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-5:23263182640006467#!" }, { "label" : "lobid Bestandsressource", @@ -395,7 +385,6 @@ "id" : "http://lobid.org/organisations/DE-5-162#!", "label" : "Universität Bonn, Institut für Politische Wissenschaft und Soziologie, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-5-162:23263182590006467#!" }, { "label" : "lobid Bestandsressource", @@ -513,7 +502,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-465:23421400070006446#!" }, { "label" : "lobid Bestandsressource", @@ -527,7 +515,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-465:23421400050006446#!" }, { "label" : "lobid Bestandsressource", @@ -611,7 +598,6 @@ "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-248:23599273300006449#!" }, { "label" : "lobid Bestandsressource", @@ -625,7 +611,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6:23599273340006449#!" }, { "label" : "lobid Bestandsressource", @@ -639,7 +624,6 @@ "id" : "http://lobid.org/organisations/DE-6-A#!", "label" : "Universitäts- und Landesbibliothek Münster, Zweigbibliothek Sozialwissenschaften" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-A:23599273320006449#!" }, { "label" : "lobid Bestandsressource", @@ -653,7 +637,6 @@ "id" : "http://lobid.org/organisations/DE-6-069#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholischen-Theologischen Fakultät, Abteilung Hüfferstr." }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-069:23599273180006449#!" }, { "label" : "lobid Bestandsressource", @@ -667,7 +650,6 @@ "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-015:23599273260006449#!" }, { "label" : "lobid Bestandsressource", @@ -681,7 +663,6 @@ "id" : "http://lobid.org/organisations/DE-6-011#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abteilung Johannisstr." }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-011:23599273210006449#!" }, { "label" : "lobid Bestandsressource", @@ -695,7 +676,6 @@ "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-248:23599273280006449#!" }, { "label" : "lobid Bestandsressource", @@ -709,7 +689,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000909138" ], + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-467:2383523970006462#!" }, { "label" : "lobid Bestandsressource", @@ -735,7 +715,7 @@ "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, - "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT000909138&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], + "seeAlso" : [ "https://fub-hagen.digibib.net/search/katalog/record/(DE-605)HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-708:22110796420006464#!" }, { "label" : "lobid Bestandsressource", @@ -747,7 +727,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:22256221770006470#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990059571560206441.json b/src/test/resources/alma-fix/990059571560206441.json index 97e65c354..2d22cebab 100644 --- a/src/test/resources/alma-fix/990059571560206441.json +++ b/src/test/resources/alma-fix/990059571560206441.json @@ -137,7 +137,6 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT001039253&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990059571560206441:DE-82:23246474340006448#!" }, { "label" : "lobid Bestandsressource", @@ -165,7 +164,6 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT001039253" ], "id" : "http://lobid.org/items/990059571560206441:DE-5:23257517760006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990063549080206441.json b/src/test/resources/alma-fix/990063549080206441.json index fb02d6c9e..62a26dd8f 100644 --- a/src/test/resources/alma-fix/990063549080206441.json +++ b/src/test/resources/alma-fix/990063549080206441.json @@ -127,7 +127,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT003538502" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT003538502" ], "id" : "http://lobid.org/items/990063549080206441:DE-468:23124074000006447#!" }, { "label" : "lobid Bestandsressource", @@ -140,7 +140,7 @@ "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, - "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT003538502&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], + "seeAlso" : [ "https://fub-hagen.digibib.net/search/katalog/record/(DE-605)HT003538502" ], "id" : "http://lobid.org/items/990063549080206441:DE-708:23104630370006464#!" }, { "label" : "lobid Bestandsressource", @@ -153,7 +153,6 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT003538502" ], "id" : "http://lobid.org/items/990063549080206441:DE-386:2380642040007476#!" }, { "label" : "lobid Bestandsressource", @@ -198,7 +197,6 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003538502&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990065341720206441.json b/src/test/resources/alma-fix/990065341720206441.json index 536e53d8a..f9e5caa0c 100644 --- a/src/test/resources/alma-fix/990065341720206441.json +++ b/src/test/resources/alma-fix/990065341720206441.json @@ -94,7 +94,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004764408&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990065341720206441:DE-6:23553702130006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990075429930206441.json b/src/test/resources/alma-fix/990075429930206441.json index f058bf302..247651ff1 100644 --- a/src/test/resources/alma-fix/990075429930206441.json +++ b/src/test/resources/alma-fix/990075429930206441.json @@ -102,7 +102,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000944190%22" ], + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000944190%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-107:2377095800007506#!" }, { "label" : "lobid Bestandsressource", @@ -116,7 +116,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT000944190%22" ], + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT000944190%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-107:2377095810007506#!" }, { "label" : "lobid Bestandsressource", @@ -143,7 +143,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-385:23280215020006470#!" }, { "label" : "lobid Bestandsressource", @@ -157,7 +156,6 @@ "id" : "http://lobid.org/organisations/DE-5-108#!", "label" : "Universität Bonn, Fachbibliothek der Evangelischen und Katholischen Theologie" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-5-108:23276729420006467#!" }, { "label" : "lobid Bestandsressource", @@ -171,7 +169,6 @@ "id" : "http://lobid.org/organisations/DE-5-20#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-5-20:23276729400006467#!" }, { "label" : "lobid Bestandsressource", @@ -265,7 +262,6 @@ "id" : "http://lobid.org/organisations/DE-6-020#!", "label" : "Universität Münster, Englisches Seminar, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-6-020:23595716610006449#!" }, { "label" : "lobid Bestandsressource", @@ -279,7 +275,6 @@ "id" : "http://lobid.org/organisations/DE-6-246#!", "label" : "Universität Münster, Germanistisches Institut, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-6-246:23595716590006449#!" }, { "label" : "lobid Bestandsressource", @@ -293,7 +288,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-6:23595716630006449#!" }, { "label" : "lobid Bestandsressource", @@ -316,7 +310,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-385:22280215010006470#!" }, { "label" : "lobid Bestandsressource", @@ -343,7 +336,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT000944190" ], + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)HT000944190" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", diff --git a/src/test/resources/alma-fix/990075538650206441.json b/src/test/resources/alma-fix/990075538650206441.json index ef269d5b1..358bff83d 100644 --- a/src/test/resources/alma-fix/990075538650206441.json +++ b/src/test/resources/alma-fix/990075538650206441.json @@ -138,7 +138,6 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT003184116&local_base=ZBS01" ], "id" : "http://lobid.org/items/990075538650206441:DE-Kn41:2325727750006478#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990114098170206441.json b/src/test/resources/alma-fix/990114098170206441.json index 3905690b6..a04042667 100644 --- a/src/test/resources/alma-fix/990114098170206441.json +++ b/src/test/resources/alma-fix/990114098170206441.json @@ -148,7 +148,6 @@ "id" : "http://lobid.org/organisations/DE-6-069#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholischen-Theologischen Fakultät, Abteilung Hüfferstr." }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT013083243&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990114098170206441:DE-6-069:23507172540006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990118562160206441.json b/src/test/resources/alma-fix/990118562160206441.json index 64cabbab7..6c09ee3b8 100644 --- a/src/test/resources/alma-fix/990118562160206441.json +++ b/src/test/resources/alma-fix/990118562160206441.json @@ -101,7 +101,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT013532539&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990118562160206441:DE-465:23420787060006446#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990122511970206441.json b/src/test/resources/alma-fix/990122511970206441.json index c2e50a230..c46c6fbbf 100644 --- a/src/test/resources/alma-fix/990122511970206441.json +++ b/src/test/resources/alma-fix/990122511970206441.json @@ -82,7 +82,7 @@ "id" : "http://lobid.org/organisations/DE-Kn38#!", "label" : "Hochschule für Musik und Tanz Köln, Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=TT000075751&local_base=MHK01" ], + "seeAlso" : [ "https://hfmt-koeln.digibib.net/search/katalog/record/58:TT000075751" ], "id" : "http://lobid.org/items/990122511970206441:DE-Kn38:2319933740006460#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990126276700206441.json b/src/test/resources/alma-fix/990126276700206441.json index 16a0c761c..4f244da9d 100644 --- a/src/test/resources/alma-fix/990126276700206441.json +++ b/src/test/resources/alma-fix/990126276700206441.json @@ -118,7 +118,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT014015351" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT014015351" ], "id" : "http://lobid.org/items/990126276700206441:DE-468:23148746030006447#!" }, { "label" : "lobid Bestandsressource", @@ -132,7 +132,7 @@ "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, - "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT014015351%22" ], + "seeAlso" : [ "http://www.fhb.fh-dortmund.de/webOPACClient/start.do?Query=0010=%22HT014015351%22" ], "id" : "http://lobid.org/items/990126276700206441:DE-Dm13:2346678150006451#!" }, { "label" : "lobid Bestandsressource", @@ -146,7 +146,7 @@ "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, - "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT014015351&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], + "seeAlso" : [ "https://fub-hagen.digibib.net/search/katalog/record/(DE-605)HT014015351" ], "id" : "http://lobid.org/items/990126276700206441:DE-708:2390329400006464#!" }, { "label" : "lobid Bestandsressource", @@ -188,7 +188,6 @@ "id" : "http://lobid.org/organisations/DE-82-609#!", "label" : "Germanistisches Institut, Bibliothek" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT014015351&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990126276700206441:DE-82-609:23232408510006448#!" }, { "label" : "lobid Bestandsressource", @@ -202,7 +201,6 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT014015351" ], "id" : "http://lobid.org/items/990126276700206441:DE-5:23261735310006467#!" }, { "label" : "lobid Bestandsressource", @@ -284,7 +282,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014015351&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990126276700206441:DE-6:23535410630006449#!" }, { "label" : "lobid Bestandsressource", @@ -298,7 +295,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT014015351" ], + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)HT014015351" ], "id" : "http://lobid.org/items/990126276700206441:DE-467:2393571990006462#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990139686910206441.json b/src/test/resources/alma-fix/990139686910206441.json index 8de2746b1..934af9165 100644 --- a/src/test/resources/alma-fix/990139686910206441.json +++ b/src/test/resources/alma-fix/990139686910206441.json @@ -80,7 +80,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT014525099&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT014525099" ], "id" : "http://lobid.org/items/990139686910206441:DE-1156:2310267000006459#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990141342350206441.json b/src/test/resources/alma-fix/990141342350206441.json index 81a0e16e3..829b64585 100644 --- a/src/test/resources/alma-fix/990141342350206441.json +++ b/src/test/resources/alma-fix/990141342350206441.json @@ -106,7 +106,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22TT001230001%22" ], + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22TT001230001%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990141342350206441:DE-107:2379314410007506#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990143325070206441.json b/src/test/resources/alma-fix/990143325070206441.json index 459ce1779..a92e388ae 100644 --- a/src/test/resources/alma-fix/990143325070206441.json +++ b/src/test/resources/alma-fix/990143325070206441.json @@ -169,7 +169,6 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT014601018" ], "id" : "http://lobid.org/items/990143325070206441:DE-5:23281591130006467#!" }, { "label" : "lobid Bestandsressource", @@ -183,7 +182,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014601018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990143325070206441:DE-6:23564603190006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990156027740206441.json b/src/test/resources/alma-fix/990156027740206441.json index db1c79686..fa299177f 100644 --- a/src/test/resources/alma-fix/990156027740206441.json +++ b/src/test/resources/alma-fix/990156027740206441.json @@ -76,7 +76,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209607190006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991010117289706445", - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015011399%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma-fix/990156060190206441.json b/src/test/resources/alma-fix/990156060190206441.json index fea272dbc..e8c084f51 100644 --- a/src/test/resources/alma-fix/990156060190206441.json +++ b/src/test/resources/alma-fix/990156060190206441.json @@ -175,7 +175,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT015014677" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-468:23131370340006447#!" }, { "label" : "lobid Bestandsressource", @@ -189,7 +189,6 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT015014677&local_base=ZBS01" ], "id" : "http://lobid.org/items/990156060190206441:DE-Kn41:2317986730006478#!" }, { "label" : "lobid Bestandsressource", @@ -203,7 +202,7 @@ "id" : "http://lobid.org/organisations/DE-836#!", "label" : "FH Münster, Hochschulbibliothek" }, - "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT015014677" ], + "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/record/(DE-605)HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-836:2329843240006485#!" }, { "label" : "lobid Bestandsressource", @@ -217,7 +216,7 @@ "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, - "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT015014677&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], + "seeAlso" : [ "https://fub-hagen.digibib.net/search/katalog/record/(DE-605)HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-708:23109044830006464#!" }, { "label" : "lobid Bestandsressource", @@ -244,7 +243,6 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT015014677%22" ], "id" : "http://lobid.org/items/990156060190206441:DE-1044:2348092950006452#!" }, { "label" : "lobid Bestandsressource", @@ -258,7 +256,6 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT015014677%22" ], "id" : "http://lobid.org/items/990156060190206441:DE-1044:2348092970006452#!" }, { "label" : "lobid Bestandsressource", @@ -272,7 +269,7 @@ "id" : "http://lobid.org/organisations/DE-Due62#!", "label" : "Hochschulbibliothek der Hochschule Düsseldorf" }, - "seeAlso" : [ "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT015014677" ], + "seeAlso" : [ "https://hs-duesseldorf.digibib.net/search/katalog/record/(DE-605)HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-Due62:2336303640006455#!" }, { "label" : "lobid Bestandsressource", @@ -286,7 +283,7 @@ "id" : "http://lobid.org/organisations/DE-829#!", "label" : "Hochschule Niederrhein, Bibliothek" }, - "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT015014677%22" ], + "seeAlso" : [ "https://hs-niederrhein.digibib.net/search/katalog/record/(DE-605)HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-829:2347061880008056#!" }, { "label" : "lobid Bestandsressource", @@ -300,7 +297,7 @@ "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, - "seeAlso" : [ "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT015014677%22" ], + "seeAlso" : [ "https://th-owl.digibib.net/search/katalog/record/(DE-605)HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-743:2338250240006468#!" }, { "label" : "lobid Bestandsressource", @@ -327,7 +324,7 @@ "id" : "http://lobid.org/organisations/DE-575#!", "label" : "Hochschule für Musik Detmold, Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHD01&doc_001_number=HT015014677&local_base=MHD01" ], + "seeAlso" : [ "https://det.digibib.net/search/katalog/record/(DE-605)HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-575:23101091890006480#!" }, { "label" : "lobid Bestandsressource", @@ -354,7 +351,6 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-386:2374193680007476#!" }, { "label" : "lobid Bestandsressource", @@ -382,7 +378,6 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-386:2374193670007476#!" }, { "label" : "lobid Bestandsressource", @@ -396,7 +391,6 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT015014677&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-82:23233208590006448#!" }, { "label" : "lobid Bestandsressource", @@ -410,7 +404,7 @@ "id" : "http://lobid.org/organisations/DE-107#!", "label" : "Landesbibliothekszentrum Rheinland-Pfalz / Pfälzische Landesbibliothek" }, - "seeAlso" : [ "https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22HT015014677%22" ], + "seeAlso" : [ "http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22HT015014677%22&selectedViewBranchlib=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-107:2369296750007506#!" }, { "label" : "lobid Bestandsressource", @@ -452,7 +446,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015014677%22" ], "id" : "http://lobid.org/items/990156060190206441:DE-290:23194328940006445#!" }, { "label" : "lobid Bestandsressource", @@ -466,7 +459,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-385:23271771200006470#!" }, { "label" : "lobid Bestandsressource", @@ -480,7 +472,6 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-5:23245806020006467#!" }, { "label" : "lobid Bestandsressource", @@ -546,7 +537,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-465:23390395420006446#!" }, { "label" : "lobid Bestandsressource", @@ -560,7 +550,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-465:23390395430006446#!" }, { "label" : "lobid Bestandsressource", @@ -630,7 +619,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-6:23510054190006449#!" }, { "label" : "lobid Bestandsressource", @@ -644,7 +632,6 @@ "id" : "http://lobid.org/organisations/DE-6-049#!", "label" : "Universität Münster, Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek für Psychologie" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-6-049:23510054150006449#!" }, { "label" : "lobid Bestandsressource", @@ -658,7 +645,6 @@ "id" : "http://lobid.org/organisations/DE-6-123#!", "label" : "Universität Münster, Bibliothek für Erziehungswissenschaft und Kommunikationswissenschaft" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-6-123:23510054170006449#!" }, { "label" : "lobid Bestandsressource", @@ -686,7 +672,7 @@ "id" : "http://lobid.org/organisations/DE-1010#!", "label" : "Westfälische Hochschule Gelsenkirchen Bocholt Recklinghausen, Hochschulbibliothek" }, - "seeAlso" : [ "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT015014677" ], + "seeAlso" : [ "https://w-hs.digibib.net/search/katalog/record/(DE-605)HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-1010:2313573740006456#!" }, { "label" : "lobid Bestandsressource", @@ -698,7 +684,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-385:22271771190006470#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990167595410206441.json b/src/test/resources/alma-fix/990167595410206441.json index 115170ef1..1be2208f8 100644 --- a/src/test/resources/alma-fix/990167595410206441.json +++ b/src/test/resources/alma-fix/990167595410206441.json @@ -92,7 +92,6 @@ "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,TT002494857&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990167595410206441:DE-6-015:23616315430006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990171142550206441.json b/src/test/resources/alma-fix/990171142550206441.json index f6b9ceed0..ed0642021 100644 --- a/src/test/resources/alma-fix/990171142550206441.json +++ b/src/test/resources/alma-fix/990171142550206441.json @@ -150,7 +150,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT015671602%22" ], "id" : "http://lobid.org/items/990171142550206441:DE-290:23199326600006445#!" }, { "label" : "lobid Bestandsressource", @@ -164,7 +163,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015671602" ], "id" : "http://lobid.org/items/990171142550206441:DE-385:23266502850006470#!" }, { "label" : "lobid Bestandsressource", @@ -203,7 +201,6 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT015671602" ], "id" : "http://lobid.org/items/990171142550206441:DE-385:22266502840006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990173811970206441.json b/src/test/resources/alma-fix/990173811970206441.json index 7c8ad66ea..fb57c36f1 100644 --- a/src/test/resources/alma-fix/990173811970206441.json +++ b/src/test/resources/alma-fix/990173811970206441.json @@ -152,7 +152,6 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT015865114" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -171,7 +170,6 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015865114&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990181275760206441.json b/src/test/resources/alma-fix/990181275760206441.json index 0e268c34e..529cf2610 100644 --- a/src/test/resources/alma-fix/990181275760206441.json +++ b/src/test/resources/alma-fix/990181275760206441.json @@ -110,7 +110,7 @@ "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, - "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929" ], + "seeAlso" : [ "https://hsb-bochum.digibib.net/search/katalog/record/(DE-605)HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839880006454#!" }, { "label" : "lobid Bestandsressource", @@ -124,7 +124,7 @@ "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, - "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929" ], + "seeAlso" : [ "https://hsb-bochum.digibib.net/search/katalog/record/(DE-605)HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839870006454#!" }, { "label" : "lobid Bestandsressource", @@ -138,7 +138,7 @@ "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, - "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929" ], + "seeAlso" : [ "https://hsb-bochum.digibib.net/search/katalog/record/(DE-605)HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839860006454#!" }, { "label" : "lobid Bestandsressource", @@ -152,7 +152,7 @@ "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, - "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929" ], + "seeAlso" : [ "https://hsb-bochum.digibib.net/search/katalog/record/(DE-605)HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839840006454#!" }, { "label" : "lobid Bestandsressource", @@ -166,7 +166,7 @@ "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, - "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT016433929" ], + "seeAlso" : [ "https://hsb-bochum.digibib.net/search/katalog/record/(DE-605)HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-Bm40:2313839830006454#!" }, { "label" : "lobid Bestandsressource", @@ -180,7 +180,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914300006445#!" }, { "label" : "lobid Bestandsressource", @@ -194,7 +193,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914190006445#!" }, { "label" : "lobid Bestandsressource", @@ -208,7 +206,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914180006445#!" }, { "label" : "lobid Bestandsressource", @@ -222,7 +219,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914220006445#!" }, { "label" : "lobid Bestandsressource", @@ -236,7 +232,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914250006445#!" }, { "label" : "lobid Bestandsressource", @@ -250,7 +245,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914260006445#!" }, { "label" : "lobid Bestandsressource", @@ -264,7 +258,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT016433929%22" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914290006445#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990183958380206441.json b/src/test/resources/alma-fix/990183958380206441.json index 318214ef9..3b3300e21 100644 --- a/src/test/resources/alma-fix/990183958380206441.json +++ b/src/test/resources/alma-fix/990183958380206441.json @@ -190,7 +190,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990183958380206441:DE-6:23619354250006449#!" }, { "label" : "lobid Bestandsressource", @@ -204,7 +203,6 @@ "id" : "http://lobid.org/organisations/DE-6-139a#!", "label" : "Kommission Alltagskulturforschung für Westfalen (KAF), Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990183958380206441:DE-6-139a:23619354230006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990185607520206441.json b/src/test/resources/alma-fix/990185607520206441.json index b097a76f2..bf702d45a 100644 --- a/src/test/resources/alma-fix/990185607520206441.json +++ b/src/test/resources/alma-fix/990185607520206441.json @@ -83,7 +83,6 @@ "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=TT003059252" ], "id" : "http://lobid.org/items/990185607520206441:DE-5-58:23213211150006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990185619180206441.json b/src/test/resources/alma-fix/990185619180206441.json index 8a9572823..4bead7096 100644 --- a/src/test/resources/alma-fix/990185619180206441.json +++ b/src/test/resources/alma-fix/990185619180206441.json @@ -92,7 +92,6 @@ "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=TT003060418" ], "id" : "http://lobid.org/items/990185619180206441:DE-5-58:23233589480006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990189160110206441.json b/src/test/resources/alma-fix/990189160110206441.json index 81f570b88..1bbf0c527 100644 --- a/src/test/resources/alma-fix/990189160110206441.json +++ b/src/test/resources/alma-fix/990189160110206441.json @@ -155,7 +155,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-468:23146330000006447#!" }, { "label" : "lobid Bestandsressource", @@ -169,7 +169,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-468:23146310030006447#!" }, { "label" : "lobid Bestandsressource", @@ -183,7 +183,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017015300" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-468:23146310010006447#!" }, { "label" : "lobid Bestandsressource", @@ -197,7 +197,6 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT017015300&local_base=ZBS01" ], "id" : "http://lobid.org/items/990189160110206441:DE-Kn41:2325303250006478#!" }, { "label" : "lobid Bestandsressource", @@ -211,7 +210,6 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT017015300&local_base=ZBS01" ], "id" : "http://lobid.org/items/990189160110206441:DE-Kn41:2325303270006478#!" }, { "label" : "lobid Bestandsressource", @@ -225,7 +223,6 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-386:2385580290007476#!" }, { "label" : "lobid Bestandsressource", @@ -239,7 +236,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017015300%22" ], "id" : "http://lobid.org/items/990189160110206441:DE-290:23197228550006445#!" }, { "label" : "lobid Bestandsressource", @@ -253,7 +249,6 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-5:23237586070006467#!" }, { "label" : "lobid Bestandsressource", @@ -267,7 +262,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-465:23423021800006446#!" }, { "label" : "lobid Bestandsressource", @@ -281,7 +275,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-465:23423021780006446#!" }, { "label" : "lobid Bestandsressource", @@ -337,7 +330,6 @@ "id" : "http://lobid.org/organisations/DE-6-058#!", "label" : "Universität Münster, Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek Sportwissenschaft" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-6-058:23527811750006449#!" }, { "label" : "lobid Bestandsressource", @@ -351,7 +343,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-6:23527811780006449#!" }, { "label" : "lobid Bestandsressource", @@ -365,7 +356,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-6:23527811770006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990193094010206441.json b/src/test/resources/alma-fix/990193094010206441.json index 6aab240ae..e9bace8ed 100644 --- a/src/test/resources/alma-fix/990193094010206441.json +++ b/src/test/resources/alma-fix/990193094010206441.json @@ -101,7 +101,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017398609%22" ], "id" : "http://lobid.org/items/990193094010206441:DE-290:23195293910006445#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990193806600206441.json b/src/test/resources/alma-fix/990193806600206441.json index 2c220f253..8535747c1 100644 --- a/src/test/resources/alma-fix/990193806600206441.json +++ b/src/test/resources/alma-fix/990193806600206441.json @@ -86,7 +86,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017468042&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990193806600206441:DE-6:23526297370006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990197067610206441.json b/src/test/resources/alma-fix/990197067610206441.json index 1127b7a0a..43842708f 100644 --- a/src/test/resources/alma-fix/990197067610206441.json +++ b/src/test/resources/alma-fix/990197067610206441.json @@ -95,7 +95,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,CT003043468&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -107,7 +106,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=CT003043468" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -119,7 +117,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,CT003043468&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", diff --git a/src/test/resources/alma-fix/990197293880206441.json b/src/test/resources/alma-fix/990197293880206441.json index 14aa00c44..b519158f2 100644 --- a/src/test/resources/alma-fix/990197293880206441.json +++ b/src/test/resources/alma-fix/990197293880206441.json @@ -245,7 +245,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22TT050421649%22" ], + "seeAlso" : [ "https://th-owl.digibib.net/search/katalog/record/(DE-605)TT050421649" ], "heldBy" : { "isil" : "DE-743", "id" : "http://lobid.org/organisations/DE-743#!", @@ -268,7 +268,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,TT050421649&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -280,7 +279,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22TT050421649%22" ], + "seeAlso" : [ "https://hs-niederrhein.digibib.net/search/katalog/record/(DE-605)TT050421649" ], "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -292,7 +291,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=TT050421649" ], + "seeAlso" : [ "https://w-hs.digibib.net/search/katalog/record/(DE-605)TT050421649" ], "heldBy" : { "isil" : "DE-1010", "id" : "http://lobid.org/organisations/DE-1010#!", @@ -304,7 +303,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22TT050421649%22" ], + "seeAlso" : [ "https://hsb-ruhr-west.digibib.net/search/katalog/record/(DE-605)TT050421649" ], "heldBy" : { "isil" : "DE-1393", "id" : "http://lobid.org/organisations/DE-1393#!", @@ -316,7 +315,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=TT050421649" ], + "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/record/(DE-605)TT050421649" ], "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", @@ -362,7 +361,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=TT050421649" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)TT050421649" ], "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -374,7 +373,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=TT050421649" ], + "seeAlso" : [ "https://hs-duesseldorf.digibib.net/search/katalog/record/(DE-605)TT050421649" ], "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -386,7 +385,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=TT050421649" ], + "seeAlso" : [ "https://hsb-bochum.digibib.net/search/katalog/record/(DE-605)TT050421649" ], "heldBy" : { "isil" : "DE-Bm40", "id" : "http://lobid.org/organisations/DE-Bm40#!", @@ -398,7 +397,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22TT050421649%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -410,7 +408,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22TT050421649%22" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -422,7 +419,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22TT050421649%22" ], + "seeAlso" : [ "https://fhb-bielefeld.digibib.net/search/katalog/record/(DE-605)TT050421649" ], "heldBy" : { "isil" : "DE-Bi10", "id" : "http://lobid.org/organisations/DE-Bi10#!", @@ -445,7 +442,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22TT050421649%22" ], + "seeAlso" : [ "http://www.fhb.fh-dortmund.de/webOPACClient/start.do?Query=0010=%22TT050421649%22" ], "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", @@ -457,7 +454,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=TT050421649" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -492,7 +488,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT050421649&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -515,7 +510,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=TT050421649" ], + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)TT050421649" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", diff --git a/src/test/resources/alma-fix/990199611280206441.json b/src/test/resources/alma-fix/990199611280206441.json index d6a8dcd3f..c451a6678 100644 --- a/src/test/resources/alma-fix/990199611280206441.json +++ b/src/test/resources/alma-fix/990199611280206441.json @@ -133,7 +133,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53155629910006447&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=990013137900206447", - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT017894012" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT017894012" ], "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -143,7 +143,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT017894012%22" ], + "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0543=%2202704013%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -153,7 +153,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT017894012" ], + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)HT017894012" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", diff --git a/src/test/resources/alma-fix/990202474680206441.json b/src/test/resources/alma-fix/990202474680206441.json index 0696f9a8a..8a088f501 100644 --- a/src/test/resources/alma-fix/990202474680206441.json +++ b/src/test/resources/alma-fix/990202474680206441.json @@ -137,7 +137,6 @@ "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT018129805" ], "id" : "http://lobid.org/items/990202474680206441:DE-5-141:23273758380006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990204246530206441.json b/src/test/resources/alma-fix/990204246530206441.json index 9e355a6bc..70567f6cd 100644 --- a/src/test/resources/alma-fix/990204246530206441.json +++ b/src/test/resources/alma-fix/990204246530206441.json @@ -196,7 +196,6 @@ "id" : "http://lobid.org/organisations/DE-5-39#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Abteilung für Geschichte der Frühen Neuzeit und Rheinische Landesgeschichte, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT018295975" ], "id" : "http://lobid.org/items/990204246530206441:DE-5-39:23292096440006467#!" }, { "label" : "lobid Bestandsressource", @@ -210,7 +209,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018295975&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990204246530206441:DE-6:23593081430006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990207668220206441.json b/src/test/resources/alma-fix/990207668220206441.json index ad8e346a8..7e4b848bc 100644 --- a/src/test/resources/alma-fix/990207668220206441.json +++ b/src/test/resources/alma-fix/990207668220206441.json @@ -98,7 +98,6 @@ "id" : "http://lobid.org/organisations/DE-82-223#!", "label" : "Lehrstuhl für Siedlungswasserwirtschaft und Siedlungsabfallwirtschaft und Institut für Siedlungswasserwirtschaft, Bibliothek" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT003280170&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990207668220206441:DE-82-223:23233358930006448#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990209515320206441.json b/src/test/resources/alma-fix/990209515320206441.json index 40f6831f8..45e357183 100644 --- a/src/test/resources/alma-fix/990209515320206441.json +++ b/src/test/resources/alma-fix/990209515320206441.json @@ -109,7 +109,7 @@ "id" : "http://lobid.org/organisations/DE-Kn38#!", "label" : "Hochschule für Musik und Tanz Köln, Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=HT018781534&local_base=MHK01" ], + "seeAlso" : [ "https://hfmt-koeln.digibib.net/search/katalog/record/58:HT018781534" ], "id" : "http://lobid.org/items/990209515320206441:DE-Kn38:2313841820006460#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990209817770206441.json b/src/test/resources/alma-fix/990209817770206441.json index 09129d2a2..387cf13fc 100644 --- a/src/test/resources/alma-fix/990209817770206441.json +++ b/src/test/resources/alma-fix/990209817770206441.json @@ -173,7 +173,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018811791&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990209817770206441:DE-6:23490552480006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990210093550206441.json b/src/test/resources/alma-fix/990210093550206441.json index cf038149e..f94ade978 100644 --- a/src/test/resources/alma-fix/990210093550206441.json +++ b/src/test/resources/alma-fix/990210093550206441.json @@ -156,7 +156,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53313002580006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=990022076950106470", - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,2366374X" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -168,7 +167,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53428417070006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990184689370206446", - "seeAlso" : [ "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=2366374X" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -180,7 +178,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53625317550006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991015595899706449", - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,2366374X" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990210237770206441.json b/src/test/resources/alma-fix/990210237770206441.json index 0b698aaa4..7ff5757e8 100644 --- a/src/test/resources/alma-fix/990210237770206441.json +++ b/src/test/resources/alma-fix/990210237770206441.json @@ -93,7 +93,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251010006459#!" }, { "label" : "lobid Bestandsressource", @@ -107,7 +107,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251390006459#!" }, { "label" : "lobid Bestandsressource", @@ -121,7 +121,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251020006459#!" }, { "label" : "lobid Bestandsressource", @@ -135,7 +135,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251030006459#!" }, { "label" : "lobid Bestandsressource", @@ -149,7 +149,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251000006459#!" }, { "label" : "lobid Bestandsressource", @@ -163,7 +163,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251210006459#!" }, { "label" : "lobid Bestandsressource", @@ -177,7 +177,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251040006459#!" }, { "label" : "lobid Bestandsressource", @@ -191,7 +191,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251050006459#!" }, { "label" : "lobid Bestandsressource", @@ -205,7 +205,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251220006459#!" }, { "label" : "lobid Bestandsressource", @@ -219,7 +219,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251200006459#!" }, { "label" : "lobid Bestandsressource", @@ -233,7 +233,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251190006459#!" }, { "label" : "lobid Bestandsressource", @@ -247,7 +247,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251170006459#!" }, { "label" : "lobid Bestandsressource", @@ -261,7 +261,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251180006459#!" }, { "label" : "lobid Bestandsressource", @@ -275,7 +275,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251080006459#!" }, { "label" : "lobid Bestandsressource", @@ -289,7 +289,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251250006459#!" }, { "label" : "lobid Bestandsressource", @@ -303,7 +303,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251500006459#!" }, { "label" : "lobid Bestandsressource", @@ -317,7 +317,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251340006459#!" }, { "label" : "lobid Bestandsressource", @@ -331,7 +331,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251060006459#!" }, { "label" : "lobid Bestandsressource", @@ -345,7 +345,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251230006459#!" }, { "label" : "lobid Bestandsressource", @@ -359,7 +359,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251520006459#!" }, { "label" : "lobid Bestandsressource", @@ -373,7 +373,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251270006459#!" }, { "label" : "lobid Bestandsressource", @@ -387,7 +387,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251540006459#!" }, { "label" : "lobid Bestandsressource", @@ -401,7 +401,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251300006459#!" }, { "label" : "lobid Bestandsressource", @@ -415,7 +415,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251360006459#!" }, { "label" : "lobid Bestandsressource", @@ -429,7 +429,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251380006459#!" }, { "label" : "lobid Bestandsressource", @@ -443,7 +443,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251410006459#!" }, { "label" : "lobid Bestandsressource", @@ -457,7 +457,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251430006459#!" }, { "label" : "lobid Bestandsressource", @@ -471,7 +471,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251450006459#!" }, { "label" : "lobid Bestandsressource", @@ -485,7 +485,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251470006459#!" }, { "label" : "lobid Bestandsressource", @@ -499,7 +499,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251490006459#!" }, { "label" : "lobid Bestandsressource", @@ -513,7 +513,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250960006459#!" }, { "label" : "lobid Bestandsressource", @@ -527,7 +527,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250970006459#!" }, { "label" : "lobid Bestandsressource", @@ -541,7 +541,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251130006459#!" }, { "label" : "lobid Bestandsressource", @@ -555,7 +555,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250920006459#!" }, { "label" : "lobid Bestandsressource", @@ -569,7 +569,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251290006459#!" }, { "label" : "lobid Bestandsressource", @@ -583,7 +583,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250990006459#!" }, { "label" : "lobid Bestandsressource", @@ -597,7 +597,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250940006459#!" }, { "label" : "lobid Bestandsressource", @@ -611,7 +611,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311250980006459#!" }, { "label" : "lobid Bestandsressource", @@ -625,7 +625,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251110006459#!" }, { "label" : "lobid Bestandsressource", @@ -639,7 +639,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251100006459#!" }, { "label" : "lobid Bestandsressource", @@ -653,7 +653,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251120006459#!" }, { "label" : "lobid Bestandsressource", @@ -667,7 +667,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251140006459#!" }, { "label" : "lobid Bestandsressource", @@ -681,7 +681,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251150006459#!" }, { "label" : "lobid Bestandsressource", @@ -695,7 +695,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251160006459#!" }, { "label" : "lobid Bestandsressource", @@ -709,7 +709,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251070006459#!" }, { "label" : "lobid Bestandsressource", @@ -723,7 +723,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251090006459#!" }, { "label" : "lobid Bestandsressource", @@ -737,7 +737,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251240006459#!" }, { "label" : "lobid Bestandsressource", @@ -751,7 +751,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251260006459#!" }, { "label" : "lobid Bestandsressource", @@ -765,7 +765,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251510006459#!" }, { "label" : "lobid Bestandsressource", @@ -779,7 +779,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251350006459#!" }, { "label" : "lobid Bestandsressource", @@ -793,7 +793,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251310006459#!" }, { "label" : "lobid Bestandsressource", @@ -807,7 +807,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251370006459#!" }, { "label" : "lobid Bestandsressource", @@ -821,7 +821,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251400006459#!" }, { "label" : "lobid Bestandsressource", @@ -835,7 +835,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251480006459#!" }, { "label" : "lobid Bestandsressource", @@ -849,7 +849,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251420006459#!" }, { "label" : "lobid Bestandsressource", @@ -863,7 +863,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251440006459#!" }, { "label" : "lobid Bestandsressource", @@ -877,7 +877,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251460006459#!" }, { "label" : "lobid Bestandsressource", @@ -891,7 +891,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251550006459#!" }, { "label" : "lobid Bestandsressource", @@ -905,7 +905,7 @@ "id" : "http://lobid.org/organisations/DE-1156#!", "label" : "Folkwang Universität der Künste | Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number=HT018853619&local_base=MHE01" ], + "seeAlso" : [ "https://folkwang-uni.digibib.net/search/katalog/record/56:HT018853619" ], "id" : "http://lobid.org/items/990210237770206441:DE-1156:2311251590006459#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990210285400206441.json b/src/test/resources/alma-fix/990210285400206441.json index 9a3788409..e828f164c 100644 --- a/src/test/resources/alma-fix/990210285400206441.json +++ b/src/test/resources/alma-fix/990210285400206441.json @@ -129,7 +129,7 @@ "id" : "http://lobid.org/organisations/DE-Kn38#!", "label" : "Hochschule für Musik und Tanz Köln, Bibliothek" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number=HT018857620&local_base=MHK01" ], + "seeAlso" : [ "https://hfmt-koeln.digibib.net/search/katalog/record/58:HT018857620" ], "id" : "http://lobid.org/items/990210285400206441:DE-Kn38:2317369740006460#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990213367870206441.json b/src/test/resources/alma-fix/990213367870206441.json index 584c934d4..6058daa59 100644 --- a/src/test/resources/alma-fix/990213367870206441.json +++ b/src/test/resources/alma-fix/990213367870206441.json @@ -123,7 +123,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209196500006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991005259779706445", - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019075404%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma-fix/990217478660206441.json b/src/test/resources/alma-fix/990217478660206441.json index 7041b500a..413f59ef5 100644 --- a/src/test/resources/alma-fix/990217478660206441.json +++ b/src/test/resources/alma-fix/990217478660206441.json @@ -249,7 +249,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719440006447#!" }, { "label" : "lobid Bestandsressource", @@ -263,7 +263,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719430006447#!" }, { "label" : "lobid Bestandsressource", @@ -277,7 +277,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719450006447#!" }, { "label" : "lobid Bestandsressource", @@ -291,7 +291,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719550006447#!" }, { "label" : "lobid Bestandsressource", @@ -305,7 +305,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719500006447#!" }, { "label" : "lobid Bestandsressource", @@ -319,7 +319,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719530006447#!" }, { "label" : "lobid Bestandsressource", @@ -333,7 +333,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719390006447#!" }, { "label" : "lobid Bestandsressource", @@ -347,7 +347,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719400006447#!" }, { "label" : "lobid Bestandsressource", @@ -361,7 +361,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719410006447#!" }, { "label" : "lobid Bestandsressource", @@ -375,7 +375,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719470006447#!" }, { "label" : "lobid Bestandsressource", @@ -389,7 +389,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719420006447#!" }, { "label" : "lobid Bestandsressource", @@ -403,7 +403,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719370006447#!" }, { "label" : "lobid Bestandsressource", @@ -417,7 +417,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019246898" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-468:23121719380006447#!" }, { "label" : "lobid Bestandsressource", @@ -431,7 +431,7 @@ "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, - "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT019246898%22" ], + "seeAlso" : [ "http://www.fhb.fh-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019246898%22" ], "id" : "http://lobid.org/items/990217478660206441:DE-Dm13:2346308310006451#!" }, { "label" : "lobid Bestandsressource", @@ -445,7 +445,7 @@ "id" : "http://lobid.org/organisations/DE-708#!", "label" : "Universitätsbibliothek der Fernuniversität" }, - "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT019246898&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], + "seeAlso" : [ "https://fub-hagen.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-708:23101974750006464#!" }, { "label" : "lobid Bestandsressource", @@ -459,7 +459,7 @@ "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, - "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT019246898%22" ], + "seeAlso" : [ "https://fhb-bielefeld.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-Bi10:2321369680006450#!" }, { "label" : "lobid Bestandsressource", @@ -473,7 +473,7 @@ "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, - "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT019246898" ], + "seeAlso" : [ "https://hsb-bochum.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-Bm40:2314295720006454#!" }, { "label" : "lobid Bestandsressource", @@ -487,7 +487,7 @@ "id" : "http://lobid.org/organisations/DE-829#!", "label" : "Hochschule Niederrhein, Bibliothek" }, - "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT019246898%22" ], + "seeAlso" : [ "https://hs-niederrhein.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-829:2347787920008056#!" }, { "label" : "lobid Bestandsressource", @@ -501,7 +501,7 @@ "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, - "seeAlso" : [ "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT019246898%22" ], + "seeAlso" : [ "https://th-owl.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-743:2338591810006468#!" }, { "label" : "lobid Bestandsressource", @@ -515,7 +515,6 @@ "id" : "http://lobid.org/organisations/DE-82-211#!", "label" : "Lehrstuhl und Institut für Kunstgeschichte, Bibliothek" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT019246898&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990217478660206441:DE-82-211:23243058570006448#!" }, { "label" : "lobid Bestandsressource", @@ -529,7 +528,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019246898%22" ], "id" : "http://lobid.org/items/990217478660206441:DE-290:23194214350006445#!" }, { "label" : "lobid Bestandsressource", @@ -571,7 +569,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019246898&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990217478660206441:DE-6:23512237280006449#!" }, { "label" : "lobid Bestandsressource", @@ -585,7 +582,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT019246898" ], + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-467:2393751950006462#!" }, { "label" : "lobid Bestandsressource", @@ -599,7 +596,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT019246898" ], + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-467:2393751960006462#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990218189790206441.json b/src/test/resources/alma-fix/990218189790206441.json index cee0e5b96..391818fe2 100644 --- a/src/test/resources/alma-fix/990218189790206441.json +++ b/src/test/resources/alma-fix/990218189790206441.json @@ -114,7 +114,6 @@ "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019317250" ], "id" : "http://lobid.org/items/990218189790206441:DE-5-141:23264785760006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990220027540206441.json b/src/test/resources/alma-fix/990220027540206441.json index 729784638..df8cb6ff4 100644 --- a/src/test/resources/alma-fix/990220027540206441.json +++ b/src/test/resources/alma-fix/990220027540206441.json @@ -89,7 +89,6 @@ "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019496555" ], "id" : "http://lobid.org/items/990220027540206441:DE-5-141:23219038300006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990223521400206441.json b/src/test/resources/alma-fix/990223521400206441.json index db55b525e..d9f5a9f6d 100644 --- a/src/test/resources/alma-fix/990223521400206441.json +++ b/src/test/resources/alma-fix/990223521400206441.json @@ -236,7 +236,7 @@ "id" : "http://lobid.org/organisations/DE-468#!", "label" : "Universitätsbibliothek Wuppertal" }, - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT019631849" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-468:23143395260006447#!" }, { "label" : "lobid Bestandsressource", @@ -250,7 +250,7 @@ "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, - "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT019631849%22" ], + "seeAlso" : [ "http://www.fhb.fh-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019631849%22" ], "id" : "http://lobid.org/items/990223521400206441:DE-Dm13:2345522380006451#!" }, { "label" : "lobid Bestandsressource", @@ -316,7 +316,6 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701840006452#!" }, { "label" : "lobid Bestandsressource", @@ -330,7 +329,6 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701860006452#!" }, { "label" : "lobid Bestandsressource", @@ -344,7 +342,6 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701900006452#!" }, { "label" : "lobid Bestandsressource", @@ -358,7 +355,6 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT019631849%22" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701880006452#!" }, { "label" : "lobid Bestandsressource", @@ -372,7 +368,7 @@ "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, - "seeAlso" : [ "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT019631849%22" ], + "seeAlso" : [ "https://th-owl.digibib.net/search/katalog/record/(DE-605)HT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-743:2340036580006468#!" }, { "label" : "lobid Bestandsressource", @@ -386,7 +382,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT019631849%22" ], "id" : "http://lobid.org/items/990223521400206441:DE-290:23189128750006445#!" }, { "label" : "lobid Bestandsressource", @@ -400,7 +395,6 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-5:23214050900006467#!" }, { "label" : "lobid Bestandsressource", @@ -414,7 +408,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947900006446#!" }, { "label" : "lobid Bestandsressource", @@ -428,7 +421,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947910006446#!" }, { "label" : "lobid Bestandsressource", @@ -442,7 +434,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947920006446#!" }, { "label" : "lobid Bestandsressource", @@ -456,7 +447,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947870006446#!" }, { "label" : "lobid Bestandsressource", @@ -470,7 +460,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947880006446#!" }, { "label" : "lobid Bestandsressource", @@ -484,7 +473,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947940006446#!" }, { "label" : "lobid Bestandsressource", @@ -498,7 +486,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947850006446#!" }, { "label" : "lobid Bestandsressource", @@ -512,7 +499,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947860006446#!" }, { "label" : "lobid Bestandsressource", @@ -540,7 +526,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-6:23506634650006449#!" }, { "label" : "lobid Bestandsressource", @@ -554,7 +539,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-6:23506634640006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990225056670206441.json b/src/test/resources/alma-fix/990225056670206441.json index 2371a015e..1eed41742 100644 --- a/src/test/resources/alma-fix/990225056670206441.json +++ b/src/test/resources/alma-fix/990225056670206441.json @@ -91,7 +91,6 @@ "id" : "http://lobid.org/organisations/DE-82-501#!", "label" : "Lehrstuhl für Bildverarbeitung, Bibliothek" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,TT003907920&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/990225056670206441:DE-82-501:23217998250006448#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990363946050206441.json b/src/test/resources/alma-fix/990363946050206441.json index 470afba6b..059fb7da6 100644 --- a/src/test/resources/alma-fix/990363946050206441.json +++ b/src/test/resources/alma-fix/990363946050206441.json @@ -130,7 +130,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209365020006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991009604019706445", - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT020202475%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -142,7 +141,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53319452280006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991044884199706467", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020202475" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -154,7 +152,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53319452300006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991044884199706467", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020202475" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/990365842280206441.json b/src/test/resources/alma-fix/990365842280206441.json index d302da791..363dd9bae 100644 --- a/src/test/resources/alma-fix/990365842280206441.json +++ b/src/test/resources/alma-fix/990365842280206441.json @@ -101,7 +101,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020391499" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -113,7 +112,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "seeAlso" : [ "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT020391499" ], + "seeAlso" : [ "https://w-hs.digibib.net/search/katalog/record/(DE-605)HT020391499" ], "heldBy" : { "isil" : "DE-1010", "id" : "http://lobid.org/organisations/DE-1010#!", @@ -125,7 +124,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT020391499" ], + "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/record/(DE-605)HT020391499" ], "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", @@ -137,7 +136,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020391499&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -160,7 +158,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "seeAlso" : [ "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT020391499" ], + "seeAlso" : [ "https://hs-duesseldorf.digibib.net/search/katalog/record/(DE-605)HT020391499" ], "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -172,7 +170,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT020391499&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], + "seeAlso" : [ "https://fub-hagen.digibib.net/search/katalog/record/(DE-605)HT020391499" ], "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -184,7 +182,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT020391499%22" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -196,7 +193,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT020391499%22" ], + "seeAlso" : [ "http://www.fhb.fh-dortmund.de/webOPACClient/start.do?Query=0010=%22HT020391499%22" ], "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", @@ -242,7 +239,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53312504210006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=990025573850106470", - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT020391499" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", diff --git a/src/test/resources/alma-fix/990366394400206441.json b/src/test/resources/alma-fix/990366394400206441.json index c619554a4..5681fb551 100644 --- a/src/test/resources/alma-fix/990366394400206441.json +++ b/src/test/resources/alma-fix/990366394400206441.json @@ -74,7 +74,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020446683&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990366394400206441:DE-6:23534915260006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990367731740206441.json b/src/test/resources/alma-fix/990367731740206441.json index 165bfb0dc..12c42dcdc 100644 --- a/src/test/resources/alma-fix/990367731740206441.json +++ b/src/test/resources/alma-fix/990367731740206441.json @@ -263,7 +263,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=5349112190008056&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=991006234639708056", - "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT020579803%22" ], + "seeAlso" : [ "https://hs-niederrhein.digibib.net/search/katalog/record/(DE-605)HT020579803" ], "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", diff --git a/src/test/resources/alma-fix/990368743120206441.json b/src/test/resources/alma-fix/990368743120206441.json index 49248a33a..848f38c97 100644 --- a/src/test/resources/alma-fix/990368743120206441.json +++ b/src/test/resources/alma-fix/990368743120206441.json @@ -75,7 +75,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020681018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990368743120206441:DE-6:23544500850006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99370678063606441.json b/src/test/resources/alma-fix/99370678063606441.json index 166e5b263..a56c089c2 100644 --- a/src/test/resources/alma-fix/99370678063606441.json +++ b/src/test/resources/alma-fix/99370678063606441.json @@ -572,7 +572,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53313992860006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927778655706470", - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -584,7 +583,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53314230740006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927778655706470", - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -668,7 +666,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53452984420006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", - "seeAlso" : [ "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=21914664" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -680,7 +677,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53441010540006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", - "seeAlso" : [ "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=21914664" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -692,7 +688,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53455804610006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", - "seeAlso" : [ "http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29=21914664" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -774,7 +769,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627078260006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -786,7 +780,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53626936090006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -798,7 +791,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627921000006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -810,7 +802,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53673256170006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21914664" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370690532406441.json b/src/test/resources/alma-fix/99370690532406441.json index 01c5089cb..fb1c0dbd1 100644 --- a/src/test/resources/alma-fix/99370690532406441.json +++ b/src/test/resources/alma-fix/99370690532406441.json @@ -111,7 +111,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53320611800006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180157206467", - "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2221968292%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -170,7 +169,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53653301110006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044925061406449", - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,21968292" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370771475306441.json b/src/test/resources/alma-fix/99370771475306441.json index dfe97ed42..6f34d7247 100644 --- a/src/test/resources/alma-fix/99370771475306441.json +++ b/src/test/resources/alma-fix/99370771475306441.json @@ -249,7 +249,7 @@ "id" : "http://lobid.org/organisations/DE-Dm13#!", "label" : "Fachhochschule Dortmund, Hochschulbibliothek" }, - "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT020919504%22" ], + "seeAlso" : [ "http://www.fhb.fh-dortmund.de/webOPACClient/start.do?Query=0010=%22HT020919504%22" ], "id" : "http://lobid.org/items/99370771475306441:DE-Dm13:2346845850006451#!" }, { "label" : "lobid Bestandsressource", @@ -263,7 +263,7 @@ "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, - "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22" ], + "seeAlso" : [ "https://fhb-bielefeld.digibib.net/search/katalog/record/(DE-605)HT020919504" ], "id" : "http://lobid.org/items/99370771475306441:DE-Bi10:2317935550006450#!" }, { "label" : "lobid Bestandsressource", @@ -277,7 +277,7 @@ "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, - "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22" ], + "seeAlso" : [ "https://fhb-bielefeld.digibib.net/search/katalog/record/(DE-605)HT020919504" ], "id" : "http://lobid.org/items/99370771475306441:DE-Bi10:2317935560006450#!" }, { "label" : "lobid Bestandsressource", @@ -291,7 +291,7 @@ "id" : "http://lobid.org/organisations/DE-Bi10#!", "label" : "Hochschule Bielefeld – University of Applied Sciences and Arts, Hochschulbibliothek" }, - "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT020919504%22" ], + "seeAlso" : [ "https://fhb-bielefeld.digibib.net/search/katalog/record/(DE-605)HT020919504" ], "id" : "http://lobid.org/items/99370771475306441:DE-Bi10:2317935570006450#!" }, { "label" : "lobid Bestandsressource", @@ -319,7 +319,6 @@ "id" : "http://lobid.org/organisations/DE-Bo404#!", "label" : "Deutsches Referenzzentrum für Ethik in den Biowissenschaften, Bibliothek/Dokumentation" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT020919504" ], "id" : "http://lobid.org/items/99370771475306441:DE-Bo404:23299338990006467#!" }, { "label" : "lobid Bestandsressource", @@ -346,7 +345,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/99370771475306441:DE-465:23448803450006446#!" }, { "label" : "lobid Bestandsressource", @@ -360,7 +358,6 @@ "id" : "http://lobid.org/organisations/DE-6-164#!", "label" : "Universität Münster, Institut für Ethik, Geschichte und Theorie der Medizin, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/99370771475306441:DE-6-164:23545591700006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/99370782520706441.json b/src/test/resources/alma-fix/99370782520706441.json index 69530bd72..74bb1f076 100644 --- a/src/test/resources/alma-fix/99370782520706441.json +++ b/src/test/resources/alma-fix/99370782520706441.json @@ -279,7 +279,7 @@ "id" : "http://lobid.org/organisations/DE-Bm40#!", "label" : "Hochschule Bochum, Hochschulbibliothek" }, - "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT020936481" ], + "seeAlso" : [ "https://hsb-bochum.digibib.net/search/katalog/record/(DE-605)HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-Bm40:2313413830006454#!" }, { "label" : "lobid Bestandsressource", @@ -293,7 +293,7 @@ "id" : "http://lobid.org/organisations/DE-743#!", "label" : "Technische Hochschule Ostwestfalen-Lippe, Service Kommunikation Information Medien" }, - "seeAlso" : [ "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT020936481%22" ], + "seeAlso" : [ "https://th-owl.digibib.net/search/katalog/record/(DE-605)HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-743:2339214060006468#!" }, { "label" : "lobid Bestandsressource", @@ -307,7 +307,6 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957880006448#!" }, { "label" : "lobid Bestandsressource", @@ -321,7 +320,6 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957810006448#!" }, { "label" : "lobid Bestandsressource", @@ -335,7 +333,6 @@ "id" : "http://lobid.org/organisations/DE-82-202#!", "label" : "Kooperierende Bibliothek der Lehrstühle für Planungstheorie und Stadtentwicklung, für Städtebau und Landesplanung, für Wohnbau und Grundlagen des Entwerfens, für CAAD, für Individualisierte Bauproduktion, für Immobilienprojektentwicklung, Gemeinsame Bibliothek" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-82-202:23218957790006448#!" }, { "label" : "lobid Bestandsressource", @@ -349,7 +346,6 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957850006448#!" }, { "label" : "lobid Bestandsressource", @@ -363,7 +359,6 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957840006448#!" }, { "label" : "lobid Bestandsressource", @@ -377,7 +372,6 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957830006448#!" }, { "label" : "lobid Bestandsressource", @@ -391,7 +385,6 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT020936481&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957870006448#!" }, { "label" : "lobid Bestandsressource", @@ -545,7 +538,6 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT020936481%22" ], "id" : "http://lobid.org/items/99370782520706441:DE-290:23212938760006445#!" }, { "label" : "lobid Bestandsressource", @@ -572,7 +564,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-465:23448939910006446#!" }, { "label" : "lobid Bestandsressource", @@ -586,7 +577,6 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-465:23448939860006446#!" }, { "label" : "lobid Bestandsressource", @@ -600,7 +590,7 @@ "id" : "http://lobid.org/organisations/DE-467#!", "label" : "Universitätsbibliothek Siegen" }, - "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT020936481" ], + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-467:2358786050006462#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99371050452706441.json b/src/test/resources/alma-fix/99371050452706441.json index 37b980aea..94011c557 100644 --- a/src/test/resources/alma-fix/99371050452706441.json +++ b/src/test/resources/alma-fix/99371050452706441.json @@ -225,7 +225,6 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021137663&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/99371050452706441:DE-6:23596739030006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99371147104906441.json b/src/test/resources/alma-fix/99371147104906441.json index 71794778a..54310067d 100644 --- a/src/test/resources/alma-fix/99371147104906441.json +++ b/src/test/resources/alma-fix/99371147104906441.json @@ -192,7 +192,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53360282040006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", - "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2227836207%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -204,7 +203,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53346765620006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", - "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2227836207%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -216,7 +214,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53348545120006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", - "seeAlso" : [ "https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%2227836207%22" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -251,7 +248,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53652173090006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044919564006449", - "seeAlso" : [ "http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,27836207" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99371314897806441.json b/src/test/resources/alma-fix/99371314897806441.json index e758ca331..e57f51943 100644 --- a/src/test/resources/alma-fix/99371314897806441.json +++ b/src/test/resources/alma-fix/99371314897806441.json @@ -110,7 +110,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_OWL/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22HT021352855%22" ], + "seeAlso" : [ "https://th-owl.digibib.net/search/katalog/record/(DE-605)HT021352855" ], "heldBy" : { "isil" : "DE-743", "id" : "http://lobid.org/organisations/DE-743#!", @@ -122,7 +122,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WHS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID=HT021352855" ], + "seeAlso" : [ "https://w-hs.digibib.net/search/katalog/record/(DE-605)HT021352855" ], "heldBy" : { "isil" : "DE-1010", "id" : "http://lobid.org/organisations/DE-1010#!", @@ -146,7 +146,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT021352855&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -158,7 +157,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT021352855" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -170,7 +168,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021352855&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -193,7 +190,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021352855" ], + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)HT021352855" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -217,7 +214,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBI/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22HT021352855%22" ], + "seeAlso" : [ "https://fhb-bielefeld.digibib.net/search/katalog/record/(DE-605)HT021352855" ], "heldBy" : { "isil" : "DE-Bi10", "id" : "http://lobid.org/organisations/DE-Bi10#!", @@ -229,7 +226,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22HT021352855%22" ], + "seeAlso" : [ "https://hsb-ruhr-west.digibib.net/search/katalog/record/(DE-605)HT021352855" ], "heldBy" : { "isil" : "DE-1393", "id" : "http://lobid.org/organisations/DE-1393#!", @@ -241,7 +238,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT021352855" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT021352855" ], "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -253,7 +250,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT021352855" ], + "seeAlso" : [ "https://hs-duesseldorf.digibib.net/search/katalog/record/(DE-605)HT021352855" ], "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -265,7 +262,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HBO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID=HT021352855" ], + "seeAlso" : [ "https://hsb-bochum.digibib.net/search/katalog/record/(DE-605)HT021352855" ], "heldBy" : { "isil" : "DE-Bm40", "id" : "http://lobid.org/organisations/DE-Bm40#!", @@ -277,7 +274,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22HT021352855%22" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -300,7 +296,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT021352855&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -312,7 +307,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT021352855%22" ], + "seeAlso" : [ "https://hs-niederrhein.digibib.net/search/katalog/record/(DE-605)HT021352855" ], "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -324,7 +319,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021352855" ], + "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/record/(DE-605)HT021352855" ], "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", @@ -336,7 +331,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT021352855%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -370,7 +364,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT021352855%22" ], + "seeAlso" : [ "http://www.fhb.fh-dortmund.de/webOPACClient/start.do?Query=0010=%22HT021352855%22" ], "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", @@ -393,7 +387,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT021352855&local_base=ZBS01" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -440,7 +433,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53133004370006464&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=990016111720106464", - "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT021352855&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], + "seeAlso" : [ "https://fub-hagen.digibib.net/search/katalog/record/(DE-605)HT021352855" ], "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", diff --git a/src/test/resources/alma-fix/99371791018506441.json b/src/test/resources/alma-fix/99371791018506441.json index 1b37ac9d5..de9553f93 100644 --- a/src/test/resources/alma-fix/99371791018506441.json +++ b/src/test/resources/alma-fix/99371791018506441.json @@ -103,7 +103,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_SIE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021613847" ], + "seeAlso" : [ "https://ub-siegen.digibib.net/search/katalog/record/(DE-605)HT021613847" ], "heldBy" : { "isil" : "DE-467", "id" : "http://lobid.org/organisations/DE-467#!", @@ -115,7 +115,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_WUP/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number=HT021613847" ], + "seeAlso" : [ "https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605)HT021613847" ], "heldBy" : { "isil" : "DE-468", "id" : "http://lobid.org/organisations/DE-468#!", @@ -138,7 +138,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID=HT021613847" ], + "seeAlso" : [ "https://hs-duesseldorf.digibib.net/search/katalog/record/(DE-605)HT021613847" ], "heldBy" : { "isil" : "DE-Due62", "id" : "http://lobid.org/organisations/DE-Due62#!", @@ -150,7 +150,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number=HT021613847" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -162,7 +161,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number=HT021613847&local_base=ZBS01" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -186,7 +184,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,HT021613847" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -198,7 +195,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RUW/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22HT021613847%22" ], + "seeAlso" : [ "https://hsb-ruhr-west.digibib.net/search/katalog/record/(DE-605)HT021613847" ], "heldBy" : { "isil" : "DE-1393", "id" : "http://lobid.org/organisations/DE-1393#!", @@ -221,7 +218,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FHM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al=HT021613847" ], + "seeAlso" : [ "https://fhb-muenster.digibib.net/search/katalog/record/(DE-605)HT021613847" ], "heldBy" : { "isil" : "DE-836", "id" : "http://lobid.org/organisations/DE-836#!", @@ -233,7 +230,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021613847&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -291,7 +287,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor=HT021613847" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -303,7 +298,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,HT021613847&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -315,7 +309,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT021613847&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -327,7 +320,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_HSN/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22HT021613847%22" ], + "seeAlso" : [ "https://hs-niederrhein.digibib.net/search/katalog/record/(DE-605)HT021613847" ], "heldBy" : { "isil" : "DE-829", "id" : "http://lobid.org/organisations/DE-829#!", @@ -339,7 +332,6 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22HT021613847%22" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -351,7 +343,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FUH/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "http://ub-parma.fernuni-hagen.de/F/?func=find-b&request=HT021613847&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2=" ], + "seeAlso" : [ "https://fub-hagen.digibib.net/search/katalog/record/(DE-605)HT021613847" ], "heldBy" : { "isil" : "DE-708", "id" : "http://lobid.org/organisations/DE-708#!", @@ -363,7 +355,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_FDO/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "http://193.25.18.8/webOPACClient/start.do?Query=0010=%22HT021613847%22" ], + "seeAlso" : [ "http://www.fhb.fh-dortmund.de/webOPACClient/start.do?Query=0010=%22HT021613847%22" ], "heldBy" : { "isil" : "DE-Dm13", "id" : "http://lobid.org/organisations/DE-Dm13#!", diff --git a/src/test/resources/alma-fix/99372423490706441.json b/src/test/resources/alma-fix/99372423490706441.json index ee37d5dfc..c8075eea1 100644 --- a/src/test/resources/alma-fix/99372423490706441.json +++ b/src/test/resources/alma-fix/99372423490706441.json @@ -111,7 +111,6 @@ "id" : "http://lobid.org/organisations/DE-121#!", "label" : "Wissenschaftliche Bibliothek der Stadt Trier" }, - "seeAlso" : [ "https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number=HT030002417&local_base=STR01" ], "id" : "http://lobid.org/items/99372423490706441:DE-121:2320209870007826#!" } ], "medium" : [ { diff --git a/src/test/resources/alma/maps/isil2opac_hbzId.tsv b/src/test/resources/alma/maps/isil2opac_hbzId.tsv index c87c051ce..b9b2f5bde 100644 --- a/src/test/resources/alma/maps/isil2opac_hbzId.tsv +++ b/src/test/resources/alma/maps/isil2opac_hbzId.tsv @@ -1,185 +1,28 @@ -DE-1010 http://katalog.fh-gelsenkirchen.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:GEL&RID={hbzid} -DE-5 https://bonnus.ulb.uni-bonn.de/Summon/Search?referrerBonnus=portlet&lookfor={hbzid} -DE-6 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-001 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-005 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-006 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-007 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-011 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-015 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-016 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-017 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-020 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-021 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-022 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-023 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-026 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-032 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-033 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-034 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-035 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-036 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-037 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-038 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-039 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-040 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-044 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-047 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-049 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-050 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-052 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-053 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-054 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-056 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-057 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-058 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-069 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-096 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-097 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-115 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-117 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-118 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-119 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-121 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-122 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-123 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-125 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-134 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-136 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-139a https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-139b https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-151 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-152 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-153 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-154 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-155 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-156 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-157 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-158 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-161 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-162 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-163 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-164 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-165 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-166 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-168 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-169 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-171 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-172 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-175 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-177 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-178 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-179 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-180 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-182 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-183 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-185 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-186 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-187 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-190 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-191 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-192 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-193 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-194 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-210 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-211 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-213 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-216 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-218 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-219 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-222 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-228 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-230 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-234 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-235 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-236 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-242 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-244 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-246 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-248 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-249 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-250 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-254 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-255 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-256 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-257 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-258 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-259 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-260 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-264 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-267 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-271 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-272 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-274 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-275 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-276 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-277 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-279 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-282 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-284 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-285 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-286 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-290 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-293 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-295 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-296 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-298 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-303 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-308 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-309 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-311 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-314 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-318 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-319 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-321 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-325 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-326 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-328 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-331 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-332 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-334 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-335 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-336 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-337 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-338 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-A https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-M https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-N https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-P https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 -DE-6-Z https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-1010 https://w-hs.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-121-broken https://aleph.zbsport.de/F/SDBUYR8MXPE2QTCBVSV4EEX2TBKQKPR3K2Y64KKSEAXI4423DK-00920?func=find-b&adjacent=N&doc_001_number=HT021599198&find_code=WRD&local_base=str01&x=39&y=4 +DE-1156 https://folkwang-uni.digibib.net/search/katalog/record/56:{hbzid} DE-38 http://www.ub.uni-koeln.de/cgi-bin/redirect.pl?referrer=hbzvk&service=showrecord&hbzid={hbzid} DE-61 https://katalog.ulb.hhu.de/Search/Results?lookfor=id_marc_001_txt:{hbzid} -DE-82 https://katalog.ub.rwth-aachen.de/discovery/search?query=any,contains,{hbzid}&tab=BibNoArticle609&search_scope=BibliothekskatalogMOD&vid=49HBZ_UBA:VU1&offset=0 DE-98 http://www.medpilot.de/?ID={hbzid} -DE-107 https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0010=%22{hbzid}%22 -DE-121 https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=STR01&doc_001_number={hbzid}&local_base=STR01 -DE-290 https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22 -DE-385 http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{hbzid} -DE-386 https://opac.ub.uni-kl.de/F?func=item-cen-2&doc_library=KLU01&doc_001_number={hbzid} -DE-464 https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0 -DE-465 https://primo.uni-due.de/discovery/search?query=any,contains,{hbzid}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0 DE-466 https://katalog.ub.uni-paderborn.de/local/s?sr%5Bq,any%5D={hbzid} -DE-467 https://ub-siegen.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid} -DE-468 https://katalog.bib.uni-wuppertal.de/F?func=item-cen-2&doc_library=WUP01&doc_001_number={hbzid} -DE-575 https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHD01&doc_001_number={hbzid}&local_base=MHD01 -DE-708 http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2= -DE-743 http://www.hs-owl.de/webOPACClient/start.do?Login=sisis&Query=0010=%22{hbzid}%22 -DE-829 http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22 +DE-467 https://ub-siegen.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-468 https://ub-wuppertal.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-575 https://det.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-708 https://fub-hagen.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-743 https://th-owl.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-829 https://hs-niederrhein.digibib.net/search/katalog/record/(DE-605){hbzid} DE-832 http://www.digibib.net/permalink/832/FHBK-x/HBZ:{hbzid} -DE-836 https://fhb-muenster.digibib.net/search/katalog/list?start=1&defaults=on&q-al={hbzid} +DE-836 https://fhb-muenster.digibib.net/search/katalog/record/(DE-605){hbzid} DE-929 http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=0 -DE-1044 https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22 DE-1105 http://www.hs-koblenz.de/RACwebOPAC/start.do?Login=webopac&Query=0010=%22{hbzid}%22 DE-1116 http://143.93.201.251/alipac/-/item-local?BASE=B-TIT&VID={hbzid} -DE-1156 https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHE01&doc_001_number={hbzid}&local_base=MHE01 -DE-1393 https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22{hbzid}%22 -DE-1393-BOT https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=0010=%22{hbzid}%22 -DE-Bi10 https://biblio.fh-bielefeld.de/webOPACClient/start.do?Login=sisis&Query=-1=%22{hbzid}%22 -DE-Bm40 http://opac.hs-bochum.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:BOC&RID={hbzid} -DE-Dm13 http://193.25.18.8/webOPACClient/start.do?Query=0010=%22{hbzid}%22 -DE-Due62 http://katalog.bibl.fh-duesseldorf.de/libero/WebopacOpenURL.cls?ACTION=DISPLAY&sid=Libero:DUE&RID={hbzid} -DE-Kn38 https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=MHK01&doc_001_number={hbzid}&local_base=MHK01 -DE-Kn41 https://www.dshs-koeln.de/aleph/F?func=item-cen-2&doc_library=ZBS01&doc_001_number={hbzid}&local_base=ZBS01 +DE-1393 https://hsb-ruhr-west.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-1393-BOT https://hsb-ruhr-west.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-Bi10 https://fhb-bielefeld.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-Bm40 https://hsb-bochum.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-Dm13 http://www.fhb.fh-dortmund.de/webOPACClient/start.do?Query=0010=%22{hbzid}%22 +DE-Due62 https://hs-duesseldorf.digibib.net/search/katalog/record/(DE-605){hbzid} +DE-Kn38 https://hfmt-koeln.digibib.net/search/katalog/record/58:{hbzid} DE-Kob7 http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2= DE-Lan1 http://aleph1.uni-koblenz.de/F/?func=find-b&request={hbzid}&find_code=IDN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2= -DE-Zw1 http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=2 \ No newline at end of file +DE-Zw1 http://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Language=De&Query=010%3D%22{hbzid}%22&selectedViewBranchlib=2 diff --git a/src/test/resources/alma/maps/isil2opac_isbn.tsv b/src/test/resources/alma/maps/isil2opac_isbn.tsv index d14c56dc8..631211c4b 100644 --- a/src/test/resources/alma/maps/isil2opac_isbn.tsv +++ b/src/test/resources/alma/maps/isil2opac_isbn.tsv @@ -1,151 +1,3 @@ -DE-5 https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0540=%22{isbn}%22 -DE-6 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-001 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-005 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-006 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-007 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-011 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-015 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-016 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-017 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-020 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-021 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-022 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-023 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-026 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-032 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-033 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-034 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-035 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-036 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-037 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-038 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-039 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-040 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-044 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-047 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-049 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-050 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-052 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-053 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-054 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-056 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-057 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-058 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-069 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-096 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-097 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-115 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-117 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-118 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-119 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-121 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-122 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-123 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-125 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-134 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-136 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-139a http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-139b http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-151 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-152 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-153 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-154 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-155 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-156 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-157 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-158 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-161 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-162 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-163 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-164 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-165 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-166 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-168 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-169 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-171 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-172 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-175 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-177 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-178 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-179 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-180 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-182 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-183 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-185 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-186 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-187 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-190 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-191 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-192 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-193 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-194 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-210 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-211 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-213 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-216 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-218 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-219 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-222 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-228 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-230 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-234 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-235 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-236 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-242 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-244 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-246 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-248 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-249 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-250 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-254 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-255 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-256 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-257 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-258 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-259 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-260 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-264 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-267 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-271 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-272 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-274 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-275 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-276 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-277 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-279 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-282 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-284 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-285 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-286 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-290 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-293 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-295 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-296 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-298 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-303 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-308 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-309 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-311 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-314 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-318 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-319 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-321 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-325 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-326 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-328 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-331 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-332 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-334 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-335 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-336 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-337 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-338 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-A http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-M http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-N http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-P http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-6-Z http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} DE-61 https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D={isbn} DE-107 https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0540=%22{isbn}%22 DE-290 https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0540=%22{isbn}%22 @@ -153,9 +5,7 @@ DE-294 https://suchen.ub.rub.de/isbn/{isbn} DE-294-7 https://suchen.ub.rub.de/isbn/{isbn} DE-294-8 https://suchen.ub.rub.de/isbn/{isbn} DE-294-9 https://suchen.ub.rub.de/isbn/{isbn} -DE-294-10 https://suchen.ub.rub.de/isbn/{isbn} DE-294-11 https://suchen.ub.rub.de/isbn/{isbn} -DE-294-13 https://suchen.ub.rub.de/isbn/{isbn} DE-294-14 https://suchen.ub.rub.de/isbn/{isbn} DE-294-15 https://suchen.ub.rub.de/isbn/{isbn} DE-294-16 https://suchen.ub.rub.de/isbn/{isbn} @@ -171,10 +21,7 @@ DE-294-25 https://suchen.ub.rub.de/isbn/{isbn} DE-294-26 https://suchen.ub.rub.de/isbn/{isbn} DE-294-27 https://suchen.ub.rub.de/isbn/{isbn} DE-294-28 https://suchen.ub.rub.de/isbn/{isbn} -DE-294-29 https://suchen.ub.rub.de/isbn/{isbn} DE-294-30 https://suchen.ub.rub.de/isbn/{isbn} -DE-294-31 https://suchen.ub.rub.de/isbn/{isbn} -DE-294-32 https://suchen.ub.rub.de/isbn/{isbn} DE-294-33 https://suchen.ub.rub.de/isbn/{isbn} DE-294-34 https://suchen.ub.rub.de/isbn/{isbn} DE-294-35 https://suchen.ub.rub.de/isbn/{isbn} @@ -189,10 +36,8 @@ DE-294-46 https://suchen.ub.rub.de/isbn/{isbn} DE-294-47 https://suchen.ub.rub.de/isbn/{isbn} DE-294-48 https://suchen.ub.rub.de/isbn/{isbn} DE-294-49 https://suchen.ub.rub.de/isbn/{isbn} -DE-294-50 https://suchen.ub.rub.de/isbn/{isbn} DE-294-51 https://suchen.ub.rub.de/isbn/{isbn} DE-294-52 https://suchen.ub.rub.de/isbn/{isbn} -DE-294-53 https://suchen.ub.rub.de/isbn/{isbn} DE-294-55 https://suchen.ub.rub.de/isbn/{isbn} DE-294-56 https://suchen.ub.rub.de/isbn/{isbn} DE-294-57 https://suchen.ub.rub.de/isbn/{isbn} @@ -208,11 +53,7 @@ DE-294-67 https://suchen.ub.rub.de/isbn/{isbn} DE-294-68 https://suchen.ub.rub.de/isbn/{isbn} DE-294-70 https://suchen.ub.rub.de/isbn/{isbn} DE-294-71 https://suchen.ub.rub.de/isbn/{isbn} -DE-294-140 https://suchen.ub.rub.de/isbn/{isbn} DE-361 http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1={isbn}&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10 -DE-385 http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{isbn} -DE-464 http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29={isbn} -DE-465 http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29={isbn} DE-466 https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=isbn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D={isbn}&scope=catalog&sf=rank DE-467 http://obelix.ub.uni-siegen.de/F/?func=find-b&request={isbn}&find_code=IBN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2= DE-708 http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={isbn}&find_code=IBN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2= @@ -225,4 +66,4 @@ DE-A96 https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Quer DE-Bi10 https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=0540=%22{isbn}%22 DE-Dm13 http://193.25.18.8/webOPACClient/start.do?Query=0540=%22{isbn}%22 DE-Kob7 http://aleph1.uni-koblenz.de/F/?func=find-b&request={isbn}&find_code=IBN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2= -DE-Lan1 http://aleph1.uni-koblenz.de/F/?func=find-b&request={isbn}&find_code=IBN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2= \ No newline at end of file +DE-Lan1 http://aleph1.uni-koblenz.de/F/?func=find-b&request={isbn}&find_code=IBN&adjacent=N&local_base=KOL01&x=45&y=11&filter_code_2=WYR&filter_request_2= diff --git a/src/test/resources/alma/maps/isil2opac_issn.tsv b/src/test/resources/alma/maps/isil2opac_issn.tsv index b42c06233..835dfc03c 100644 --- a/src/test/resources/alma/maps/isil2opac_issn.tsv +++ b/src/test/resources/alma/maps/isil2opac_issn.tsv @@ -1,151 +1,3 @@ -DE-5 https://opac2.ulb.uni-bonn.de:8080/webOPACClient/start.do?Query=0543=%22{issn}%22 -DE-6 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-001 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-005 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-006 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-007 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-011 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-015 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-016 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-017 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-020 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-021 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-022 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-023 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-026 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-032 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-033 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-034 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-035 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-036 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-037 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-038 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-039 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-040 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-044 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-047 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-049 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-050 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-052 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-053 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-054 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-056 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-057 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-058 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-069 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-096 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-097 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-115 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-117 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-118 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-119 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-121 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-122 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-123 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-125 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-134 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-136 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-139a http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-139b http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-151 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-152 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-153 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-154 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-155 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-156 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-157 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-158 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-161 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-162 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-163 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-164 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-165 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-166 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-168 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-169 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-171 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-172 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-175 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-177 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-178 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-179 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-180 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-182 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-183 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-185 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-186 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-187 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-190 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-191 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-192 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-193 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-194 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-210 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-211 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-213 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-216 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-218 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-219 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-222 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-228 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-230 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-234 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-235 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-236 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-242 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-244 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-246 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-248 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-249 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-250 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-254 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-255 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-256 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-257 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-258 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-259 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-260 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-264 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-267 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-271 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-272 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-274 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-275 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-276 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-277 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-279 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-282 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-284 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-285 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-286 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-290 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-293 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-295 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-296 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-298 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-303 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-308 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-309 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-311 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-314 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-318 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-319 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-321 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-325 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-326 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-328 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-331 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-332 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-334 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-335 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-336 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-337 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-338 http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-A http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-M http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-N http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-P http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-6-Z http://disco.uni-muenster.de/primo_library/libweb/action/dlSearch.do?vid=ulb&institution=ulb&search_scope=ULBMS&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} DE-61 https://katalog.ulb.hhu.de/Search/Results?join=AND&bool0%5B%5D=AND&type0%5B%5D=ISN&lookfor0%5B%5D={issn} DE-107 https://kat.lbz-rlp.de/webOPACClient.lbzsis/start.do?Query=0543=%22{issn}%22 DE-290 https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0543=%22{issn}%22 @@ -153,9 +5,7 @@ DE-294 https://suchen.ub.rub.de/issn/{issn} DE-294-7 https://suchen.ub.rub.de/issn/{issn} DE-294-8 https://suchen.ub.rub.de/issn/{issn} DE-294-9 https://suchen.ub.rub.de/issn/{issn} -DE-294-10 https://suchen.ub.rub.de/issn/{issn} DE-294-11 https://suchen.ub.rub.de/issn/{issn} -DE-294-13 https://suchen.ub.rub.de/issn/{issn} DE-294-14 https://suchen.ub.rub.de/issn/{issn} DE-294-15 https://suchen.ub.rub.de/issn/{issn} DE-294-16 https://suchen.ub.rub.de/issn/{issn} @@ -171,10 +21,7 @@ DE-294-25 https://suchen.ub.rub.de/issn/{issn} DE-294-26 https://suchen.ub.rub.de/issn/{issn} DE-294-27 https://suchen.ub.rub.de/issn/{issn} DE-294-28 https://suchen.ub.rub.de/issn/{issn} -DE-294-29 https://suchen.ub.rub.de/issn/{issn} DE-294-30 https://suchen.ub.rub.de/issn/{issn} -DE-294-31 https://suchen.ub.rub.de/issn/{issn} -DE-294-32 https://suchen.ub.rub.de/issn/{issn} DE-294-33 https://suchen.ub.rub.de/issn/{issn} DE-294-34 https://suchen.ub.rub.de/issn/{issn} DE-294-35 https://suchen.ub.rub.de/issn/{issn} @@ -189,10 +36,8 @@ DE-294-46 https://suchen.ub.rub.de/issn/{issn} DE-294-47 https://suchen.ub.rub.de/issn/{issn} DE-294-48 https://suchen.ub.rub.de/issn/{issn} DE-294-49 https://suchen.ub.rub.de/issn/{issn} -DE-294-50 https://suchen.ub.rub.de/issn/{issn} DE-294-51 https://suchen.ub.rub.de/issn/{issn} DE-294-52 https://suchen.ub.rub.de/issn/{issn} -DE-294-53 https://suchen.ub.rub.de/issn/{issn} DE-294-55 https://suchen.ub.rub.de/issn/{issn} DE-294-56 https://suchen.ub.rub.de/issn/{issn} DE-294-57 https://suchen.ub.rub.de/issn/{issn} @@ -208,11 +53,7 @@ DE-294-67 https://suchen.ub.rub.de/issn/{issn} DE-294-68 https://suchen.ub.rub.de/issn/{issn} DE-294-70 https://suchen.ub.rub.de/issn/{issn} DE-294-71 https://suchen.ub.rub.de/issn/{issn} -DE-294-140 https://suchen.ub.rub.de/issn/{issn} DE-361 http://katalogplus.ub.uni-bielefeld.de/cgi-bin/new_search.cgi?kat1=is&var1={issn}&kat2=ti&var2=&kat3=aup&var3=&bestand=lok&sprache=GER&art=f&fsubmit=1&vr=1&opt=&pagesize=10 -DE-385 http://primo.kobv.de/primo_library/libweb/action/dlSearch.do?vid=TRI_UB_I&institution=TRI_UB_I&search_scope=localude&bulkSize=10&lang=ger&indx=1&onCampus=false&query=any,contains,{issn} -DE-464 http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29={issn} -DE-465 http://primo.ub.uni-due.de/primo_library/libweb/action/search.do?fn=search&vl%281UI0%29=exact&vl%28freeText0%29={issn} DE-466 https://katalog.ub.uni-paderborn.de/searches?on_campus=false&query_terms%5B%5D%5Bif%5D=issn&query_terms%5B%5D%5Bpo%5D=contains&query_terms%5B%5D%5Bq%5D={issn}&scope=catalog&sf=rank DE-467 http://obelix.ub.uni-siegen.de/F/?func=find-b&request={issn}&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2= DE-708 http://ub-parma.fernuni-hagen.de/F/?func=find-b&request={issn}&find_code=ISN&adjacent=N&x=45&y=11&filter_code_2=WYR&filter_request_2= diff --git a/src/test/resources/alma/maps/isil2opac_zdbId.tsv b/src/test/resources/alma/maps/isil2opac_zdbId.tsv index 7c7146db4..29fe7218a 100644 --- a/src/test/resources/alma/maps/isil2opac_zdbId.tsv +++ b/src/test/resources/alma/maps/isil2opac_zdbId.tsv @@ -5,9 +5,7 @@ DE-294 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-7 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-8 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-9 https://suchen.ub.rub.de/zdbid/{zdbid} -DE-294-10 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-11 https://suchen.ub.rub.de/zdbid/{zdbid} -DE-294-13 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-14 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-15 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-16 https://suchen.ub.rub.de/zdbid/{zdbid} @@ -23,10 +21,7 @@ DE-294-25 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-26 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-27 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-28 https://suchen.ub.rub.de/zdbid/{zdbid} -DE-294-29 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-30 https://suchen.ub.rub.de/zdbid/{zdbid} -DE-294-31 https://suchen.ub.rub.de/zdbid/{zdbid} -DE-294-32 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-33 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-34 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-35 https://suchen.ub.rub.de/zdbid/{zdbid} @@ -41,10 +36,8 @@ DE-294-46 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-47 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-48 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-49 https://suchen.ub.rub.de/zdbid/{zdbid} -DE-294-50 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-51 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-52 https://suchen.ub.rub.de/zdbid/{zdbid} -DE-294-53 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-55 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-56 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-57 https://suchen.ub.rub.de/zdbid/{zdbid} @@ -60,7 +53,6 @@ DE-294-67 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-68 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-70 https://suchen.ub.rub.de/zdbid/{zdbid} DE-294-71 https://suchen.ub.rub.de/zdbid/{zdbid} -DE-294-140 https://suchen.ub.rub.de/zdbid/{zdbid} DE-829 http://seth7.hs-niederrhein.de/webOPACClient/start.do?Query=-1=%22{zdbid}%22 DE-836 https://hb063.fh-muenster.de/webOPACClient/start.do?Query=-1=%22{zdbid}%22 DE-1044 https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=-1=%22{zdbid}%22 @@ -68,4 +60,4 @@ DE-1393 https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=-1=%2 DE-1393-BOT https://katalog.hs-ruhrwest.de/webOPACClient.nmbsis/start.do?Query=-1=%22{zdbid}%22 DE-A96 https://onlinekatalog.bibliothek.fh-aachen.de/webOPACClient/start.do?Query=-1=%22{zdbid}%22 DE-Bi10 https://biblio.fh-bielefeld.de/webOPACClient/start.do?Query=-1=%22{zdbid}%22 -DE-Dm13 http://193.25.18.8/webOPACClient/start.do?Query=-1=%22{zdbid}%22 \ No newline at end of file +DE-Dm13 http://193.25.18.8/webOPACClient/start.do?Query=-1=%22{zdbid}%22 From fcd7604a7c76671b2daef567a3966234825033f7 Mon Sep 17 00:00:00 2001 From: TobiasNx Date: Thu, 28 Sep 2023 15:54:44 +0200 Subject: [PATCH 21/23] Add lookup for opac links with almaMmsId #1888 --- .../run/AlmaMarcXmlFix2lobidJsonEs.java | 3 +- src/main/resources/alma/fix/macros.fix | 5 ++ src/main/resources/alma/fix/maps.fix | 1 + .../AlmaMarc21XmlToLobidJsonMetafixTest.java | 1 + .../alma-fix/990001412590206441.json | 3 + .../alma-fix/990011470300206441.json | 3 + .../alma-fix/990014830510206441.json | 4 + .../alma-fix/990016782920206441.json | 1 + .../alma-fix/990021367710206441.json | 4 + .../alma-fix/990021974470206441.json | 3 + .../alma-fix/990026405480206441.json | 1 + .../alma-fix/990030574430206441.json | 2 + .../alma-fix/990035016180206441.json | 5 ++ .../alma-fix/990041403870206441.json | 1 + .../alma-fix/990050000600206441.json | 9 +++ .../alma-fix/990052965140206441.json | 6 ++ .../alma-fix/990053976760206441.json | 7 ++ .../alma-fix/990054301770206441.json | 1 + .../alma-fix/990054345550206441.json | 2 + .../alma-fix/990055981810206441.json | 5 ++ .../alma-fix/990058434730206441.json | 13 ++++ .../alma-fix/990058567920206441.json | 20 +++++ .../alma-fix/990059571560206441.json | 2 + .../alma-fix/990063549080206441.json | 2 + .../alma-fix/990065341720206441.json | 1 + .../alma-fix/990075429930206441.json | 7 ++ .../alma-fix/990075538650206441.json | 1 + .../alma-fix/990109712970206441.json | 2 + .../alma-fix/990114098170206441.json | 1 + .../alma-fix/990118562160206441.json | 1 + .../alma-fix/990126276700206441.json | 3 + .../alma-fix/990133067580206441.json | 1 + .../alma-fix/990143325070206441.json | 2 + .../alma-fix/990156027740206441.json | 1 + .../alma-fix/990156060190206441.json | 15 ++++ .../alma-fix/990167595410206441.json | 1 + .../alma-fix/990171142550206441.json | 3 + .../alma-fix/990173811970206441.json | 2 + .../alma-fix/990181275760206441.json | 7 ++ .../alma-fix/990183054020206441.json | 1 + .../alma-fix/990183958380206441.json | 2 + .../alma-fix/990184127410206441.json | 1 + .../alma-fix/990185607520206441.json | 1 + .../alma-fix/990185619180206441.json | 1 + .../alma-fix/990189160110206441.json | 10 +++ .../alma-fix/990193094010206441.json | 1 + .../alma-fix/990193229450206441.json | 2 + .../alma-fix/990193806600206441.json | 1 + .../alma-fix/990197067610206441.json | 3 + .../alma-fix/990197293880206441.json | 5 ++ .../alma-fix/990199611280206441.json | 2 +- .../alma-fix/990202474680206441.json | 1 + .../alma-fix/990204246530206441.json | 2 + .../alma-fix/990207668220206441.json | 1 + .../alma-fix/990209817770206441.json | 1 + .../alma-fix/990210093550206441.json | 4 + .../alma-fix/990213367870206441.json | 1 + .../alma-fix/990217478660206441.json | 3 + .../alma-fix/990218189790206441.json | 1 + .../alma-fix/990220027540206441.json | 1 + .../alma-fix/990223521400206441.json | 16 ++++ .../alma-fix/990225056670206441.json | 1 + .../alma-fix/990363946050206441.json | 3 + .../alma-fix/990365842280206441.json | 4 + .../alma-fix/990366394400206441.json | 1 + .../alma-fix/990368743120206441.json | 1 + .../resources/alma-fix/99370678063606441.json | 17 +++++ .../resources/alma-fix/99370682219806441.json | 4 + .../resources/alma-fix/99370690532406441.json | 5 +- .../resources/alma-fix/99370694196806441.json | 4 + .../resources/alma-fix/99370699582506441.json | 3 + .../resources/alma-fix/99370738710506441.json | 3 + .../resources/alma-fix/99370746459806441.json | 3 + .../resources/alma-fix/99370763433806441.json | 4 + .../resources/alma-fix/99370763882706441.json | 4 + .../resources/alma-fix/99370771475306441.json | 3 + .../resources/alma-fix/99370782520706441.json | 10 +++ .../resources/alma-fix/99371050452706441.json | 1 + .../resources/alma-fix/99371107766906441.json | 2 + .../resources/alma-fix/99371123630706441.json | 5 ++ .../resources/alma-fix/99371147104906441.json | 8 +- .../resources/alma-fix/99371314897806441.json | 7 ++ .../resources/alma-fix/99371447897606441.json | 2 + .../resources/alma-fix/99371791018506441.json | 8 ++ .../alma/maps/isil2opac_almaMmsId.tsv | 73 +++++++++++++++++++ 85 files changed, 384 insertions(+), 5 deletions(-) create mode 100644 src/test/resources/alma/maps/isil2opac_almaMmsId.tsv diff --git a/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java b/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java index 2e7409694..942fbc952 100644 --- a/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java +++ b/src/main/java/org/lobid/resources/run/AlmaMarcXmlFix2lobidJsonEs.java @@ -134,7 +134,8 @@ public void run() { fixVariables.put("isil2opac_hbzId.tsv", "../../../../../../lookup-tables/data/opacLinks/isil2opac_hbzId.tsv"); fixVariables.put("isil2opac_isbn.tsv", "../../../../../../lookup-tables/data/opacLinks/isil2opac_isbn.tsv"); fixVariables.put("isil2opac_issn.tsv", "../../../../../../lookup-tables/data/opacLinks/isil2opac_issn.tsv"); - fixVariables.put("isil2opac_zdbId.tsv", "../../../../../../lookup-tables/data/opacLinks/isil2opac_zdbId.tsv"); + fixVariables.put("isil2opac_zdbId.tsv", "../../../../../../lookup-tables/data/opacLinks/isil2opac_zdbId.tsv"); + fixVariables.put("isil2opac_almaMmsId.tsv", "../../../../../../lookup-tables/data/opacLinks/isil2opac_almaMmsId.tsv"); XmlElementSplitter xmlElementSplitter = new XmlElementSplitter(); diff --git a/src/main/resources/alma/fix/macros.fix b/src/main/resources/alma/fix/macros.fix index 5acc9ed0a..7c3b6cfc9 100644 --- a/src/main/resources/alma/fix/macros.fix +++ b/src/main/resources/alma/fix/macros.fix @@ -264,6 +264,9 @@ do put_macro("opacLink") lookup("$i.@opacLinkHbzId","isil2opac_hbzId", delete:"true") split_field("$i.@opacLinkHbzId","\\{hbzid\\}") end + copy_field("$i.$[field]", "$i.@opacAlmaMmsId") + lookup("$i.@opacAlmaMmsId","isil2opac_almaMmsId", delete:"true") + split_field("$i.@opacAlmaMmsId","\\{almaMmsId\\}") if exists("issn[].1") copy_field("$i.$[field]", "$i.@opacLinkIssn") lookup("$i.@opacLinkIssn","isil2opac_issn", delete:"true") @@ -279,6 +282,8 @@ do put_macro("opacLink") paste("hasItem[].$last.seeAlso[].$append","$i.@opacLinkZdbId.1","zdbId","$i.@opacLinkZdbId.2",join_char:"") elsif exists("$i.@opacLinkHbzId.1") paste("hasItem[].$last.seeAlso[].$append","$i.@opacLinkHbzId.1","hbzId","$i.@opacLinkHbzId.2",join_char:"") + elsif exists("$i.@opacAlmaMmsId.1") + paste("hasItem[].$last.seeAlso[].$append","$i.@opacAlmaMmsId.1","hbzId","$i.@opacAlmaMmsId.2",join_char:"") elsif exists("$i.@opacLinkIsbn.1") paste("hasItem[].$last.seeAlso[].$append","$i.@opacLinkIsbn.1","isbn[].1","$i.@opacLinkIsbn.2",join_char:"") elsif exists("$i.@opacLinkIssn.1") diff --git a/src/main/resources/alma/fix/maps.fix b/src/main/resources/alma/fix/maps.fix index 0011c3d82..bda193a78 100644 --- a/src/main/resources/alma/fix/maps.fix +++ b/src/main/resources/alma/fix/maps.fix @@ -46,6 +46,7 @@ put_filemap("$[isil2opac_hbzId.tsv]","isil2opac_hbzId", sep_char:"\t") put_filemap("$[isil2opac_isbn.tsv]","isil2opac_isbn", sep_char:"\t") put_filemap("$[isil2opac_issn.tsv]","isil2opac_issn", sep_char:"\t") put_filemap("$[isil2opac_zdbId.tsv]","isil2opac_zdbId", sep_char:"\t") +put_filemap("$[isil2opac_almaMmsId.tsv]","isil2opac_almaMmsId", sep_char:"\t") put_map("rswk-indicator", diff --git a/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java b/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java index b23c76ac5..ce8639d30 100644 --- a/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java +++ b/src/test/java/org/lobid/resources/AlmaMarc21XmlToLobidJsonMetafixTest.java @@ -79,6 +79,7 @@ public void setup() { fixVariables.put("isil2opac_isbn.tsv", "src/test/resources/alma/maps/isil2opac_isbn.tsv"); fixVariables.put("isil2opac_issn.tsv", "src/test/resources/alma/maps/isil2opac_issn.tsv"); fixVariables.put("isil2opac_zdbId.tsv", "src/test/resources/alma/maps/isil2opac_zdbId.tsv"); + fixVariables.put("isil2opac_almaMmsId.tsv", "src/test/resources/alma/maps/isil2opac_almaMmsId.tsv"); } /** diff --git a/src/test/resources/alma-fix/990001412590206441.json b/src/test/resources/alma-fix/990001412590206441.json index 715f0b942..cccae3f29 100644 --- a/src/test/resources/alma-fix/990001412590206441.json +++ b/src/test/resources/alma-fix/990001412590206441.json @@ -202,6 +202,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT000161712" ], "id" : "http://lobid.org/items/990001412590206441:DE-290:23197423230006445#!" }, { "label" : "lobid Bestandsressource", @@ -215,6 +216,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000161712" ], "id" : "http://lobid.org/items/990001412590206441:DE-5:23231651750006467#!" }, { "label" : "lobid Bestandsressource", @@ -269,6 +271,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000161712&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990001412590206441:DE-6:23507162560006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990011470300206441.json b/src/test/resources/alma-fix/990011470300206441.json index 9913b06a4..dc8a01e5b 100644 --- a/src/test/resources/alma-fix/990011470300206441.json +++ b/src/test/resources/alma-fix/990011470300206441.json @@ -101,6 +101,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT003109553" ], "id" : "http://lobid.org/items/990011470300206441:DE-385:23264500340006470#!" }, { "label" : "lobid Bestandsressource", @@ -114,6 +115,7 @@ "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003109553&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990011470300206441:DE-6-015:23600509680006449#!" }, { "label" : "lobid Bestandsressource", @@ -125,6 +127,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT003109553" ], "id" : "http://lobid.org/items/990011470300206441:DE-385:22264500330006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990014830510206441.json b/src/test/resources/alma-fix/990014830510206441.json index 764c95166..f65886ae6 100644 --- a/src/test/resources/alma-fix/990014830510206441.json +++ b/src/test/resources/alma-fix/990014830510206441.json @@ -104,6 +104,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT003864492" ], "id" : "http://lobid.org/items/990014830510206441:DE-385:23291734220006470#!" }, { "label" : "lobid Bestandsressource", @@ -117,6 +118,7 @@ "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT003864492" ], "id" : "http://lobid.org/items/990014830510206441:DE-5-58:23241836240006467#!" }, { "label" : "lobid Bestandsressource", @@ -130,6 +132,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT003864492&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990014830510206441:DE-465:23382608040006446#!" }, { "label" : "lobid Bestandsressource", @@ -141,6 +144,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT003864492" ], "id" : "http://lobid.org/items/990014830510206441:DE-385:22291734190006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990016782920206441.json b/src/test/resources/alma-fix/990016782920206441.json index ce6b9f36c..65edcb7f7 100644 --- a/src/test/resources/alma-fix/990016782920206441.json +++ b/src/test/resources/alma-fix/990016782920206441.json @@ -135,6 +135,7 @@ "id" : "http://lobid.org/organisations/DE-6-286#!", "label" : "Universität Münster, Institut für Musikpädagogik, Bibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004285445&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990016782920206441:DE-6-286:23506545980006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990021367710206441.json b/src/test/resources/alma-fix/990021367710206441.json index 161586ac2..d4aa1b330 100644 --- a/src/test/resources/alma-fix/990021367710206441.json +++ b/src/test/resources/alma-fix/990021367710206441.json @@ -100,6 +100,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT005207972" ], "id" : "http://lobid.org/items/990021367710206441:DE-290:23198604440006445#!" }, { "label" : "lobid Bestandsressource", @@ -113,6 +114,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT005207972" ], "id" : "http://lobid.org/items/990021367710206441:DE-290:23198604460006445#!" }, { "label" : "lobid Bestandsressource", @@ -126,6 +128,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT005207972" ], "id" : "http://lobid.org/items/990021367710206441:DE-385:23252207750006470#!" }, { "label" : "lobid Bestandsressource", @@ -150,6 +153,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT005207972" ], "id" : "http://lobid.org/items/990021367710206441:DE-385:22252207740006470#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990021974470206441.json b/src/test/resources/alma-fix/990021974470206441.json index de2bf8129..432efbe50 100644 --- a/src/test/resources/alma-fix/990021974470206441.json +++ b/src/test/resources/alma-fix/990021974470206441.json @@ -112,6 +112,7 @@ "id" : "http://lobid.org/organisations/DE-82-604#!", "label" : "Historisches Institut, Bibliothek" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT005271161" ], "id" : "http://lobid.org/items/990021974470206441:DE-82-604:23253806030006448#!" }, { "label" : "lobid Bestandsressource", @@ -125,6 +126,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT005271161" ], "id" : "http://lobid.org/items/990021974470206441:DE-385:23288625180006470#!" }, { "label" : "lobid Bestandsressource", @@ -192,6 +194,7 @@ "id" : "http://lobid.org/organisations/DE-6-016#!", "label" : "Universität Münster, Rechtswissenschaftliches Seminar, Bibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT005271161&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990021974470206441:DE-6-016:23561372540006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990026405480206441.json b/src/test/resources/alma-fix/990026405480206441.json index 48c9cf439..976965f5d 100644 --- a/src/test/resources/alma-fix/990026405480206441.json +++ b/src/test/resources/alma-fix/990026405480206441.json @@ -102,6 +102,7 @@ "id" : "http://lobid.org/organisations/DE-Sie5#!", "label" : "Wissenschaftliche Bibliothek des Rhein-Sieg-Kreises" }, + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT006813395" ], "id" : "http://lobid.org/items/990026405480206441:DE-Sie5:2365555310006452#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990030574430206441.json b/src/test/resources/alma-fix/990030574430206441.json index 5d5c2d9ce..a7c89b0d6 100644 --- a/src/test/resources/alma-fix/990030574430206441.json +++ b/src/test/resources/alma-fix/990030574430206441.json @@ -77,6 +77,7 @@ "id" : "http://lobid.org/organisations/DE-5-13#!", "label" : "Universität Bonn, Institut für Germanistik, Vergleichende Literatur- und Kulturwissenschaft, Bibliothek" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT007847893" ], "id" : "http://lobid.org/items/990030574430206441:DE-5-13:23308126210006467#!" }, { "label" : "lobid Bestandsressource", @@ -90,6 +91,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT007847893" ], "id" : "http://lobid.org/items/990030574430206441:DE-5:23308126230006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990035016180206441.json b/src/test/resources/alma-fix/990035016180206441.json index 49750894d..b01611f56 100644 --- a/src/test/resources/alma-fix/990035016180206441.json +++ b/src/test/resources/alma-fix/990035016180206441.json @@ -104,6 +104,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT008733617" ], "id" : "http://lobid.org/items/990035016180206441:DE-290:23200446830006445#!" }, { "label" : "lobid Bestandsressource", @@ -143,6 +144,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990035016180206441:DE-465:23372647300006446#!" }, { "label" : "lobid Bestandsressource", @@ -156,6 +158,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990035016180206441:DE-465:23372647280006446#!" }, { "label" : "lobid Bestandsressource", @@ -183,6 +186,7 @@ "id" : "http://lobid.org/organisations/DE-6-Z#!", "label" : "Universitäts- und Landesbibliothek Münster, Zeitungs- und Pressearchiv" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990035016180206441:DE-6-Z:23504836650006449#!" }, { "label" : "lobid Bestandsressource", @@ -227,6 +231,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT008733617" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", diff --git a/src/test/resources/alma-fix/990041403870206441.json b/src/test/resources/alma-fix/990041403870206441.json index 63b43f3fc..e6c27cbc0 100644 --- a/src/test/resources/alma-fix/990041403870206441.json +++ b/src/test/resources/alma-fix/990041403870206441.json @@ -75,6 +75,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT009965981" ], "id" : "http://lobid.org/items/990041403870206441:DE-5:23218652060006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990050000600206441.json b/src/test/resources/alma-fix/990050000600206441.json index 72b041ae5..cdec66604 100644 --- a/src/test/resources/alma-fix/990050000600206441.json +++ b/src/test/resources/alma-fix/990050000600206441.json @@ -213,6 +213,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT006855611" ], "id" : "http://lobid.org/items/990050000600206441:DE-386:2265786120007476#!" }, { "label" : "lobid Bestandsressource", @@ -225,6 +226,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT006855611" ], "id" : "http://lobid.org/items/990050000600206441:DE-386:2265786090007476#!" }, { "label" : "lobid Bestandsressource", @@ -237,6 +239,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990050000600206441:DE-465:22369588590006446#!" }, { "label" : "lobid Bestandsressource", @@ -249,6 +252,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990050000600206441:DE-465:22369588600006446#!" }, { "label" : "lobid Bestandsressource", @@ -330,6 +334,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT006855611" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -388,6 +393,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT006855611" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -407,6 +413,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT006855611" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -416,6 +423,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT006855611" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -453,6 +461,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990052965140206441.json b/src/test/resources/alma-fix/990052965140206441.json index 14bfed1ca..91a64dab3 100644 --- a/src/test/resources/alma-fix/990052965140206441.json +++ b/src/test/resources/alma-fix/990052965140206441.json @@ -146,6 +146,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT002529477" ], "id" : "http://lobid.org/items/990052965140206441:DE-385:22279005870006470#!" }, { "label" : "lobid Bestandsressource", @@ -169,6 +170,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT002529477" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -178,6 +180,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT002529477" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -187,6 +190,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT002529477" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -196,6 +200,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT002529477&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -225,6 +230,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT002529477&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990053976760206441.json b/src/test/resources/alma-fix/990053976760206441.json index b8ab4ae03..9b4dfe64e 100644 --- a/src/test/resources/alma-fix/990053976760206441.json +++ b/src/test/resources/alma-fix/990053976760206441.json @@ -226,6 +226,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990053976760206441:DE-465:23409593810006446#!" }, { "label" : "lobid Bestandsressource", @@ -348,6 +349,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT000312236" ], "id" : "http://lobid.org/items/990053976760206441:DE-386:2266381760007476#!" }, { "label" : "lobid Bestandsressource", @@ -360,6 +362,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT000312236" ], "id" : "http://lobid.org/items/990053976760206441:DE-386:2266381820007476#!" }, { "label" : "lobid Bestandsressource", @@ -385,6 +388,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT000312236" ], "id" : "http://lobid.org/items/990053976760206441:DE-82:22222365420006448#!" }, { "label" : "lobid Bestandsressource", @@ -461,6 +465,7 @@ "id" : "http://lobid.org/organisations/DE-6-023#!", "label" : "Universität Münster, Bibliothek des Fachbereichs Physik" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990053976760206441:DE-6-023:22526741320006449#!" }, { "label" : "lobid Bestandsressource", @@ -473,6 +478,7 @@ "id" : "http://lobid.org/organisations/DE-6-123#!", "label" : "Universität Münster, Bibliothek für Erziehungswissenschaft und Kommunikationswissenschaft" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990053976760206441:DE-6-123:22526741310006449#!" }, { "label" : "lobid Bestandsressource", @@ -485,6 +491,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990053976760206441:DE-6:22526741340006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990054301770206441.json b/src/test/resources/alma-fix/990054301770206441.json index 90fcdebe4..57154d9fe 100644 --- a/src/test/resources/alma-fix/990054301770206441.json +++ b/src/test/resources/alma-fix/990054301770206441.json @@ -247,6 +247,7 @@ "id" : "http://lobid.org/organisations/DE-6-139a#!", "label" : "Kommission Alltagskulturforschung für Westfalen (KAF), Bibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003176544&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990054301770206441:DE-6-139a:22577982090006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990054345550206441.json b/src/test/resources/alma-fix/990054345550206441.json index fb4d220b0..b43ead6bd 100644 --- a/src/test/resources/alma-fix/990054345550206441.json +++ b/src/test/resources/alma-fix/990054345550206441.json @@ -234,6 +234,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT003497718" ], "id" : "http://lobid.org/items/990054345550206441:DE-82:23312187860006448#!" }, { "label" : "lobid Bestandsressource", @@ -631,6 +632,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT003497718" ], "id" : "http://lobid.org/items/990054345550206441:DE-82:22246727820006448#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990055981810206441.json b/src/test/resources/alma-fix/990055981810206441.json index 0d4f472a8..8a68d94b5 100644 --- a/src/test/resources/alma-fix/990055981810206441.json +++ b/src/test/resources/alma-fix/990055981810206441.json @@ -284,6 +284,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:23651985810006449#!" }, { "label" : "lobid Bestandsressource", @@ -297,6 +298,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:23650616280006449#!" }, { "label" : "lobid Bestandsressource", @@ -310,6 +312,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:23650616270006449#!" }, { "label" : "lobid Bestandsressource", @@ -360,6 +363,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:22547318240006449#!" }, { "label" : "lobid Bestandsressource", @@ -372,6 +376,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:22547318250006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990058434730206441.json b/src/test/resources/alma-fix/990058434730206441.json index 263c135d1..dccc83ae2 100644 --- a/src/test/resources/alma-fix/990058434730206441.json +++ b/src/test/resources/alma-fix/990058434730206441.json @@ -173,6 +173,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-Kn41:2317181430006478#!" }, { "label" : "lobid Bestandsressource", @@ -252,6 +253,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-385:23283899660006470#!" }, { "label" : "lobid Bestandsressource", @@ -265,6 +267,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-385:23283899620006470#!" }, { "label" : "lobid Bestandsressource", @@ -278,6 +281,7 @@ "id" : "http://lobid.org/organisations/DE-5-74#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Abteilung Alte Geschichte, Bibliothek" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-5-74:23287792620006467#!" }, { "label" : "lobid Bestandsressource", @@ -291,6 +295,7 @@ "id" : "http://lobid.org/organisations/DE-5-108#!", "label" : "Universität Bonn, Fachbibliothek der Evangelischen und Katholischen Theologie" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-5-108:23287792640006467#!" }, { "label" : "lobid Bestandsressource", @@ -304,6 +309,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-5:23287792660006467#!" }, { "label" : "lobid Bestandsressource", @@ -369,6 +375,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-465:23378107640006446#!" }, { "label" : "lobid Bestandsressource", @@ -452,6 +459,7 @@ "id" : "http://lobid.org/organisations/DE-6-119#!", "label" : "Universität Münster, Institutum Judaicum Delitzschianum, Bibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-119:23602951480006449#!" }, { "label" : "lobid Bestandsressource", @@ -465,6 +473,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6:23602951640006449#!" }, { "label" : "lobid Bestandsressource", @@ -478,6 +487,7 @@ "id" : "http://lobid.org/organisations/DE-6-006#!", "label" : "Universität Münster, Evangelisch-Theologische Fakultät, Bibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-006:23602951510006449#!" }, { "label" : "lobid Bestandsressource", @@ -491,6 +501,7 @@ "id" : "http://lobid.org/organisations/DE-6-011#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abteilung Johannisstr." }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-011:23602951550006449#!" }, { "label" : "lobid Bestandsressource", @@ -504,6 +515,7 @@ "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-248:23602951590006449#!" }, { "label" : "lobid Bestandsressource", @@ -598,6 +610,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000893437" ], "id" : "http://lobid.org/items/990058434730206441:DE-385:22283899610006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990058567920206441.json b/src/test/resources/alma-fix/990058567920206441.json index 280e25e8f..3ef86e894 100644 --- a/src/test/resources/alma-fix/990058567920206441.json +++ b/src/test/resources/alma-fix/990058567920206441.json @@ -213,6 +213,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-386:2386676830007476#!" }, { "label" : "lobid Bestandsressource", @@ -226,6 +227,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-386:2386676840007476#!" }, { "label" : "lobid Bestandsressource", @@ -253,6 +255,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-82:23253024690006448#!" }, { "label" : "lobid Bestandsressource", @@ -307,6 +310,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-290:23201690680006445#!" }, { "label" : "lobid Bestandsressource", @@ -320,6 +324,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-290:23201690660006445#!" }, { "label" : "lobid Bestandsressource", @@ -333,6 +338,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221800006470#!" }, { "label" : "lobid Bestandsressource", @@ -346,6 +352,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221820006470#!" }, { "label" : "lobid Bestandsressource", @@ -359,6 +366,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221780006470#!" }, { "label" : "lobid Bestandsressource", @@ -372,6 +380,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-5:23263182640006467#!" }, { "label" : "lobid Bestandsressource", @@ -385,6 +394,7 @@ "id" : "http://lobid.org/organisations/DE-5-162#!", "label" : "Universität Bonn, Institut für Politische Wissenschaft und Soziologie, Bibliothek" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-5-162:23263182590006467#!" }, { "label" : "lobid Bestandsressource", @@ -502,6 +512,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-465:23421400070006446#!" }, { "label" : "lobid Bestandsressource", @@ -515,6 +526,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-465:23421400050006446#!" }, { "label" : "lobid Bestandsressource", @@ -598,6 +610,7 @@ "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-248:23599273300006449#!" }, { "label" : "lobid Bestandsressource", @@ -611,6 +624,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6:23599273340006449#!" }, { "label" : "lobid Bestandsressource", @@ -624,6 +638,7 @@ "id" : "http://lobid.org/organisations/DE-6-A#!", "label" : "Universitäts- und Landesbibliothek Münster, Zweigbibliothek Sozialwissenschaften" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-A:23599273320006449#!" }, { "label" : "lobid Bestandsressource", @@ -637,6 +652,7 @@ "id" : "http://lobid.org/organisations/DE-6-069#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholischen-Theologischen Fakultät, Abteilung Hüfferstr." }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-069:23599273180006449#!" }, { "label" : "lobid Bestandsressource", @@ -650,6 +666,7 @@ "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-015:23599273260006449#!" }, { "label" : "lobid Bestandsressource", @@ -663,6 +680,7 @@ "id" : "http://lobid.org/organisations/DE-6-011#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abteilung Johannisstr." }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-011:23599273210006449#!" }, { "label" : "lobid Bestandsressource", @@ -676,6 +694,7 @@ "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-248:23599273280006449#!" }, { "label" : "lobid Bestandsressource", @@ -727,6 +746,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000909138" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:22256221770006470#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990059571560206441.json b/src/test/resources/alma-fix/990059571560206441.json index 2d22cebab..e3d273508 100644 --- a/src/test/resources/alma-fix/990059571560206441.json +++ b/src/test/resources/alma-fix/990059571560206441.json @@ -137,6 +137,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT001039253" ], "id" : "http://lobid.org/items/990059571560206441:DE-82:23246474340006448#!" }, { "label" : "lobid Bestandsressource", @@ -164,6 +165,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT001039253" ], "id" : "http://lobid.org/items/990059571560206441:DE-5:23257517760006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990063549080206441.json b/src/test/resources/alma-fix/990063549080206441.json index 62a26dd8f..89d24d359 100644 --- a/src/test/resources/alma-fix/990063549080206441.json +++ b/src/test/resources/alma-fix/990063549080206441.json @@ -153,6 +153,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT003538502" ], "id" : "http://lobid.org/items/990063549080206441:DE-386:2380642040007476#!" }, { "label" : "lobid Bestandsressource", @@ -197,6 +198,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003538502&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990065341720206441.json b/src/test/resources/alma-fix/990065341720206441.json index f9e5caa0c..536e53d8a 100644 --- a/src/test/resources/alma-fix/990065341720206441.json +++ b/src/test/resources/alma-fix/990065341720206441.json @@ -94,6 +94,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004764408&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990065341720206441:DE-6:23553702130006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990075429930206441.json b/src/test/resources/alma-fix/990075429930206441.json index 247651ff1..8c3a2248c 100644 --- a/src/test/resources/alma-fix/990075429930206441.json +++ b/src/test/resources/alma-fix/990075429930206441.json @@ -143,6 +143,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-385:23280215020006470#!" }, { "label" : "lobid Bestandsressource", @@ -156,6 +157,7 @@ "id" : "http://lobid.org/organisations/DE-5-108#!", "label" : "Universität Bonn, Fachbibliothek der Evangelischen und Katholischen Theologie" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-5-108:23276729420006467#!" }, { "label" : "lobid Bestandsressource", @@ -169,6 +171,7 @@ "id" : "http://lobid.org/organisations/DE-5-20#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Bibliothek" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-5-20:23276729400006467#!" }, { "label" : "lobid Bestandsressource", @@ -262,6 +265,7 @@ "id" : "http://lobid.org/organisations/DE-6-020#!", "label" : "Universität Münster, Englisches Seminar, Bibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-6-020:23595716610006449#!" }, { "label" : "lobid Bestandsressource", @@ -275,6 +279,7 @@ "id" : "http://lobid.org/organisations/DE-6-246#!", "label" : "Universität Münster, Germanistisches Institut, Bibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-6-246:23595716590006449#!" }, { "label" : "lobid Bestandsressource", @@ -288,6 +293,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-6:23595716630006449#!" }, { "label" : "lobid Bestandsressource", @@ -310,6 +316,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000944190" ], "id" : "http://lobid.org/items/990075429930206441:DE-385:22280215010006470#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990075538650206441.json b/src/test/resources/alma-fix/990075538650206441.json index 358bff83d..c7c977f6d 100644 --- a/src/test/resources/alma-fix/990075538650206441.json +++ b/src/test/resources/alma-fix/990075538650206441.json @@ -138,6 +138,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT003184116" ], "id" : "http://lobid.org/items/990075538650206441:DE-Kn41:2325727750006478#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990109712970206441.json b/src/test/resources/alma-fix/990109712970206441.json index f7e227267..f0c4b1884 100644 --- a/src/test/resources/alma-fix/990109712970206441.json +++ b/src/test/resources/alma-fix/990109712970206441.json @@ -566,6 +566,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT012819873&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990109712970206441:DE-6:23653461490006449#!" }, { "label" : "lobid Bestandsressource", @@ -579,6 +580,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT012819873&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990109712970206441:DE-6:23653461500006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990114098170206441.json b/src/test/resources/alma-fix/990114098170206441.json index a04042667..3905690b6 100644 --- a/src/test/resources/alma-fix/990114098170206441.json +++ b/src/test/resources/alma-fix/990114098170206441.json @@ -148,6 +148,7 @@ "id" : "http://lobid.org/organisations/DE-6-069#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholischen-Theologischen Fakultät, Abteilung Hüfferstr." }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT013083243&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990114098170206441:DE-6-069:23507172540006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990118562160206441.json b/src/test/resources/alma-fix/990118562160206441.json index 6c09ee3b8..64cabbab7 100644 --- a/src/test/resources/alma-fix/990118562160206441.json +++ b/src/test/resources/alma-fix/990118562160206441.json @@ -101,6 +101,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT013532539&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990118562160206441:DE-465:23420787060006446#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990126276700206441.json b/src/test/resources/alma-fix/990126276700206441.json index 4f244da9d..52b2e70f7 100644 --- a/src/test/resources/alma-fix/990126276700206441.json +++ b/src/test/resources/alma-fix/990126276700206441.json @@ -188,6 +188,7 @@ "id" : "http://lobid.org/organisations/DE-82-609#!", "label" : "Germanistisches Institut, Bibliothek" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT014015351" ], "id" : "http://lobid.org/items/990126276700206441:DE-82-609:23232408510006448#!" }, { "label" : "lobid Bestandsressource", @@ -201,6 +202,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT014015351" ], "id" : "http://lobid.org/items/990126276700206441:DE-5:23261735310006467#!" }, { "label" : "lobid Bestandsressource", @@ -282,6 +284,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014015351&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990126276700206441:DE-6:23535410630006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990133067580206441.json b/src/test/resources/alma-fix/990133067580206441.json index 71bbaf3a9..9f1365db0 100644 --- a/src/test/resources/alma-fix/990133067580206441.json +++ b/src/test/resources/alma-fix/990133067580206441.json @@ -264,6 +264,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53804555180006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990133067580206441", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT014176012&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", diff --git a/src/test/resources/alma-fix/990143325070206441.json b/src/test/resources/alma-fix/990143325070206441.json index a92e388ae..8be90683b 100644 --- a/src/test/resources/alma-fix/990143325070206441.json +++ b/src/test/resources/alma-fix/990143325070206441.json @@ -169,6 +169,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT014601018" ], "id" : "http://lobid.org/items/990143325070206441:DE-5:23281591130006467#!" }, { "label" : "lobid Bestandsressource", @@ -182,6 +183,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014601018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990143325070206441:DE-6:23564603190006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990156027740206441.json b/src/test/resources/alma-fix/990156027740206441.json index fa299177f..abb609b5a 100644 --- a/src/test/resources/alma-fix/990156027740206441.json +++ b/src/test/resources/alma-fix/990156027740206441.json @@ -76,6 +76,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209607190006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991010117289706445", + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT015011399" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma-fix/990156060190206441.json b/src/test/resources/alma-fix/990156060190206441.json index e8c084f51..0bb121017 100644 --- a/src/test/resources/alma-fix/990156060190206441.json +++ b/src/test/resources/alma-fix/990156060190206441.json @@ -189,6 +189,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-Kn41:2317986730006478#!" }, { "label" : "lobid Bestandsressource", @@ -243,6 +244,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-1044:2348092950006452#!" }, { "label" : "lobid Bestandsressource", @@ -256,6 +258,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-1044:2348092970006452#!" }, { "label" : "lobid Bestandsressource", @@ -351,6 +354,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-386:2374193680007476#!" }, { "label" : "lobid Bestandsressource", @@ -378,6 +382,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-386:2374193670007476#!" }, { "label" : "lobid Bestandsressource", @@ -391,6 +396,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-82:23233208590006448#!" }, { "label" : "lobid Bestandsressource", @@ -446,6 +452,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-290:23194328940006445#!" }, { "label" : "lobid Bestandsressource", @@ -459,6 +466,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-385:23271771200006470#!" }, { "label" : "lobid Bestandsressource", @@ -472,6 +480,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-5:23245806020006467#!" }, { "label" : "lobid Bestandsressource", @@ -537,6 +546,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-465:23390395420006446#!" }, { "label" : "lobid Bestandsressource", @@ -550,6 +560,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-465:23390395430006446#!" }, { "label" : "lobid Bestandsressource", @@ -619,6 +630,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-6:23510054190006449#!" }, { "label" : "lobid Bestandsressource", @@ -632,6 +644,7 @@ "id" : "http://lobid.org/organisations/DE-6-049#!", "label" : "Universität Münster, Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek für Psychologie" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-6-049:23510054150006449#!" }, { "label" : "lobid Bestandsressource", @@ -645,6 +658,7 @@ "id" : "http://lobid.org/organisations/DE-6-123#!", "label" : "Universität Münster, Bibliothek für Erziehungswissenschaft und Kommunikationswissenschaft" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-6-123:23510054170006449#!" }, { "label" : "lobid Bestandsressource", @@ -684,6 +698,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT015014677" ], "id" : "http://lobid.org/items/990156060190206441:DE-385:22271771190006470#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990167595410206441.json b/src/test/resources/alma-fix/990167595410206441.json index 1be2208f8..115170ef1 100644 --- a/src/test/resources/alma-fix/990167595410206441.json +++ b/src/test/resources/alma-fix/990167595410206441.json @@ -92,6 +92,7 @@ "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,TT002494857&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990167595410206441:DE-6-015:23616315430006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990171142550206441.json b/src/test/resources/alma-fix/990171142550206441.json index ed0642021..8b9dd9719 100644 --- a/src/test/resources/alma-fix/990171142550206441.json +++ b/src/test/resources/alma-fix/990171142550206441.json @@ -150,6 +150,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT015671602" ], "id" : "http://lobid.org/items/990171142550206441:DE-290:23199326600006445#!" }, { "label" : "lobid Bestandsressource", @@ -163,6 +164,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT015671602" ], "id" : "http://lobid.org/items/990171142550206441:DE-385:23266502850006470#!" }, { "label" : "lobid Bestandsressource", @@ -201,6 +203,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT015671602" ], "id" : "http://lobid.org/items/990171142550206441:DE-385:22266502840006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990173811970206441.json b/src/test/resources/alma-fix/990173811970206441.json index fb57c36f1..b93a52641 100644 --- a/src/test/resources/alma-fix/990173811970206441.json +++ b/src/test/resources/alma-fix/990173811970206441.json @@ -152,6 +152,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT015865114" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -170,6 +171,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015865114&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990181275760206441.json b/src/test/resources/alma-fix/990181275760206441.json index 529cf2610..6cc7c6979 100644 --- a/src/test/resources/alma-fix/990181275760206441.json +++ b/src/test/resources/alma-fix/990181275760206441.json @@ -180,6 +180,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914300006445#!" }, { "label" : "lobid Bestandsressource", @@ -193,6 +194,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914190006445#!" }, { "label" : "lobid Bestandsressource", @@ -206,6 +208,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914180006445#!" }, { "label" : "lobid Bestandsressource", @@ -219,6 +222,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914220006445#!" }, { "label" : "lobid Bestandsressource", @@ -232,6 +236,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914250006445#!" }, { "label" : "lobid Bestandsressource", @@ -245,6 +250,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914260006445#!" }, { "label" : "lobid Bestandsressource", @@ -258,6 +264,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT016433929" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914290006445#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990183054020206441.json b/src/test/resources/alma-fix/990183054020206441.json index 45a044b69..1fcd9d3f3 100644 --- a/src/test/resources/alma-fix/990183054020206441.json +++ b/src/test/resources/alma-fix/990183054020206441.json @@ -206,6 +206,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016604323&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990183054020206441:DE-6:22542862200006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990183958380206441.json b/src/test/resources/alma-fix/990183958380206441.json index 3b3300e21..318214ef9 100644 --- a/src/test/resources/alma-fix/990183958380206441.json +++ b/src/test/resources/alma-fix/990183958380206441.json @@ -190,6 +190,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990183958380206441:DE-6:23619354250006449#!" }, { "label" : "lobid Bestandsressource", @@ -203,6 +204,7 @@ "id" : "http://lobid.org/organisations/DE-6-139a#!", "label" : "Kommission Alltagskulturforschung für Westfalen (KAF), Bibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990183958380206441:DE-6-139a:23619354230006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990184127410206441.json b/src/test/resources/alma-fix/990184127410206441.json index 7e58fb715..14930d383 100644 --- a/src/test/resources/alma-fix/990184127410206441.json +++ b/src/test/resources/alma-fix/990184127410206441.json @@ -287,6 +287,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53804344220006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT016709661&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", diff --git a/src/test/resources/alma-fix/990185607520206441.json b/src/test/resources/alma-fix/990185607520206441.json index bf702d45a..7add41903 100644 --- a/src/test/resources/alma-fix/990185607520206441.json +++ b/src/test/resources/alma-fix/990185607520206441.json @@ -83,6 +83,7 @@ "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaTT003059252" ], "id" : "http://lobid.org/items/990185607520206441:DE-5-58:23213211150006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990185619180206441.json b/src/test/resources/alma-fix/990185619180206441.json index 4bead7096..71f76ca0d 100644 --- a/src/test/resources/alma-fix/990185619180206441.json +++ b/src/test/resources/alma-fix/990185619180206441.json @@ -92,6 +92,7 @@ "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaTT003060418" ], "id" : "http://lobid.org/items/990185619180206441:DE-5-58:23233589480006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990189160110206441.json b/src/test/resources/alma-fix/990189160110206441.json index 1bbf0c527..eb5666777 100644 --- a/src/test/resources/alma-fix/990189160110206441.json +++ b/src/test/resources/alma-fix/990189160110206441.json @@ -197,6 +197,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-Kn41:2325303250006478#!" }, { "label" : "lobid Bestandsressource", @@ -210,6 +211,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-Kn41:2325303270006478#!" }, { "label" : "lobid Bestandsressource", @@ -223,6 +225,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-386:2385580290007476#!" }, { "label" : "lobid Bestandsressource", @@ -236,6 +239,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-290:23197228550006445#!" }, { "label" : "lobid Bestandsressource", @@ -249,6 +253,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT017015300" ], "id" : "http://lobid.org/items/990189160110206441:DE-5:23237586070006467#!" }, { "label" : "lobid Bestandsressource", @@ -262,6 +267,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-465:23423021800006446#!" }, { "label" : "lobid Bestandsressource", @@ -275,6 +281,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-465:23423021780006446#!" }, { "label" : "lobid Bestandsressource", @@ -330,6 +337,7 @@ "id" : "http://lobid.org/organisations/DE-6-058#!", "label" : "Universität Münster, Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek Sportwissenschaft" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-6-058:23527811750006449#!" }, { "label" : "lobid Bestandsressource", @@ -343,6 +351,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-6:23527811780006449#!" }, { "label" : "lobid Bestandsressource", @@ -356,6 +365,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-6:23527811770006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990193094010206441.json b/src/test/resources/alma-fix/990193094010206441.json index e9bace8ed..aa0ae3f78 100644 --- a/src/test/resources/alma-fix/990193094010206441.json +++ b/src/test/resources/alma-fix/990193094010206441.json @@ -101,6 +101,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT017398609" ], "id" : "http://lobid.org/items/990193094010206441:DE-290:23195293910006445#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990193229450206441.json b/src/test/resources/alma-fix/990193229450206441.json index 1c4cbf6b6..c2f61ea19 100644 --- a/src/test/resources/alma-fix/990193229450206441.json +++ b/src/test/resources/alma-fix/990193229450206441.json @@ -309,6 +309,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53807024380006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990193229450206441", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT017411546&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -318,6 +319,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017411546&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990193806600206441.json b/src/test/resources/alma-fix/990193806600206441.json index 8535747c1..2c220f253 100644 --- a/src/test/resources/alma-fix/990193806600206441.json +++ b/src/test/resources/alma-fix/990193806600206441.json @@ -86,6 +86,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017468042&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990193806600206441:DE-6:23526297370006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990197067610206441.json b/src/test/resources/alma-fix/990197067610206441.json index 43842708f..5d14f8c9e 100644 --- a/src/test/resources/alma-fix/990197067610206441.json +++ b/src/test/resources/alma-fix/990197067610206441.json @@ -95,6 +95,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,CT003043468&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -106,6 +107,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaCT003043468" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -117,6 +119,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,CT003043468&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", diff --git a/src/test/resources/alma-fix/990197293880206441.json b/src/test/resources/alma-fix/990197293880206441.json index b519158f2..6f7d7990b 100644 --- a/src/test/resources/alma-fix/990197293880206441.json +++ b/src/test/resources/alma-fix/990197293880206441.json @@ -268,6 +268,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,TT050421649&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -397,6 +398,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:TT050421649" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -408,6 +410,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaTT050421649" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -454,6 +457,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaTT050421649" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -488,6 +492,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaTT050421649" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", diff --git a/src/test/resources/alma-fix/990199611280206441.json b/src/test/resources/alma-fix/990199611280206441.json index c451a6678..dac8d5d25 100644 --- a/src/test/resources/alma-fix/990199611280206441.json +++ b/src/test/resources/alma-fix/990199611280206441.json @@ -143,7 +143,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0543=%2202704013%22" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT017894012" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma-fix/990202474680206441.json b/src/test/resources/alma-fix/990202474680206441.json index 8a088f501..d4fe7f1be 100644 --- a/src/test/resources/alma-fix/990202474680206441.json +++ b/src/test/resources/alma-fix/990202474680206441.json @@ -137,6 +137,7 @@ "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT018129805" ], "id" : "http://lobid.org/items/990202474680206441:DE-5-141:23273758380006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990204246530206441.json b/src/test/resources/alma-fix/990204246530206441.json index 70567f6cd..53a468f49 100644 --- a/src/test/resources/alma-fix/990204246530206441.json +++ b/src/test/resources/alma-fix/990204246530206441.json @@ -196,6 +196,7 @@ "id" : "http://lobid.org/organisations/DE-5-39#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Abteilung für Geschichte der Frühen Neuzeit und Rheinische Landesgeschichte, Bibliothek" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT018295975" ], "id" : "http://lobid.org/items/990204246530206441:DE-5-39:23292096440006467#!" }, { "label" : "lobid Bestandsressource", @@ -209,6 +210,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018295975&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990204246530206441:DE-6:23593081430006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990207668220206441.json b/src/test/resources/alma-fix/990207668220206441.json index 7e4b848bc..593e6cb20 100644 --- a/src/test/resources/alma-fix/990207668220206441.json +++ b/src/test/resources/alma-fix/990207668220206441.json @@ -98,6 +98,7 @@ "id" : "http://lobid.org/organisations/DE-82-223#!", "label" : "Lehrstuhl für Siedlungswasserwirtschaft und Siedlungsabfallwirtschaft und Institut für Siedlungswasserwirtschaft, Bibliothek" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaTT003280170" ], "id" : "http://lobid.org/items/990207668220206441:DE-82-223:23233358930006448#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990209817770206441.json b/src/test/resources/alma-fix/990209817770206441.json index 387cf13fc..09129d2a2 100644 --- a/src/test/resources/alma-fix/990209817770206441.json +++ b/src/test/resources/alma-fix/990209817770206441.json @@ -173,6 +173,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018811791&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990209817770206441:DE-6:23490552480006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990210093550206441.json b/src/test/resources/alma-fix/990210093550206441.json index f94ade978..51ad28dfb 100644 --- a/src/test/resources/alma-fix/990210093550206441.json +++ b/src/test/resources/alma-fix/990210093550206441.json @@ -145,6 +145,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53108868480007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=990010081250507476", + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT018839495" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -156,6 +157,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53313002580006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=990022076950106470", + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT018839495" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -167,6 +169,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53428417070006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990184689370206446", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT018839495&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -178,6 +181,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53625317550006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991015595899706449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018839495&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990213367870206441.json b/src/test/resources/alma-fix/990213367870206441.json index 6058daa59..a15f2cc61 100644 --- a/src/test/resources/alma-fix/990213367870206441.json +++ b/src/test/resources/alma-fix/990213367870206441.json @@ -123,6 +123,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209196500006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991005259779706445", + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT019075404" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma-fix/990217478660206441.json b/src/test/resources/alma-fix/990217478660206441.json index 413f59ef5..b2a21dbe9 100644 --- a/src/test/resources/alma-fix/990217478660206441.json +++ b/src/test/resources/alma-fix/990217478660206441.json @@ -515,6 +515,7 @@ "id" : "http://lobid.org/organisations/DE-82-211#!", "label" : "Lehrstuhl und Institut für Kunstgeschichte, Bibliothek" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-82-211:23243058570006448#!" }, { "label" : "lobid Bestandsressource", @@ -528,6 +529,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT019246898" ], "id" : "http://lobid.org/items/990217478660206441:DE-290:23194214350006445#!" }, { "label" : "lobid Bestandsressource", @@ -569,6 +571,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019246898&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990217478660206441:DE-6:23512237280006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990218189790206441.json b/src/test/resources/alma-fix/990218189790206441.json index 391818fe2..c9d778ee7 100644 --- a/src/test/resources/alma-fix/990218189790206441.json +++ b/src/test/resources/alma-fix/990218189790206441.json @@ -114,6 +114,7 @@ "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT019317250" ], "id" : "http://lobid.org/items/990218189790206441:DE-5-141:23264785760006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990220027540206441.json b/src/test/resources/alma-fix/990220027540206441.json index df8cb6ff4..f5256bd84 100644 --- a/src/test/resources/alma-fix/990220027540206441.json +++ b/src/test/resources/alma-fix/990220027540206441.json @@ -89,6 +89,7 @@ "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT019496555" ], "id" : "http://lobid.org/items/990220027540206441:DE-5-141:23219038300006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990223521400206441.json b/src/test/resources/alma-fix/990223521400206441.json index d9f5a9f6d..436f488dc 100644 --- a/src/test/resources/alma-fix/990223521400206441.json +++ b/src/test/resources/alma-fix/990223521400206441.json @@ -316,6 +316,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701840006452#!" }, { "label" : "lobid Bestandsressource", @@ -329,6 +330,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701860006452#!" }, { "label" : "lobid Bestandsressource", @@ -342,6 +344,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701900006452#!" }, { "label" : "lobid Bestandsressource", @@ -355,6 +358,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701880006452#!" }, { "label" : "lobid Bestandsressource", @@ -382,6 +386,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-290:23189128750006445#!" }, { "label" : "lobid Bestandsressource", @@ -395,6 +400,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT019631849" ], "id" : "http://lobid.org/items/990223521400206441:DE-5:23214050900006467#!" }, { "label" : "lobid Bestandsressource", @@ -408,6 +414,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947900006446#!" }, { "label" : "lobid Bestandsressource", @@ -421,6 +428,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947910006446#!" }, { "label" : "lobid Bestandsressource", @@ -434,6 +442,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947920006446#!" }, { "label" : "lobid Bestandsressource", @@ -447,6 +456,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947870006446#!" }, { "label" : "lobid Bestandsressource", @@ -460,6 +470,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947880006446#!" }, { "label" : "lobid Bestandsressource", @@ -473,6 +484,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947940006446#!" }, { "label" : "lobid Bestandsressource", @@ -486,6 +498,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947850006446#!" }, { "label" : "lobid Bestandsressource", @@ -499,6 +512,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947860006446#!" }, { "label" : "lobid Bestandsressource", @@ -526,6 +540,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-6:23506634650006449#!" }, { "label" : "lobid Bestandsressource", @@ -539,6 +554,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-6:23506634640006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990225056670206441.json b/src/test/resources/alma-fix/990225056670206441.json index 1eed41742..545a25da4 100644 --- a/src/test/resources/alma-fix/990225056670206441.json +++ b/src/test/resources/alma-fix/990225056670206441.json @@ -91,6 +91,7 @@ "id" : "http://lobid.org/organisations/DE-82-501#!", "label" : "Lehrstuhl für Bildverarbeitung, Bibliothek" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaTT003907920" ], "id" : "http://lobid.org/items/990225056670206441:DE-82-501:23217998250006448#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990363946050206441.json b/src/test/resources/alma-fix/990363946050206441.json index 059fb7da6..bdc7fc578 100644 --- a/src/test/resources/alma-fix/990363946050206441.json +++ b/src/test/resources/alma-fix/990363946050206441.json @@ -130,6 +130,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209365020006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991009604019706445", + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT020202475" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -141,6 +142,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53319452280006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991044884199706467", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT020202475" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -152,6 +154,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53319452300006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991044884199706467", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT020202475" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/990365842280206441.json b/src/test/resources/alma-fix/990365842280206441.json index 363dd9bae..d29d560ed 100644 --- a/src/test/resources/alma-fix/990365842280206441.json +++ b/src/test/resources/alma-fix/990365842280206441.json @@ -101,6 +101,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT020391499" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -136,6 +137,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020391499&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -182,6 +184,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT020391499" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -239,6 +242,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53312504210006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=990025573850106470", + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT020391499" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", diff --git a/src/test/resources/alma-fix/990366394400206441.json b/src/test/resources/alma-fix/990366394400206441.json index 5681fb551..c619554a4 100644 --- a/src/test/resources/alma-fix/990366394400206441.json +++ b/src/test/resources/alma-fix/990366394400206441.json @@ -74,6 +74,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020446683&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990366394400206441:DE-6:23534915260006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990368743120206441.json b/src/test/resources/alma-fix/990368743120206441.json index 848f38c97..49248a33a 100644 --- a/src/test/resources/alma-fix/990368743120206441.json +++ b/src/test/resources/alma-fix/990368743120206441.json @@ -75,6 +75,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020681018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990368743120206441:DE-6:23544500850006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99370678063606441.json b/src/test/resources/alma-fix/99370678063606441.json index a56c089c2..5f82f38a0 100644 --- a/src/test/resources/alma-fix/99370678063606441.json +++ b/src/test/resources/alma-fix/99370678063606441.json @@ -162,6 +162,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5328313150006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998470474006478", + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT016745965" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -173,6 +174,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5327889980006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998470474006478", + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT016745965" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -184,6 +186,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5327821250006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998470474006478", + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT016745965" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -470,6 +473,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53119227590007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022008758307476", + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT016745965" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -481,6 +485,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53109900770007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022008758307476", + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT016745965" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -492,6 +497,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53109489700007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022008758307476", + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT016745965" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -503,6 +509,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53266502540006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991025967647406448", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT016745965" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -514,6 +521,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53265762980006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991025967647406448", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT016745965" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -572,6 +580,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53313992860006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927778655706470", + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT016745965" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -583,6 +592,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53314230740006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927778655706470", + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT016745965" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -666,6 +676,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53452984420006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT016745965&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -677,6 +688,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53441010540006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT016745965&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -688,6 +700,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53455804610006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT016745965&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -769,6 +782,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627078260006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016745965&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -780,6 +794,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53626936090006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016745965&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -791,6 +806,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627921000006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016745965&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -802,6 +818,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53673256170006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016745965&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370682219806441.json b/src/test/resources/alma-fix/99370682219806441.json index bf3745fd1..6a230fcdc 100644 --- a/src/test/resources/alma-fix/99370682219806441.json +++ b/src/test/resources/alma-fix/99370682219806441.json @@ -168,6 +168,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5329392030006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998475174506478", + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT018103691" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -190,6 +191,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53118085990007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022039329107476", + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT018103691" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -225,6 +227,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53439629560006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206357887606446", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT018103691&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -247,6 +250,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53629253910006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044842060806449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018103691&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370690532406441.json b/src/test/resources/alma-fix/99370690532406441.json index fb1c0dbd1..6ae0ab5bb 100644 --- a/src/test/resources/alma-fix/99370690532406441.json +++ b/src/test/resources/alma-fix/99370690532406441.json @@ -88,6 +88,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53265843380006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991025967988406448", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -99,7 +100,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53208220140006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013485396506445", - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0543=%2221968292%22" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -111,6 +112,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53320611800006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180157206467", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -169,6 +171,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53653301110006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044925061406449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370694196806441.json b/src/test/resources/alma-fix/99370694196806441.json index 37899bf65..2a56d44d4 100644 --- a/src/test/resources/alma-fix/99370694196806441.json +++ b/src/test/resources/alma-fix/99370694196806441.json @@ -148,6 +148,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5327764320006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998470177306478", + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT017306644" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -170,6 +171,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53118379390007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022040085807476", + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT017306644" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -193,6 +195,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53440125350006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206359543306446", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT017306644&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -215,6 +218,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53630052410006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044844301206449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017306644&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370699582506441.json b/src/test/resources/alma-fix/99370699582506441.json index 4164f8985..96f77abcc 100644 --- a/src/test/resources/alma-fix/99370699582506441.json +++ b/src/test/resources/alma-fix/99370699582506441.json @@ -100,6 +100,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5329531840006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998475736206478", + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT016024273" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -134,6 +135,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53436686710006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206348251006446", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT016024273&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -145,6 +147,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53630816910006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044846530706449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016024273&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370738710506441.json b/src/test/resources/alma-fix/99370738710506441.json index 3733c0509..a03a5e98f 100644 --- a/src/test/resources/alma-fix/99370738710506441.json +++ b/src/test/resources/alma-fix/99370738710506441.json @@ -168,6 +168,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53325094210006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991026176221006448", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -179,6 +180,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53364332140006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927945109206470", + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -201,6 +203,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53632399120006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044852279606449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370746459806441.json b/src/test/resources/alma-fix/99370746459806441.json index 0136853eb..10cbd4c07 100644 --- a/src/test/resources/alma-fix/99370746459806441.json +++ b/src/test/resources/alma-fix/99370746459806441.json @@ -132,6 +132,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53268579950006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991025971963706448", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -143,6 +144,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53345300320006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927882174306470", + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -165,6 +167,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53453590350006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99207421662506446", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", diff --git a/src/test/resources/alma-fix/99370763433806441.json b/src/test/resources/alma-fix/99370763433806441.json index 86e4c1165..f02750ed1 100644 --- a/src/test/resources/alma-fix/99370763433806441.json +++ b/src/test/resources/alma-fix/99370763433806441.json @@ -120,6 +120,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53319899750006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927798168806470", + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -153,6 +154,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53659205700006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044860106206449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -164,6 +166,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53648029900006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044860106206449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -175,6 +178,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53642731060006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044860106206449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370763882706441.json b/src/test/resources/alma-fix/99370763882706441.json index c97042dd6..09b0c70b2 100644 --- a/src/test/resources/alma-fix/99370763882706441.json +++ b/src/test/resources/alma-fix/99370763882706441.json @@ -119,6 +119,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53326750220006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927820610606470", + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -141,6 +142,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53448710470006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206804974006446", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -152,6 +154,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53643672020006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044873991306449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -163,6 +166,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53664134410006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044873991306449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370771475306441.json b/src/test/resources/alma-fix/99370771475306441.json index 6f34d7247..2c8311209 100644 --- a/src/test/resources/alma-fix/99370771475306441.json +++ b/src/test/resources/alma-fix/99370771475306441.json @@ -319,6 +319,7 @@ "id" : "http://lobid.org/organisations/DE-Bo404#!", "label" : "Deutsches Referenzzentrum für Ethik in den Biowissenschaften, Bibliothek/Dokumentation" }, + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT020919504" ], "id" : "http://lobid.org/items/99370771475306441:DE-Bo404:23299338990006467#!" }, { "label" : "lobid Bestandsressource", @@ -345,6 +346,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/99370771475306441:DE-465:23448803450006446#!" }, { "label" : "lobid Bestandsressource", @@ -358,6 +360,7 @@ "id" : "http://lobid.org/organisations/DE-6-164#!", "label" : "Universität Münster, Institut für Ethik, Geschichte und Theorie der Medizin, Bibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/99370771475306441:DE-6-164:23545591700006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/99370782520706441.json b/src/test/resources/alma-fix/99370782520706441.json index 74bb1f076..06675d09d 100644 --- a/src/test/resources/alma-fix/99370782520706441.json +++ b/src/test/resources/alma-fix/99370782520706441.json @@ -307,6 +307,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957880006448#!" }, { "label" : "lobid Bestandsressource", @@ -320,6 +321,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957810006448#!" }, { "label" : "lobid Bestandsressource", @@ -333,6 +335,7 @@ "id" : "http://lobid.org/organisations/DE-82-202#!", "label" : "Kooperierende Bibliothek der Lehrstühle für Planungstheorie und Stadtentwicklung, für Städtebau und Landesplanung, für Wohnbau und Grundlagen des Entwerfens, für CAAD, für Individualisierte Bauproduktion, für Immobilienprojektentwicklung, Gemeinsame Bibliothek" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-82-202:23218957790006448#!" }, { "label" : "lobid Bestandsressource", @@ -346,6 +349,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957850006448#!" }, { "label" : "lobid Bestandsressource", @@ -359,6 +363,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957840006448#!" }, { "label" : "lobid Bestandsressource", @@ -372,6 +377,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957830006448#!" }, { "label" : "lobid Bestandsressource", @@ -385,6 +391,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957870006448#!" }, { "label" : "lobid Bestandsressource", @@ -538,6 +545,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT020936481" ], "id" : "http://lobid.org/items/99370782520706441:DE-290:23212938760006445#!" }, { "label" : "lobid Bestandsressource", @@ -564,6 +572,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-465:23448939910006446#!" }, { "label" : "lobid Bestandsressource", @@ -577,6 +586,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-465:23448939860006446#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/99371050452706441.json b/src/test/resources/alma-fix/99371050452706441.json index 94011c557..37b980aea 100644 --- a/src/test/resources/alma-fix/99371050452706441.json +++ b/src/test/resources/alma-fix/99371050452706441.json @@ -225,6 +225,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021137663&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/99371050452706441:DE-6:23596739030006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99371107766906441.json b/src/test/resources/alma-fix/99371107766906441.json index 0ff1f5ddb..118ebac00 100644 --- a/src/test/resources/alma-fix/99371107766906441.json +++ b/src/test/resources/alma-fix/99371107766906441.json @@ -108,6 +108,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53215099760006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013521007106445", + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -141,6 +142,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627314570006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044836260306449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99371123630706441.json b/src/test/resources/alma-fix/99371123630706441.json index 0043cce6f..30e099472 100644 --- a/src/test/resources/alma-fix/99371123630706441.json +++ b/src/test/resources/alma-fix/99371123630706441.json @@ -232,6 +232,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=5368181550006452&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=991005719114506452", + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -254,6 +255,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53330118430006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927831944606470", + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -265,6 +267,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53334619910006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045222644506467", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -276,6 +279,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53343755270006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045222644506467", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -287,6 +291,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53358090820006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045222644506467", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/99371147104906441.json b/src/test/resources/alma-fix/99371147104906441.json index 54310067d..31d02700d 100644 --- a/src/test/resources/alma-fix/99371147104906441.json +++ b/src/test/resources/alma-fix/99371147104906441.json @@ -168,7 +168,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=5355783850006452&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=991005705885506452", - "seeAlso" : [ "https://bib-sisis.bib.hochschule-bonn-rhein-sieg.de/webOPACClient/start.do?Query=0543=%2227836207%22" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -180,7 +180,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53220694770006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013572431006445", - "seeAlso" : [ "https://www.ub.tu-dortmund.de/webOPACClient/start.do?Query=0543=%2227836207%22" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -192,6 +192,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53360282040006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -203,6 +204,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53346765620006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -214,6 +216,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53348545120006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -248,6 +251,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53652173090006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044919564006449", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99371314897806441.json b/src/test/resources/alma-fix/99371314897806441.json index e57f51943..a866ab577 100644 --- a/src/test/resources/alma-fix/99371314897806441.json +++ b/src/test/resources/alma-fix/99371314897806441.json @@ -146,6 +146,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT021352855" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -157,6 +158,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT021352855" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -168,6 +170,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021352855&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -274,6 +277,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT021352855" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -296,6 +300,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT021352855&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -331,6 +336,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT021352855" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -387,6 +393,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT021352855" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", diff --git a/src/test/resources/alma-fix/99371447897606441.json b/src/test/resources/alma-fix/99371447897606441.json index 1cbc19cc6..fa32e6e17 100644 --- a/src/test/resources/alma-fix/99371447897606441.json +++ b/src/test/resources/alma-fix/99371447897606441.json @@ -153,6 +153,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=5353633400006452&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=991005696549806452", + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -164,6 +165,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53322423530006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927806347606470", + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", diff --git a/src/test/resources/alma-fix/99371791018506441.json b/src/test/resources/alma-fix/99371791018506441.json index de9553f93..e2ae6e26d 100644 --- a/src/test/resources/alma-fix/99371791018506441.json +++ b/src/test/resources/alma-fix/99371791018506441.json @@ -150,6 +150,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT021613847" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -161,6 +162,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT021613847" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -184,6 +186,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT021613847" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -230,6 +233,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021613847&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -287,6 +291,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT021613847" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -298,6 +303,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT021613847" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -309,6 +315,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT021613847&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -332,6 +339,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT021613847" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma/maps/isil2opac_almaMmsId.tsv b/src/test/resources/alma/maps/isil2opac_almaMmsId.tsv new file mode 100644 index 000000000..c5f43e90d --- /dev/null +++ b/src/test/resources/alma/maps/isil2opac_almaMmsId.tsv @@ -0,0 +1,73 @@ +DE-1044 https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma{almaMmsId} +DE-290 https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:{almaMmsId} +DE-385 https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma{almaMmsId} +DE-386 https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma{almaMmsId} +DE-465 https://primo.uni-due.de/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0 +DE-5 https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma{almaMmsId} +DE-6 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-005 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-006 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-007 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-011 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-015 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-016 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-017 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-020 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-022 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-023 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-026 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-037 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-049 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-050 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-052 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-056 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-057 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-058 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-069 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-097 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-115 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-119 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-123 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-125 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-136 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-139a https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-139b https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-152 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-153 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-154 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-156 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-163 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-164 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-177 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-182 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-190 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-191 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-192 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-193 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-194 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-210 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-246 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-248 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-255 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-258 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-259 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-276 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-282 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-286 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-293 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-295 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-298 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-311 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-318 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-325 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-326 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-328 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-334 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-336 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-338 https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-A https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-M https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-N https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-6-Z https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,{almaMmsId}&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0 +DE-82 https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma{almaMmsId} +DE-Kn41 https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=alma{almaMmsId} \ No newline at end of file From 3e4ea8124a0c7989928eaabae7fd2a8702c1c37e Mon Sep 17 00:00:00 2001 From: TobiasNx Date: Thu, 28 Sep 2023 16:22:40 +0200 Subject: [PATCH 22/23] Fix almaMmsId Opac Link #1888 --- src/main/resources/alma/fix/macros.fix | 2 +- .../alma-fix/990001412590206441.json | 6 +-- .../alma-fix/990011470300206441.json | 6 +-- .../alma-fix/990014830510206441.json | 8 ++-- .../alma-fix/990016782920206441.json | 2 +- .../alma-fix/990021367710206441.json | 8 ++-- .../alma-fix/990021974470206441.json | 6 +-- .../alma-fix/990026405480206441.json | 2 +- .../alma-fix/990030574430206441.json | 4 +- .../alma-fix/990035016180206441.json | 10 ++--- .../alma-fix/990041403870206441.json | 2 +- .../alma-fix/990050000600206441.json | 18 ++++----- .../alma-fix/990052965140206441.json | 12 +++--- .../alma-fix/990053976760206441.json | 14 +++---- .../alma-fix/990054301770206441.json | 2 +- .../alma-fix/990054345550206441.json | 4 +- .../alma-fix/990055981810206441.json | 10 ++--- .../alma-fix/990058434730206441.json | 26 ++++++------ .../alma-fix/990058567920206441.json | 40 +++++++++---------- .../alma-fix/990059571560206441.json | 4 +- .../alma-fix/990063549080206441.json | 4 +- .../alma-fix/990065341720206441.json | 2 +- .../alma-fix/990075429930206441.json | 14 +++---- .../alma-fix/990075538650206441.json | 2 +- .../alma-fix/990109712970206441.json | 4 +- .../alma-fix/990114098170206441.json | 2 +- .../alma-fix/990118562160206441.json | 2 +- .../alma-fix/990126276700206441.json | 6 +-- .../alma-fix/990133067580206441.json | 2 +- .../alma-fix/990143325070206441.json | 4 +- .../alma-fix/990156027740206441.json | 2 +- .../alma-fix/990156060190206441.json | 30 +++++++------- .../alma-fix/990167595410206441.json | 2 +- .../alma-fix/990171142550206441.json | 6 +-- .../alma-fix/990173811970206441.json | 4 +- .../alma-fix/990181275760206441.json | 14 +++---- .../alma-fix/990183054020206441.json | 2 +- .../alma-fix/990183958380206441.json | 4 +- .../alma-fix/990184127410206441.json | 2 +- .../alma-fix/990185607520206441.json | 2 +- .../alma-fix/990185619180206441.json | 2 +- .../alma-fix/990189160110206441.json | 20 +++++----- .../alma-fix/990193094010206441.json | 2 +- .../alma-fix/990193229450206441.json | 4 +- .../alma-fix/990193806600206441.json | 2 +- .../alma-fix/990197067610206441.json | 6 +-- .../alma-fix/990197293880206441.json | 10 ++--- .../alma-fix/990199611280206441.json | 2 +- .../alma-fix/990202474680206441.json | 2 +- .../alma-fix/990204246530206441.json | 4 +- .../alma-fix/990207668220206441.json | 2 +- .../alma-fix/990209817770206441.json | 2 +- .../alma-fix/990210093550206441.json | 8 ++-- .../alma-fix/990213367870206441.json | 2 +- .../alma-fix/990217478660206441.json | 6 +-- .../alma-fix/990218189790206441.json | 2 +- .../alma-fix/990220027540206441.json | 2 +- .../alma-fix/990223521400206441.json | 32 +++++++-------- .../alma-fix/990225056670206441.json | 2 +- .../alma-fix/990363946050206441.json | 6 +-- .../alma-fix/990365842280206441.json | 8 ++-- .../alma-fix/990366394400206441.json | 2 +- .../alma-fix/990368743120206441.json | 2 +- .../resources/alma-fix/99370678063606441.json | 34 ++++++++-------- .../resources/alma-fix/99370682219806441.json | 8 ++-- .../resources/alma-fix/99370690532406441.json | 8 ++-- .../resources/alma-fix/99370694196806441.json | 8 ++-- .../resources/alma-fix/99370699582506441.json | 6 +-- .../resources/alma-fix/99370738710506441.json | 6 +-- .../resources/alma-fix/99370746459806441.json | 6 +-- .../resources/alma-fix/99370763433806441.json | 8 ++-- .../resources/alma-fix/99370763882706441.json | 8 ++-- .../resources/alma-fix/99370771475306441.json | 6 +-- .../resources/alma-fix/99370782520706441.json | 20 +++++----- .../resources/alma-fix/99371050452706441.json | 2 +- .../resources/alma-fix/99371107766906441.json | 4 +- .../resources/alma-fix/99371123630706441.json | 10 ++--- .../resources/alma-fix/99371147104906441.json | 12 +++--- .../resources/alma-fix/99371314897806441.json | 14 +++---- .../resources/alma-fix/99371447897606441.json | 4 +- .../resources/alma-fix/99371791018506441.json | 16 ++++---- 81 files changed, 303 insertions(+), 303 deletions(-) diff --git a/src/main/resources/alma/fix/macros.fix b/src/main/resources/alma/fix/macros.fix index 7c3b6cfc9..4f5a76c1c 100644 --- a/src/main/resources/alma/fix/macros.fix +++ b/src/main/resources/alma/fix/macros.fix @@ -283,7 +283,7 @@ do put_macro("opacLink") elsif exists("$i.@opacLinkHbzId.1") paste("hasItem[].$last.seeAlso[].$append","$i.@opacLinkHbzId.1","hbzId","$i.@opacLinkHbzId.2",join_char:"") elsif exists("$i.@opacAlmaMmsId.1") - paste("hasItem[].$last.seeAlso[].$append","$i.@opacAlmaMmsId.1","hbzId","$i.@opacAlmaMmsId.2",join_char:"") + paste("hasItem[].$last.seeAlso[].$append","$i.@opacAlmaMmsId.1","almaMmsId","$i.@opacAlmaMmsId.2",join_char:"") elsif exists("$i.@opacLinkIsbn.1") paste("hasItem[].$last.seeAlso[].$append","$i.@opacLinkIsbn.1","isbn[].1","$i.@opacLinkIsbn.2",join_char:"") elsif exists("$i.@opacLinkIssn.1") diff --git a/src/test/resources/alma-fix/990001412590206441.json b/src/test/resources/alma-fix/990001412590206441.json index cccae3f29..e5935d721 100644 --- a/src/test/resources/alma-fix/990001412590206441.json +++ b/src/test/resources/alma-fix/990001412590206441.json @@ -202,7 +202,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT000161712" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990001412590206441" ], "id" : "http://lobid.org/items/990001412590206441:DE-290:23197423230006445#!" }, { "label" : "lobid Bestandsressource", @@ -216,7 +216,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000161712" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990001412590206441" ], "id" : "http://lobid.org/items/990001412590206441:DE-5:23231651750006467#!" }, { "label" : "lobid Bestandsressource", @@ -271,7 +271,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000161712&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990001412590206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990001412590206441:DE-6:23507162560006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990011470300206441.json b/src/test/resources/alma-fix/990011470300206441.json index dc8a01e5b..b40967f57 100644 --- a/src/test/resources/alma-fix/990011470300206441.json +++ b/src/test/resources/alma-fix/990011470300206441.json @@ -101,7 +101,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT003109553" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990011470300206441" ], "id" : "http://lobid.org/items/990011470300206441:DE-385:23264500340006470#!" }, { "label" : "lobid Bestandsressource", @@ -115,7 +115,7 @@ "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003109553&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990011470300206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990011470300206441:DE-6-015:23600509680006449#!" }, { "label" : "lobid Bestandsressource", @@ -127,7 +127,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT003109553" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990011470300206441" ], "id" : "http://lobid.org/items/990011470300206441:DE-385:22264500330006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990014830510206441.json b/src/test/resources/alma-fix/990014830510206441.json index f65886ae6..98ad5695d 100644 --- a/src/test/resources/alma-fix/990014830510206441.json +++ b/src/test/resources/alma-fix/990014830510206441.json @@ -104,7 +104,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT003864492" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990014830510206441" ], "id" : "http://lobid.org/items/990014830510206441:DE-385:23291734220006470#!" }, { "label" : "lobid Bestandsressource", @@ -118,7 +118,7 @@ "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT003864492" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990014830510206441" ], "id" : "http://lobid.org/items/990014830510206441:DE-5-58:23241836240006467#!" }, { "label" : "lobid Bestandsressource", @@ -132,7 +132,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT003864492&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990014830510206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990014830510206441:DE-465:23382608040006446#!" }, { "label" : "lobid Bestandsressource", @@ -144,7 +144,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT003864492" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990014830510206441" ], "id" : "http://lobid.org/items/990014830510206441:DE-385:22291734190006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990016782920206441.json b/src/test/resources/alma-fix/990016782920206441.json index 65edcb7f7..700da0300 100644 --- a/src/test/resources/alma-fix/990016782920206441.json +++ b/src/test/resources/alma-fix/990016782920206441.json @@ -135,7 +135,7 @@ "id" : "http://lobid.org/organisations/DE-6-286#!", "label" : "Universität Münster, Institut für Musikpädagogik, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004285445&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990016782920206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990016782920206441:DE-6-286:23506545980006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990021367710206441.json b/src/test/resources/alma-fix/990021367710206441.json index d4aa1b330..e5eebfafa 100644 --- a/src/test/resources/alma-fix/990021367710206441.json +++ b/src/test/resources/alma-fix/990021367710206441.json @@ -100,7 +100,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT005207972" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990021367710206441" ], "id" : "http://lobid.org/items/990021367710206441:DE-290:23198604440006445#!" }, { "label" : "lobid Bestandsressource", @@ -114,7 +114,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT005207972" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990021367710206441" ], "id" : "http://lobid.org/items/990021367710206441:DE-290:23198604460006445#!" }, { "label" : "lobid Bestandsressource", @@ -128,7 +128,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT005207972" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990021367710206441" ], "id" : "http://lobid.org/items/990021367710206441:DE-385:23252207750006470#!" }, { "label" : "lobid Bestandsressource", @@ -153,7 +153,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT005207972" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990021367710206441" ], "id" : "http://lobid.org/items/990021367710206441:DE-385:22252207740006470#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990021974470206441.json b/src/test/resources/alma-fix/990021974470206441.json index 432efbe50..13d3b2015 100644 --- a/src/test/resources/alma-fix/990021974470206441.json +++ b/src/test/resources/alma-fix/990021974470206441.json @@ -112,7 +112,7 @@ "id" : "http://lobid.org/organisations/DE-82-604#!", "label" : "Historisches Institut, Bibliothek" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT005271161" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990021974470206441" ], "id" : "http://lobid.org/items/990021974470206441:DE-82-604:23253806030006448#!" }, { "label" : "lobid Bestandsressource", @@ -126,7 +126,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT005271161" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990021974470206441" ], "id" : "http://lobid.org/items/990021974470206441:DE-385:23288625180006470#!" }, { "label" : "lobid Bestandsressource", @@ -194,7 +194,7 @@ "id" : "http://lobid.org/organisations/DE-6-016#!", "label" : "Universität Münster, Rechtswissenschaftliches Seminar, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT005271161&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990021974470206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990021974470206441:DE-6-016:23561372540006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990026405480206441.json b/src/test/resources/alma-fix/990026405480206441.json index 976965f5d..4a00c7302 100644 --- a/src/test/resources/alma-fix/990026405480206441.json +++ b/src/test/resources/alma-fix/990026405480206441.json @@ -102,7 +102,7 @@ "id" : "http://lobid.org/organisations/DE-Sie5#!", "label" : "Wissenschaftliche Bibliothek des Rhein-Sieg-Kreises" }, - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT006813395" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma990026405480206441" ], "id" : "http://lobid.org/items/990026405480206441:DE-Sie5:2365555310006452#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990030574430206441.json b/src/test/resources/alma-fix/990030574430206441.json index a7c89b0d6..fbc81ab82 100644 --- a/src/test/resources/alma-fix/990030574430206441.json +++ b/src/test/resources/alma-fix/990030574430206441.json @@ -77,7 +77,7 @@ "id" : "http://lobid.org/organisations/DE-5-13#!", "label" : "Universität Bonn, Institut für Germanistik, Vergleichende Literatur- und Kulturwissenschaft, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT007847893" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990030574430206441" ], "id" : "http://lobid.org/items/990030574430206441:DE-5-13:23308126210006467#!" }, { "label" : "lobid Bestandsressource", @@ -91,7 +91,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT007847893" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990030574430206441" ], "id" : "http://lobid.org/items/990030574430206441:DE-5:23308126230006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990035016180206441.json b/src/test/resources/alma-fix/990035016180206441.json index b01611f56..f014304fc 100644 --- a/src/test/resources/alma-fix/990035016180206441.json +++ b/src/test/resources/alma-fix/990035016180206441.json @@ -104,7 +104,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT008733617" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990035016180206441" ], "id" : "http://lobid.org/items/990035016180206441:DE-290:23200446830006445#!" }, { "label" : "lobid Bestandsressource", @@ -144,7 +144,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990035016180206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990035016180206441:DE-465:23372647300006446#!" }, { "label" : "lobid Bestandsressource", @@ -158,7 +158,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990035016180206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990035016180206441:DE-465:23372647280006446#!" }, { "label" : "lobid Bestandsressource", @@ -186,7 +186,7 @@ "id" : "http://lobid.org/organisations/DE-6-Z#!", "label" : "Universitäts- und Landesbibliothek Münster, Zeitungs- und Pressearchiv" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT008733617&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990035016180206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990035016180206441:DE-6-Z:23504836650006449#!" }, { "label" : "lobid Bestandsressource", @@ -231,7 +231,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT008733617" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990035016180206441" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", diff --git a/src/test/resources/alma-fix/990041403870206441.json b/src/test/resources/alma-fix/990041403870206441.json index e6c27cbc0..0829e7272 100644 --- a/src/test/resources/alma-fix/990041403870206441.json +++ b/src/test/resources/alma-fix/990041403870206441.json @@ -75,7 +75,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT009965981" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990041403870206441" ], "id" : "http://lobid.org/items/990041403870206441:DE-5:23218652060006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990050000600206441.json b/src/test/resources/alma-fix/990050000600206441.json index cdec66604..926f1c6ea 100644 --- a/src/test/resources/alma-fix/990050000600206441.json +++ b/src/test/resources/alma-fix/990050000600206441.json @@ -213,7 +213,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT006855611" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma990050000600206441" ], "id" : "http://lobid.org/items/990050000600206441:DE-386:2265786120007476#!" }, { "label" : "lobid Bestandsressource", @@ -226,7 +226,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT006855611" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma990050000600206441" ], "id" : "http://lobid.org/items/990050000600206441:DE-386:2265786090007476#!" }, { "label" : "lobid Bestandsressource", @@ -239,7 +239,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990050000600206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990050000600206441:DE-465:22369588590006446#!" }, { "label" : "lobid Bestandsressource", @@ -252,7 +252,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990050000600206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990050000600206441:DE-465:22369588600006446#!" }, { "label" : "lobid Bestandsressource", @@ -334,7 +334,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT006855611" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma990050000600206441" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -393,7 +393,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT006855611" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990050000600206441" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -413,7 +413,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT006855611" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990050000600206441" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -423,7 +423,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT006855611" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990050000600206441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -461,7 +461,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT006855611&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990050000600206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990052965140206441.json b/src/test/resources/alma-fix/990052965140206441.json index 91a64dab3..8a285e792 100644 --- a/src/test/resources/alma-fix/990052965140206441.json +++ b/src/test/resources/alma-fix/990052965140206441.json @@ -146,7 +146,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT002529477" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990052965140206441" ], "id" : "http://lobid.org/items/990052965140206441:DE-385:22279005870006470#!" }, { "label" : "lobid Bestandsressource", @@ -170,7 +170,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT002529477" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma990052965140206441" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -180,7 +180,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT002529477" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990052965140206441" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -190,7 +190,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT002529477" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990052965140206441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -200,7 +200,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT002529477&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990052965140206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -230,7 +230,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT002529477&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990052965140206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990053976760206441.json b/src/test/resources/alma-fix/990053976760206441.json index 9b4dfe64e..a0b425d87 100644 --- a/src/test/resources/alma-fix/990053976760206441.json +++ b/src/test/resources/alma-fix/990053976760206441.json @@ -226,7 +226,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990053976760206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990053976760206441:DE-465:23409593810006446#!" }, { "label" : "lobid Bestandsressource", @@ -349,7 +349,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT000312236" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma990053976760206441" ], "id" : "http://lobid.org/items/990053976760206441:DE-386:2266381760007476#!" }, { "label" : "lobid Bestandsressource", @@ -362,7 +362,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT000312236" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma990053976760206441" ], "id" : "http://lobid.org/items/990053976760206441:DE-386:2266381820007476#!" }, { "label" : "lobid Bestandsressource", @@ -388,7 +388,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT000312236" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990053976760206441" ], "id" : "http://lobid.org/items/990053976760206441:DE-82:22222365420006448#!" }, { "label" : "lobid Bestandsressource", @@ -465,7 +465,7 @@ "id" : "http://lobid.org/organisations/DE-6-023#!", "label" : "Universität Münster, Bibliothek des Fachbereichs Physik" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990053976760206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990053976760206441:DE-6-023:22526741320006449#!" }, { "label" : "lobid Bestandsressource", @@ -478,7 +478,7 @@ "id" : "http://lobid.org/organisations/DE-6-123#!", "label" : "Universität Münster, Bibliothek für Erziehungswissenschaft und Kommunikationswissenschaft" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990053976760206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990053976760206441:DE-6-123:22526741310006449#!" }, { "label" : "lobid Bestandsressource", @@ -491,7 +491,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000312236&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990053976760206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990053976760206441:DE-6:22526741340006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990054301770206441.json b/src/test/resources/alma-fix/990054301770206441.json index 57154d9fe..cf5c8b30f 100644 --- a/src/test/resources/alma-fix/990054301770206441.json +++ b/src/test/resources/alma-fix/990054301770206441.json @@ -247,7 +247,7 @@ "id" : "http://lobid.org/organisations/DE-6-139a#!", "label" : "Kommission Alltagskulturforschung für Westfalen (KAF), Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003176544&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990054301770206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990054301770206441:DE-6-139a:22577982090006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990054345550206441.json b/src/test/resources/alma-fix/990054345550206441.json index b43ead6bd..bb66b4f72 100644 --- a/src/test/resources/alma-fix/990054345550206441.json +++ b/src/test/resources/alma-fix/990054345550206441.json @@ -234,7 +234,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT003497718" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990054345550206441" ], "id" : "http://lobid.org/items/990054345550206441:DE-82:23312187860006448#!" }, { "label" : "lobid Bestandsressource", @@ -632,7 +632,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT003497718" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990054345550206441" ], "id" : "http://lobid.org/items/990054345550206441:DE-82:22246727820006448#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990055981810206441.json b/src/test/resources/alma-fix/990055981810206441.json index 8a68d94b5..8d0d2a74c 100644 --- a/src/test/resources/alma-fix/990055981810206441.json +++ b/src/test/resources/alma-fix/990055981810206441.json @@ -284,7 +284,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990055981810206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:23651985810006449#!" }, { "label" : "lobid Bestandsressource", @@ -298,7 +298,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990055981810206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:23650616280006449#!" }, { "label" : "lobid Bestandsressource", @@ -312,7 +312,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990055981810206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:23650616270006449#!" }, { "label" : "lobid Bestandsressource", @@ -363,7 +363,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990055981810206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:22547318240006449#!" }, { "label" : "lobid Bestandsressource", @@ -376,7 +376,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT007048176&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990055981810206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990055981810206441:DE-6:22547318250006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990058434730206441.json b/src/test/resources/alma-fix/990058434730206441.json index dccc83ae2..4e79bfea7 100644 --- a/src/test/resources/alma-fix/990058434730206441.json +++ b/src/test/resources/alma-fix/990058434730206441.json @@ -173,7 +173,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT000893437" ], + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=alma990058434730206441" ], "id" : "http://lobid.org/items/990058434730206441:DE-Kn41:2317181430006478#!" }, { "label" : "lobid Bestandsressource", @@ -253,7 +253,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000893437" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990058434730206441" ], "id" : "http://lobid.org/items/990058434730206441:DE-385:23283899660006470#!" }, { "label" : "lobid Bestandsressource", @@ -267,7 +267,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000893437" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990058434730206441" ], "id" : "http://lobid.org/items/990058434730206441:DE-385:23283899620006470#!" }, { "label" : "lobid Bestandsressource", @@ -281,7 +281,7 @@ "id" : "http://lobid.org/organisations/DE-5-74#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Abteilung Alte Geschichte, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000893437" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990058434730206441" ], "id" : "http://lobid.org/items/990058434730206441:DE-5-74:23287792620006467#!" }, { "label" : "lobid Bestandsressource", @@ -295,7 +295,7 @@ "id" : "http://lobid.org/organisations/DE-5-108#!", "label" : "Universität Bonn, Fachbibliothek der Evangelischen und Katholischen Theologie" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000893437" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990058434730206441" ], "id" : "http://lobid.org/items/990058434730206441:DE-5-108:23287792640006467#!" }, { "label" : "lobid Bestandsressource", @@ -309,7 +309,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000893437" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990058434730206441" ], "id" : "http://lobid.org/items/990058434730206441:DE-5:23287792660006467#!" }, { "label" : "lobid Bestandsressource", @@ -375,7 +375,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990058434730206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-465:23378107640006446#!" }, { "label" : "lobid Bestandsressource", @@ -459,7 +459,7 @@ "id" : "http://lobid.org/organisations/DE-6-119#!", "label" : "Universität Münster, Institutum Judaicum Delitzschianum, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990058434730206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-119:23602951480006449#!" }, { "label" : "lobid Bestandsressource", @@ -473,7 +473,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990058434730206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6:23602951640006449#!" }, { "label" : "lobid Bestandsressource", @@ -487,7 +487,7 @@ "id" : "http://lobid.org/organisations/DE-6-006#!", "label" : "Universität Münster, Evangelisch-Theologische Fakultät, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990058434730206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-006:23602951510006449#!" }, { "label" : "lobid Bestandsressource", @@ -501,7 +501,7 @@ "id" : "http://lobid.org/organisations/DE-6-011#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abteilung Johannisstr." }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990058434730206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-011:23602951550006449#!" }, { "label" : "lobid Bestandsressource", @@ -515,7 +515,7 @@ "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000893437&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990058434730206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058434730206441:DE-6-248:23602951590006449#!" }, { "label" : "lobid Bestandsressource", @@ -610,7 +610,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000893437" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990058434730206441" ], "id" : "http://lobid.org/items/990058434730206441:DE-385:22283899610006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990058567920206441.json b/src/test/resources/alma-fix/990058567920206441.json index 3ef86e894..8c5890882 100644 --- a/src/test/resources/alma-fix/990058567920206441.json +++ b/src/test/resources/alma-fix/990058567920206441.json @@ -213,7 +213,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT000909138" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma990058567920206441" ], "id" : "http://lobid.org/items/990058567920206441:DE-386:2386676830007476#!" }, { "label" : "lobid Bestandsressource", @@ -227,7 +227,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT000909138" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma990058567920206441" ], "id" : "http://lobid.org/items/990058567920206441:DE-386:2386676840007476#!" }, { "label" : "lobid Bestandsressource", @@ -255,7 +255,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT000909138" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990058567920206441" ], "id" : "http://lobid.org/items/990058567920206441:DE-82:23253024690006448#!" }, { "label" : "lobid Bestandsressource", @@ -310,7 +310,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT000909138" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990058567920206441" ], "id" : "http://lobid.org/items/990058567920206441:DE-290:23201690680006445#!" }, { "label" : "lobid Bestandsressource", @@ -324,7 +324,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT000909138" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990058567920206441" ], "id" : "http://lobid.org/items/990058567920206441:DE-290:23201690660006445#!" }, { "label" : "lobid Bestandsressource", @@ -338,7 +338,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000909138" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990058567920206441" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221800006470#!" }, { "label" : "lobid Bestandsressource", @@ -352,7 +352,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000909138" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990058567920206441" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221820006470#!" }, { "label" : "lobid Bestandsressource", @@ -366,7 +366,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000909138" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990058567920206441" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:23256221780006470#!" }, { "label" : "lobid Bestandsressource", @@ -380,7 +380,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000909138" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990058567920206441" ], "id" : "http://lobid.org/items/990058567920206441:DE-5:23263182640006467#!" }, { "label" : "lobid Bestandsressource", @@ -394,7 +394,7 @@ "id" : "http://lobid.org/organisations/DE-5-162#!", "label" : "Universität Bonn, Institut für Politische Wissenschaft und Soziologie, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000909138" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990058567920206441" ], "id" : "http://lobid.org/items/990058567920206441:DE-5-162:23263182590006467#!" }, { "label" : "lobid Bestandsressource", @@ -512,7 +512,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990058567920206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-465:23421400070006446#!" }, { "label" : "lobid Bestandsressource", @@ -526,7 +526,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990058567920206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-465:23421400050006446#!" }, { "label" : "lobid Bestandsressource", @@ -610,7 +610,7 @@ "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990058567920206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-248:23599273300006449#!" }, { "label" : "lobid Bestandsressource", @@ -624,7 +624,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990058567920206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6:23599273340006449#!" }, { "label" : "lobid Bestandsressource", @@ -638,7 +638,7 @@ "id" : "http://lobid.org/organisations/DE-6-A#!", "label" : "Universitäts- und Landesbibliothek Münster, Zweigbibliothek Sozialwissenschaften" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990058567920206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-A:23599273320006449#!" }, { "label" : "lobid Bestandsressource", @@ -652,7 +652,7 @@ "id" : "http://lobid.org/organisations/DE-6-069#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholischen-Theologischen Fakultät, Abteilung Hüfferstr." }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990058567920206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-069:23599273180006449#!" }, { "label" : "lobid Bestandsressource", @@ -666,7 +666,7 @@ "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990058567920206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-015:23599273260006449#!" }, { "label" : "lobid Bestandsressource", @@ -680,7 +680,7 @@ "id" : "http://lobid.org/organisations/DE-6-011#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholisch-Theologischen Fakultät, Abteilung Johannisstr." }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990058567920206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-011:23599273210006449#!" }, { "label" : "lobid Bestandsressource", @@ -694,7 +694,7 @@ "id" : "http://lobid.org/organisations/DE-6-248#!", "label" : "Universität Münster, Bibliotheken im Fürstenberghaus" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000909138&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990058567920206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990058567920206441:DE-6-248:23599273280006449#!" }, { "label" : "lobid Bestandsressource", @@ -746,7 +746,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000909138" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990058567920206441" ], "id" : "http://lobid.org/items/990058567920206441:DE-385:22256221770006470#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990059571560206441.json b/src/test/resources/alma-fix/990059571560206441.json index e3d273508..4d46dbc1f 100644 --- a/src/test/resources/alma-fix/990059571560206441.json +++ b/src/test/resources/alma-fix/990059571560206441.json @@ -137,7 +137,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT001039253" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990059571560206441" ], "id" : "http://lobid.org/items/990059571560206441:DE-82:23246474340006448#!" }, { "label" : "lobid Bestandsressource", @@ -165,7 +165,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT001039253" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990059571560206441" ], "id" : "http://lobid.org/items/990059571560206441:DE-5:23257517760006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990063549080206441.json b/src/test/resources/alma-fix/990063549080206441.json index 89d24d359..37f9162bf 100644 --- a/src/test/resources/alma-fix/990063549080206441.json +++ b/src/test/resources/alma-fix/990063549080206441.json @@ -153,7 +153,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT003538502" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma990063549080206441" ], "id" : "http://lobid.org/items/990063549080206441:DE-386:2380642040007476#!" }, { "label" : "lobid Bestandsressource", @@ -198,7 +198,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT003538502&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990063549080206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990065341720206441.json b/src/test/resources/alma-fix/990065341720206441.json index 536e53d8a..8b733a50c 100644 --- a/src/test/resources/alma-fix/990065341720206441.json +++ b/src/test/resources/alma-fix/990065341720206441.json @@ -94,7 +94,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT004764408&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990065341720206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990065341720206441:DE-6:23553702130006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990075429930206441.json b/src/test/resources/alma-fix/990075429930206441.json index 8c3a2248c..3b6f75981 100644 --- a/src/test/resources/alma-fix/990075429930206441.json +++ b/src/test/resources/alma-fix/990075429930206441.json @@ -143,7 +143,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000944190" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990075429930206441" ], "id" : "http://lobid.org/items/990075429930206441:DE-385:23280215020006470#!" }, { "label" : "lobid Bestandsressource", @@ -157,7 +157,7 @@ "id" : "http://lobid.org/organisations/DE-5-108#!", "label" : "Universität Bonn, Fachbibliothek der Evangelischen und Katholischen Theologie" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000944190" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990075429930206441" ], "id" : "http://lobid.org/items/990075429930206441:DE-5-108:23276729420006467#!" }, { "label" : "lobid Bestandsressource", @@ -171,7 +171,7 @@ "id" : "http://lobid.org/organisations/DE-5-20#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT000944190" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990075429930206441" ], "id" : "http://lobid.org/items/990075429930206441:DE-5-20:23276729400006467#!" }, { "label" : "lobid Bestandsressource", @@ -265,7 +265,7 @@ "id" : "http://lobid.org/organisations/DE-6-020#!", "label" : "Universität Münster, Englisches Seminar, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990075429930206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-6-020:23595716610006449#!" }, { "label" : "lobid Bestandsressource", @@ -279,7 +279,7 @@ "id" : "http://lobid.org/organisations/DE-6-246#!", "label" : "Universität Münster, Germanistisches Institut, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990075429930206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-6-246:23595716590006449#!" }, { "label" : "lobid Bestandsressource", @@ -293,7 +293,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT000944190&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990075429930206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990075429930206441:DE-6:23595716630006449#!" }, { "label" : "lobid Bestandsressource", @@ -316,7 +316,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT000944190" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990075429930206441" ], "id" : "http://lobid.org/items/990075429930206441:DE-385:22280215010006470#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990075538650206441.json b/src/test/resources/alma-fix/990075538650206441.json index c7c977f6d..93fb525ef 100644 --- a/src/test/resources/alma-fix/990075538650206441.json +++ b/src/test/resources/alma-fix/990075538650206441.json @@ -138,7 +138,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT003184116" ], + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=alma990075538650206441" ], "id" : "http://lobid.org/items/990075538650206441:DE-Kn41:2325727750006478#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990109712970206441.json b/src/test/resources/alma-fix/990109712970206441.json index f0c4b1884..9e8c7090e 100644 --- a/src/test/resources/alma-fix/990109712970206441.json +++ b/src/test/resources/alma-fix/990109712970206441.json @@ -566,7 +566,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT012819873&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990109712970206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990109712970206441:DE-6:23653461490006449#!" }, { "label" : "lobid Bestandsressource", @@ -580,7 +580,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT012819873&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990109712970206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990109712970206441:DE-6:23653461500006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990114098170206441.json b/src/test/resources/alma-fix/990114098170206441.json index 3905690b6..6e1d67cc1 100644 --- a/src/test/resources/alma-fix/990114098170206441.json +++ b/src/test/resources/alma-fix/990114098170206441.json @@ -148,7 +148,7 @@ "id" : "http://lobid.org/organisations/DE-6-069#!", "label" : "Universität Münster, Gemeinschaftsbibliothek der Katholischen-Theologischen Fakultät, Abteilung Hüfferstr." }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT013083243&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990114098170206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990114098170206441:DE-6-069:23507172540006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990118562160206441.json b/src/test/resources/alma-fix/990118562160206441.json index 64cabbab7..a12855285 100644 --- a/src/test/resources/alma-fix/990118562160206441.json +++ b/src/test/resources/alma-fix/990118562160206441.json @@ -101,7 +101,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT013532539&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990118562160206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990118562160206441:DE-465:23420787060006446#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990126276700206441.json b/src/test/resources/alma-fix/990126276700206441.json index 52b2e70f7..7fe5b98bb 100644 --- a/src/test/resources/alma-fix/990126276700206441.json +++ b/src/test/resources/alma-fix/990126276700206441.json @@ -188,7 +188,7 @@ "id" : "http://lobid.org/organisations/DE-82-609#!", "label" : "Germanistisches Institut, Bibliothek" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT014015351" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990126276700206441" ], "id" : "http://lobid.org/items/990126276700206441:DE-82-609:23232408510006448#!" }, { "label" : "lobid Bestandsressource", @@ -202,7 +202,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT014015351" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990126276700206441" ], "id" : "http://lobid.org/items/990126276700206441:DE-5:23261735310006467#!" }, { "label" : "lobid Bestandsressource", @@ -284,7 +284,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014015351&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990126276700206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990126276700206441:DE-6:23535410630006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990133067580206441.json b/src/test/resources/alma-fix/990133067580206441.json index 9f1365db0..0c8e58fde 100644 --- a/src/test/resources/alma-fix/990133067580206441.json +++ b/src/test/resources/alma-fix/990133067580206441.json @@ -264,7 +264,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53804555180006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990133067580206441", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT014176012&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990133067580206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", diff --git a/src/test/resources/alma-fix/990143325070206441.json b/src/test/resources/alma-fix/990143325070206441.json index 8be90683b..17db6f097 100644 --- a/src/test/resources/alma-fix/990143325070206441.json +++ b/src/test/resources/alma-fix/990143325070206441.json @@ -169,7 +169,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT014601018" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990143325070206441" ], "id" : "http://lobid.org/items/990143325070206441:DE-5:23281591130006467#!" }, { "label" : "lobid Bestandsressource", @@ -183,7 +183,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT014601018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990143325070206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990143325070206441:DE-6:23564603190006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990156027740206441.json b/src/test/resources/alma-fix/990156027740206441.json index abb609b5a..c15290761 100644 --- a/src/test/resources/alma-fix/990156027740206441.json +++ b/src/test/resources/alma-fix/990156027740206441.json @@ -76,7 +76,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209607190006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991010117289706445", - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT015011399" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990156027740206441" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma-fix/990156060190206441.json b/src/test/resources/alma-fix/990156060190206441.json index 0bb121017..ab856670b 100644 --- a/src/test/resources/alma-fix/990156060190206441.json +++ b/src/test/resources/alma-fix/990156060190206441.json @@ -189,7 +189,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT015014677" ], + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=alma990156060190206441" ], "id" : "http://lobid.org/items/990156060190206441:DE-Kn41:2317986730006478#!" }, { "label" : "lobid Bestandsressource", @@ -244,7 +244,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT015014677" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma990156060190206441" ], "id" : "http://lobid.org/items/990156060190206441:DE-1044:2348092950006452#!" }, { "label" : "lobid Bestandsressource", @@ -258,7 +258,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT015014677" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma990156060190206441" ], "id" : "http://lobid.org/items/990156060190206441:DE-1044:2348092970006452#!" }, { "label" : "lobid Bestandsressource", @@ -354,7 +354,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT015014677" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma990156060190206441" ], "id" : "http://lobid.org/items/990156060190206441:DE-386:2374193680007476#!" }, { "label" : "lobid Bestandsressource", @@ -382,7 +382,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT015014677" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma990156060190206441" ], "id" : "http://lobid.org/items/990156060190206441:DE-386:2374193670007476#!" }, { "label" : "lobid Bestandsressource", @@ -396,7 +396,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT015014677" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990156060190206441" ], "id" : "http://lobid.org/items/990156060190206441:DE-82:23233208590006448#!" }, { "label" : "lobid Bestandsressource", @@ -452,7 +452,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT015014677" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990156060190206441" ], "id" : "http://lobid.org/items/990156060190206441:DE-290:23194328940006445#!" }, { "label" : "lobid Bestandsressource", @@ -466,7 +466,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT015014677" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990156060190206441" ], "id" : "http://lobid.org/items/990156060190206441:DE-385:23271771200006470#!" }, { "label" : "lobid Bestandsressource", @@ -480,7 +480,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT015014677" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990156060190206441" ], "id" : "http://lobid.org/items/990156060190206441:DE-5:23245806020006467#!" }, { "label" : "lobid Bestandsressource", @@ -546,7 +546,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990156060190206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-465:23390395420006446#!" }, { "label" : "lobid Bestandsressource", @@ -560,7 +560,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990156060190206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-465:23390395430006446#!" }, { "label" : "lobid Bestandsressource", @@ -630,7 +630,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990156060190206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-6:23510054190006449#!" }, { "label" : "lobid Bestandsressource", @@ -644,7 +644,7 @@ "id" : "http://lobid.org/organisations/DE-6-049#!", "label" : "Universität Münster, Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek für Psychologie" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990156060190206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-6-049:23510054150006449#!" }, { "label" : "lobid Bestandsressource", @@ -658,7 +658,7 @@ "id" : "http://lobid.org/organisations/DE-6-123#!", "label" : "Universität Münster, Bibliothek für Erziehungswissenschaft und Kommunikationswissenschaft" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015014677&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990156060190206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990156060190206441:DE-6-123:23510054170006449#!" }, { "label" : "lobid Bestandsressource", @@ -698,7 +698,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT015014677" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990156060190206441" ], "id" : "http://lobid.org/items/990156060190206441:DE-385:22271771190006470#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990167595410206441.json b/src/test/resources/alma-fix/990167595410206441.json index 115170ef1..15c976bed 100644 --- a/src/test/resources/alma-fix/990167595410206441.json +++ b/src/test/resources/alma-fix/990167595410206441.json @@ -92,7 +92,7 @@ "id" : "http://lobid.org/organisations/DE-6-015#!", "label" : "Universität Münster, Philosophisches Seminar, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,TT002494857&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990167595410206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990167595410206441:DE-6-015:23616315430006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990171142550206441.json b/src/test/resources/alma-fix/990171142550206441.json index 8b9dd9719..0a33920c5 100644 --- a/src/test/resources/alma-fix/990171142550206441.json +++ b/src/test/resources/alma-fix/990171142550206441.json @@ -150,7 +150,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT015671602" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990171142550206441" ], "id" : "http://lobid.org/items/990171142550206441:DE-290:23199326600006445#!" }, { "label" : "lobid Bestandsressource", @@ -164,7 +164,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT015671602" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990171142550206441" ], "id" : "http://lobid.org/items/990171142550206441:DE-385:23266502850006470#!" }, { "label" : "lobid Bestandsressource", @@ -203,7 +203,7 @@ "id" : "http://lobid.org/organisations/DE-385#!", "label" : "Universitätsbibliothek Trier" }, - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT015671602" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990171142550206441" ], "id" : "http://lobid.org/items/990171142550206441:DE-385:22266502840006470#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990173811970206441.json b/src/test/resources/alma-fix/990173811970206441.json index b93a52641..763ab6dbc 100644 --- a/src/test/resources/alma-fix/990173811970206441.json +++ b/src/test/resources/alma-fix/990173811970206441.json @@ -152,7 +152,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT015865114" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma990173811970206441" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -171,7 +171,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT015865114&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990173811970206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990181275760206441.json b/src/test/resources/alma-fix/990181275760206441.json index 6cc7c6979..eaf9a9ed1 100644 --- a/src/test/resources/alma-fix/990181275760206441.json +++ b/src/test/resources/alma-fix/990181275760206441.json @@ -180,7 +180,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT016433929" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990181275760206441" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914300006445#!" }, { "label" : "lobid Bestandsressource", @@ -194,7 +194,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT016433929" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990181275760206441" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914190006445#!" }, { "label" : "lobid Bestandsressource", @@ -208,7 +208,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT016433929" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990181275760206441" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914180006445#!" }, { "label" : "lobid Bestandsressource", @@ -222,7 +222,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT016433929" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990181275760206441" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914220006445#!" }, { "label" : "lobid Bestandsressource", @@ -236,7 +236,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT016433929" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990181275760206441" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914250006445#!" }, { "label" : "lobid Bestandsressource", @@ -250,7 +250,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT016433929" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990181275760206441" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914260006445#!" }, { "label" : "lobid Bestandsressource", @@ -264,7 +264,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT016433929" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990181275760206441" ], "id" : "http://lobid.org/items/990181275760206441:DE-290:23176914290006445#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990183054020206441.json b/src/test/resources/alma-fix/990183054020206441.json index 1fcd9d3f3..b5cc3f5e4 100644 --- a/src/test/resources/alma-fix/990183054020206441.json +++ b/src/test/resources/alma-fix/990183054020206441.json @@ -206,7 +206,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016604323&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990183054020206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990183054020206441:DE-6:22542862200006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990183958380206441.json b/src/test/resources/alma-fix/990183958380206441.json index 318214ef9..559a8424b 100644 --- a/src/test/resources/alma-fix/990183958380206441.json +++ b/src/test/resources/alma-fix/990183958380206441.json @@ -190,7 +190,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990183958380206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990183958380206441:DE-6:23619354250006449#!" }, { "label" : "lobid Bestandsressource", @@ -204,7 +204,7 @@ "id" : "http://lobid.org/organisations/DE-6-139a#!", "label" : "Kommission Alltagskulturforschung für Westfalen (KAF), Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016692738&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990183958380206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990183958380206441:DE-6-139a:23619354230006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990184127410206441.json b/src/test/resources/alma-fix/990184127410206441.json index 14930d383..378fe48e7 100644 --- a/src/test/resources/alma-fix/990184127410206441.json +++ b/src/test/resources/alma-fix/990184127410206441.json @@ -287,7 +287,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53804344220006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990184127410206441", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT016709661&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990184127410206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", diff --git a/src/test/resources/alma-fix/990185607520206441.json b/src/test/resources/alma-fix/990185607520206441.json index 7add41903..e646f8661 100644 --- a/src/test/resources/alma-fix/990185607520206441.json +++ b/src/test/resources/alma-fix/990185607520206441.json @@ -83,7 +83,7 @@ "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaTT003059252" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990185607520206441" ], "id" : "http://lobid.org/items/990185607520206441:DE-5-58:23213211150006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990185619180206441.json b/src/test/resources/alma-fix/990185619180206441.json index 71f76ca0d..06db8e384 100644 --- a/src/test/resources/alma-fix/990185619180206441.json +++ b/src/test/resources/alma-fix/990185619180206441.json @@ -92,7 +92,7 @@ "id" : "http://lobid.org/organisations/DE-5-58#!", "label" : "Universität Bonn, Institut für Sprach-, Medien- und Musikwissenschaft, Bibliothek für Medien- und Musikwissenschaft" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaTT003060418" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990185619180206441" ], "id" : "http://lobid.org/items/990185619180206441:DE-5-58:23233589480006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990189160110206441.json b/src/test/resources/alma-fix/990189160110206441.json index eb5666777..55039fcd4 100644 --- a/src/test/resources/alma-fix/990189160110206441.json +++ b/src/test/resources/alma-fix/990189160110206441.json @@ -197,7 +197,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT017015300" ], + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=alma990189160110206441" ], "id" : "http://lobid.org/items/990189160110206441:DE-Kn41:2325303250006478#!" }, { "label" : "lobid Bestandsressource", @@ -211,7 +211,7 @@ "id" : "http://lobid.org/organisations/DE-Kn41#!", "label" : "Zentralbibliothek der Sportwissenschaften der Deutschen Sporthochschule Köln" }, - "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT017015300" ], + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=alma990189160110206441" ], "id" : "http://lobid.org/items/990189160110206441:DE-Kn41:2325303270006478#!" }, { "label" : "lobid Bestandsressource", @@ -225,7 +225,7 @@ "id" : "http://lobid.org/organisations/DE-386#!", "label" : "Universitätsbibliothek der RPTU in Kaiserslautern" }, - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT017015300" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma990189160110206441" ], "id" : "http://lobid.org/items/990189160110206441:DE-386:2385580290007476#!" }, { "label" : "lobid Bestandsressource", @@ -239,7 +239,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT017015300" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990189160110206441" ], "id" : "http://lobid.org/items/990189160110206441:DE-290:23197228550006445#!" }, { "label" : "lobid Bestandsressource", @@ -253,7 +253,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT017015300" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990189160110206441" ], "id" : "http://lobid.org/items/990189160110206441:DE-5:23237586070006467#!" }, { "label" : "lobid Bestandsressource", @@ -267,7 +267,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990189160110206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-465:23423021800006446#!" }, { "label" : "lobid Bestandsressource", @@ -281,7 +281,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990189160110206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-465:23423021780006446#!" }, { "label" : "lobid Bestandsressource", @@ -337,7 +337,7 @@ "id" : "http://lobid.org/organisations/DE-6-058#!", "label" : "Universität Münster, Fachbereich 7, Psychologie und Sportwissenschaft, Bibliothek Sportwissenschaft" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990189160110206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-6-058:23527811750006449#!" }, { "label" : "lobid Bestandsressource", @@ -351,7 +351,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990189160110206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-6:23527811780006449#!" }, { "label" : "lobid Bestandsressource", @@ -365,7 +365,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017015300&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990189160110206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990189160110206441:DE-6:23527811770006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990193094010206441.json b/src/test/resources/alma-fix/990193094010206441.json index aa0ae3f78..a0c484662 100644 --- a/src/test/resources/alma-fix/990193094010206441.json +++ b/src/test/resources/alma-fix/990193094010206441.json @@ -101,7 +101,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT017398609" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990193094010206441" ], "id" : "http://lobid.org/items/990193094010206441:DE-290:23195293910006445#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990193229450206441.json b/src/test/resources/alma-fix/990193229450206441.json index c2f61ea19..3fee57760 100644 --- a/src/test/resources/alma-fix/990193229450206441.json +++ b/src/test/resources/alma-fix/990193229450206441.json @@ -309,7 +309,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53807024380006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990193229450206441", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT017411546&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990193229450206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -319,7 +319,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017411546&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990193229450206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990193806600206441.json b/src/test/resources/alma-fix/990193806600206441.json index 2c220f253..71f4013b7 100644 --- a/src/test/resources/alma-fix/990193806600206441.json +++ b/src/test/resources/alma-fix/990193806600206441.json @@ -86,7 +86,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017468042&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990193806600206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990193806600206441:DE-6:23526297370006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990197067610206441.json b/src/test/resources/alma-fix/990197067610206441.json index 5d14f8c9e..2f19d8ded 100644 --- a/src/test/resources/alma-fix/990197067610206441.json +++ b/src/test/resources/alma-fix/990197067610206441.json @@ -95,7 +95,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,CT003043468&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990197067610206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -107,7 +107,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaCT003043468" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990197067610206441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -119,7 +119,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53723406060006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197067610206441", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,CT003043468&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990197067610206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", diff --git a/src/test/resources/alma-fix/990197293880206441.json b/src/test/resources/alma-fix/990197293880206441.json index 6f7d7990b..498f5cdcd 100644 --- a/src/test/resources/alma-fix/990197293880206441.json +++ b/src/test/resources/alma-fix/990197293880206441.json @@ -268,7 +268,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,TT050421649&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990197293880206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -398,7 +398,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:TT050421649" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990197293880206441" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -410,7 +410,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaTT050421649" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma990197293880206441" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -457,7 +457,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaTT050421649" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma990197293880206441" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -492,7 +492,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53717454420006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=990197293880206441", - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaTT050421649" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990197293880206441" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", diff --git a/src/test/resources/alma-fix/990199611280206441.json b/src/test/resources/alma-fix/990199611280206441.json index dac8d5d25..72830f811 100644 --- a/src/test/resources/alma-fix/990199611280206441.json +++ b/src/test/resources/alma-fix/990199611280206441.json @@ -143,7 +143,7 @@ }, { "label" : "lobid Bestandsressource", "type" : [ "Item", "NurTitel" ], - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT017894012" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990199611280206441" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma-fix/990202474680206441.json b/src/test/resources/alma-fix/990202474680206441.json index d4fe7f1be..27de8a82b 100644 --- a/src/test/resources/alma-fix/990202474680206441.json +++ b/src/test/resources/alma-fix/990202474680206441.json @@ -137,7 +137,7 @@ "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT018129805" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990202474680206441" ], "id" : "http://lobid.org/items/990202474680206441:DE-5-141:23273758380006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990204246530206441.json b/src/test/resources/alma-fix/990204246530206441.json index 53a468f49..0ade207e6 100644 --- a/src/test/resources/alma-fix/990204246530206441.json +++ b/src/test/resources/alma-fix/990204246530206441.json @@ -196,7 +196,7 @@ "id" : "http://lobid.org/organisations/DE-5-39#!", "label" : "Universität Bonn, Institut für Geschichtswissenschaft, Abteilung für Geschichte der Frühen Neuzeit und Rheinische Landesgeschichte, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT018295975" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990204246530206441" ], "id" : "http://lobid.org/items/990204246530206441:DE-5-39:23292096440006467#!" }, { "label" : "lobid Bestandsressource", @@ -210,7 +210,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018295975&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990204246530206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990204246530206441:DE-6:23593081430006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990207668220206441.json b/src/test/resources/alma-fix/990207668220206441.json index 593e6cb20..7942c4a41 100644 --- a/src/test/resources/alma-fix/990207668220206441.json +++ b/src/test/resources/alma-fix/990207668220206441.json @@ -98,7 +98,7 @@ "id" : "http://lobid.org/organisations/DE-82-223#!", "label" : "Lehrstuhl für Siedlungswasserwirtschaft und Siedlungsabfallwirtschaft und Institut für Siedlungswasserwirtschaft, Bibliothek" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaTT003280170" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990207668220206441" ], "id" : "http://lobid.org/items/990207668220206441:DE-82-223:23233358930006448#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990209817770206441.json b/src/test/resources/alma-fix/990209817770206441.json index 09129d2a2..0b6bb4d3f 100644 --- a/src/test/resources/alma-fix/990209817770206441.json +++ b/src/test/resources/alma-fix/990209817770206441.json @@ -173,7 +173,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018811791&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990209817770206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990209817770206441:DE-6:23490552480006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990210093550206441.json b/src/test/resources/alma-fix/990210093550206441.json index 51ad28dfb..3b2b50de8 100644 --- a/src/test/resources/alma-fix/990210093550206441.json +++ b/src/test/resources/alma-fix/990210093550206441.json @@ -145,7 +145,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53108868480007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=990010081250507476", - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT018839495" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma990210093550206441" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -157,7 +157,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53313002580006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=990022076950106470", - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT018839495" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990210093550206441" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -169,7 +169,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53428417070006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=990184689370206446", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT018839495&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990210093550206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -181,7 +181,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53625317550006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991015595899706449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018839495&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990210093550206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/990213367870206441.json b/src/test/resources/alma-fix/990213367870206441.json index a15f2cc61..5be472d9b 100644 --- a/src/test/resources/alma-fix/990213367870206441.json +++ b/src/test/resources/alma-fix/990213367870206441.json @@ -123,7 +123,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209196500006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991005259779706445", - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT019075404" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990213367870206441" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", diff --git a/src/test/resources/alma-fix/990217478660206441.json b/src/test/resources/alma-fix/990217478660206441.json index b2a21dbe9..4838bbdb6 100644 --- a/src/test/resources/alma-fix/990217478660206441.json +++ b/src/test/resources/alma-fix/990217478660206441.json @@ -515,7 +515,7 @@ "id" : "http://lobid.org/organisations/DE-82-211#!", "label" : "Lehrstuhl und Institut für Kunstgeschichte, Bibliothek" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT019246898" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990217478660206441" ], "id" : "http://lobid.org/items/990217478660206441:DE-82-211:23243058570006448#!" }, { "label" : "lobid Bestandsressource", @@ -529,7 +529,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT019246898" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990217478660206441" ], "id" : "http://lobid.org/items/990217478660206441:DE-290:23194214350006445#!" }, { "label" : "lobid Bestandsressource", @@ -571,7 +571,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019246898&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990217478660206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990217478660206441:DE-6:23512237280006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990218189790206441.json b/src/test/resources/alma-fix/990218189790206441.json index c9d778ee7..c18240ee4 100644 --- a/src/test/resources/alma-fix/990218189790206441.json +++ b/src/test/resources/alma-fix/990218189790206441.json @@ -114,7 +114,7 @@ "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT019317250" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990218189790206441" ], "id" : "http://lobid.org/items/990218189790206441:DE-5-141:23264785760006467#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990220027540206441.json b/src/test/resources/alma-fix/990220027540206441.json index f5256bd84..5e54f386c 100644 --- a/src/test/resources/alma-fix/990220027540206441.json +++ b/src/test/resources/alma-fix/990220027540206441.json @@ -89,7 +89,7 @@ "id" : "http://lobid.org/organisations/DE-5-141#!", "label" : "Universität Bonn, Institut für Orient- und Asienwissenschaften, Bibliothek" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT019496555" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990220027540206441" ], "id" : "http://lobid.org/items/990220027540206441:DE-5-141:23219038300006467#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990223521400206441.json b/src/test/resources/alma-fix/990223521400206441.json index 436f488dc..2371e25a8 100644 --- a/src/test/resources/alma-fix/990223521400206441.json +++ b/src/test/resources/alma-fix/990223521400206441.json @@ -316,7 +316,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT019631849" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma990223521400206441" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701840006452#!" }, { "label" : "lobid Bestandsressource", @@ -330,7 +330,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT019631849" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma990223521400206441" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701860006452#!" }, { "label" : "lobid Bestandsressource", @@ -344,7 +344,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT019631849" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma990223521400206441" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701900006452#!" }, { "label" : "lobid Bestandsressource", @@ -358,7 +358,7 @@ "id" : "http://lobid.org/organisations/DE-1044#!", "label" : "Hochschul- und Kreisbibliothek Bonn-Rhein-Sieg" }, - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT019631849" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma990223521400206441" ], "id" : "http://lobid.org/items/990223521400206441:DE-1044:2347701880006452#!" }, { "label" : "lobid Bestandsressource", @@ -386,7 +386,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT019631849" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990223521400206441" ], "id" : "http://lobid.org/items/990223521400206441:DE-290:23189128750006445#!" }, { "label" : "lobid Bestandsressource", @@ -400,7 +400,7 @@ "id" : "http://lobid.org/organisations/DE-5#!", "label" : "Universitäts- und Landesbibliothek Bonn" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT019631849" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990223521400206441" ], "id" : "http://lobid.org/items/990223521400206441:DE-5:23214050900006467#!" }, { "label" : "lobid Bestandsressource", @@ -414,7 +414,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990223521400206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947900006446#!" }, { "label" : "lobid Bestandsressource", @@ -428,7 +428,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990223521400206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947910006446#!" }, { "label" : "lobid Bestandsressource", @@ -442,7 +442,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990223521400206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947920006446#!" }, { "label" : "lobid Bestandsressource", @@ -456,7 +456,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990223521400206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947870006446#!" }, { "label" : "lobid Bestandsressource", @@ -470,7 +470,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990223521400206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947880006446#!" }, { "label" : "lobid Bestandsressource", @@ -484,7 +484,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990223521400206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947940006446#!" }, { "label" : "lobid Bestandsressource", @@ -498,7 +498,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990223521400206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947850006446#!" }, { "label" : "lobid Bestandsressource", @@ -512,7 +512,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,990223521400206441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-465:23416947860006446#!" }, { "label" : "lobid Bestandsressource", @@ -540,7 +540,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990223521400206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-6:23506634650006449#!" }, { "label" : "lobid Bestandsressource", @@ -554,7 +554,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT019631849&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990223521400206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990223521400206441:DE-6:23506634640006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/990225056670206441.json b/src/test/resources/alma-fix/990225056670206441.json index 545a25da4..a9c60ddc7 100644 --- a/src/test/resources/alma-fix/990225056670206441.json +++ b/src/test/resources/alma-fix/990225056670206441.json @@ -91,7 +91,7 @@ "id" : "http://lobid.org/organisations/DE-82-501#!", "label" : "Lehrstuhl für Bildverarbeitung, Bibliothek" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaTT003907920" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma990225056670206441" ], "id" : "http://lobid.org/items/990225056670206441:DE-82-501:23217998250006448#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990363946050206441.json b/src/test/resources/alma-fix/990363946050206441.json index bdc7fc578..ce3a285f3 100644 --- a/src/test/resources/alma-fix/990363946050206441.json +++ b/src/test/resources/alma-fix/990363946050206441.json @@ -130,7 +130,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53209365020006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991009604019706445", - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT020202475" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:990363946050206441" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -142,7 +142,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53319452280006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991044884199706467", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT020202475" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990363946050206441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -154,7 +154,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53319452300006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991044884199706467", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT020202475" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990363946050206441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/990365842280206441.json b/src/test/resources/alma-fix/990365842280206441.json index d29d560ed..ea5cf7f76 100644 --- a/src/test/resources/alma-fix/990365842280206441.json +++ b/src/test/resources/alma-fix/990365842280206441.json @@ -101,7 +101,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT020391499" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma990365842280206441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -137,7 +137,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020391499&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990365842280206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -184,7 +184,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53706734800006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=990365842280206441", - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT020391499" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma990365842280206441" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -242,7 +242,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53312504210006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=990025573850106470", - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT020391499" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma990365842280206441" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", diff --git a/src/test/resources/alma-fix/990366394400206441.json b/src/test/resources/alma-fix/990366394400206441.json index c619554a4..0dbc1ac20 100644 --- a/src/test/resources/alma-fix/990366394400206441.json +++ b/src/test/resources/alma-fix/990366394400206441.json @@ -74,7 +74,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020446683&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990366394400206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990366394400206441:DE-6:23534915260006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/990368743120206441.json b/src/test/resources/alma-fix/990368743120206441.json index 49248a33a..1d519d428 100644 --- a/src/test/resources/alma-fix/990368743120206441.json +++ b/src/test/resources/alma-fix/990368743120206441.json @@ -75,7 +75,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020681018&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,990368743120206441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/990368743120206441:DE-6:23544500850006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99370678063606441.json b/src/test/resources/alma-fix/99370678063606441.json index 5f82f38a0..2fd45240c 100644 --- a/src/test/resources/alma-fix/99370678063606441.json +++ b/src/test/resources/alma-fix/99370678063606441.json @@ -162,7 +162,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5328313150006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998470474006478", - "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT016745965" ], + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=alma99370678063606441" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -174,7 +174,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5327889980006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998470474006478", - "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT016745965" ], + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=alma99370678063606441" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -186,7 +186,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5327821250006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998470474006478", - "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT016745965" ], + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=alma99370678063606441" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -473,7 +473,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53119227590007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022008758307476", - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT016745965" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma99370678063606441" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -485,7 +485,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53109900770007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022008758307476", - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT016745965" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma99370678063606441" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -497,7 +497,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53109489700007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022008758307476", - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT016745965" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma99370678063606441" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -509,7 +509,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53266502540006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991025967647406448", - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT016745965" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma99370678063606441" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -521,7 +521,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53265762980006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991025967647406448", - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT016745965" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma99370678063606441" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -580,7 +580,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53313992860006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927778655706470", - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT016745965" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma99370678063606441" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -592,7 +592,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53314230740006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927778655706470", - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT016745965" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma99370678063606441" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -676,7 +676,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53452984420006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT016745965&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,99370678063606441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -688,7 +688,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53441010540006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT016745965&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,99370678063606441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -700,7 +700,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53455804610006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206362120906446", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT016745965&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,99370678063606441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -782,7 +782,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627078260006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016745965&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370678063606441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -794,7 +794,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53626936090006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016745965&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370678063606441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -806,7 +806,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627921000006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016745965&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370678063606441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -818,7 +818,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53673256170006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044834920506449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016745965&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370678063606441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370682219806441.json b/src/test/resources/alma-fix/99370682219806441.json index 6a230fcdc..2bbe6a2cf 100644 --- a/src/test/resources/alma-fix/99370682219806441.json +++ b/src/test/resources/alma-fix/99370682219806441.json @@ -168,7 +168,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5329392030006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998475174506478", - "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT018103691" ], + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=alma99370682219806441" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -191,7 +191,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53118085990007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022039329107476", - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT018103691" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma99370682219806441" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -227,7 +227,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53439629560006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206357887606446", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT018103691&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,99370682219806441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -250,7 +250,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53629253910006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044842060806449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT018103691&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370682219806441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370690532406441.json b/src/test/resources/alma-fix/99370690532406441.json index 6ae0ab5bb..d1733ddc4 100644 --- a/src/test/resources/alma-fix/99370690532406441.json +++ b/src/test/resources/alma-fix/99370690532406441.json @@ -88,7 +88,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53265843380006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991025967988406448", - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma99370690532406441" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -100,7 +100,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53208220140006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013485396506445", - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:99370690532406441" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -112,7 +112,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53320611800006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045180157206467", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma99370690532406441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -171,7 +171,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53653301110006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044925061406449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370690532406441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370694196806441.json b/src/test/resources/alma-fix/99370694196806441.json index 2a56d44d4..7e4f4f58c 100644 --- a/src/test/resources/alma-fix/99370694196806441.json +++ b/src/test/resources/alma-fix/99370694196806441.json @@ -148,7 +148,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5327764320006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998470177306478", - "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT017306644" ], + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=alma99370694196806441" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -171,7 +171,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53118379390007476&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=992022040085807476", - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT017306644" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma99370694196806441" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -195,7 +195,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53440125350006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206359543306446", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT017306644&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,99370694196806441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -218,7 +218,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53630052410006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044844301206449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT017306644&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370694196806441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370699582506441.json b/src/test/resources/alma-fix/99370699582506441.json index 96f77abcc..e997763a2 100644 --- a/src/test/resources/alma-fix/99370699582506441.json +++ b/src/test/resources/alma-fix/99370699582506441.json @@ -100,7 +100,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=5329531840006478&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=998475736206478", - "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT016024273" ], + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=alma99370699582506441" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -135,7 +135,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53436686710006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206348251006446", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT016024273&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,99370699582506441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -147,7 +147,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53630816910006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044846530706449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT016024273&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370699582506441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370738710506441.json b/src/test/resources/alma-fix/99370738710506441.json index a03a5e98f..f30442fe9 100644 --- a/src/test/resources/alma-fix/99370738710506441.json +++ b/src/test/resources/alma-fix/99370738710506441.json @@ -168,7 +168,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53325094210006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991026176221006448", - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma99370738710506441" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -180,7 +180,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53364332140006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927945109206470", - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma99370738710506441" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -203,7 +203,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53632399120006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044852279606449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370738710506441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370746459806441.json b/src/test/resources/alma-fix/99370746459806441.json index 10cbd4c07..2ac821db3 100644 --- a/src/test/resources/alma-fix/99370746459806441.json +++ b/src/test/resources/alma-fix/99370746459806441.json @@ -132,7 +132,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53268579950006448&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=991025971963706448", - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma99370746459806441" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -144,7 +144,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53345300320006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927882174306470", - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma99370746459806441" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -167,7 +167,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53453590350006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99207421662506446", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,99370746459806441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", diff --git a/src/test/resources/alma-fix/99370763433806441.json b/src/test/resources/alma-fix/99370763433806441.json index f02750ed1..0275a073b 100644 --- a/src/test/resources/alma-fix/99370763433806441.json +++ b/src/test/resources/alma-fix/99370763433806441.json @@ -120,7 +120,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53319899750006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927798168806470", - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma99370763433806441" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -154,7 +154,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53659205700006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044860106206449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370763433806441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -166,7 +166,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53648029900006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044860106206449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370763433806441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -178,7 +178,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53642731060006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044860106206449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370763433806441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370763882706441.json b/src/test/resources/alma-fix/99370763882706441.json index 09b0c70b2..23ad63c26 100644 --- a/src/test/resources/alma-fix/99370763882706441.json +++ b/src/test/resources/alma-fix/99370763882706441.json @@ -119,7 +119,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53326750220006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927820610606470", - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma99370763882706441" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -142,7 +142,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53448710470006446&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99206804974006446", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,99370763882706441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -154,7 +154,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53643672020006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044873991306449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370763882706441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -166,7 +166,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53664134410006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044873991306449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370763882706441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99370771475306441.json b/src/test/resources/alma-fix/99370771475306441.json index 2c8311209..3c222fd77 100644 --- a/src/test/resources/alma-fix/99370771475306441.json +++ b/src/test/resources/alma-fix/99370771475306441.json @@ -319,7 +319,7 @@ "id" : "http://lobid.org/organisations/DE-Bo404#!", "label" : "Deutsches Referenzzentrum für Ethik in den Biowissenschaften, Bibliothek/Dokumentation" }, - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT020919504" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma99370771475306441" ], "id" : "http://lobid.org/items/99370771475306441:DE-Bo404:23299338990006467#!" }, { "label" : "lobid Bestandsressource", @@ -346,7 +346,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,99370771475306441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/99370771475306441:DE-465:23448803450006446#!" }, { "label" : "lobid Bestandsressource", @@ -360,7 +360,7 @@ "id" : "http://lobid.org/organisations/DE-6-164#!", "label" : "Universität Münster, Institut für Ethik, Geschichte und Theorie der Medizin, Bibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT020919504&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99370771475306441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/99370771475306441:DE-6-164:23545591700006449#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/99370782520706441.json b/src/test/resources/alma-fix/99370782520706441.json index 06675d09d..c8f2e4dda 100644 --- a/src/test/resources/alma-fix/99370782520706441.json +++ b/src/test/resources/alma-fix/99370782520706441.json @@ -307,7 +307,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT020936481" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma99370782520706441" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957880006448#!" }, { "label" : "lobid Bestandsressource", @@ -321,7 +321,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT020936481" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma99370782520706441" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957810006448#!" }, { "label" : "lobid Bestandsressource", @@ -335,7 +335,7 @@ "id" : "http://lobid.org/organisations/DE-82-202#!", "label" : "Kooperierende Bibliothek der Lehrstühle für Planungstheorie und Stadtentwicklung, für Städtebau und Landesplanung, für Wohnbau und Grundlagen des Entwerfens, für CAAD, für Individualisierte Bauproduktion, für Immobilienprojektentwicklung, Gemeinsame Bibliothek" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT020936481" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma99370782520706441" ], "id" : "http://lobid.org/items/99370782520706441:DE-82-202:23218957790006448#!" }, { "label" : "lobid Bestandsressource", @@ -349,7 +349,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT020936481" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma99370782520706441" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957850006448#!" }, { "label" : "lobid Bestandsressource", @@ -363,7 +363,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT020936481" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma99370782520706441" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957840006448#!" }, { "label" : "lobid Bestandsressource", @@ -377,7 +377,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT020936481" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma99370782520706441" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957830006448#!" }, { "label" : "lobid Bestandsressource", @@ -391,7 +391,7 @@ "id" : "http://lobid.org/organisations/DE-82#!", "label" : "Universitätsbibliothek der RWTH Aachen" }, - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT020936481" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma99370782520706441" ], "id" : "http://lobid.org/items/99370782520706441:DE-82:23218957870006448#!" }, { "label" : "lobid Bestandsressource", @@ -545,7 +545,7 @@ "id" : "http://lobid.org/organisations/DE-290#!", "label" : "Universitätsbibliothek Dortmund" }, - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT020936481" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:99370782520706441" ], "id" : "http://lobid.org/items/99370782520706441:DE-290:23212938760006445#!" }, { "label" : "lobid Bestandsressource", @@ -572,7 +572,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,99370782520706441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-465:23448939910006446#!" }, { "label" : "lobid Bestandsressource", @@ -586,7 +586,7 @@ "id" : "http://lobid.org/organisations/DE-465#!", "label" : "Universitätsbibliothek Duisburg-Essen" }, - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT020936481&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,99370782520706441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "id" : "http://lobid.org/items/99370782520706441:DE-465:23448939860006446#!" }, { "label" : "lobid Bestandsressource", diff --git a/src/test/resources/alma-fix/99371050452706441.json b/src/test/resources/alma-fix/99371050452706441.json index 37b980aea..459d3c235 100644 --- a/src/test/resources/alma-fix/99371050452706441.json +++ b/src/test/resources/alma-fix/99371050452706441.json @@ -225,7 +225,7 @@ "id" : "http://lobid.org/organisations/DE-6#!", "label" : "Universitäts- und Landesbibliothek Münster, Zentralbibliothek" }, - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021137663&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99371050452706441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "id" : "http://lobid.org/items/99371050452706441:DE-6:23596739030006449#!" } ], "medium" : [ { diff --git a/src/test/resources/alma-fix/99371107766906441.json b/src/test/resources/alma-fix/99371107766906441.json index 118ebac00..dcb90ee84 100644 --- a/src/test/resources/alma-fix/99371107766906441.json +++ b/src/test/resources/alma-fix/99371107766906441.json @@ -108,7 +108,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53215099760006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013521007106445", - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:99371107766906441" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -142,7 +142,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53627314570006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044836260306449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99371107766906441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99371123630706441.json b/src/test/resources/alma-fix/99371123630706441.json index 30e099472..e78bd4bc4 100644 --- a/src/test/resources/alma-fix/99371123630706441.json +++ b/src/test/resources/alma-fix/99371123630706441.json @@ -232,7 +232,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=5368181550006452&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=991005719114506452", - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma99371123630706441" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -255,7 +255,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53330118430006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927831944606470", - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma99371123630706441" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -267,7 +267,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53334619910006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045222644506467", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma99371123630706441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -279,7 +279,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53343755270006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045222644506467", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma99371123630706441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -291,7 +291,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53358090820006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045222644506467", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma99371123630706441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", diff --git a/src/test/resources/alma-fix/99371147104906441.json b/src/test/resources/alma-fix/99371147104906441.json index 31d02700d..3d011b36e 100644 --- a/src/test/resources/alma-fix/99371147104906441.json +++ b/src/test/resources/alma-fix/99371147104906441.json @@ -168,7 +168,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=5355783850006452&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=991005705885506452", - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma99371147104906441" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -180,7 +180,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53220694770006445&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=991013572431006445", - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:99371147104906441" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -192,7 +192,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53360282040006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma99371147104906441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -204,7 +204,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53346765620006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma99371147104906441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -216,7 +216,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53348545120006467&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=991045256535106467", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma99371147104906441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -251,7 +251,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53652173090006449&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=991044919564006449", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99371147104906441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", diff --git a/src/test/resources/alma-fix/99371314897806441.json b/src/test/resources/alma-fix/99371314897806441.json index a866ab577..7e0f20eae 100644 --- a/src/test/resources/alma-fix/99371314897806441.json +++ b/src/test/resources/alma-fix/99371314897806441.json @@ -146,7 +146,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT021352855" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma99371314897806441" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -158,7 +158,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT021352855" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma99371314897806441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -170,7 +170,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021352855&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99371314897806441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -277,7 +277,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=almaHT021352855" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma99371314897806441" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -300,7 +300,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT021352855&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,99371314897806441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -336,7 +336,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT021352855" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:99371314897806441" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", @@ -393,7 +393,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=53769526120006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371314897806441", - "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT021352855" ], + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=alma99371314897806441" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", diff --git a/src/test/resources/alma-fix/99371447897606441.json b/src/test/resources/alma-fix/99371447897606441.json index fa32e6e17..599ed52a4 100644 --- a/src/test/resources/alma-fix/99371447897606441.json +++ b/src/test/resources/alma-fix/99371447897606441.json @@ -153,7 +153,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&portfolio_pid=5353633400006452&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_BRS/openurl?u.ignore_date_coverage=true&rft.mms_id=991005696549806452", - "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma" ], + "seeAlso" : [ "https://bib-discover.bib.h-brs.de/discovery/fulldisplay?docid=alma99371447897606441" ], "heldBy" : { "isil" : "DE-1044", "id" : "http://lobid.org/organisations/DE-1044#!", @@ -165,7 +165,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53322423530006470&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=9927806347606470", - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma99371447897606441" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", diff --git a/src/test/resources/alma-fix/99371791018506441.json b/src/test/resources/alma-fix/99371791018506441.json index e2ae6e26d..9361ab8ef 100644 --- a/src/test/resources/alma-fix/99371791018506441.json +++ b/src/test/resources/alma-fix/99371791018506441.json @@ -150,7 +150,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_RTU/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/almaHT021613847" ], + "seeAlso" : [ "https://hbz-rptu.primo.exlibrisgroup.com/permalink/49HBZ_RTU/11q51gp/alma99371791018506441" ], "heldBy" : { "isil" : "DE-386", "id" : "http://lobid.org/organisations/DE-386#!", @@ -162,7 +162,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ZBS/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=almaHT021613847" ], + "seeAlso" : [ "https://primo.zbsport.dshs-koeln.de/discovery/fulldisplay?docid=alma99371791018506441" ], "heldBy" : { "isil" : "DE-Kn41", "id" : "http://lobid.org/organisations/DE-Kn41#!", @@ -186,7 +186,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBT/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/almaHT021613847" ], + "seeAlso" : [ "https://tricat.uni-trier.de/permalink/49HBZ_UBT/1hikhph/alma99371791018506441" ], "heldBy" : { "isil" : "DE-385", "id" : "http://lobid.org/organisations/DE-385#!", @@ -233,7 +233,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULM/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,HT021613847&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], + "seeAlso" : [ "https://hbz-ulbms.primo.exlibrisgroup.com/discovery/search?query=any,contains,99371791018506441&tab=Everything&search_scope=MyInst_and_CI&vid=49HBZ_ULM:VU2&offset=0" ], "heldBy" : { "isil" : "DE-6", "id" : "http://lobid.org/organisations/DE-6#!", @@ -291,7 +291,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_ULB/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/almaHT021613847" ], + "seeAlso" : [ "https://bonnus.ulb.uni-bonn.de/permalink/49HBZ_ULB/idtnkp/alma99371791018506441" ], "heldBy" : { "isil" : "DE-5", "id" : "http://lobid.org/organisations/DE-5#!", @@ -303,7 +303,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBA/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/almaHT021613847" ], + "seeAlso" : [ "https://katalog.ub.rwth-aachen.de/permalink/49HBZ_UBA/kloccf/alma99371791018506441" ], "heldBy" : { "isil" : "DE-82", "id" : "http://lobid.org/organisations/DE-82#!", @@ -315,7 +315,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UDE/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,HT021613847&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], + "seeAlso" : [ "https://primo.uni-due.de/discovery/search?query=any,contains,99371791018506441&tab=Everything&search_scope=MyInst_and_CI_custom&vid=49HBZ_UDE:UDE&offset=0" ], "heldBy" : { "isil" : "DE-465", "id" : "http://lobid.org/organisations/DE-465#!", @@ -339,7 +339,7 @@ "label" : "Electronic Portfolio", "electronicLocator" : "https://eu04.alma.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&portfolio_pid=53800421430006441&Force_direct=true", "sublocation" : "https://hbz-network.userservices.exlibrisgroup.com/view/uresolver/49HBZ_UBD/openurl?u.ignore_date_coverage=true&rft.mms_id=99371791018506441", - "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:HT021613847" ], + "seeAlso" : [ "https://katalog.ub.tu-dortmund.de/id/ir01388a:ubd.lobid:99371791018506441" ], "heldBy" : { "isil" : "DE-290", "id" : "http://lobid.org/organisations/DE-290#!", From 7c6fb5798cb35af0939d3b1e77cb3cdcdbc5eab1 Mon Sep 17 00:00:00 2001 From: Jens Wille Date: Thu, 28 Sep 2023 17:30:49 +0200 Subject: [PATCH 23/23] Reset context.jsonld. (#1906) --- web/conf/context.jsonld | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/web/conf/context.jsonld b/web/conf/context.jsonld index 00c3e28c0..cbf2a23bd 100644 --- a/web/conf/context.jsonld +++ b/web/conf/context.jsonld @@ -38,12 +38,12 @@ "notation" : { "@id" : "http://www.w3.org/2004/02/skos/core#notation" }, - "Combination" : { - "@id" : "http://iflastandards.info/ns/isbd/terms/mediatype/T1008" - }, "Book" : { "@id" : "http://purl.org/ontology/bibo/Book" }, + "Combination" : { + "@id" : "http://iflastandards.info/ns/isbd/terms/mediatype/T1008" + }, "Work" : { "@id" : "https://d-nb.info/standards/elementset/gnd#Work" }, @@ -103,12 +103,12 @@ "dateOfBirthAndDeath" : { "@id" : "https://d-nb.info/standards/elementset/gnd#dateOfBirthAndDeath" }, - "Person" : { - "@id" : "https://d-nb.info/standards/elementset/gnd#Person" - }, "Map" : { "@id" : "http://purl.org/ontology/bibo/Map" }, + "Person" : { + "@id" : "https://d-nb.info/standards/elementset/gnd#Person" + }, "startDate" : { "@id" : "http://schema.org/startDate" }, @@ -237,12 +237,12 @@ "@id" : "http://rdaregistry.info/Elements/u/P60489", "@container" : "@set" }, - "Event" : { - "@id" : "http://schema.org/Event" - }, "Family" : { "@id" : "https://d-nb.info/standards/elementset/gnd#Family" }, + "Event" : { + "@id" : "http://schema.org/Event" + }, "ismn" : { "@id" : "http://purl.org/ontology/mo/ismn", "@container" : "@set" @@ -326,12 +326,12 @@ "@id" : "http://purl.org/dc/terms/isFormatOf", "@container" : "@set" }, - "IsPartOfRelation" : { - "@id" : "http://purl.org/lobid/lv#IsPartOfRelation" - }, "Legislation" : { "@id" : "http://purl.org/lobid/lv#Legislation" }, + "IsPartOfRelation" : { + "@id" : "http://purl.org/lobid/lv#IsPartOfRelation" + }, "responsibilityStatement" : { "@id" : "http://id.loc.gov/ontologies/bibframe/responsibilityStatement", "@container" : "@set"