741 lines
166 KiB
JavaScript
741 lines
166 KiB
JavaScript
|
{
|
|||
|
"translatorID": "faa53754-fb55-4658-9094-ae8a7e0409a2",
|
|||
|
"translatorType": 1,
|
|||
|
"label": "OpenAlex JSON",
|
|||
|
"creator": "Sebastian Karcher",
|
|||
|
"target": "json",
|
|||
|
"minVersion": "5.0",
|
|||
|
"maxVersion": null,
|
|||
|
"priority": 100,
|
|||
|
"inRepository": true,
|
|||
|
"lastUpdated": "2024-07-30 14:55:00"
|
|||
|
}
|
|||
|
|
|||
|
/*
|
|||
|
***** BEGIN LICENSE BLOCK *****
|
|||
|
|
|||
|
Copyright © 2024 Sebastian Karcher
|
|||
|
|
|||
|
This file is part of Zotero.
|
|||
|
|
|||
|
Zotero is free software: you can redistribute it and/or modify
|
|||
|
it under the terms of the GNU Affero General Public License as published by
|
|||
|
the Free Software Foundation, either version 3 of the License, or
|
|||
|
(at your option) any later version.
|
|||
|
|
|||
|
Zotero is distributed in the hope that it will be useful,
|
|||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||
|
GNU Affero General Public License for more details.
|
|||
|
|
|||
|
You should have received a copy of the GNU Affero General Public License
|
|||
|
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
|
|||
|
***** END LICENSE BLOCK *****
|
|||
|
*/
|
|||
|
|
|||
|
// copied from CSL JSON
|
|||
|
function parseInput() {
|
|||
|
var str, json = "";
|
|||
|
|
|||
|
// Read in the whole file at once, since we can't easily parse a JSON stream. The
|
|||
|
// chunk size here is pretty arbitrary, although larger chunk sizes may be marginally
|
|||
|
// faster. We set it to 1MB.
|
|||
|
while ((str = Z.read(1048576)) !== false) json += str;
|
|||
|
|
|||
|
try {
|
|||
|
return JSON.parse(json);
|
|||
|
}
|
|||
|
catch (e) {
|
|||
|
Zotero.debug(e);
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function detectImport() {
|
|||
|
var parsedData = parseInput();
|
|||
|
// Z.debug(parsedData.ids)
|
|||
|
if (parsedData && parsedData.ids && parsedData.ids.openalex) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
else if (parsedData && parsedData.results && parsedData.results[0].ids && parsedData.results[0].ids.openalex) {
|
|||
|
return true;
|
|||
|
}
|
|||
|
return false;
|
|||
|
}
|
|||
|
|
|||
|
/* eslint-disable camelcase*/
|
|||
|
var PDFversionMap = {
|
|||
|
submittedVersion: "Submitted Version PDF",
|
|||
|
acceptedVersion: "Accepted Version PDF",
|
|||
|
publishedVersion: "Full Text PDF"
|
|||
|
};
|
|||
|
/* eslint-disable camelcase*/
|
|||
|
/* https://docs.openalex.org/api-entities/works/work-object#type */
|
|||
|
var mappingTypes = {
|
|||
|
article: "journalArticle",
|
|||
|
book: "book",
|
|||
|
"book-chapter": "bookSection",
|
|||
|
dissertation: "thesis",
|
|||
|
other: "document",
|
|||
|
report: "report",
|
|||
|
paratext: "document",
|
|||
|
dataset: "dataset",
|
|||
|
"reference-entry": "encyclopediaArticle",
|
|||
|
standard: "standard",
|
|||
|
editorial: "journalArticle",
|
|||
|
letter: "journalArticle",
|
|||
|
"peer-review": "document", // up for debate
|
|||
|
erratum: "journalArticle",
|
|||
|
grant: "manuscript", // up for debate
|
|||
|
preprint: "preprint",
|
|||
|
review: "journalArticle",
|
|||
|
libguides: "encyclopediaArticle",
|
|||
|
"supplementary-materials": "journalArticle",
|
|||
|
retraction: "journalArticle",
|
|||
|
};
|
|||
|
|
|||
|
function doImport() {
|
|||
|
var data = parseInput();
|
|||
|
if (data.ids) {
|
|||
|
parseIndividual(data);
|
|||
|
}
|
|||
|
else {
|
|||
|
let results = data.results;
|
|||
|
for (let result of results) {
|
|||
|
parseIndividual(result);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
function parseIndividual(data) {
|
|||
|
let OAtype = data.type;
|
|||
|
// Z.debug(OAtype)
|
|||
|
let type = mappingTypes[OAtype] || "document";
|
|||
|
var item = new Zotero.Item(type);
|
|||
|
item.title = data.title;
|
|||
|
// fix all caps titles
|
|||
|
if (item.title == item.title.toUpperCase()) {
|
|||
|
item.title = ZU.capitalizeTitle(item.title, true);
|
|||
|
}
|
|||
|
item.date = data.publication_date;
|
|||
|
item.language = data.language;
|
|||
|
if (data.doi) {
|
|||
|
item.DOI = ZU.cleanDOI(data.doi);
|
|||
|
}
|
|||
|
if (data.primary_location.source) {
|
|||
|
let sourceName = data.primary_location.source.display_name;
|
|||
|
if (item.itemType == "thesis" || item.itemType == "dataset") {
|
|||
|
item.publisher = sourceName;
|
|||
|
}
|
|||
|
else if (item.itemType == "book") {
|
|||
|
item.publisher = data.primary_location.source.host_organization_name;
|
|||
|
}
|
|||
|
else {
|
|||
|
item.publicationTitle = sourceName;
|
|||
|
item.publisher = data.primary_location.source.host_organization_name;
|
|||
|
}
|
|||
|
if (typeof data.primary_location.source.issn === 'string') {
|
|||
|
item.ISSN = data.primary_location.source.issn;
|
|||
|
}
|
|||
|
else if (Array.isArray(data.primary_location.source.issn)) {
|
|||
|
item.ISSN = data.primary_location.source.issn[0];
|
|||
|
}
|
|||
|
if (data.primary_location.source.type == "journal") {
|
|||
|
Zotero.debug(`Item type was ${item.itemType} -- changing to journalArticle because source.type == 'journal'`);
|
|||
|
item.itemType = "journalArticle";
|
|||
|
}
|
|||
|
else if (data.primary_location.source.type == "conference") {
|
|||
|
Zotero.debug(`Item type was ${item.itemType} -- changing to conferencePaper because source.type == 'conference'`);
|
|||
|
item.itemType = "conferencePaper";
|
|||
|
}
|
|||
|
if (data.primary_location.version == "submittedVersion") {
|
|||
|
Zotero.debug(`Item type was ${item.itemType} -- changing to preprint because version == 'submittedVersion'`);
|
|||
|
item.itemType = "preprint";
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
let biblio = data.biblio;
|
|||
|
item.issue = biblio.issue;
|
|||
|
item.volume = biblio.volume;
|
|||
|
if (biblio.first_page && biblio.last_page && biblio.first_page != biblio.last_page) {
|
|||
|
item.pages = biblio.first_page + "-" + biblio.last_page;
|
|||
|
}
|
|||
|
else if (biblio.first_page) {
|
|||
|
item.pages = biblio.first_page;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
let authors = data.authorships;
|
|||
|
for (let author of authors) {
|
|||
|
let authorName = author.author.display_name;
|
|||
|
item.creators.push(ZU.cleanAuthor(authorName, "author", false));
|
|||
|
}
|
|||
|
if (item.itemType == "thesis" && !item.publisher & authors.length) {
|
|||
|
// use author affiliation as university
|
|||
|
item.university = authors[0].raw_affiliation_string;
|
|||
|
}
|
|||
|
|
|||
|
if (data.best_oa_location && data.best_oa_location.pdf_url) {
|
|||
|
let version = "Submitted Version PDF";
|
|||
|
if (data.best_oa_location.version) {
|
|||
|
version = PDFversionMap[data.best_oa_location.version];
|
|||
|
}
|
|||
|
item.attachments.push({ url: data.best_oa_location.pdf_url, title: version, mimeType: "application/pdf" });
|
|||
|
}
|
|||
|
let tags = data.keywords;
|
|||
|
for (let tag of tags) {
|
|||
|
item.tags.push(tag.display_name || tag.keyword);
|
|||
|
}
|
|||
|
item.extra = "OpenAlex: " + data.ids.openalex;
|
|||
|
item.complete();
|
|||
|
}
|
|||
|
|
|||
|
/** BEGIN TEST CASES **/
|
|||
|
var testCases = [
|
|||
|
{
|
|||
|
"type": "import",
|
|||
|
"input": "{\r\n \"id\": \"https://openalex.org/W2099326003\",\r\n \"doi\": \"https://doi.org/10.2307/1885099\",\r\n \"title\": \"Labor Contracts as Partial Gift Exchange\",\r\n \"display_name\": \"Labor Contracts as Partial Gift Exchange\",\r\n \"publication_year\": 1982,\r\n \"publication_date\": \"1982-11-01\",\r\n \"ids\": {\r\n \"openalex\": \"https://openalex.org/W2099326003\",\r\n \"doi\": \"https://doi.org/10.2307/1885099\",\r\n \"mag\": \"2099326003\"\r\n },\r\n \"language\": \"en\",\r\n \"primary_location\": {\r\n \"is_oa\": false,\r\n \"landing_page_url\": \"https://doi.org/10.2307/1885099\",\r\n \"pdf_url\": null,\r\n \"source\": {\r\n \"id\": \"https://openalex.org/S203860005\",\r\n \"display_name\": \"The Quarterly Journal of Economics\",\r\n \"issn_l\": \"0033-5533\",\r\n \"issn\": [\r\n \"0033-5533\",\r\n \"1531-4650\"\r\n ],\r\n \"is_oa\": false,\r\n \"is_in_doaj\": false,\r\n \"host_organization\": \"https://openalex.org/P4310311648\",\r\n \"host_organization_name\": \"Oxford University Press\",\r\n \"host_organization_lineage\": [\r\n \"https://openalex.org/P4310311647\",\r\n \"https://openalex.org/P4310311648\"\r\n ],\r\n \"host_organization_lineage_names\": [\r\n \"University of Oxford\",\r\n \"Oxford University Press\"\r\n ],\r\n \"type\": \"journal\"\r\n },\r\n \"license\": null,\r\n \"version\": null,\r\n \"is_accepted\": false,\r\n \"is_published\": false\r\n },\r\n \"type\": \"article\",\r\n \"type_crossref\": \"journal-article\",\r\n \"indexed_in\": [\r\n \"crossref\"\r\n ],\r\n \"open_access\": {\r\n \"is_oa\": false,\r\n \"oa_status\": \"closed\",\r\n \"oa_url\": null,\r\n \"any_repository_has_fulltext\": false\r\n },\r\n \"authorships\": [\r\n {\r\n \"author_position\": \"first\",\r\n \"author\": {\r\n \"id\": \"https://openalex.org/A5081873388\",\r\n \"display_name\": \"George A. Akerlof\",\r\n \"orcid\": null\r\n },\r\n \"institutions\": [\r\n {\r\n \"id\": \"https://openalex.org/I95457486\",\r\n \"display_name\": \"University of California, Berkeley\",\r\n \"ror\": \"https://ror.org/01an7q238\",\r\n \"country_code\": \"US\",\r\n \"type\": \"education\",\r\n \"lineage\": [\r\n \"https://openalex.org/I2803209242\",\r\n \"https://openalex.org/I95457486\"\r\n ]\r\n }\r\n ],\r\n \"countries\": [\r\n \"US\"\r\n ],\r\n \"is_corresponding\": true,\r\n \"raw_author_name\": \"George A. Akerlof\",\r\n \"raw_affiliation_string\": \"University of California, Berkeley\",\r\n \"raw_affiliation_strings\": [\r\n \"University of California, Berkeley\"\r\n ]\r\n }\r\n ],\r\n \"countries_distinct_count\": 1,\r\n \"institutions_distinct_count\": 1,\r\n \"corresponding_author_ids\": [\r\n \"https://openalex.org/A5081873388\"\r\n ],\r\n \"corresponding_institution_ids\": [\r\n \"https://openalex.org/I95457486\"\r\n ],\r\n \"apc_list\": {\r\n \"value\": 6977,\r\n \"currency\": \"USD\",\r\n \"value_usd\": 6977,\r\n \"provenance\": \"doaj\"\r\n },\r\n \"apc_paid\": {\r\n \"value\": 6977,\r\n \"currency\": \"USD\",\r\n \"value_usd\": 6977,\r\n \"provenance\": \"doaj\"\r\n },\r\n \"has_fulltext\": true,\r\n \"fulltext_origin\": \"ngrams\",\r\n \"cited_by_count\": 2786,\r\n \"cited_by_percentile_year\": {\r\n \"min\": 99,\r\n \"max\": 100\r\n },\r\n \"biblio\": {\r\n \"volume\": \"97\",\r\n \"issue\": \"4\",\r\n \"first_page\": \"543\",\r\n \"last_page\": \"543\"\r\n },\r\n \"is_retracted\": false,\r\n \"is_paratext\": false,\r\n \"primary_topic\": {\r\n \"id\": \"https://openalex.org/T10208\",\r\n \"display_name\": \"Labor Market Dynamics and Inequality\",\r\n \"score\": 0.9877,\r\n \"subfield\": {\r\n \"id\": \"https://openalex.org/subfields/2002\",\r\n
|
|||
|
"items": [
|
|||
|
{
|
|||
|
"itemType": "journalArticle",
|
|||
|
"title": "Labor Contracts as Partial Gift Exchange",
|
|||
|
"creators": [
|
|||
|
{
|
|||
|
"firstName": "George A.",
|
|||
|
"lastName": "Akerlof",
|
|||
|
"creatorType": "author"
|
|||
|
}
|
|||
|
],
|
|||
|
"date": "1982-11-01",
|
|||
|
"DOI": "10.2307/1885099",
|
|||
|
"ISSN": "0033-5533",
|
|||
|
"extra": "OpenAlex: https://openalex.org/W2099326003",
|
|||
|
"issue": "4",
|
|||
|
"language": "en",
|
|||
|
"pages": "543",
|
|||
|
"publicationTitle": "The Quarterly Journal of Economics",
|
|||
|
"volume": "97",
|
|||
|
"attachments": [],
|
|||
|
"tags": [
|
|||
|
{
|
|||
|
"tag": "exchange"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "gift"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "labor"
|
|||
|
}
|
|||
|
],
|
|||
|
"notes": [],
|
|||
|
"seeAlso": []
|
|||
|
}
|
|||
|
]
|
|||
|
},
|
|||
|
{
|
|||
|
"type": "import",
|
|||
|
"input": "{\"id\":\"https://openalex.org/W3123223998\",\"doi\":\"https://doi.org/10.1257/0002828042002561\",\"title\":\"Are Emily and Greg More Employable Than Lakisha and Jamal? A Field Experiment on Labor Market Discrimination\",\"display_name\":\"Are Emily and Greg More Employable Than Lakisha and Jamal? A Field Experiment on Labor Market Discrimination\",\"publication_year\":2004,\"publication_date\":\"2004-09-01\",\"ids\":{\"openalex\":\"https://openalex.org/W3123223998\",\"doi\":\"https://doi.org/10.1257/0002828042002561\",\"mag\":\"3123223998\"},\"language\":\"en\",\"primary_location\":{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1257/0002828042002561\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S23254222\",\"display_name\":\"The American Economic Review\",\"issn_l\":\"0002-8282\",\"issn\":[\"1944-7981\",\"0002-8282\"],\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310315912\",\"host_organization_name\":\"American Economic Association\",\"host_organization_lineage\":[\"https://openalex.org/P4310315912\"],\"host_organization_lineage_names\":[\"American Economic Association\"],\"type\":\"journal\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"article\",\"type_crossref\":\"journal-article\",\"indexed_in\":[\"crossref\"],\"open_access\":{\"is_oa\":true,\"oa_status\":\"green\",\"oa_url\":\"http://papers.nber.org/papers/w9873.pdf\",\"any_repository_has_fulltext\":true},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5002563734\",\"display_name\":\"Marianne Bertrand\",\"orcid\":null},\"institutions\":[{\"id\":\"https://openalex.org/I40347166\",\"display_name\":\"University of Chicago\",\"ror\":\"https://ror.org/024mw5h28\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I40347166\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Marianne Bertrand\",\"raw_affiliation_string\":\"University of Chicago ( )\",\"raw_affiliation_strings\":[\"University of Chicago ( )\"]},{\"author_position\":\"last\",\"author\":{\"id\":\"https://openalex.org/A5034703281\",\"display_name\":\"Sendhil Mullainathan\",\"orcid\":\"https://orcid.org/0000-0001-8508-4052\"},\"institutions\":[{\"id\":\"https://openalex.org/I63966007\",\"display_name\":\"Massachusetts Institute of Technology\",\"ror\":\"https://ror.org/042nb2s44\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I63966007\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Sendhil Mullainathan\",\"raw_affiliation_string\":\"Massachusetts Institute Of Technology#TAB#\",\"raw_affiliation_strings\":[\"Massachusetts Institute Of Technology#TAB#\"]}],\"countries_distinct_count\":1,\"institutions_distinct_count\":2,\"corresponding_author_ids\":[],\"corresponding_institution_ids\":[],\"apc_list\":null,\"apc_paid\":null,\"has_fulltext\":false,\"cited_by_count\":3465,\"cited_by_percentile_year\":{\"min\":99,\"max\":100},\"biblio\":{\"volume\":\"94\",\"issue\":\"4\",\"first_page\":\"991\",\"last_page\":\"1013\"},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T12970\",\"display_name\":\"Labor Market Discrimination and Inequality in Employment\",\"score\":1.0,\"subfield\":{\"id\":\"3312\",\"display_name\":\"Sociology and Political Science\"},\"field\":{\"id\":\"33\",\"display_name\":\"Social Sciences\"},\"domain\":{\"id\":\"2\",\"display_name\":\"Social Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T12970\",\"display_name\":\"Labor Market Discrimination and Inequality in Employment\",\"score\":1.0,\"subfield\":{\"id\":\"3312\",\"display_name\":\"Sociology and Political Science\"},\"field\":{\"id\":\"33\",\"display_name\":\"Social Sciences\"},\"domain\":{\"id\":\"2\",\"display_name\":\"Social Sciences\"}},{\"id\":\"https://openalex.org/T14006\",\"display_name\":\"Linguistic Borrowing and Language Contact Phenomena\",\"score\":0.9506,\"subfield\":{\"id\":\"1203\",\"disp
|
|||
|
"items": [
|
|||
|
{
|
|||
|
"itemType": "journalArticle",
|
|||
|
"title": "Are Emily and Greg More Employable Than Lakisha and Jamal? A Field Experiment on Labor Market Discrimination",
|
|||
|
"creators": [
|
|||
|
{
|
|||
|
"firstName": "Marianne",
|
|||
|
"lastName": "Bertrand",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Sendhil",
|
|||
|
"lastName": "Mullainathan",
|
|||
|
"creatorType": "author"
|
|||
|
}
|
|||
|
],
|
|||
|
"date": "2004-09-01",
|
|||
|
"DOI": "10.1257/0002828042002561",
|
|||
|
"ISSN": "1944-7981",
|
|||
|
"extra": "OpenAlex: https://openalex.org/W3123223998",
|
|||
|
"issue": "4",
|
|||
|
"language": "en",
|
|||
|
"pages": "991-1013",
|
|||
|
"publicationTitle": "The American Economic Review",
|
|||
|
"volume": "94",
|
|||
|
"attachments": [
|
|||
|
{
|
|||
|
"title": "Full Text PDF",
|
|||
|
"mimeType": "application/pdf"
|
|||
|
}
|
|||
|
],
|
|||
|
"tags": [
|
|||
|
{
|
|||
|
"tag": "emily"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "labor market discrimination"
|
|||
|
}
|
|||
|
],
|
|||
|
"notes": [],
|
|||
|
"seeAlso": []
|
|||
|
}
|
|||
|
]
|
|||
|
},
|
|||
|
{
|
|||
|
"type": "import",
|
|||
|
"input": "{\"id\":\"https://openalex.org/W2105705711\",\"doi\":\"https://doi.org/10.1007/978-94-017-1406-8_2\",\"title\":\"The Effects of Financial Incentives in Experiments: A Review and Capital-Labor-Production Framework\",\"display_name\":\"The Effects of Financial Incentives in Experiments: A Review and Capital-Labor-Production Framework\",\"publication_year\":1999,\"publication_date\":\"1999-01-01\",\"ids\":{\"openalex\":\"https://openalex.org/W2105705711\",\"doi\":\"https://doi.org/10.1007/978-94-017-1406-8_2\",\"mag\":\"2105705711\"},\"language\":\"en\",\"primary_location\":{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1007/978-94-017-1406-8_2\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306463937\",\"display_name\":\"Springer eBooks\",\"issn_l\":null,\"issn\":null,\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310319965\",\"host_organization_name\":\"Springer Nature\",\"host_organization_lineage\":[\"https://openalex.org/P4310319965\"],\"host_organization_lineage_names\":[\"Springer Nature\"],\"type\":\"ebook platform\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"book-chapter\",\"type_crossref\":\"book-chapter\",\"indexed_in\":[\"crossref\"],\"open_access\":{\"is_oa\":true,\"oa_status\":\"green\",\"oa_url\":\"https://authors.library.caltech.edu/83580/1/sswp1059.pdf\",\"any_repository_has_fulltext\":true},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5024087833\",\"display_name\":\"Colin F. Camerer\",\"orcid\":\"https://orcid.org/0000-0003-4049-1871\"},\"institutions\":[{\"id\":\"https://openalex.org/I122411786\",\"display_name\":\"California Institute of Technology\",\"ror\":\"https://ror.org/05dxps055\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I122411786\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Colin F. Camerer\",\"raw_affiliation_string\":\"Division of Humanities and Social Sciences 228-77, California Institute of Technology, Pasadena,\",\"raw_affiliation_strings\":[\"Division of Humanities and Social Sciences 228-77, California Institute of Technology, Pasadena,\"]},{\"author_position\":\"last\",\"author\":{\"id\":\"https://openalex.org/A5047900722\",\"display_name\":\"Robin M. Hogarth\",\"orcid\":\"https://orcid.org/0000-0001-7671-8981\"},\"institutions\":[{\"id\":\"https://openalex.org/I40347166\",\"display_name\":\"University of Chicago\",\"ror\":\"https://ror.org/024mw5h28\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I40347166\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Robin M. Hogarth\",\"raw_affiliation_string\":\"University of Chicago (Chicago).\",\"raw_affiliation_strings\":[\"University of Chicago (Chicago).\"]}],\"countries_distinct_count\":1,\"institutions_distinct_count\":2,\"corresponding_author_ids\":[],\"corresponding_institution_ids\":[],\"apc_list\":null,\"apc_paid\":null,\"has_fulltext\":false,\"cited_by_count\":622,\"cited_by_percentile_year\":{\"min\":99,\"max\":100},\"biblio\":{\"volume\":null,\"issue\":null,\"first_page\":\"7\",\"last_page\":\"48\"},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T10646\",\"display_name\":\"Social Preferences and Economic Behavior\",\"score\":0.9999,\"subfield\":{\"id\":\"https://openalex.org/subfields/3311\",\"display_name\":\"Safety Research\"},\"field\":{\"id\":\"https://openalex.org/fields/33\",\"display_name\":\"Social Sciences\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T10646\",\"display_name\":\"Social Preferences and Economic Behavior\",\"score\":0.9999,\"subfield\":{\"id\":\"https://openalex.org/subfields/3311\",\"display_name\":\"Safety Research\"},\"field\":{\"id\":\"https://openalex.org/fields/33\",\"display_name\":\"Social Sciences\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"dis
|
|||
|
"items": [
|
|||
|
{
|
|||
|
"itemType": "bookSection",
|
|||
|
"title": "The Effects of Financial Incentives in Experiments: A Review and Capital-Labor-Production Framework",
|
|||
|
"creators": [
|
|||
|
{
|
|||
|
"firstName": "Colin F.",
|
|||
|
"lastName": "Camerer",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Robin M.",
|
|||
|
"lastName": "Hogarth",
|
|||
|
"creatorType": "author"
|
|||
|
}
|
|||
|
],
|
|||
|
"date": "1999-01-01",
|
|||
|
"bookTitle": "Springer eBooks",
|
|||
|
"extra": "OpenAlex: https://openalex.org/W2105705711",
|
|||
|
"language": "en",
|
|||
|
"pages": "7-48",
|
|||
|
"publisher": "Springer Nature",
|
|||
|
"attachments": [
|
|||
|
{
|
|||
|
"title": "Accepted Version PDF",
|
|||
|
"mimeType": "application/pdf"
|
|||
|
}
|
|||
|
],
|
|||
|
"tags": [
|
|||
|
{
|
|||
|
"tag": "capital-labor-production"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "experiments"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "financial incentives"
|
|||
|
}
|
|||
|
],
|
|||
|
"notes": [],
|
|||
|
"seeAlso": []
|
|||
|
}
|
|||
|
]
|
|||
|
},
|
|||
|
{
|
|||
|
"type": "import",
|
|||
|
"input": "{\"id\":\"https://openalex.org/W4234549826\",\"doi\":\"https://doi.org/10.1215/9780822377009\",\"title\":\"Clinical Labor\",\"display_name\":\"Clinical Labor\",\"publication_year\":2014,\"publication_date\":\"2014-01-01\",\"ids\":{\"openalex\":\"https://openalex.org/W4234549826\",\"doi\":\"https://doi.org/10.1215/9780822377009\"},\"language\":null,\"primary_location\":{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1215/9780822377009\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306463122\",\"display_name\":\"Duke University Press eBooks\",\"issn_l\":null,\"issn\":null,\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310315698\",\"host_organization_name\":\"Duke University Press\",\"host_organization_lineage\":[\"https://openalex.org/P4310315572\",\"https://openalex.org/P4310315698\"],\"host_organization_lineage_names\":[\"Duke University\",\"Duke University Press\"],\"type\":\"ebook platform\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"book\",\"type_crossref\":\"book\",\"indexed_in\":[\"crossref\"],\"open_access\":{\"is_oa\":false,\"oa_status\":\"closed\",\"oa_url\":null,\"any_repository_has_fulltext\":false},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5081203523\",\"display_name\":\"Melinda Cooper\",\"orcid\":\"https://orcid.org/0000-0001-8341-8282\"},\"institutions\":[],\"countries\":[],\"is_corresponding\":false,\"raw_author_name\":\"Melinda Cooper\",\"raw_affiliation_string\":\"\",\"raw_affiliation_strings\":[]},{\"author_position\":\"last\",\"author\":{\"id\":\"https://openalex.org/A5053202470\",\"display_name\":\"Catherine Waldby\",\"orcid\":\"https://orcid.org/0000-0002-5989-9917\"},\"institutions\":[],\"countries\":[],\"is_corresponding\":false,\"raw_author_name\":\"Catherine Waldby\",\"raw_affiliation_string\":\"\",\"raw_affiliation_strings\":[]}],\"countries_distinct_count\":0,\"institutions_distinct_count\":0,\"corresponding_author_ids\":[],\"corresponding_institution_ids\":[],\"apc_list\":null,\"apc_paid\":null,\"has_fulltext\":false,\"cited_by_count\":406,\"cited_by_percentile_year\":{\"min\":99,\"max\":100},\"biblio\":{\"volume\":null,\"issue\":null,\"first_page\":null,\"last_page\":null},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T12664\",\"display_name\":\"Development and Evaluation of Clinical Guidelines\",\"score\":0.3247,\"subfield\":{\"id\":\"https://openalex.org/subfields/2739\",\"display_name\":\"Public Health, Environmental and Occupational Health\"},\"field\":{\"id\":\"https://openalex.org/fields/27\",\"display_name\":\"Medicine\"},\"domain\":{\"id\":\"https://openalex.org/domains/4\",\"display_name\":\"Health Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T12664\",\"display_name\":\"Development and Evaluation of Clinical Guidelines\",\"score\":0.3247,\"subfield\":{\"id\":\"https://openalex.org/subfields/2739\",\"display_name\":\"Public Health, Environmental and Occupational Health\"},\"field\":{\"id\":\"https://openalex.org/fields/27\",\"display_name\":\"Medicine\"},\"domain\":{\"id\":\"https://openalex.org/domains/4\",\"display_name\":\"Health Sciences\"}}],\"keywords\":[{\"keyword\":\"labor\",\"score\":0.7357},{\"keyword\":\"clinical\",\"score\":0.6233}],\"concepts\":[{\"id\":\"https://openalex.org/C17744445\",\"wikidata\":\"https://www.wikidata.org/wiki/Q36442\",\"display_name\":\"Political science\",\"level\":0,\"score\":0.3224085}],\"mesh\":[],\"locations_count\":1,\"locations\":[{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1215/9780822377009\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306463122\",\"display_name\":\"Duke University Press eBooks\",\"issn_l\":null,\"issn\":null,\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310315698\",\"host_organization_name\":\"Duke University Press\",\"host_organization_lineage\":[\"https://openalex.org/P4310315572\",\"https://openalex.org/P4310315698\"],\"ho
|
|||
|
"items": [
|
|||
|
{
|
|||
|
"itemType": "book",
|
|||
|
"title": "Clinical Labor",
|
|||
|
"creators": [
|
|||
|
{
|
|||
|
"firstName": "Melinda",
|
|||
|
"lastName": "Cooper",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Catherine",
|
|||
|
"lastName": "Waldby",
|
|||
|
"creatorType": "author"
|
|||
|
}
|
|||
|
],
|
|||
|
"date": "2014-01-01",
|
|||
|
"extra": "OpenAlex: https://openalex.org/W4234549826",
|
|||
|
"publisher": "Duke University Press",
|
|||
|
"attachments": [],
|
|||
|
"tags": [
|
|||
|
{
|
|||
|
"tag": "clinical"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "labor"
|
|||
|
}
|
|||
|
],
|
|||
|
"notes": [],
|
|||
|
"seeAlso": []
|
|||
|
}
|
|||
|
]
|
|||
|
},
|
|||
|
{
|
|||
|
"type": "import",
|
|||
|
"input": "{\"id\":\"https://openalex.org/W2257674859\",\"doi\":\"https://doi.org/10.18130/v3v002\",\"title\":\"The GULag and Laogai: A Comparative Study of Forced Labor through Camp Literature\",\"display_name\":\"The GULag and Laogai: A Comparative Study of Forced Labor through Camp Literature\",\"publication_year\":2017,\"publication_date\":\"2017-08-09\",\"ids\":{\"openalex\":\"https://openalex.org/W2257674859\",\"doi\":\"https://doi.org/10.18130/v3v002\",\"mag\":\"2257674859\"},\"language\":\"en\",\"primary_location\":{\"is_oa\":true,\"landing_page_url\":\"https://doi.org/10.18130/v3v002\",\"pdf_url\":\"https://libraetd.lib.virginia.edu/downloads/5425kb078?filename=Stepanic_Stanley_Dec2012.pdf\",\"source\":null,\"license\":null,\"version\":\"publishedVersion\",\"is_accepted\":true,\"is_published\":true},\"type\":\"dissertation\",\"type_crossref\":\"dissertation\",\"indexed_in\":[\"crossref\"],\"open_access\":{\"is_oa\":true,\"oa_status\":\"bronze\",\"oa_url\":\"https://libraetd.lib.virginia.edu/downloads/5425kb078?filename=Stepanic_Stanley_Dec2012.pdf\",\"any_repository_has_fulltext\":true},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5078709935\",\"display_name\":\"Stanley Joseph Stepanic\",\"orcid\":null},\"institutions\":[{\"id\":\"https://openalex.org/I51556381\",\"display_name\":\"University of Virginia\",\"ror\":\"https://ror.org/0153tk833\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I51556381\"]}],\"countries\":[\"US\"],\"is_corresponding\":true,\"raw_author_name\":\"Stanley Joseph Stepanic\",\"raw_affiliation_string\":\"University of Virginia\",\"raw_affiliation_strings\":[\"University of Virginia\"]}],\"countries_distinct_count\":1,\"institutions_distinct_count\":1,\"corresponding_author_ids\":[\"https://openalex.org/A5078709935\"],\"corresponding_institution_ids\":[\"https://openalex.org/I51556381\"],\"apc_list\":null,\"apc_paid\":null,\"has_fulltext\":true,\"fulltext_origin\":\"pdf\",\"cited_by_count\":1,\"cited_by_percentile_year\":{\"min\":70,\"max\":76},\"biblio\":{\"volume\":null,\"issue\":null,\"first_page\":null,\"last_page\":null},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T13802\",\"display_name\":\"Social and Cultural Development in Vietnam\",\"score\":0.9421,\"subfield\":{\"id\":\"https://openalex.org/subfields/3312\",\"display_name\":\"Sociology and Political Science\"},\"field\":{\"id\":\"https://openalex.org/fields/33\",\"display_name\":\"Social Sciences\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T13802\",\"display_name\":\"Social and Cultural Development in Vietnam\",\"score\":0.9421,\"subfield\":{\"id\":\"https://openalex.org/subfields/3312\",\"display_name\":\"Sociology and Political Science\"},\"field\":{\"id\":\"https://openalex.org/fields/33\",\"display_name\":\"Social Sciences\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}},{\"id\":\"https://openalex.org/T10893\",\"display_name\":\"Religious Diversity and Regulation in Chinese Society\",\"score\":0.9331,\"subfield\":{\"id\":\"https://openalex.org/subfields/3312\",\"display_name\":\"Sociology and Political Science\"},\"field\":{\"id\":\"https://openalex.org/fields/33\",\"display_name\":\"Social Sciences\"},\"domain\":{\"id\":\"https://openalex.org/domains/2\",\"display_name\":\"Social Sciences\"}}],\"keywords\":[{\"keyword\":\"gulag\",\"score\":0.6365},{\"keyword\":\"forced labor\",\"score\":0.5605},{\"keyword\":\"camp\",\"score\":0.3939},{\"keyword\":\"laogai\",\"score\":0.3371}],\"concepts\":[{\"id\":\"https://openalex.org/C2776721811\",\"wikidata\":\"https://www.wikidata.org/wiki/Q161448\",\"display_name\":\"Gulag\",\"level\":2,\"score\":0.97338235},{\"id\":\"https://openalex.org/C95457728\",\"wikidata\":\"https://www.wikidata.org/wiki/Q309\",\"display_name\":\"History\",\"level\":0,\"score\":0.34109622},{\"id\":\"https://openalex.org/C17744445\",\"wikidat
|
|||
|
"items": [
|
|||
|
{
|
|||
|
"itemType": "thesis",
|
|||
|
"title": "The GULag and Laogai: A Comparative Study of Forced Labor through Camp Literature",
|
|||
|
"creators": [
|
|||
|
{
|
|||
|
"firstName": "Stanley Joseph",
|
|||
|
"lastName": "Stepanic",
|
|||
|
"creatorType": "author"
|
|||
|
}
|
|||
|
],
|
|||
|
"date": "2017-08-09",
|
|||
|
"extra": "OpenAlex: https://openalex.org/W2257674859",
|
|||
|
"language": "en",
|
|||
|
"university": "University of Virginia",
|
|||
|
"attachments": [
|
|||
|
{
|
|||
|
"title": "Full Text PDF",
|
|||
|
"mimeType": "application/pdf"
|
|||
|
}
|
|||
|
],
|
|||
|
"tags": [
|
|||
|
{
|
|||
|
"tag": "camp"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "forced labor"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "gulag"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "laogai"
|
|||
|
}
|
|||
|
],
|
|||
|
"notes": [],
|
|||
|
"seeAlso": []
|
|||
|
}
|
|||
|
]
|
|||
|
},
|
|||
|
{
|
|||
|
"type": "import",
|
|||
|
"input": "{\"meta\":{\"count\":5,\"db_response_time_ms\":444,\"page\":1,\"per_page\":25,\"groups_count\":null},\"results\":[{\"id\":\"https://openalex.org/W2046245907\",\"doi\":\"https://doi.org/10.1109/tau.1965.1161805\",\"title\":\"On the audibility of amplifier phase distortion\",\"display_name\":\"On the audibility of amplifier phase distortion\",\"relevance_score\":0.99999994,\"publication_year\":1965,\"publication_date\":\"1965-07-01\",\"ids\":{\"openalex\":\"https://openalex.org/W2046245907\",\"doi\":\"https://doi.org/10.1109/tau.1965.1161805\",\"mag\":\"2046245907\"},\"language\":\"en\",\"primary_location\":{\"is_oa\":false,\"landing_page_url\":\"https://doi.org/10.1109/tau.1965.1161805\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S186564409\",\"display_name\":\"IEEE Transactions on Audio\",\"issn_l\":\"0096-1620\",\"issn\":[\"1558-2663\",\"0096-1620\"],\"is_oa\":false,\"is_in_doaj\":false,\"host_organization\":\"https://openalex.org/P4310319808\",\"host_organization_name\":\"Institute of Electrical and Electronics Engineers\",\"host_organization_lineage\":[\"https://openalex.org/P4310319808\"],\"host_organization_lineage_names\":[\"Institute of Electrical and Electronics Engineers\"],\"type\":\"journal\"},\"license\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"article\",\"type_crossref\":\"journal-article\",\"indexed_in\":[\"crossref\"],\"open_access\":{\"is_oa\":false,\"oa_status\":\"closed\",\"oa_url\":null,\"any_repository_has_fulltext\":false},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5025692314\",\"display_name\":\"G. Wentworth\",\"orcid\":null},\"institutions\":[],\"countries\":[],\"is_corresponding\":true,\"raw_author_name\":\"G. Wentworth\",\"raw_affiliation_string\":\"Ridgmar Blvd. Fort Worth, Tex\",\"raw_affiliation_strings\":[\"Ridgmar Blvd. Fort Worth, Tex\"]}],\"countries_distinct_count\":0,\"institutions_distinct_count\":0,\"corresponding_author_ids\":[\"https://openalex.org/A5025692314\"],\"corresponding_institution_ids\":[],\"apc_list\":null,\"apc_paid\":null,\"has_fulltext\":true,\"fulltext_origin\":\"ngrams\",\"cited_by_count\":2,\"cited_by_percentile_year\":{\"min\":74,\"max\":78},\"biblio\":{\"volume\":\"AU-13\",\"issue\":\"4\",\"first_page\":\"99\",\"last_page\":\"99\"},\"is_retracted\":false,\"is_paratext\":false,\"primary_topic\":{\"id\":\"https://openalex.org/T10688\",\"display_name\":\"Image Denoising Techniques and Algorithms\",\"score\":0.5802,\"subfield\":{\"id\":\"https://openalex.org/subfields/1707\",\"display_name\":\"Computer Vision and Pattern Recognition\"},\"field\":{\"id\":\"https://openalex.org/fields/17\",\"display_name\":\"Computer Science\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}},\"topics\":[{\"id\":\"https://openalex.org/T10688\",\"display_name\":\"Image Denoising Techniques and Algorithms\",\"score\":0.5802,\"subfield\":{\"id\":\"https://openalex.org/subfields/1707\",\"display_name\":\"Computer Vision and Pattern Recognition\"},\"field\":{\"id\":\"https://openalex.org/fields/17\",\"display_name\":\"Computer Science\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}},{\"id\":\"https://openalex.org/T13493\",\"display_name\":\"Acousto-Optic Interaction in Crystalline Materials\",\"score\":0.5614,\"subfield\":{\"id\":\"https://openalex.org/subfields/3107\",\"display_name\":\"Atomic and Molecular Physics, and Optics\"},\"field\":{\"id\":\"https://openalex.org/fields/31\",\"display_name\":\"Physics and Astronomy\"},\"domain\":{\"id\":\"https://openalex.org/domains/3\",\"display_name\":\"Physical Sciences\"}},{\"id\":\"https://openalex.org/T10662\",\"display_name\":\"Guided Wave Structural Health Monitoring in Materials\",\"score\":0.5351,\"subfield\":{\"id\":\"https://openalex.org/subfields/2211\",\"display_name\":\"Mechanics of Materials\"},\"field\":{\"id\":\"https://openalex.org/fields/22\",\"display_name\":\"Engineering\"},\"domain\":{\"id\":\"https://openalex.org/domains
|
|||
|
"items": [
|
|||
|
{
|
|||
|
"itemType": "journalArticle",
|
|||
|
"title": "On the audibility of amplifier phase distortion",
|
|||
|
"creators": [
|
|||
|
{
|
|||
|
"firstName": "G.",
|
|||
|
"lastName": "Wentworth",
|
|||
|
"creatorType": "author"
|
|||
|
}
|
|||
|
],
|
|||
|
"date": "1965-07-01",
|
|||
|
"DOI": "10.1109/tau.1965.1161805",
|
|||
|
"ISSN": "1558-2663",
|
|||
|
"extra": "OpenAlex: https://openalex.org/W2046245907",
|
|||
|
"issue": "4",
|
|||
|
"language": "en",
|
|||
|
"pages": "99",
|
|||
|
"publicationTitle": "IEEE Transactions on Audio",
|
|||
|
"volume": "AU-13",
|
|||
|
"attachments": [],
|
|||
|
"tags": [
|
|||
|
{
|
|||
|
"tag": "amplifier phase distortion"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "audibility"
|
|||
|
}
|
|||
|
],
|
|||
|
"notes": [],
|
|||
|
"seeAlso": []
|
|||
|
},
|
|||
|
{
|
|||
|
"itemType": "journalArticle",
|
|||
|
"title": "Notices",
|
|||
|
"creators": [],
|
|||
|
"date": "1983-01-13",
|
|||
|
"DOI": "10.1056/nejm198301133080228",
|
|||
|
"ISSN": "0028-4793",
|
|||
|
"extra": "OpenAlex: https://openalex.org/W4237963058",
|
|||
|
"issue": "2",
|
|||
|
"pages": "112",
|
|||
|
"publicationTitle": "The New England Journal of Medicine",
|
|||
|
"volume": "308",
|
|||
|
"attachments": [],
|
|||
|
"tags": [],
|
|||
|
"notes": [],
|
|||
|
"seeAlso": []
|
|||
|
},
|
|||
|
{
|
|||
|
"itemType": "bookSection",
|
|||
|
"title": "The Big Data Research Ecosystem",
|
|||
|
"creators": [
|
|||
|
{
|
|||
|
"firstName": "Moses John",
|
|||
|
"lastName": "Strydom",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Sheryl",
|
|||
|
"lastName": "Buckley",
|
|||
|
"creatorType": "author"
|
|||
|
}
|
|||
|
],
|
|||
|
"date": "2020-11-27",
|
|||
|
"bookTitle": "IGI Global eBooks",
|
|||
|
"extra": "OpenAlex: https://openalex.org/W4239223537",
|
|||
|
"language": "en",
|
|||
|
"pages": "2027-2057",
|
|||
|
"publisher": "IGI Global",
|
|||
|
"attachments": [],
|
|||
|
"tags": [
|
|||
|
{
|
|||
|
"tag": "big data"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "big data research ecosystem"
|
|||
|
}
|
|||
|
],
|
|||
|
"notes": [],
|
|||
|
"seeAlso": []
|
|||
|
},
|
|||
|
{
|
|||
|
"itemType": "journalArticle",
|
|||
|
"title": "Relative Biological Effectiveness of High Energy Protons Affecting Cabbage Seeds",
|
|||
|
"creators": [
|
|||
|
{
|
|||
|
"firstName": "L. V.",
|
|||
|
"lastName": "Nevzgodina",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "В. Г.",
|
|||
|
"lastName": "Кузнецов",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "",
|
|||
|
"lastName": "Sychkov",
|
|||
|
"creatorType": "author"
|
|||
|
}
|
|||
|
],
|
|||
|
"date": "1966-08-01",
|
|||
|
"ISSN": "1820-6069",
|
|||
|
"extra": "OpenAlex: https://openalex.org/W78857221",
|
|||
|
"language": "de",
|
|||
|
"publicationTitle": "Genetika",
|
|||
|
"attachments": [],
|
|||
|
"tags": [
|
|||
|
{
|
|||
|
"tag": "cabbage seeds"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "high energy protons"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "relative biological effectiveness"
|
|||
|
}
|
|||
|
],
|
|||
|
"notes": [],
|
|||
|
"seeAlso": []
|
|||
|
},
|
|||
|
{
|
|||
|
"itemType": "journalArticle",
|
|||
|
"title": "Reasons and Preventions of the Credit Risk with Village Banks",
|
|||
|
"creators": [
|
|||
|
{
|
|||
|
"firstName": "Ying",
|
|||
|
"lastName": "Pang",
|
|||
|
"creatorType": "author"
|
|||
|
}
|
|||
|
],
|
|||
|
"date": "2012-01-01",
|
|||
|
"extra": "OpenAlex: https://openalex.org/W2358372115",
|
|||
|
"language": "en",
|
|||
|
"publicationTitle": "Journal of Shangqiu Vocational and Technical College",
|
|||
|
"attachments": [],
|
|||
|
"tags": [
|
|||
|
{
|
|||
|
"tag": "credit risk"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "preventions"
|
|||
|
}
|
|||
|
],
|
|||
|
"notes": [],
|
|||
|
"seeAlso": []
|
|||
|
}
|
|||
|
]
|
|||
|
},
|
|||
|
{
|
|||
|
"type": "import",
|
|||
|
"input": "{\"id\":\"https://openalex.org/W2962935454\",\"doi\":null,\"title\":\"Generalizing to Unseen Domains via Adversarial Data Augmentation\",\"display_name\":\"Generalizing to Unseen Domains via Adversarial Data Augmentation\",\"publication_year\":2018,\"publication_date\":\"2018-05-01\",\"ids\":{\"openalex\":\"https://openalex.org/W2962935454\",\"mag\":\"2962935454\"},\"language\":\"en\",\"primary_location\":{\"is_oa\":false,\"landing_page_url\":\"https://papers.nips.cc/paper/7779-generalizing-to-unseen-domains-via-adversarial-data-augmentation.pdf\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306420609\",\"display_name\":\"Neural Information Processing Systems\",\"issn_l\":null,\"issn\":null,\"is_oa\":false,\"is_in_doaj\":false,\"is_core\":false,\"host_organization\":null,\"host_organization_name\":null,\"host_organization_lineage\":[],\"host_organization_lineage_names\":[],\"type\":\"conference\"},\"license\":null,\"license_id\":null,\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"article\",\"type_crossref\":\"proceedings-article\",\"indexed_in\":[],\"open_access\":{\"is_oa\":false,\"oa_status\":\"closed\",\"oa_url\":null,\"any_repository_has_fulltext\":false},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5087171315\",\"display_name\":\"Riccardo Volpi\",\"orcid\":\"https://orcid.org/0000-0003-4485-9573\"},\"institutions\":[{\"id\":\"https://openalex.org/I30771326\",\"display_name\":\"Italian Institute of Technology\",\"ror\":\"https://ror.org/042t93s57\",\"country_code\":\"IT\",\"type\":\"facility\",\"lineage\":[\"https://openalex.org/I30771326\"]}],\"countries\":[\"IT\"],\"is_corresponding\":false,\"raw_author_name\":\"Riccardo Volpi\",\"raw_affiliation_strings\":[],\"affiliations\":[]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5008595840\",\"display_name\":\"Hongseok Namkoong\",\"orcid\":\"https://orcid.org/0000-0002-5708-4044\"},\"institutions\":[{\"id\":\"https://openalex.org/I78577930\",\"display_name\":\"Columbia University\",\"ror\":\"https://ror.org/00hj8s172\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I78577930\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Hongseok Namkoong\",\"raw_affiliation_strings\":[],\"affiliations\":[]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5026399398\",\"display_name\":\"Ozan \\u015eener\",\"orcid\":\"https://orcid.org/0000-0002-1542-7547\"},\"institutions\":[{\"id\":\"https://openalex.org/I205783295\",\"display_name\":\"Cornell University\",\"ror\":\"https://ror.org/05bnh6r87\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I205783295\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"Ozan Sener\",\"raw_affiliation_strings\":[],\"affiliations\":[]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5061331093\",\"display_name\":\"John C. Duchi\",\"orcid\":\"https://orcid.org/0000-0003-0045-7185\"},\"institutions\":[{\"id\":\"https://openalex.org/I97018004\",\"display_name\":\"Stanford University\",\"ror\":\"https://ror.org/00f54p054\",\"country_code\":\"US\",\"type\":\"education\",\"lineage\":[\"https://openalex.org/I97018004\"]}],\"countries\":[\"US\"],\"is_corresponding\":false,\"raw_author_name\":\"John C. Duchi\",\"raw_affiliation_strings\":[],\"affiliations\":[]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5007242502\",\"display_name\":\"Vittorio Murino\",\"orcid\":\"https://orcid.org/0000-0002-8645-2328\"},\"institutions\":[{\"id\":\"https://openalex.org/I30771326\",\"display_name\":\"Italian Institute of Technology\",\"ror\":\"https://ror.org/042t93s57\",\"country_code\":\"IT\",\"type\":\"facility\",\"lineage\":[\"https://openalex.org/I30771326\"]}],\"countries\":[\"IT\"],\"is_corresponding\":false,\"raw_author_name\":\"Vittorio Murino\",\"raw_affiliation_strings\":[],\"affiliations\":[]},{\"author_position\":\"last\",\"author\
|
|||
|
"items": [
|
|||
|
{
|
|||
|
"itemType": "conferencePaper",
|
|||
|
"title": "Generalizing to Unseen Domains via Adversarial Data Augmentation",
|
|||
|
"creators": [
|
|||
|
{
|
|||
|
"firstName": "Riccardo",
|
|||
|
"lastName": "Volpi",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Hongseok",
|
|||
|
"lastName": "Namkoong",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Ozan",
|
|||
|
"lastName": "Şener",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "John C.",
|
|||
|
"lastName": "Duchi",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Vittorio",
|
|||
|
"lastName": "Murino",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Silvio",
|
|||
|
"lastName": "Savarese",
|
|||
|
"creatorType": "author"
|
|||
|
}
|
|||
|
],
|
|||
|
"date": "2018-05-01",
|
|||
|
"extra": "OpenAlex: https://openalex.org/W2962935454",
|
|||
|
"language": "en",
|
|||
|
"pages": "5334-5344",
|
|||
|
"proceedingsTitle": "Neural Information Processing Systems",
|
|||
|
"volume": "31",
|
|||
|
"attachments": [],
|
|||
|
"tags": [
|
|||
|
{
|
|||
|
"tag": "Adversarial Examples"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "Domain Adaptation"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "Representation Learning"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "Transfer Learning"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "Unsupervised Learning"
|
|||
|
}
|
|||
|
],
|
|||
|
"notes": [],
|
|||
|
"seeAlso": []
|
|||
|
}
|
|||
|
]
|
|||
|
},
|
|||
|
{
|
|||
|
"type": "import",
|
|||
|
"input": "{\"id\":\"https://openalex.org/W2101234009\",\"doi\":\"https://doi.org/10.48550/arxiv.1201.0490\",\"title\":\"Scikit-learn: Machine Learning in Python\",\"display_name\":\"Scikit-learn: Machine Learning in Python\",\"publication_year\":2012,\"publication_date\":\"2012-01-01\",\"ids\":{\"openalex\":\"https://openalex.org/W2101234009\",\"doi\":\"https://doi.org/10.48550/arxiv.1201.0490\",\"mag\":\"2101234009\"},\"language\":\"en\",\"primary_location\":{\"is_oa\":true,\"landing_page_url\":\"https://arxiv.org/abs/1201.0490\",\"pdf_url\":null,\"source\":{\"id\":\"https://openalex.org/S4306400194\",\"display_name\":\"arXiv (Cornell University)\",\"issn_l\":null,\"issn\":null,\"is_oa\":true,\"is_in_doaj\":false,\"is_core\":false,\"host_organization\":\"https://openalex.org/I205783295\",\"host_organization_name\":\"Cornell University\",\"host_organization_lineage\":[\"https://openalex.org/I205783295\"],\"host_organization_lineage_names\":[\"Cornell University\"],\"type\":\"repository\"},\"license\":\"other-oa\",\"license_id\":\"https://openalex.org/licenses/other-oa\",\"version\":null,\"is_accepted\":false,\"is_published\":false},\"type\":\"preprint\",\"type_crossref\":\"journal-article\",\"indexed_in\":[\"datacite\"],\"open_access\":{\"is_oa\":true,\"oa_status\":\"green\",\"oa_url\":\"https://arxiv.org/abs/1201.0490\",\"any_repository_has_fulltext\":true},\"authorships\":[{\"author_position\":\"first\",\"author\":{\"id\":\"https://openalex.org/A5066572762\",\"display_name\":\"Fabi\\u00e1n Pedregosa\",\"orcid\":\"https://orcid.org/0000-0003-4025-3953\"},\"institutions\":[{\"id\":\"https://openalex.org/I4210128565\",\"display_name\":\"CEA Saclay\",\"ror\":\"https://ror.org/03n15ch10\",\"country_code\":\"FR\",\"type\":\"government\",\"lineage\":[\"https://openalex.org/I2738703131\",\"https://openalex.org/I4210127723\",\"https://openalex.org/I4210128565\"]},{\"id\":\"https://openalex.org/I2738703131\",\"display_name\":\"Commissariat \\u00e0 l'\\u00c9nergie Atomique et aux \\u00c9nergies Alternatives\",\"ror\":\"https://ror.org/00jjx8s55\",\"country_code\":\"FR\",\"type\":\"government\",\"lineage\":[\"https://openalex.org/I2738703131\"]}],\"countries\":[\"FR\"],\"is_corresponding\":false,\"raw_author_name\":\"Fabian Pedregosa\",\"raw_affiliation_strings\":[\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\",\"PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, B\\u00e2timent 145, 91191 Gif-sur-Yvette Cedex - France)\"],\"affiliations\":[{\"raw_affiliation_string\":\"PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA Saclay, B\\u00e2timent 145, 91191 Gif-sur-Yvette Cedex - France)\",\"institution_ids\":[\"https://openalex.org/I4210128565\",\"https://openalex.org/I2738703131\"]},{\"raw_affiliation_string\":\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\",\"institution_ids\":[]}]},{\"author_position\":\"middle\",\"author\":{\"id\":\"https://openalex.org/A5074733625\",\"display_name\":\"Ga\\u00ebl Varoquaux\",\"orcid\":\"https://orcid.org/0000-0003-1076-5122\"},\"institutions\":[{\"id\":\"https://openalex.org/I2738703131\",\"display_name\":\"Commissariat \\u00e0 l'\\u00c9nergie Atomique et aux \\u00c9nergies Alternatives\",\"ror\":\"https://ror.org/00jjx8s55\",\"country_code\":\"FR\",\"type\":\"government\",\"lineage\":[\"https://openalex.org/I2738703131\"]},{\"id\":\"https://openalex.org/I4210128565\",\"display_name\":\"CEA Saclay\",\"ror\":\"https://ror.org/03n15ch10\",\"country_code\":\"FR\",\"type\":\"government\",\"lineage\":[\"https://openalex.org/I2738703131\",\"https://openalex.org/I4210127723\",\"https://openalex.org/I4210128565\"]}],\"countries\":[\"FR\"],\"is_corresponding\":false,\"raw_author_name\":\"Ga\\u00ebl Varoquaux\",\"raw_affiliation_strings\":[\"LNAO - Laboratoire de Neuroimagerie Assist\\u00e9e par Ordinateur (France)\",\"PARIETAL - Modelling brain structure, function and variability based on high-field MRI data (Neurospin, CEA
|
|||
|
"items": [
|
|||
|
{
|
|||
|
"itemType": "preprint",
|
|||
|
"title": "Scikit-learn: Machine Learning in Python",
|
|||
|
"creators": [
|
|||
|
{
|
|||
|
"firstName": "Fabián",
|
|||
|
"lastName": "Pedregosa",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Gaël",
|
|||
|
"lastName": "Varoquaux",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Alexandre",
|
|||
|
"lastName": "Gramfort",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Vincent",
|
|||
|
"lastName": "Michel",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Bertrand",
|
|||
|
"lastName": "Thirion",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Olivier",
|
|||
|
"lastName": "Grisel",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Mathieu",
|
|||
|
"lastName": "Blondel",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Peter",
|
|||
|
"lastName": "Prettenhofer",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Ron J.",
|
|||
|
"lastName": "Weiss",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Vincent",
|
|||
|
"lastName": "Dubourg",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Jake",
|
|||
|
"lastName": "Vanderplas",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Alexandre",
|
|||
|
"lastName": "Passos",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "David",
|
|||
|
"lastName": "Cournapeau",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Matthieu",
|
|||
|
"lastName": "Brucher",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Marc de",
|
|||
|
"lastName": "Perrot",
|
|||
|
"creatorType": "author"
|
|||
|
},
|
|||
|
{
|
|||
|
"firstName": "Édouard",
|
|||
|
"lastName": "Duchesnay",
|
|||
|
"creatorType": "author"
|
|||
|
}
|
|||
|
],
|
|||
|
"date": "2012-01-01",
|
|||
|
"DOI": "10.48550/arxiv.1201.0490",
|
|||
|
"extra": "OpenAlex: https://openalex.org/W2101234009",
|
|||
|
"language": "en",
|
|||
|
"repository": "Cornell University",
|
|||
|
"attachments": [],
|
|||
|
"tags": [
|
|||
|
{
|
|||
|
"tag": "Python"
|
|||
|
},
|
|||
|
{
|
|||
|
"tag": "Robust Learning"
|
|||
|
}
|
|||
|
],
|
|||
|
"notes": [],
|
|||
|
"seeAlso": []
|
|||
|
}
|
|||
|
]
|
|||
|
}
|
|||
|
]
|
|||
|
/** END TEST CASES **/
|