aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-06-23 17:23:13 -0700
committerBryan Newbold <bnewbold@archive.org>2020-06-23 17:23:13 -0700
commit571b1f77e9375c7bab5ccbe8ae41c60dd2c64779 (patch)
tree3f94882b2bbbd3b5122603fc38b7b3fbf718ddc3
parenta4f9030d1aa49e18e699fcf37d336fa2f03f804c (diff)
downloadchocula-571b1f77e9375c7bab5ccbe8ae41c60dd2c64779.tar.gz
chocula-571b1f77e9375c7bab5ccbe8ae41c60dd2c64779.zip
ISSN portal metadata directory importer
-rw-r--r--chocula/directories/issn_meta.py61
-rw-r--r--tests/files/issn_meta.filtered.json25
2 files changed, 86 insertions, 0 deletions
diff --git a/chocula/directories/issn_meta.py b/chocula/directories/issn_meta.py
new file mode 100644
index 0000000..e6abb3c
--- /dev/null
+++ b/chocula/directories/issn_meta.py
@@ -0,0 +1,61 @@
+from typing import Iterable, Optional
+import json
+
+from chocula.util import clean_str, clean_issn, parse_country
+from chocula.common import DirectoryLoader
+from chocula.database import DirectoryInfo, HomepageUrl
+
+
+class IssnMetaLoader(DirectoryLoader):
+ """
+ This is JSON-LD (-ish) scraped from portal.issn.org, filtered down to only
+ journals already in the corpus, or matching a couple other criteria.
+
+ Metadata we expect to get:
+
+ - high quality English title
+ - URLs
+ - country
+
+ TODO: non-english alternative titles
+ """
+
+ source_slug = "issn_meta"
+
+ def open_file(self) -> Iterable:
+ return open(self.config.issn_meta.filepath, "r")
+
+ def parse_record(self, row) -> Optional[DirectoryInfo]:
+
+ row = json.loads(row)
+
+ info = DirectoryInfo(directory_slug=self.source_slug,)
+ # format is an array of metadata elements
+ for el in row:
+ if (
+ "value" in el
+ and el["@id"].startswith("http://id.loc.gov/vocabulary/countries")
+ and len(el["@id"].split("/")[-1]) == 2
+ ):
+ info.country = parse_country(el["value"])
+ if not "@type" in el:
+ continue
+ if el["@type"] == "http://id.loc.gov/ontologies/bibframe/IssnL":
+ info.issnl = clean_issn(el["value"])
+ if "mainTitle" in el:
+ info.name = clean_str(el["mainTitle"])
+ if el.get("format") == "vocabularies/medium#Print":
+ info.issnp = clean_issn(el["issn"])
+ elif el.get("format") == "vocabularies/medium#Electronic":
+ info.issne = clean_issn(el["issn"])
+ urls = el.get("url", [])
+ if isinstance(urls, str):
+ urls = [
+ urls,
+ ]
+ for url in urls:
+ homepage = HomepageUrl.from_url(url)
+ if homepage:
+ info.homepage_urls.append(homepage)
+
+ return info
diff --git a/tests/files/issn_meta.filtered.json b/tests/files/issn_meta.filtered.json
new file mode 100644
index 0000000..b4bf84b
--- /dev/null
+++ b/tests/files/issn_meta.filtered.json
@@ -0,0 +1,25 @@
+[{"@id": "http://id.loc.gov/vocabulary/countries/rb", "label": "Serbia"}, {"@id": "organization/ISSNCenter#b1", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/0354-804X", "identifiedBy": "resource/ISSN/0354-804X#ISSN-L"}, {"@id": "resource/ISSN/0354-804X", "@type": ["http://id.loc.gov/ontologies/bibframe/Instance", "http://id.loc.gov/ontologies/bibframe/Work", "http://schema.org/Periodical"], "format": "vocabularies/medium#Print", "http://purl.org/ontology/bibo/issn": "0354-804X", "identifiedBy": ["resource/ISSN/0354-804X#ISSN-L", "resource/ISSN/0354-804X#KeyTitle", "resource/ISSN/0354-804X#ISSN"], "identifier": "0354-804X", "isFormatOf": "resource/ISSN/2406-0534", "isPartOf": "resource/ISSN-L/0354-804X", "issn": "0354-804X", "mainTitle": "Facta Universitatis.", "name": ["Facta Universitatis. Series: Working and Living Environmental Protection", "Facta Universitatis."], "otherPhysicalFormat": "resource/ISSN/2406-0534", "publication": "resource/ISSN/0354-804X#ReferencePublicationEvent", "title": "resource/ISSN/0354-804X#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a"}, {"@id": "resource/ISSN/0354-804X#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "0354-804X"}, {"@id": "resource/ISSN/0354-804X#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "0354-804X"}, {"@id": "resource/ISSN/0354-804X#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Facta Universitatis. Series: Working and Living Environmental Protection"}, {"@id": "resource/ISSN/0354-804X#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/0354-804X", "modified": "20141004233900.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#b1"}, {"@id": "resource/ISSN/0354-804X#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/rb"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/xxk", "label": "United Kingdom"}, {"@id": "organization/ISSNCenter#_j", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/1468-1641", "identifiedBy": "resource/ISSN/2213-6843#ISSN-L"}, {"@id": "resource/ISSN/2213-6843", "@type": ["http://id.loc.gov/ontologies/bibframe/Work", "http://id.loc.gov/ontologies/bibframe/Instance", "http://schema.org/Periodical"], "format": "vocabularies/medium#Online", "http://purl.org/ontology/bibo/issn": "2213-6843", "identifiedBy": ["resource/ISSN/2213-6843#ISSN-L", "resource/ISSN/2213-6843#ISSN", "resource/ISSN/2213-6843#KeyTitle"], "identifier": "2213-6843", "isFormatOf": "resource/ISSN/1468-1641", "isPartOf": "resource/ISSN-L/1468-1641", "issn": "2213-6843", "mainTitle": "Field mycology.", "name": ["Field mycology (Online)", "Field mycology."], "otherPhysicalFormat": "resource/ISSN/1468-1641", "publication": "resource/ISSN/2213-6843#ReferencePublicationEvent", "title": "resource/ISSN/2213-6843#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": "http://www.journals.elsevier.com/field-mycology/"}, {"@id": "resource/ISSN/2213-6843#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2213-6843"}, {"@id": "resource/ISSN/2213-6843#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "1468-1641"}, {"@id": "resource/ISSN/2213-6843#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Field mycology (Online)"}, {"@id": "resource/ISSN/2213-6843#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2213-6843", "modified": "20151124085700.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_j"}, {"@id": "resource/ISSN/2213-6843#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/xxk"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/pl", "label": "Poland"}, {"@id": "organization/ISSNCenter#57", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/2084-0845", "identifiedBy": "resource/ISSN/2300-8814#ISSN-L"}, {"@id": "resource/ISSN/2300-8814", "@type": ["http://id.loc.gov/ontologies/bibframe/Work", "http://id.loc.gov/ontologies/bibframe/Instance", "http://schema.org/Periodical"], "format": "vocabularies/medium#Online", "http://schema.org/issn": "2300-8814", "identifiedBy": ["resource/ISSN/2300-8814#ISSN-L", "resource/ISSN/2300-8814#KeyTitle", "resource/ISSN/2300-8814#ISSN"], "identifier": "2300-8814", "isFormatOf": "resource/ISSN/2084-0845", "isPartOf": "resource/ISSN-L/2084-0845", "issn": "2300-8814", "mainTitle": "Contemporary Economics.", "name": ["Contemporary Economics (Online)", "Contemporary Economics."], "otherPhysicalFormat": "resource/ISSN/2084-0845", "publication": "resource/ISSN/2300-8814#ReferencePublicationEvent", "title": "resource/ISSN/2300-8814#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": "http://we.vizja.pl/en/"}, {"@id": "resource/ISSN/2300-8814#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2300-8814"}, {"@id": "resource/ISSN/2300-8814#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "2084-0845"}, {"@id": "resource/ISSN/2300-8814#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Contemporary Economics (Online)"}, {"@id": "resource/ISSN/2300-8814#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2300-8814", "modified": "20161229094100.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#57"}, {"@id": "resource/ISSN/2300-8814#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/pl"}]
+[{"@id": "Yc9tiJNTiNMo0EhNsm512019-11-25T13:33:13.803", "status": "vocabularies/IdentifierStatus#Incorrect"}, {"@id": "http://id.loc.gov/vocabulary/countries/enk", "label": "England"}, {"@id": "organization/ISSNCenter#_2", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/0965-948X", "identifiedBy": "resource/ISSN/2396-9571#ISSN-L"}, {"@id": "resource/ISSN/2396-9571", "@type": ["http://id.loc.gov/ontologies/bibframe/Work", "http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Instance"], "format": "vocabularies/medium#Online", "hasIncorrectISSN": "0965-948X", "http://schema.org/issn": "2396-9571", "identifiedBy": ["resource/ISSN/2396-9571#KeyTitle", "resource/ISSN/2396-9571#ISSN", "resource/ISSN/2396-9571#ISSN-L"], "identifier": "2396-9571", "isFormatOf": "resource/ISSN/0965-948X", "isPartOf": "resource/ISSN-L/0965-948X", "issn": "2396-9571", "mainTitle": "Psychology teaching review.", "name": ["Psychology teaching review (Online)", "Psychology teaching review."], "otherPhysicalFormat": "resource/ISSN/0965-948X", "publication": "resource/ISSN/2396-9571#ReferencePublicationEvent", "title": "resource/ISSN/2396-9571#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": "http://shop.bps.org.uk/"}, {"@id": "resource/ISSN/2396-9571#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2396-9571"}, {"@id": "resource/ISSN/2396-9571#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "0965-948X"}, {"@id": "resource/ISSN/2396-9571#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Psychology teaching review (Online)"}, {"@id": "resource/ISSN/2396-9571#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2396-9571", "modified": "20160122152800.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_2"}, {"@id": "resource/ISSN/2396-9571#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/enk"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/enk", "label": "England"}, {"@id": "organization/ISSNCenter#_2", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/0954-4100", "identifiedBy": "resource/ISSN/2041-3025#ISSN-L"}, {"@id": "resource/ISSN/2041-3025", "@type": ["http://id.loc.gov/ontologies/bibframe/Instance", "http://id.loc.gov/ontologies/bibframe/Work", "http://schema.org/Periodical"], "format": "vocabularies/medium#Online", "http://schema.org/issn": "2041-3025", "identifiedBy": ["resource/ISSN/2041-3025#ISSN", "resource/ISSN/2041-3025#KeyTitle", "resource/ISSN/2041-3025#ISSN-L"], "identifier": "2041-3025", "isFormatOf": "resource/ISSN/0954-4100", "isPartOf": "resource/ISSN-L/0954-4100", "issn": "2041-3025", "mainTitle": "Proceedings of the Institution of Mechanical Engineers.", "name": ["Proceedings of the Institution of Mechanical Engineers. Part G, Journal of aerospace engineering (Online)", "Proceedings of the Institution of Mechanical Engineers."], "otherPhysicalFormat": "resource/ISSN/0954-4100", "publication": "resource/ISSN/2041-3025#ReferencePublicationEvent", "title": "resource/ISSN/2041-3025#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": ["http://journals.pepublishing.com/content/119782", "http://pig.sagepub.com/"]}, {"@id": "resource/ISSN/2041-3025#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2041-3025"}, {"@id": "resource/ISSN/2041-3025#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "0954-4100"}, {"@id": "resource/ISSN/2041-3025#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Proceedings of the Institution of Mechanical Engineers. Part G, Journal of aerospace engineering (Online)"}, {"@id": "resource/ISSN/2041-3025#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2041-3025", "modified": "20191005181100.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_2"}, {"@id": "resource/ISSN/2041-3025#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/enk"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/cr", "label": "Costa Rica"}, {"@id": "organization/ISSNCenter#39", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/2215-4167", "identifiedBy": "resource/ISSN/2215-4167#ISSN-L"}, {"@id": "resource/ISSN/2215-4167", "@type": ["http://id.loc.gov/ontologies/bibframe/Work", "http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Instance"], "format": "vocabularies/medium#Online", "http://purl.org/ontology/bibo/issn": "2215-4167", "identifiedBy": ["resource/ISSN/2215-4167#KeyTitle", "resource/ISSN/2215-4167#ISSN-L", "resource/ISSN/2215-4167#ISSN"], "identifier": "2215-4167", "isPartOf": "resource/ISSN-L/2215-4167", "issn": "2215-4167", "mainTitle": "Revista de Pol\u00edtica Econ\u00f3mica.", "name": ["Revista de Pol\u00edtica Econ\u00f3mica.", "Revista de Pol\u00edtica Econ\u00f3mica (En l\u00ednea)"], "publication": "resource/ISSN/2215-4167#ReferencePublicationEvent", "title": "resource/ISSN/2215-4167#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": "http://www.revistas.una.ac.cr/index.php/politicaeconomica"}, {"@id": "resource/ISSN/2215-4167#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2215-4167"}, {"@id": "resource/ISSN/2215-4167#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "2215-4167"}, {"@id": "resource/ISSN/2215-4167#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Revista de Pol\u00edtica Econ\u00f3mica (En l\u00ednea)"}, {"@id": "resource/ISSN/2215-4167#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2215-4167", "modified": "20190205225300.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#39"}, {"@id": "resource/ISSN/2215-4167#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/cr"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/io", "label": "Indonesia"}, {"@id": "organization/ISSNCenter#p1", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/2597-6613", "identifiedBy": "resource/ISSN/2597-6613#ISSN-L"}, {"@id": "resource/ISSN/2597-6613", "@type": ["http://id.loc.gov/ontologies/bibframe/Instance", "http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Work"], "format": "vocabularies/medium#Online", "http://purl.org/ontology/bibo/issn": "2597-6613", "identifiedBy": ["resource/ISSN/2597-6613#ISSN-L", "resource/ISSN/2597-6613#KeyTitle", "resource/ISSN/2597-6613#ISSN"], "identifier": "2597-6613", "isPartOf": "resource/ISSN-L/2597-6613", "issn": "2597-6613", "mainTitle": "Journal research and analysis", "name": ["Journal research and analysis : accounting and financial (Online)", "Journal research and analysis"], "publication": "resource/ISSN/2597-6613#ReferencePublicationEvent", "title": "resource/ISSN/2597-6613#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": "http://www.journal.stkipsingkawang.ac.id/index.php/JRAAF"}, {"@id": "resource/ISSN/2597-6613#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2597-6613"}, {"@id": "resource/ISSN/2597-6613#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "2597-6613"}, {"@id": "resource/ISSN/2597-6613#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Journal research and analysis : accounting and financial (Online)"}, {"@id": "resource/ISSN/2597-6613#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2597-6613", "modified": "20170929085600.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#p1"}, {"@id": "resource/ISSN/2597-6613#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/io"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/le", "label": "Lebanon"}, {"@id": "organization/ISSNCenter#_0", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/0258-8315", "identifiedBy": "resource/ISSN/0258-8315#ISSN-L"}, {"@id": "resource/ISSN/0258-8315", "@type": ["http://id.loc.gov/ontologies/bibframe/Work", "http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Instance"], "format": "vocabularies/medium#Print", "http://schema.org/issn": "0258-8315", "identifiedBy": ["resource/ISSN/0258-8315#ISSN-L", "resource/ISSN/0258-8315#KeyTitle", "resource/ISSN/0258-8315#ISSN"], "identifier": "0258-8315", "isFormatOf": "resource/ISSN/2305-5359", "isPartOf": "resource/ISSN-L/0258-8315", "issn": "0258-8315", "mainTitle": "M\u00e9langes de l'Institut fran\u00e7ais de Damas.", "name": ["M\u00e9langes de l'Institut fran\u00e7ais de Damas.", "M\u00e9langes de l'Institut fran\u00e7ais de Damas. Section des arabisants"], "otherPhysicalFormat": "resource/ISSN/2305-5359", "publication": "resource/ISSN/0258-8315#ReferencePublicationEvent", "title": "resource/ISSN/0258-8315#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a"}, {"@id": "resource/ISSN/0258-8315#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "0258-8315"}, {"@id": "resource/ISSN/0258-8315#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "0258-8315"}, {"@id": "resource/ISSN/0258-8315#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "M\u00e9langes de l'Institut fran\u00e7ais de Damas. Section des arabisants"}, {"@id": "resource/ISSN/0258-8315#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/0258-8315", "modified": "20130323202000.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_0"}, {"@id": "resource/ISSN/0258-8315#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/le"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/mau", "label": "Massachusetts"}, {"@id": "organization/ISSNCenter#_1", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/2048-7177", "identifiedBy": "resource/ISSN/2048-7177#ISSN-L"}, {"@id": "resource/ISSN/2048-7177", "@type": ["http://id.loc.gov/ontologies/bibframe/Work", "http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Instance"], "format": "vocabularies/medium#Online", "http://purl.org/ontology/bibo/issn": "2048-7177", "identifiedBy": ["resource/ISSN/2048-7177#KeyTitle", "resource/ISSN/2048-7177#ISSN", "resource/ISSN/2048-7177#ISSN-L"], "identifier": "2048-7177", "isPartOf": "resource/ISSN-L/2048-7177", "issn": "2048-7177", "mainTitle": "Food science & nutrition.", "name": ["Food science & nutrition.", "Food science & nutrition"], "publication": "resource/ISSN/2048-7177#ReferencePublicationEvent", "title": "resource/ISSN/2048-7177#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": "https://onlinelibrary.wiley.com/journal/20487177"}, {"@id": "resource/ISSN/2048-7177#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2048-7177"}, {"@id": "resource/ISSN/2048-7177#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "2048-7177"}, {"@id": "resource/ISSN/2048-7177#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Food science & nutrition"}, {"@id": "resource/ISSN/2048-7177#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2048-7177", "modified": "20190214130400.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_1"}, {"@id": "resource/ISSN/2048-7177#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/mau"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/cau", "label": "California"}, {"@id": "organization/ISSNCenter#_2", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/0011-1287", "identifiedBy": "resource/ISSN/0011-1287#ISSN-L"}, {"@id": "resource/ISSN/0011-1287", "@type": ["http://id.loc.gov/ontologies/bibframe/Instance", "http://id.loc.gov/ontologies/bibframe/Work", "http://schema.org/Periodical"], "format": "vocabularies/medium#Print", "http://schema.org/issn": "0011-1287", "identifiedBy": ["resource/ISSN/0011-1287#ISSN-L", "resource/ISSN/0011-1287#ISSN", "resource/ISSN/0011-1287#KeyTitle"], "identifier": "0011-1287", "isFormatOf": "resource/ISSN/1552-387X", "isPartOf": "resource/ISSN-L/0011-1287", "issn": "0011-1287", "mainTitle": "Crime and delinquency.", "name": ["Crime and delinquency.", "Crime and delinquency"], "otherPhysicalFormat": "resource/ISSN/1552-387X", "publication": "resource/ISSN/0011-1287#ReferencePublicationEvent", "title": "resource/ISSN/0011-1287#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a"}, {"@id": "resource/ISSN/0011-1287#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "0011-1287"}, {"@id": "resource/ISSN/0011-1287#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "0011-1287"}, {"@id": "resource/ISSN/0011-1287#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Crime and delinquency"}, {"@id": "resource/ISSN/0011-1287#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/0011-1287", "modified": "20191005180500.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_2"}, {"@id": "resource/ISSN/0011-1287#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/cau"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/gw", "label": "Germany"}, {"@id": "organization/ISSNCenter#_6", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/1433-0911", "identifiedBy": "resource/ISSN/1433-0911#ISSN-L"}, {"@id": "resource/ISSN/1433-0911", "@type": ["http://id.loc.gov/ontologies/bibframe/Work", "http://id.loc.gov/ontologies/bibframe/Instance", "http://schema.org/Periodical"], "format": "vocabularies/medium#Print", "http://schema.org/issn": "1433-0911", "identifiedBy": ["resource/ISSN/1433-0911#ISSN-L", "resource/ISSN/1433-0911#KeyTitle", "resource/ISSN/1433-0911#ISSN"], "identifier": "1433-0911", "isPartOf": "resource/ISSN-L/1433-0911", "issn": "1433-0911", "mainTitle": "Abhandlungen zu Bildungsforschung und Bildungsrecht.", "name": ["Abhandlungen zu Bildungsforschung und Bildungsrecht.", "Abhandlungen zu Bildungsforschung und Bildungsrecht"], "publication": "resource/ISSN/1433-0911#ReferencePublicationEvent", "title": "resource/ISSN/1433-0911#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a"}, {"@id": "resource/ISSN/1433-0911#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "1433-0911"}, {"@id": "resource/ISSN/1433-0911#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "1433-0911"}, {"@id": "resource/ISSN/1433-0911#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Abhandlungen zu Bildungsforschung und Bildungsrecht"}, {"@id": "resource/ISSN/1433-0911#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/1433-0911", "modified": "20161014093900.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_6"}, {"@id": "resource/ISSN/1433-0911#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/gw"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/io", "label": "Indonesia"}, {"@id": "organization/ISSNCenter#p1", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/2477-3387", "identifiedBy": "resource/ISSN/2597-6516#ISSN-L"}, {"@id": "resource/ISSN/2597-6516", "@type": ["http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Instance", "http://id.loc.gov/ontologies/bibframe/Work"], "format": "vocabularies/medium#Online", "http://purl.org/ontology/bibo/issn": "2597-6516", "identifiedBy": ["resource/ISSN/2597-6516#ISSN-L", "resource/ISSN/2597-6516#ISSN", "resource/ISSN/2597-6516#KeyTitle"], "identifier": "2597-6516", "isFormatOf": "resource/ISSN/2477-3387", "isPartOf": "resource/ISSN-L/2477-3387", "issn": "2597-6516", "mainTitle": "JP3 (Jurnal Pendidikan dan Profesi Pendidik)", "name": ["JP3 (Jurnal Pendidikan dan Profesi Pendidik)", "JP3 (Jurnal Pendidikan dan Profesi Pendidik) (Online)"], "otherPhysicalFormat": "resource/ISSN/2477-3387", "publication": "resource/ISSN/2597-6516#ReferencePublicationEvent", "title": "resource/ISSN/2597-6516#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": "http://journal.upgris.ac.id/index.php/JP3"}, {"@id": "resource/ISSN/2597-6516#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2597-6516"}, {"@id": "resource/ISSN/2597-6516#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "2477-3387"}, {"@id": "resource/ISSN/2597-6516#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "JP3 (Jurnal Pendidikan dan Profesi Pendidik) (Online)"}, {"@id": "resource/ISSN/2597-6516#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2597-6516", "modified": "20190205235000.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#p1"}, {"@id": "resource/ISSN/2597-6516#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/io"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/enk", "label": "England"}, {"@id": "organization/ISSNCenter#_2", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/1462-0324", "identifiedBy": "resource/ISSN/1462-0324#ISSN-L"}, {"@id": "resource/ISSN/1462-0324", "@type": ["http://id.loc.gov/ontologies/bibframe/Instance", "http://id.loc.gov/ontologies/bibframe/Work", "http://schema.org/Periodical"], "format": "vocabularies/medium#Print", "http://schema.org/issn": "1462-0324", "identifiedBy": ["resource/ISSN/1462-0324#KeyTitle", "resource/ISSN/1462-0324#ISSN-L", "resource/ISSN/1462-0324#ISSN"], "identifier": "1462-0324", "isFormatOf": "resource/ISSN/1462-0332", "isPartOf": "resource/ISSN-L/1462-0324", "issn": "1462-0324", "mainTitle": "Rheumatology.", "name": ["Rheumatology (Oxford. Print)", "Rheumatology."], "otherPhysicalFormat": "resource/ISSN/1462-0332", "publication": "resource/ISSN/1462-0324#ReferencePublicationEvent", "title": "resource/ISSN/1462-0324#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a"}, {"@id": "resource/ISSN/1462-0324#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "1462-0324"}, {"@id": "resource/ISSN/1462-0324#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "1462-0324"}, {"@id": "resource/ISSN/1462-0324#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Rheumatology (Oxford. Print)"}, {"@id": "resource/ISSN/1462-0324#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/1462-0324", "modified": "20190105173600.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_2"}, {"@id": "resource/ISSN/1462-0324#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/enk"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/io", "label": "Indonesia"}, {"@id": "organization/ISSNCenter#p1", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/1410-1289", "identifiedBy": "resource/ISSN/2579-6518#ISSN-L"}, {"@id": "resource/ISSN/2579-6518", "@type": ["http://id.loc.gov/ontologies/bibframe/Instance", "http://id.loc.gov/ontologies/bibframe/Work", "http://schema.org/Periodical"], "format": "vocabularies/medium#Online", "http://schema.org/issn": "2579-6518", "identifiedBy": ["resource/ISSN/2579-6518#ISSN", "resource/ISSN/2579-6518#ISSN-L", "resource/ISSN/2579-6518#KeyTitle"], "identifier": "2579-6518", "isFormatOf": "resource/ISSN/1410-1289", "isPartOf": "resource/ISSN-L/1410-1289", "issn": "2579-6518", "mainTitle": "Psikologika", "name": ["Psikologika : jurnal pemikiran dan penelitian psikologi (Online)", "Psikologika"], "otherPhysicalFormat": "resource/ISSN/1410-1289", "publication": "resource/ISSN/2579-6518#ReferencePublicationEvent", "title": "resource/ISSN/2579-6518#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": "http://journal.uii.ac.id/index.php/Psikologika"}, {"@id": "resource/ISSN/2579-6518#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2579-6518"}, {"@id": "resource/ISSN/2579-6518#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "1410-1289"}, {"@id": "resource/ISSN/2579-6518#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Psikologika : jurnal pemikiran dan penelitian psikologi (Online)"}, {"@id": "resource/ISSN/2579-6518#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2579-6518", "modified": "20171013161400.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#p1"}, {"@id": "resource/ISSN/2579-6518#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/io"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/it", "label": "Italy"}, {"@id": "organization/ISSNCenter#_d", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/1122-9365", "identifiedBy": "resource/ISSN/1122-9365#ISSN-L"}, {"@id": "resource/ISSN/1122-9365", "@type": ["http://id.loc.gov/ontologies/bibframe/Instance", "http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Work"], "format": "vocabularies/medium#Print", "http://schema.org/issn": "1122-9365", "identifiedBy": ["resource/ISSN/1122-9365#ISSN-L", "resource/ISSN/1122-9365#ISSN", "resource/ISSN/1122-9365#KeyTitle"], "identifier": "1122-9365", "isFormatOf": ["resource/ISSN/2283-5644", "resource/ISSN/1724-0336"], "isPartOf": "resource/ISSN-L/1122-9365", "issn": "1122-9365", "mainTitle": "Drammaturgia.", "name": ["Drammaturgia (Testo stampato)", "Drammaturgia."], "otherPhysicalFormat": ["resource/ISSN/1724-0336", "resource/ISSN/2283-5644"], "publication": "resource/ISSN/1122-9365#ReferencePublicationEvent", "title": "resource/ISSN/1122-9365#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a"}, {"@id": "resource/ISSN/1122-9365#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "1122-9365"}, {"@id": "resource/ISSN/1122-9365#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "1122-9365"}, {"@id": "resource/ISSN/1122-9365#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Drammaturgia (Testo stampato)"}, {"@id": "resource/ISSN/1122-9365#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/1122-9365", "modified": "20161029171500.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_d"}, {"@id": "resource/ISSN/1122-9365#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/it"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/pl", "label": "Poland"}, {"@id": "organization/ISSNCenter#57", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/1898-1135", "identifiedBy": "resource/ISSN/1898-1135#ISSN-L"}, {"@id": "resource/ISSN/1898-1135", "@type": ["http://id.loc.gov/ontologies/bibframe/Instance", "http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Work"], "format": "vocabularies/medium#Print", "http://schema.org/issn": "1898-1135", "identifiedBy": ["resource/ISSN/1898-1135#ISSN-L", "resource/ISSN/1898-1135#KeyTitle", "resource/ISSN/1898-1135#ISSN"], "identifier": "1898-1135", "isFormatOf": "resource/ISSN/2300-7095", "isPartOf": "resource/ISSN-L/1898-1135", "issn": "1898-1135", "mainTitle": "Geomatics and Environmental Engineering.", "name": ["Geomatics and Environmental Engineering", "Geomatics and Environmental Engineering."], "otherPhysicalFormat": "resource/ISSN/2300-7095", "publication": "resource/ISSN/1898-1135#ReferencePublicationEvent", "title": "resource/ISSN/1898-1135#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a"}, {"@id": "resource/ISSN/1898-1135#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "1898-1135"}, {"@id": "resource/ISSN/1898-1135#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "1898-1135"}, {"@id": "resource/ISSN/1898-1135#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Geomatics and Environmental Engineering"}, {"@id": "resource/ISSN/1898-1135#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/1898-1135", "modified": "20140122143300.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#57"}, {"@id": "resource/ISSN/1898-1135#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/pl"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/io", "label": "Indonesia"}, {"@id": "organization/ISSNCenter#p1", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/2621-1432", "identifiedBy": "resource/ISSN/2621-1432#ISSN-L"}, {"@id": "resource/ISSN/2621-1432", "@type": ["http://id.loc.gov/ontologies/bibframe/Work", "http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Instance"], "format": "vocabularies/medium#Online", "http://schema.org/issn": "2621-1432", "identifiedBy": ["resource/ISSN/2621-1432#ISSN-L", "resource/ISSN/2621-1432#KeyTitle", "resource/ISSN/2621-1432#ISSN"], "identifier": "2621-1432", "isPartOf": "resource/ISSN-L/2621-1432", "issn": "2621-1432", "mainTitle": "Indonesian journal of miracle.", "name": ["Indonesian journal of miracle.", "Indonesian journal of miracle"], "publication": "resource/ISSN/2621-1432#ReferencePublicationEvent", "title": "resource/ISSN/2621-1432#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": "https://publikasi.unsil.ac.id/index.php/miracle"}, {"@id": "resource/ISSN/2621-1432#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2621-1432"}, {"@id": "resource/ISSN/2621-1432#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "2621-1432"}, {"@id": "resource/ISSN/2621-1432#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Indonesian journal of miracle"}, {"@id": "resource/ISSN/2621-1432#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2621-1432", "modified": "20180526062500.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#p1"}, {"@id": "resource/ISSN/2621-1432#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/io"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/enk", "label": "England"}, {"@id": "organization/ISSNCenter#_2", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/1662-7784", "identifiedBy": "resource/ISSN/2235-5677#ISSN-L"}, {"@id": "resource/ISSN/2235-5677", "@type": ["http://id.loc.gov/ontologies/bibframe/Work", "http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Instance"], "format": "vocabularies/medium#Online", "http://purl.org/ontology/bibo/issn": "2235-5677", "identifiedBy": ["resource/ISSN/2235-5677#KeyTitle", "resource/ISSN/2235-5677#ISSN-L", "resource/ISSN/2235-5677#ISSN"], "identifier": "2235-5677", "isFormatOf": "resource/ISSN/1662-7784", "isPartOf": "resource/ISSN-L/1662-7784", "issn": "2235-5677", "mainTitle": "Trade unions past, present and future.", "name": ["Trade unions past, present and future (Online)", "Trade unions past, present and future."], "otherPhysicalFormat": "resource/ISSN/1662-7784", "publication": "resource/ISSN/2235-5677#ReferencePublicationEvent", "title": "resource/ISSN/2235-5677#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": "https://www.peterlang.com/view/serial/TUP"}, {"@id": "resource/ISSN/2235-5677#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2235-5677"}, {"@id": "resource/ISSN/2235-5677#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "1662-7784"}, {"@id": "resource/ISSN/2235-5677#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Trade unions past, present and future (Online)"}, {"@id": "resource/ISSN/2235-5677#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2235-5677", "modified": "20190205225700.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_2"}, {"@id": "resource/ISSN/2235-5677#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/enk"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/gw", "label": "Germany"}, {"@id": "organization/ISSNCenter#_6", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/2512-3238", "identifiedBy": "resource/ISSN/2512-3246#ISSN-L"}, {"@id": "resource/ISSN/2512-3246", "@type": ["http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Instance", "http://id.loc.gov/ontologies/bibframe/Work"], "format": "vocabularies/medium#Online", "http://schema.org/issn": "2512-3246", "identifiedBy": ["resource/ISSN/2512-3246#ISSN-L", "resource/ISSN/2512-3246#KeyTitle", "resource/ISSN/2512-3246#ISSN"], "identifier": "2512-3246", "isFormatOf": "resource/ISSN/2512-3238", "isPartOf": "resource/ISSN-L/2512-3238", "issn": "2512-3246", "mainTitle": "Mechanik, Werkstoffe und Konstruktion im Bauwesen.", "name": ["Mechanik, Werkstoffe und Konstruktion im Bauwesen (Online)", "Mechanik, Werkstoffe und Konstruktion im Bauwesen."], "otherPhysicalFormat": "resource/ISSN/2512-3238", "publication": "resource/ISSN/2512-3246#ReferencePublicationEvent", "title": "resource/ISSN/2512-3246#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": "http://link.springer.com/bookseries/13824"}, {"@id": "resource/ISSN/2512-3246#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2512-3246"}, {"@id": "resource/ISSN/2512-3246#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "2512-3238"}, {"@id": "resource/ISSN/2512-3246#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Mechanik, Werkstoffe und Konstruktion im Bauwesen (Online)"}, {"@id": "resource/ISSN/2512-3246#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2512-3246", "modified": "20190205234900.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_6"}, {"@id": "resource/ISSN/2512-3246#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/gw"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/io", "label": "Indonesia"}, {"@id": "organization/ISSNCenter#p1", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/2356-0673", "identifiedBy": "resource/ISSN/2356-0673#ISSN-L"}, {"@id": "resource/ISSN/2356-0673", "@type": ["http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Work", "http://id.loc.gov/ontologies/bibframe/Instance"], "format": "vocabularies/medium#Print", "http://schema.org/issn": "2356-0673", "identifiedBy": ["resource/ISSN/2356-0673#ISSN-L", "resource/ISSN/2356-0673#ISSN", "resource/ISSN/2356-0673#KeyTitle"], "identifier": "2356-0673", "isFormatOf": "resource/ISSN/2579-5252", "isPartOf": "resource/ISSN-L/2356-0673", "issn": "2356-0673", "mainTitle": "Chompton", "name": ["Chompton", "Chompton : Jurnal Ilmiah Pendidikan Fisika"], "otherPhysicalFormat": "resource/ISSN/2579-5252", "publication": "resource/ISSN/2356-0673#ReferencePublicationEvent", "title": "resource/ISSN/2356-0673#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a"}, {"@id": "resource/ISSN/2356-0673#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2356-0673"}, {"@id": "resource/ISSN/2356-0673#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "2356-0673"}, {"@id": "resource/ISSN/2356-0673#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Chompton : Jurnal Ilmiah Pendidikan Fisika"}, {"@id": "resource/ISSN/2356-0673#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2356-0673", "modified": "20170506152400.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#p1"}, {"@id": "resource/ISSN/2356-0673#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/io"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/cau", "label": "California"}, {"@id": "organization/ISSNCenter#_1", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/0075-9317", "identifiedBy": "resource/ISSN/0075-9317#ISSN-L"}, {"@id": "resource/ISSN/0075-9317", "@type": ["http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Instance", "http://id.loc.gov/ontologies/bibframe/Work"], "format": "vocabularies/medium#Print", "http://schema.org/issn": "0075-9317", "identifiedBy": ["resource/ISSN/0075-9317#KeyTitle", "resource/ISSN/0075-9317#ISSN-L", "resource/ISSN/0075-9317#ISSN"], "identifier": "0075-9317", "isFormatOf": "resource/ISSN/2378-9263", "isPartOf": "resource/ISSN-L/0075-9317", "issn": "0075-9317", "mainTitle": "Lick Observatory bulletins.", "name": ["Lick Observatory bulletins.", "Lick Observatory bulletin"], "otherPhysicalFormat": "resource/ISSN/2378-9263", "publication": "resource/ISSN/0075-9317#ReferencePublicationEvent", "title": "resource/ISSN/0075-9317#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": ["http://adsabs.harvard.edu/bulletins_service.html", "http://bibpurl.oclc.org/web/39100"]}, {"@id": "resource/ISSN/0075-9317#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "0075-9317"}, {"@id": "resource/ISSN/0075-9317#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "0075-9317"}, {"@id": "resource/ISSN/0075-9317#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Lick Observatory bulletin"}, {"@id": "resource/ISSN/0075-9317#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/0075-9317", "modified": "20190205223900.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_1"}, {"@id": "resource/ISSN/0075-9317#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/cau"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/io", "label": "Indonesia"}, {"@id": "organization/ISSNCenter#p1", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/2252-6927", "identifiedBy": "resource/ISSN/2252-6927#ISSN-L"}, {"@id": "resource/ISSN/2252-6927", "@type": ["http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Work", "http://id.loc.gov/ontologies/bibframe/Instance"], "format": "vocabularies/medium#Print", "http://schema.org/issn": "2252-6927", "identifiedBy": ["resource/ISSN/2252-6927#ISSN", "resource/ISSN/2252-6927#KeyTitle", "resource/ISSN/2252-6927#ISSN-L"], "identifier": "2252-6927", "isFormatOf": "resource/ISSN/2460-5840", "isPartOf": "resource/ISSN-L/2252-6927", "issn": "2252-6927", "mainTitle": "Unnes journal of mathematics education.", "name": ["Unnes journal of mathematics education", "Unnes journal of mathematics education."], "otherPhysicalFormat": "resource/ISSN/2460-5840", "publication": "resource/ISSN/2252-6927#ReferencePublicationEvent", "title": "resource/ISSN/2252-6927#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a"}, {"@id": "resource/ISSN/2252-6927#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2252-6927"}, {"@id": "resource/ISSN/2252-6927#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "2252-6927"}, {"@id": "resource/ISSN/2252-6927#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Unnes journal of mathematics education"}, {"@id": "resource/ISSN/2252-6927#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2252-6927", "modified": "20160227172600.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#p1"}, {"@id": "resource/ISSN/2252-6927#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/io"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/miu", "label": "Michigan"}, {"@id": "organization/ISSNCenter#_1", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/2578-4838", "identifiedBy": "resource/ISSN/2578-4838#ISSN-L"}, {"@id": "resource/ISSN/2578-4838", "@type": ["http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Work", "http://id.loc.gov/ontologies/bibframe/Instance"], "format": "vocabularies/medium#Online", "http://schema.org/issn": "2578-4838", "identifiedBy": ["resource/ISSN/2578-4838#KeyTitle", "resource/ISSN/2578-4838#ISSN-L", "resource/ISSN/2578-4838#ISSN"], "identifier": "2578-4838", "isPartOf": "resource/ISSN-L/2578-4838", "issn": "2578-4838", "mainTitle": "Medical journal of clinical trials & case studies.", "name": ["Medical journal of clinical trials & case studies", "Medical journal of clinical trials & case studies."], "publication": "resource/ISSN/2578-4838#ReferencePublicationEvent", "title": "resource/ISSN/2578-4838#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": "https://medwinpublishers.com/MJCCS/archive.php"}, {"@id": "resource/ISSN/2578-4838#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2578-4838"}, {"@id": "resource/ISSN/2578-4838#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "2578-4838"}, {"@id": "resource/ISSN/2578-4838#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Medical journal of clinical trials & case studies"}, {"@id": "resource/ISSN/2578-4838#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2578-4838", "modified": "20190205230000.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_1"}, {"@id": "resource/ISSN/2578-4838#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/miu"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/ne", "label": "Netherlands"}, {"@id": "organization/ISSNCenter#_j", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/2214-7993", "identifiedBy": "resource/ISSN/2214-8000#ISSN-L"}, {"@id": "resource/ISSN/2214-8000", "@type": ["http://id.loc.gov/ontologies/bibframe/Instance", "http://schema.org/Periodical", "http://id.loc.gov/ontologies/bibframe/Work"], "format": "vocabularies/medium#Online", "http://purl.org/ontology/bibo/issn": "2214-8000", "identifiedBy": ["resource/ISSN/2214-8000#KeyTitle", "resource/ISSN/2214-8000#ISSN", "resource/ISSN/2214-8000#ISSN-L"], "identifier": "2214-8000", "isFormatOf": "resource/ISSN/2214-7993", "isPartOf": "resource/ISSN-L/2214-7993", "issn": "2214-8000", "mainTitle": "Current opinion in food science.", "name": ["Current opinion in food science.", "Current opinion in food science (Online)"], "otherPhysicalFormat": "resource/ISSN/2214-7993", "publication": "resource/ISSN/2214-8000#ReferencePublicationEvent", "title": "resource/ISSN/2214-8000#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": "http://www.journals.elsevier.com/current-opinion-in-food-science"}, {"@id": "resource/ISSN/2214-8000#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2214-8000"}, {"@id": "resource/ISSN/2214-8000#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "2214-7993"}, {"@id": "resource/ISSN/2214-8000#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "Current opinion in food science (Online)"}, {"@id": "resource/ISSN/2214-8000#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2214-8000", "modified": "20190205224500.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_j"}, {"@id": "resource/ISSN/2214-8000#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/ne"}]
+[{"@id": "http://id.loc.gov/vocabulary/countries/enk", "label": "England"}, {"@id": "organization/ISSNCenter#_2", "@type": "http://schema.org/Organization"}, {"@id": "resource/ISSN-L/2056-6522", "identifiedBy": "resource/ISSN/2056-6530#ISSN-L"}, {"@id": "resource/ISSN/2056-6530", "@type": ["http://id.loc.gov/ontologies/bibframe/Instance", "http://id.loc.gov/ontologies/bibframe/Work", "http://schema.org/Periodical"], "format": "vocabularies/medium#Online", "http://purl.org/ontology/bibo/issn": "2056-6530", "identifiedBy": ["resource/ISSN/2056-6530#ISSN-L", "resource/ISSN/2056-6530#ISSN", "resource/ISSN/2056-6530#KeyTitle"], "identifier": "2056-6530", "isFormatOf": "resource/ISSN/2056-6522", "isPartOf": "resource/ISSN-L/2056-6522", "issn": "2056-6530", "mainTitle": "International journal of food design.", "name": ["International journal of food design.", "International journal of food design (Online)"], "otherPhysicalFormat": "resource/ISSN/2056-6522", "publication": "resource/ISSN/2056-6530#ReferencePublicationEvent", "title": "resource/ISSN/2056-6530#KeyTitle", "type": "http://marc21rdf.info/terms/formofmaterial#a", "url": "http://www.intellectbooks.co.uk/journals/view-issue,id=2946/"}, {"@id": "resource/ISSN/2056-6530#ISSN", "@type": "http://id.loc.gov/ontologies/bibframe/Issn", "status": "vocabularies/IdentifierStatus#Valid", "value": "2056-6530"}, {"@id": "resource/ISSN/2056-6530#ISSN-L", "@type": "http://id.loc.gov/ontologies/bibframe/IssnL", "status": "vocabularies/IdentifierStatus#Valid", "value": "2056-6522"}, {"@id": "resource/ISSN/2056-6530#KeyTitle", "@type": ["http://id.loc.gov/ontologies/bibframe/Identifier", "http://id.loc.gov/ontologies/bibframe/KeyTitle"], "value": "International journal of food design (Online)"}, {"@id": "resource/ISSN/2056-6530#Record", "@type": "http://schema.org/CreativeWork", "mainEntity": "resource/ISSN/2056-6530", "modified": "20171216174800.0", "status": "vocabularies/RecordStatus#Register", "wasAttributedTo": "organization/ISSNCenter#_2"}, {"@id": "resource/ISSN/2056-6530#ReferencePublicationEvent", "@type": "http://schema.org/PublicationEvent", "location": "http://id.loc.gov/vocabulary/countries/enk"}]