diff --git a/app/importers/unpaywall_publication_importer.rb b/app/importers/unpaywall_publication_importer.rb index bfb8933cc..4d02aae7b 100644 --- a/app/importers/unpaywall_publication_importer.rb +++ b/app/importers/unpaywall_publication_importer.rb @@ -57,7 +57,8 @@ def update_publication(publication, unpaywall_json) unpaywall_locations = unpaywall_json['oa_locations'].presence || [] existing_doi = true else - unpaywall_title = unpaywall_json['results'].nil? ? '' : unpaywall_json['results'].first['response']['title'] + unpaywall_result = unpaywall_json['results'].nil? ? '' : unpaywall_json['results'].first + unpaywall_title = unpaywall_result.present? ? unpaywall_result['response']['title'] : '' unpaywall_locations = if title_match?(unpaywall_title, publication.title) publication.doi = DOISanitizer.new(unpaywall_json['results'].first['response']['doi']).url unpaywall_json['results'].first['response']['oa_locations'].presence || [] @@ -95,14 +96,13 @@ def update_publication(publication, unpaywall_json) publication.open_access_status = if existing_doi unpaywall_json['oa_status'] - else - unpaywall_json['results'].nil? ? nil : unpaywall_json['results'].first['response']['oa_status'] + elsif title_match?(unpaywall_title, publication.title) + unpaywall_result = unpaywall_json['results'].nil? ? nil : unpaywall_json['results'].first + unpaywall_result.present? ? unpaywall_result['response']['oa_status'] : nil end publication.unpaywall_last_checked_at = Time.zone.now - if publication.doi.present? || title_match?(unpaywall_title, publication.title) - publication.save! - end + publication.save! end end @@ -111,7 +111,7 @@ def query_unpaywall_for(publication) doi_url_path = Addressable::URI.encode(publication.doi_url_path) find_url = "https://api.unpaywall.org/v2/#{doi_url_path}?email=openaccess@psu.edu" else - find_url = "https://api.unpaywall.org/v2/search/?query=#{publication.title}&email=openaccess@psu.edu" + find_url = "https://api.unpaywall.org/v2/search/?query=#{CGI.escape(publication.title)}&email=openaccess@psu.edu" end JSON.parse(HttpService.get(find_url)) diff --git a/spec/component/importers/unpaywall_publication_importer_spec.rb b/spec/component/importers/unpaywall_publication_importer_spec.rb index 29ac7f2a8..bb22800dc 100644 --- a/spec/component/importers/unpaywall_publication_importer_spec.rb +++ b/spec/component/importers/unpaywall_publication_importer_spec.rb @@ -43,9 +43,9 @@ expect { importer.import_all }.not_to change(OpenAccessLocation, :count) end - it "does not update the publication's Unpaywall check timestamp" do + it "updates the publication's Unpaywall check timestamp" do importer.import_all - expect(pub.reload.unpaywall_last_checked_at).to be_nil + expect(pub.reload.unpaywall_last_checked_at).to be_within(1.minute).of(Time.zone.now) end it 'does not update the open access status on the publication' do @@ -97,9 +97,9 @@ expect { importer.import_all }.not_to change(OpenAccessLocation, :count) end - it "does not update the publication's Unpaywall check timestamp" do + it "updates the publication's Unpaywall check timestamp" do importer.import_all - expect(pub.reload.unpaywall_last_checked_at).to be_nil + expect(pub.reload.unpaywall_last_checked_at).to be_within(1.minute).of(Time.zone.now) end it 'does not update the open access status on the publication' do @@ -467,9 +467,9 @@ expect { importer.import_all }.not_to change(OpenAccessLocation, :count) end - it "does not update the publication's Unpaywall check timestamp" do + it "updates the publication's Unpaywall check timestamp" do importer.import_all - expect(pub.reload.unpaywall_last_checked_at).to be_nil + expect(pub.reload.unpaywall_last_checked_at).to be_within(1.minute).of(Time.zone.now) end it 'does not update the open access status on the publication' do @@ -521,9 +521,9 @@ expect { importer.import_all }.not_to change(OpenAccessLocation, :count) end - it "does not update the publication's Unpaywall check timestamp" do + it "updates the publication's Unpaywall check timestamp" do importer.import_all - expect(pub.reload.unpaywall_last_checked_at).to be_nil + expect(pub.reload.unpaywall_last_checked_at).to be_within(1.minute).of(Time.zone.now) end it 'does not update the open access status on the publication' do diff --git a/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_all/when_an_existing_publication_does_not_have_a_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/does_not_update_the_publication_s_Unpaywall_check_timestamp.yml b/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_all/when_an_existing_publication_does_not_have_a_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/updates_the_publication_s_Unpaywall_check_timestamp.yml similarity index 85% rename from spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_all/when_an_existing_publication_does_not_have_a_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/does_not_update_the_publication_s_Unpaywall_check_timestamp.yml rename to spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_all/when_an_existing_publication_does_not_have_a_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/updates_the_publication_s_Unpaywall_check_timestamp.yml index 925f2a3ba..b95e251ca 100644 --- a/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_all/when_an_existing_publication_does_not_have_a_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/does_not_update_the_publication_s_Unpaywall_check_timestamp.yml +++ b/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_all/when_an_existing_publication_does_not_have_a_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/updates_the_publication_s_Unpaywall_check_timestamp.yml @@ -23,11 +23,11 @@ http_interactions: Server: - gunicorn Date: - - Tue, 27 Sep 2022 16:55:55 GMT + - Mon, 10 Oct 2022 19:05:11 GMT Content-Type: - application/json Content-Length: - - '8984' + - '9263' Access-Control-Allow-Origin: - "*" Access-Control-Allow-Methods: @@ -40,12 +40,19 @@ http_interactions: - 1.1 vegur body: encoding: ASCII-8BIT - string: '{"elapsed_seconds":0.235,"results":[{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.30541/v32i4ipp.357-386","doi_url":"https://doi.org/10.30541/v32i4ipp.357-386","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0030-9729","journal_issns":"0030-9729","journal_name":"The + string: '{"elapsed_seconds":0.456,"results":[{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.30541/v32i4ipp.357-386","doi_url":"https://doi.org/10.30541/v32i4ipp.357-386","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0030-9729","journal_issns":"0030-9729","journal_name":"The Pakistan Development Review","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1993-12-01","publisher":"Pakistan Institute of Developemnt Economics (PIDE)","title":"Economic Development and Development Economics (Presidential Address)","updated":"2021-01-13T12:08:11.543560","year":1993,"z_authors":[{"family":"Naqvi","given":"Syed Nawab Haider","sequence":"first"}]},"score":0.10277967,"snippet":"Economic - Development and Development Economics (Presidential Address)"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2235036","doi_url":"https://doi.org/10.2307/2235036","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0013-0133","journal_issns":"0013-0133","journal_name":"The + Development and Development Economics (Presidential Address)"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2609769","doi_url":"https://doi.org/10.2307/2609769","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0020-5850","journal_issns":"1468-2346,0020-5850","journal_name":"International + Affairs","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1964-01-01","publisher":"Oxford + University Press (OUP)","title":"Why Help India?, Foreign Aid and India''s + Economic Development, Indian Plans: A Generalist Approach, Administration + and Economic Development in India, Quiet Crisis in India: Economic Development + and American Policy and Impasse Indienne","updated":"2021-04-01T12:41:08.496365","year":1964,"z_authors":[{"family":"Mende","given":"Tibor","sequence":"first"}]},"score":0.10152169,"snippet":"Economic + Development, Indian Plans: A Generalist Approach, Administration and + Economic Development in India, Quiet Crisis"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2235036","doi_url":"https://doi.org/10.2307/2235036","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0013-0133","journal_issns":"0013-0133","journal_name":"The Economic Journal","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1995-05-01","publisher":"Oxford University Press (OUP)","title":"From Classical Economics to Development Economics.","updated":"2021-01-17T06:46:37.916114","year":1995,"z_authors":[{"family":"Snowdon","given":"Brian","sequence":"first"},{"family":"Meier","given":"Gerald M.","sequence":"additional"}]},"score":0.093200244,"snippet":"From Classical @@ -55,13 +62,7 @@ http_interactions: development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1007/978-1-4614-3858-8_100240","doi_url":"https://doi.org/10.1007/978-1-4614-3858-8_100240","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Encyclopedia of Creativity, Invention, Innovation and Entrepreneurship","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2013-01-01","publisher":"Springer New York","title":"Development Economics","updated":"2021-01-18T11:43:31.256248","year":2013,"z_authors":null},"score":0.09102392,"snippet":"Development - Economics"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1111/j.1541-1338.1987.tb00029.x","doi_url":"https://doi.org/10.1111/j.1541-1338.1987.tb00029.x","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1541-132X","journal_issns":"1541-132X,1541-1338","journal_name":"Review - of Policy Research","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1987-09-01","publisher":"Wiley","title":"MEASURING - ECONOMIC DEVELOPMENT: ECONOMIC DIVERSIFICATION AS AN ALTERNATIVE TO STANDARD - INDICATORS","updated":"2021-01-15T19:13:33.614113","year":1987,"z_authors":[{"family":"Thompson","given":"Joel - A.","sequence":"first"},{"family":"Lanier","given":"Mark W.","sequence":"additional"}]},"score":0.09102392,"snippet":"MEASURING - ECONOMIC DEVELOPMENT: ECONOMIC DIVERSIFICATION AS AN - ALTERNATIVE TO STANDARD INDICATORS"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1787/6ea04923-en","doi_url":"https://doi.org/10.1787/6ea04923-en","first_oa_location":null,"genre":"other","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1995-350X","journal_issns":"1999-0561","journal_name":"OECD + Economics"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1787/6ea04923-en","doi_url":"https://doi.org/10.1787/6ea04923-en","first_oa_location":null,"genre":"other","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1995-350X","journal_issns":"1999-0561","journal_name":"OECD Economic Surveys: Czech Republic 2020","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2020-12-17","publisher":"OECD","title":"Economic developments","updated":"2021-01-18T13:14:42.234137","year":2020,"z_authors":null},"score":0.09102392,"snippet":"Economic developments"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open @@ -138,7 +139,12 @@ http_interactions: National Council for Urban Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/caer-08-2016-0134","doi_url":"https://doi.org/10.1108/caer-08-2016-0134","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1756-137X","journal_issns":"1756-137X","journal_name":"China Agricultural Economic Review","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2017-02-06","publisher":"Emerald","title":"Development Economics: The Role of Agriculture in Development","updated":"2021-03-26T09:52:09.199561","year":2017,"z_authors":[{"family":"Ruan","given":"Jianqing","sequence":"first"}]},"score":0.0651129,"snippet":"Development - Economics: The Role of Agriculture in Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1057/9781137317490.0015","doi_url":"https://doi.org/10.1057/9781137317490.0015","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Economic + Economics: The Role of Agriculture in Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1007/978-3-030-14000-7_4","doi_url":"https://doi.org/10.1007/978-3-030-14000-7_4","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"The + Palgrave Handbook of Development Economics","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2019-01-01","publisher":"Springer + International Publishing","title":"Structuralists, Structures, and Economic + Development","updated":"2021-01-17T12:22:36.242093","year":2019,"z_authors":[{"family":"Dutt","given":"Amitava + Krishna","sequence":"first"}]},"score":0.062133495,"snippet":"Structuralists, + Structures, and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1057/9781137317490.0015","doi_url":"https://doi.org/10.1057/9781137317490.0015","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Economic Development from the State and Local Perspective","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":null,"publisher":"Palgrave Macmillan","title":"Economic Development Building Block","updated":"2021-01-18T11:42:25.035880","year":null,"z_authors":null},"score":0.062133495,"snippet":"Economic Development Building Block"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1057/9781137356796.0010","doi_url":"https://doi.org/10.1057/9781137356796.0010","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"The @@ -161,19 +167,17 @@ http_interactions: economic development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1080/00472336.2011.553058","doi_url":"https://doi.org/10.1080/00472336.2011.553058","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0047-2336","journal_issns":"0047-2336,1752-7554","journal_name":"Journal of Contemporary Asia","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2011-05-01","publisher":"Informa UK Limited","title":"Chinese Economic Development and the Environment","updated":"2021-01-19T01:26:58.445865","year":2011,"z_authors":[{"family":"Thompson","given":"Herb","sequence":"first"}]},"score":0.062133495,"snippet":"Chinese - Economic Development and the Environment"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1080/15480755.2014.937145","doi_url":"https://doi.org/10.1080/15480755.2014.937145","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1548-0755","journal_issns":"1548-0755,1556-8601","journal_name":"Planning + Economic Development and the Environment"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-03-16T18:07:32.504886","url":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","url_for_landing_page":"https://doi.org/10.1080/14672715.1972.10406289","url_for_pdf":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","version":"publishedVersion"},"data_standard":2,"doi":"10.1080/14672715.1972.10406289","doi_url":"https://doi.org/10.1080/14672715.1972.10406289","first_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-03-16T18:07:32.504886","url":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","url_for_landing_page":"https://doi.org/10.1080/14672715.1972.10406289","url_for_pdf":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":false,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0007-4810","journal_issns":"0007-4810","journal_name":"Bulletin + of Concerned Asian Scholars","oa_locations":[{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-03-16T18:07:32.504886","url":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","url_for_landing_page":"https://doi.org/10.1080/14672715.1972.10406289","url_for_pdf":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","version":"publishedVersion"}],"oa_locations_embargoed":[],"oa_status":"bronze","published_date":"1972-06-01","publisher":"Informa + UK Limited","title":"Economic development and welfare in China","updated":"2022-03-16T18:08:27.595451","year":1972,"z_authors":[{"family":"Lippit","given":"Victor","sequence":"first"}]},"score":0.062133495,"snippet":"Economic + development and welfare in China"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1080/15480755.2014.937145","doi_url":"https://doi.org/10.1080/15480755.2014.937145","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1548-0755","journal_issns":"1548-0755,1556-8601","journal_name":"Planning & Environmental Law","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2014-06-20","publisher":"Informa UK Limited","title":"The Temporary Use and Economic Development","updated":"2021-01-17T12:37:02.049454","year":2014,"z_authors":[{"family":"Silverman","given":"David S.","sequence":"first"}]},"score":0.062133495,"snippet":"The Temporary Use - and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1093/ia/15.4.621","doi_url":"https://doi.org/10.1093/ia/15.4.621","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0020-5850","journal_issns":"1468-2346,0020-5850","journal_name":"International - Affairs","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1936-07-01","publisher":"Oxford - University Press (OUP)","title":"An Outline Of European Economic Development","updated":"2021-01-18T11:39:28.646884","year":1936,"z_authors":[{"family":"H. - G. L.","sequence":"first"}]},"score":0.062133495,"snippet":"An Outline Of - European Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/9781615832460-016","doi_url":"https://doi.org/10.1108/9781615832460-016","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1472-7889","journal_issns":"1472-7889","journal_name":"Handbooks - in Transport","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2001-10-02","publisher":"Emerald - Group Publishing Limited","title":"Transportation Systems and Economic Development","updated":"2021-01-18T11:42:02.739808","year":2001,"z_authors":[{"family":"Haynes","given":"Kingsley","sequence":"first"},{"family":"Button","given":"Kenneth - J.","sequence":"additional"}]},"score":0.062133495,"snippet":"Transportation - Systems and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/eb028016","doi_url":"https://doi.org/10.1108/eb028016","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0140-9174","journal_issns":"0140-9174","journal_name":"Management + and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/eb028016","doi_url":"https://doi.org/10.1108/eb028016","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0140-9174","journal_issns":"0140-9174","journal_name":"Management Research News","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1989-03-01","publisher":"Emerald","title":"Local Economic Development and Training","updated":"2021-01-19T01:56:18.517472","year":1989,"z_authors":[{"family":"Hughes","given":"J.T.","sequence":"first"}]},"score":0.062133495,"snippet":"Local Economic Development and Training"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1142/11255","doi_url":"https://doi.org/10.1142/11255","first_oa_location":null,"genre":"monograph","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"2661-3883","journal_issns":"2661-3883,2661-3891","journal_name":"WSPC-ZJUP @@ -194,7 +198,15 @@ http_interactions: Eastern Survey","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1955-11-01","publisher":"University of California Press","title":"North Korea''s Economic Development","updated":"2021-01-19T13:09:16.129187","year":1955,"z_authors":[{"family":"Porter","given":"Catherine","sequence":"first"},{"family":"Holland","given":"William L.","sequence":"additional"}]},"score":0.062133495,"snippet":"North Korea''s - Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.18356/fcb9b895-en","doi_url":"https://doi.org/10.18356/fcb9b895-en","first_oa_location":null,"genre":"book","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1990-5114","journal_issns":"1990-5122","journal_name":"Economic + Economic Development"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2018-04-28T17:35:10.669563","url":"https://doi.org/10.15550/asj.2014.01.023","url_for_landing_page":null,"url_for_pdf":"https://doi.org/10.15550/asj.2014.01.023","version":"publishedVersion"},"data_standard":2,"doi":"10.15550/asj.2014.01.023","doi_url":"https://doi.org/10.15550/asj.2014.01.023","first_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2018-04-28T17:35:10.669563","url":"https://doi.org/10.15550/asj.2014.01.023","url_for_landing_page":null,"url_for_pdf":"https://doi.org/10.15550/asj.2014.01.023","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":true,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"2219-746X","journal_issns":"2219-746X,2219-7478","journal_name":"The + Advanced Science Journal","oa_locations":[{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2018-04-28T17:35:10.669563","url":"https://doi.org/10.15550/asj.2014.01.023","url_for_landing_page":null,"url_for_pdf":"https://doi.org/10.15550/asj.2014.01.023","version":"publishedVersion"},{"endpoint_id":"CiteSeerX.psu","evidence":"oa + repository (via OAI-PMH doi match)","host_type":"repository","is_best":false,"license":null,"oa_date":null,"pmh_id":"oai:CiteSeerX.psu:10.1.1.674.1533","repository_institution":"CiteSeerX.psu","updated":"2017-10-22T02:35:36.092562","url":"http://advancedscience.org/2014/1/023-028.pdf","url_for_landing_page":"http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.674.1533","url_for_pdf":"http://advancedscience.org/2014/1/023-028.pdf","version":"submittedVersion"}],"oa_locations_embargoed":[],"oa_status":"bronze","published_date":"2014-01-30","publisher":"Scireps + Corporation","title":"Innovative Component of Economic Development","updated":"2021-04-26T23:09:17.813154","year":2014,"z_authors":[{"family":"Onyshchenko","given":"V","sequence":"first"},{"name":"Poltava + National Technical Yuri Kondratyuk University, Ukraine","sequence":"first"},{"family":"Bryzhan","given":"I","sequence":"additional"}]},"score":0.062133495,"snippet":"Innovative + Component of Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.18356/fcb9b895-en","doi_url":"https://doi.org/10.18356/fcb9b895-en","first_oa_location":null,"genre":"book","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1990-5114","journal_issns":"1990-5122","journal_name":"Economic Development in Africa Report","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2007-10-05","publisher":"UN","title":"Economic Development in Africa 2007","updated":"2021-07-20T18:13:13.756440","year":2007,"z_authors":[{"name":"United Nations Conference on Trade and Development","sequence":"first"}]},"score":0.062133495,"snippet":"Economic @@ -230,7 +242,11 @@ http_interactions: Economic History Review","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1973-01-01","publisher":"JSTOR","title":"Population Growth and Economic Development.","updated":"2022-02-18T20:39:38.726118","year":1973,"z_authors":[{"family":"Wrigley","given":"E. A.","sequence":"first"},{"family":"Habakkuk","given":"H. J.","sequence":"additional"}]},"score":0.062133495,"snippet":"Population - Growth and Economic Development."},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"oa + Growth and Economic Development."},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2977749","doi_url":"https://doi.org/10.2307/2977749","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0022-1082","journal_issns":"0022-1082","journal_name":"The + Journal of Finance","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1965-03-01","publisher":"JSTOR","title":"Leading + Issues in Development Economics.","updated":"2021-04-27T00:59:55.768295","year":1965,"z_authors":[{"family":"Graeser","given":"Paul"},{"family":"Meier","given":"Gerald + M."}]},"score":0.062133495,"snippet":"Leading Issues in Development + Economics."},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"oa journal (via observed oa rate)","host_type":"publisher","is_best":true,"license":null,"oa_date":"2021-03-29","pmh_id":null,"repository_institution":null,"updated":"2021-08-05T03:11:56.090928","url":"https://doi.org/10.31080/asag.2021.05.0977","url_for_landing_page":"https://doi.org/10.31080/asag.2021.05.0977","url_for_pdf":null,"version":"publishedVersion"},"data_standard":2,"doi":"10.31080/asag.2021.05.0977","doi_url":"https://doi.org/10.31080/asag.2021.05.0977","first_oa_location":{"endpoint_id":null,"evidence":"oa journal (via observed oa rate)","host_type":"publisher","is_best":true,"license":null,"oa_date":"2021-03-29","pmh_id":null,"repository_institution":null,"updated":"2021-08-05T03:11:56.090928","url":"https://doi.org/10.31080/asag.2021.05.0977","url_for_landing_page":"https://doi.org/10.31080/asag.2021.05.0977","url_for_pdf":null,"version":"publishedVersion"},"genre":"journal-article","has_repository_copy":false,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":true,"journal_issn_l":"2581-365X","journal_issns":"2581-365X","journal_name":"Acta Scientific Agriculture","oa_locations":[{"endpoint_id":null,"evidence":"oa @@ -261,18 +277,7 @@ http_interactions: of Sustainable Politics and Economics of Natural Resources","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2021-01-01","publisher":"Edward Elgar Publishing","title":"Natural resources and economic development","updated":"2021-12-21T00:12:26.323928","year":2021,"z_authors":[{"family":"Chian Koh","given":"Wee","sequence":"first"}]},"score":0.062133495,"snippet":"Natural - resources and economic development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.4337/9781848444010.00010","doi_url":"https://doi.org/10.4337/9781848444010.00010","first_oa_location":null,"genre":"other","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Trade - Liberalisation and The Poverty of Nations","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":null,"publisher":"Edward - Elgar Publishing","title":"Trade Strategy and Economic Development","updated":"2021-01-15T21:41:11.481917","year":null,"z_authors":null},"score":0.062133495,"snippet":"Trade - Strategy and Economic Development"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open - (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-08-18T13:24:08.464072","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","url_for_landing_page":"https://doi.org/10.5089/9781451807721.002","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","version":"publishedVersion"},"data_standard":2,"doi":"10.5089/9781451807721.002","doi_url":"https://doi.org/10.5089/9781451807721.002","first_oa_location":{"endpoint_id":"5a4c71918fc62d3e4ce","evidence":"oa - repository (via OAI-PMH title and first author match)","host_type":"repository","is_best":false,"license":null,"oa_date":"2022-07-30","pmh_id":"oai:aleph.bib-bvb.de:BVB01-033723690","repository_institution":null,"updated":"2022-08-31T00:27:35.763471","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","url_for_landing_page":"http://elibrary.imf.org/view/IMF002/01227-9781451807738/01227-9781451807738/01227-9781451807738.xml","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":true,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1934-7685","journal_issns":"1934-7685","journal_name":"IMF - Staff Country Reports","oa_locations":[{"endpoint_id":null,"evidence":"open - (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-08-18T13:24:08.464072","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","url_for_landing_page":"https://doi.org/10.5089/9781451807721.002","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","version":"publishedVersion"},{"endpoint_id":"5a4c71918fc62d3e4ce","evidence":"oa - repository (via OAI-PMH title and first author match)","host_type":"repository","is_best":false,"license":null,"oa_date":"2022-07-30","pmh_id":"oai:aleph.bib-bvb.de:BVB01-033723690","repository_institution":null,"updated":"2022-08-31T00:27:35.763471","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","url_for_landing_page":"http://elibrary.imf.org/view/IMF002/01227-9781451807738/01227-9781451807738/01227-9781451807738.xml","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","version":"publishedVersion"}],"oa_locations_embargoed":[],"oa_status":"bronze","published_date":"1996-01-01","publisher":"International - Monetary Fund (IMF)","title":"China: Recent Economic Developments","updated":"2022-08-31T09:33:27.569485","year":1996,"z_authors":[{"family":"International - Monetary Fund","sequence":"first"}]},"score":0.062133495,"snippet":"China: - Recent Economic Developments"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open + resources and economic development"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2021-12-29T02:46:05.480499","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1995/132/002.1995.issue-132-en.xml","url_for_landing_page":"https://doi.org/10.5089/9781451813388.002","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1995/132/002.1995.issue-132-en.xml","version":"publishedVersion"},"data_standard":2,"doi":"10.5089/9781451813388.002","doi_url":"https://doi.org/10.5089/9781451813388.002","first_oa_location":{"endpoint_id":"5a4c71918fc62d3e4ce","evidence":"oa repository (via OAI-PMH title and first author match)","host_type":"repository","is_best":false,"license":null,"oa_date":"2022-07-30","pmh_id":"oai:aleph.bib-bvb.de:BVB01-033724051","repository_institution":null,"updated":"2022-09-25T07:19:39.384012","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/027/002.1997.issue-027-en.xml","url_for_landing_page":"http://elibrary.imf.org/view/IMF002/02628-9781451813487/02628-9781451813487/02628-9781451813487.xml","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/027/002.1997.issue-027-en.xml","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":true,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1934-7685","journal_issns":"1934-7685","journal_name":"IMF Staff Country Reports","oa_locations":[{"endpoint_id":null,"evidence":"open @@ -293,5 +298,5 @@ http_interactions: economic development, and the environment"}]} ' - recorded_at: Tue, 27 Sep 2022 16:55:55 GMT + recorded_at: Mon, 10 Oct 2022 19:05:11 GMT recorded_with: VCR 6.1.0 diff --git a/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_all/when_an_existing_publication_has_a_blank_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/does_not_update_the_publication_s_Unpaywall_check_timestamp.yml b/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_all/when_an_existing_publication_has_a_blank_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/updates_the_publication_s_Unpaywall_check_timestamp.yml similarity index 85% rename from spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_all/when_an_existing_publication_has_a_blank_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/does_not_update_the_publication_s_Unpaywall_check_timestamp.yml rename to spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_all/when_an_existing_publication_has_a_blank_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/updates_the_publication_s_Unpaywall_check_timestamp.yml index a8f253433..e5056f3f2 100644 --- a/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_all/when_an_existing_publication_has_a_blank_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/does_not_update_the_publication_s_Unpaywall_check_timestamp.yml +++ b/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_all/when_an_existing_publication_has_a_blank_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/updates_the_publication_s_Unpaywall_check_timestamp.yml @@ -23,11 +23,11 @@ http_interactions: Server: - gunicorn Date: - - Tue, 27 Sep 2022 16:55:56 GMT + - Mon, 10 Oct 2022 19:05:12 GMT Content-Type: - application/json Content-Length: - - '8984' + - '9263' Access-Control-Allow-Origin: - "*" Access-Control-Allow-Methods: @@ -40,12 +40,19 @@ http_interactions: - 1.1 vegur body: encoding: ASCII-8BIT - string: '{"elapsed_seconds":0.213,"results":[{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.30541/v32i4ipp.357-386","doi_url":"https://doi.org/10.30541/v32i4ipp.357-386","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0030-9729","journal_issns":"0030-9729","journal_name":"The + string: '{"elapsed_seconds":0.204,"results":[{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.30541/v32i4ipp.357-386","doi_url":"https://doi.org/10.30541/v32i4ipp.357-386","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0030-9729","journal_issns":"0030-9729","journal_name":"The Pakistan Development Review","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1993-12-01","publisher":"Pakistan Institute of Developemnt Economics (PIDE)","title":"Economic Development and Development Economics (Presidential Address)","updated":"2021-01-13T12:08:11.543560","year":1993,"z_authors":[{"family":"Naqvi","given":"Syed Nawab Haider","sequence":"first"}]},"score":0.10277967,"snippet":"Economic - Development and Development Economics (Presidential Address)"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2235036","doi_url":"https://doi.org/10.2307/2235036","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0013-0133","journal_issns":"0013-0133","journal_name":"The + Development and Development Economics (Presidential Address)"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2609769","doi_url":"https://doi.org/10.2307/2609769","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0020-5850","journal_issns":"1468-2346,0020-5850","journal_name":"International + Affairs","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1964-01-01","publisher":"Oxford + University Press (OUP)","title":"Why Help India?, Foreign Aid and India''s + Economic Development, Indian Plans: A Generalist Approach, Administration + and Economic Development in India, Quiet Crisis in India: Economic Development + and American Policy and Impasse Indienne","updated":"2021-04-01T12:41:08.496365","year":1964,"z_authors":[{"family":"Mende","given":"Tibor","sequence":"first"}]},"score":0.10152169,"snippet":"Economic + Development, Indian Plans: A Generalist Approach, Administration and + Economic Development in India, Quiet Crisis"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2235036","doi_url":"https://doi.org/10.2307/2235036","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0013-0133","journal_issns":"0013-0133","journal_name":"The Economic Journal","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1995-05-01","publisher":"Oxford University Press (OUP)","title":"From Classical Economics to Development Economics.","updated":"2021-01-17T06:46:37.916114","year":1995,"z_authors":[{"family":"Snowdon","given":"Brian","sequence":"first"},{"family":"Meier","given":"Gerald M.","sequence":"additional"}]},"score":0.093200244,"snippet":"From Classical @@ -55,13 +62,7 @@ http_interactions: development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1007/978-1-4614-3858-8_100240","doi_url":"https://doi.org/10.1007/978-1-4614-3858-8_100240","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Encyclopedia of Creativity, Invention, Innovation and Entrepreneurship","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2013-01-01","publisher":"Springer New York","title":"Development Economics","updated":"2021-01-18T11:43:31.256248","year":2013,"z_authors":null},"score":0.09102392,"snippet":"Development - Economics"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1111/j.1541-1338.1987.tb00029.x","doi_url":"https://doi.org/10.1111/j.1541-1338.1987.tb00029.x","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1541-132X","journal_issns":"1541-132X,1541-1338","journal_name":"Review - of Policy Research","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1987-09-01","publisher":"Wiley","title":"MEASURING - ECONOMIC DEVELOPMENT: ECONOMIC DIVERSIFICATION AS AN ALTERNATIVE TO STANDARD - INDICATORS","updated":"2021-01-15T19:13:33.614113","year":1987,"z_authors":[{"family":"Thompson","given":"Joel - A.","sequence":"first"},{"family":"Lanier","given":"Mark W.","sequence":"additional"}]},"score":0.09102392,"snippet":"MEASURING - ECONOMIC DEVELOPMENT: ECONOMIC DIVERSIFICATION AS AN - ALTERNATIVE TO STANDARD INDICATORS"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1787/6ea04923-en","doi_url":"https://doi.org/10.1787/6ea04923-en","first_oa_location":null,"genre":"other","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1995-350X","journal_issns":"1999-0561","journal_name":"OECD + Economics"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1787/6ea04923-en","doi_url":"https://doi.org/10.1787/6ea04923-en","first_oa_location":null,"genre":"other","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1995-350X","journal_issns":"1999-0561","journal_name":"OECD Economic Surveys: Czech Republic 2020","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2020-12-17","publisher":"OECD","title":"Economic developments","updated":"2021-01-18T13:14:42.234137","year":2020,"z_authors":null},"score":0.09102392,"snippet":"Economic developments"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open @@ -138,7 +139,12 @@ http_interactions: National Council for Urban Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/caer-08-2016-0134","doi_url":"https://doi.org/10.1108/caer-08-2016-0134","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1756-137X","journal_issns":"1756-137X","journal_name":"China Agricultural Economic Review","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2017-02-06","publisher":"Emerald","title":"Development Economics: The Role of Agriculture in Development","updated":"2021-03-26T09:52:09.199561","year":2017,"z_authors":[{"family":"Ruan","given":"Jianqing","sequence":"first"}]},"score":0.0651129,"snippet":"Development - Economics: The Role of Agriculture in Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1057/9781137317490.0015","doi_url":"https://doi.org/10.1057/9781137317490.0015","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Economic + Economics: The Role of Agriculture in Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1007/978-3-030-14000-7_4","doi_url":"https://doi.org/10.1007/978-3-030-14000-7_4","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"The + Palgrave Handbook of Development Economics","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2019-01-01","publisher":"Springer + International Publishing","title":"Structuralists, Structures, and Economic + Development","updated":"2021-01-17T12:22:36.242093","year":2019,"z_authors":[{"family":"Dutt","given":"Amitava + Krishna","sequence":"first"}]},"score":0.062133495,"snippet":"Structuralists, + Structures, and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1057/9781137317490.0015","doi_url":"https://doi.org/10.1057/9781137317490.0015","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Economic Development from the State and Local Perspective","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":null,"publisher":"Palgrave Macmillan","title":"Economic Development Building Block","updated":"2021-01-18T11:42:25.035880","year":null,"z_authors":null},"score":0.062133495,"snippet":"Economic Development Building Block"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1057/9781137356796.0010","doi_url":"https://doi.org/10.1057/9781137356796.0010","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"The @@ -161,19 +167,17 @@ http_interactions: economic development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1080/00472336.2011.553058","doi_url":"https://doi.org/10.1080/00472336.2011.553058","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0047-2336","journal_issns":"0047-2336,1752-7554","journal_name":"Journal of Contemporary Asia","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2011-05-01","publisher":"Informa UK Limited","title":"Chinese Economic Development and the Environment","updated":"2021-01-19T01:26:58.445865","year":2011,"z_authors":[{"family":"Thompson","given":"Herb","sequence":"first"}]},"score":0.062133495,"snippet":"Chinese - Economic Development and the Environment"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1080/15480755.2014.937145","doi_url":"https://doi.org/10.1080/15480755.2014.937145","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1548-0755","journal_issns":"1548-0755,1556-8601","journal_name":"Planning + Economic Development and the Environment"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-03-16T18:07:32.504886","url":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","url_for_landing_page":"https://doi.org/10.1080/14672715.1972.10406289","url_for_pdf":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","version":"publishedVersion"},"data_standard":2,"doi":"10.1080/14672715.1972.10406289","doi_url":"https://doi.org/10.1080/14672715.1972.10406289","first_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-03-16T18:07:32.504886","url":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","url_for_landing_page":"https://doi.org/10.1080/14672715.1972.10406289","url_for_pdf":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":false,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0007-4810","journal_issns":"0007-4810","journal_name":"Bulletin + of Concerned Asian Scholars","oa_locations":[{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-03-16T18:07:32.504886","url":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","url_for_landing_page":"https://doi.org/10.1080/14672715.1972.10406289","url_for_pdf":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","version":"publishedVersion"}],"oa_locations_embargoed":[],"oa_status":"bronze","published_date":"1972-06-01","publisher":"Informa + UK Limited","title":"Economic development and welfare in China","updated":"2022-03-16T18:08:27.595451","year":1972,"z_authors":[{"family":"Lippit","given":"Victor","sequence":"first"}]},"score":0.062133495,"snippet":"Economic + development and welfare in China"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1080/15480755.2014.937145","doi_url":"https://doi.org/10.1080/15480755.2014.937145","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1548-0755","journal_issns":"1548-0755,1556-8601","journal_name":"Planning & Environmental Law","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2014-06-20","publisher":"Informa UK Limited","title":"The Temporary Use and Economic Development","updated":"2021-01-17T12:37:02.049454","year":2014,"z_authors":[{"family":"Silverman","given":"David S.","sequence":"first"}]},"score":0.062133495,"snippet":"The Temporary Use - and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1093/ia/15.4.621","doi_url":"https://doi.org/10.1093/ia/15.4.621","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0020-5850","journal_issns":"1468-2346,0020-5850","journal_name":"International - Affairs","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1936-07-01","publisher":"Oxford - University Press (OUP)","title":"An Outline Of European Economic Development","updated":"2021-01-18T11:39:28.646884","year":1936,"z_authors":[{"family":"H. - G. L.","sequence":"first"}]},"score":0.062133495,"snippet":"An Outline Of - European Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/9781615832460-016","doi_url":"https://doi.org/10.1108/9781615832460-016","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1472-7889","journal_issns":"1472-7889","journal_name":"Handbooks - in Transport","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2001-10-02","publisher":"Emerald - Group Publishing Limited","title":"Transportation Systems and Economic Development","updated":"2021-01-18T11:42:02.739808","year":2001,"z_authors":[{"family":"Haynes","given":"Kingsley","sequence":"first"},{"family":"Button","given":"Kenneth - J.","sequence":"additional"}]},"score":0.062133495,"snippet":"Transportation - Systems and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/eb028016","doi_url":"https://doi.org/10.1108/eb028016","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0140-9174","journal_issns":"0140-9174","journal_name":"Management + and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/eb028016","doi_url":"https://doi.org/10.1108/eb028016","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0140-9174","journal_issns":"0140-9174","journal_name":"Management Research News","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1989-03-01","publisher":"Emerald","title":"Local Economic Development and Training","updated":"2021-01-19T01:56:18.517472","year":1989,"z_authors":[{"family":"Hughes","given":"J.T.","sequence":"first"}]},"score":0.062133495,"snippet":"Local Economic Development and Training"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1142/11255","doi_url":"https://doi.org/10.1142/11255","first_oa_location":null,"genre":"monograph","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"2661-3883","journal_issns":"2661-3883,2661-3891","journal_name":"WSPC-ZJUP @@ -194,7 +198,15 @@ http_interactions: Eastern Survey","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1955-11-01","publisher":"University of California Press","title":"North Korea''s Economic Development","updated":"2021-01-19T13:09:16.129187","year":1955,"z_authors":[{"family":"Porter","given":"Catherine","sequence":"first"},{"family":"Holland","given":"William L.","sequence":"additional"}]},"score":0.062133495,"snippet":"North Korea''s - Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.18356/fcb9b895-en","doi_url":"https://doi.org/10.18356/fcb9b895-en","first_oa_location":null,"genre":"book","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1990-5114","journal_issns":"1990-5122","journal_name":"Economic + Economic Development"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2018-04-28T17:35:10.669563","url":"https://doi.org/10.15550/asj.2014.01.023","url_for_landing_page":null,"url_for_pdf":"https://doi.org/10.15550/asj.2014.01.023","version":"publishedVersion"},"data_standard":2,"doi":"10.15550/asj.2014.01.023","doi_url":"https://doi.org/10.15550/asj.2014.01.023","first_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2018-04-28T17:35:10.669563","url":"https://doi.org/10.15550/asj.2014.01.023","url_for_landing_page":null,"url_for_pdf":"https://doi.org/10.15550/asj.2014.01.023","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":true,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"2219-746X","journal_issns":"2219-746X,2219-7478","journal_name":"The + Advanced Science Journal","oa_locations":[{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2018-04-28T17:35:10.669563","url":"https://doi.org/10.15550/asj.2014.01.023","url_for_landing_page":null,"url_for_pdf":"https://doi.org/10.15550/asj.2014.01.023","version":"publishedVersion"},{"endpoint_id":"CiteSeerX.psu","evidence":"oa + repository (via OAI-PMH doi match)","host_type":"repository","is_best":false,"license":null,"oa_date":null,"pmh_id":"oai:CiteSeerX.psu:10.1.1.674.1533","repository_institution":"CiteSeerX.psu","updated":"2017-10-22T02:35:36.092562","url":"http://advancedscience.org/2014/1/023-028.pdf","url_for_landing_page":"http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.674.1533","url_for_pdf":"http://advancedscience.org/2014/1/023-028.pdf","version":"submittedVersion"}],"oa_locations_embargoed":[],"oa_status":"bronze","published_date":"2014-01-30","publisher":"Scireps + Corporation","title":"Innovative Component of Economic Development","updated":"2021-04-26T23:09:17.813154","year":2014,"z_authors":[{"family":"Onyshchenko","given":"V","sequence":"first"},{"name":"Poltava + National Technical Yuri Kondratyuk University, Ukraine","sequence":"first"},{"family":"Bryzhan","given":"I","sequence":"additional"}]},"score":0.062133495,"snippet":"Innovative + Component of Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.18356/fcb9b895-en","doi_url":"https://doi.org/10.18356/fcb9b895-en","first_oa_location":null,"genre":"book","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1990-5114","journal_issns":"1990-5122","journal_name":"Economic Development in Africa Report","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2007-10-05","publisher":"UN","title":"Economic Development in Africa 2007","updated":"2021-07-20T18:13:13.756440","year":2007,"z_authors":[{"name":"United Nations Conference on Trade and Development","sequence":"first"}]},"score":0.062133495,"snippet":"Economic @@ -230,7 +242,11 @@ http_interactions: Economic History Review","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1973-01-01","publisher":"JSTOR","title":"Population Growth and Economic Development.","updated":"2022-02-18T20:39:38.726118","year":1973,"z_authors":[{"family":"Wrigley","given":"E. A.","sequence":"first"},{"family":"Habakkuk","given":"H. J.","sequence":"additional"}]},"score":0.062133495,"snippet":"Population - Growth and Economic Development."},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"oa + Growth and Economic Development."},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2977749","doi_url":"https://doi.org/10.2307/2977749","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0022-1082","journal_issns":"0022-1082","journal_name":"The + Journal of Finance","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1965-03-01","publisher":"JSTOR","title":"Leading + Issues in Development Economics.","updated":"2021-04-27T00:59:55.768295","year":1965,"z_authors":[{"family":"Graeser","given":"Paul"},{"family":"Meier","given":"Gerald + M."}]},"score":0.062133495,"snippet":"Leading Issues in Development + Economics."},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"oa journal (via observed oa rate)","host_type":"publisher","is_best":true,"license":null,"oa_date":"2021-03-29","pmh_id":null,"repository_institution":null,"updated":"2021-08-05T03:11:56.090928","url":"https://doi.org/10.31080/asag.2021.05.0977","url_for_landing_page":"https://doi.org/10.31080/asag.2021.05.0977","url_for_pdf":null,"version":"publishedVersion"},"data_standard":2,"doi":"10.31080/asag.2021.05.0977","doi_url":"https://doi.org/10.31080/asag.2021.05.0977","first_oa_location":{"endpoint_id":null,"evidence":"oa journal (via observed oa rate)","host_type":"publisher","is_best":true,"license":null,"oa_date":"2021-03-29","pmh_id":null,"repository_institution":null,"updated":"2021-08-05T03:11:56.090928","url":"https://doi.org/10.31080/asag.2021.05.0977","url_for_landing_page":"https://doi.org/10.31080/asag.2021.05.0977","url_for_pdf":null,"version":"publishedVersion"},"genre":"journal-article","has_repository_copy":false,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":true,"journal_issn_l":"2581-365X","journal_issns":"2581-365X","journal_name":"Acta Scientific Agriculture","oa_locations":[{"endpoint_id":null,"evidence":"oa @@ -261,18 +277,7 @@ http_interactions: of Sustainable Politics and Economics of Natural Resources","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2021-01-01","publisher":"Edward Elgar Publishing","title":"Natural resources and economic development","updated":"2021-12-21T00:12:26.323928","year":2021,"z_authors":[{"family":"Chian Koh","given":"Wee","sequence":"first"}]},"score":0.062133495,"snippet":"Natural - resources and economic development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.4337/9781848444010.00010","doi_url":"https://doi.org/10.4337/9781848444010.00010","first_oa_location":null,"genre":"other","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Trade - Liberalisation and The Poverty of Nations","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":null,"publisher":"Edward - Elgar Publishing","title":"Trade Strategy and Economic Development","updated":"2021-01-15T21:41:11.481917","year":null,"z_authors":null},"score":0.062133495,"snippet":"Trade - Strategy and Economic Development"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open - (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-08-18T13:24:08.464072","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","url_for_landing_page":"https://doi.org/10.5089/9781451807721.002","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","version":"publishedVersion"},"data_standard":2,"doi":"10.5089/9781451807721.002","doi_url":"https://doi.org/10.5089/9781451807721.002","first_oa_location":{"endpoint_id":"5a4c71918fc62d3e4ce","evidence":"oa - repository (via OAI-PMH title and first author match)","host_type":"repository","is_best":false,"license":null,"oa_date":"2022-07-30","pmh_id":"oai:aleph.bib-bvb.de:BVB01-033723690","repository_institution":null,"updated":"2022-08-31T00:27:35.763471","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","url_for_landing_page":"http://elibrary.imf.org/view/IMF002/01227-9781451807738/01227-9781451807738/01227-9781451807738.xml","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":true,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1934-7685","journal_issns":"1934-7685","journal_name":"IMF - Staff Country Reports","oa_locations":[{"endpoint_id":null,"evidence":"open - (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-08-18T13:24:08.464072","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","url_for_landing_page":"https://doi.org/10.5089/9781451807721.002","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","version":"publishedVersion"},{"endpoint_id":"5a4c71918fc62d3e4ce","evidence":"oa - repository (via OAI-PMH title and first author match)","host_type":"repository","is_best":false,"license":null,"oa_date":"2022-07-30","pmh_id":"oai:aleph.bib-bvb.de:BVB01-033723690","repository_institution":null,"updated":"2022-08-31T00:27:35.763471","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","url_for_landing_page":"http://elibrary.imf.org/view/IMF002/01227-9781451807738/01227-9781451807738/01227-9781451807738.xml","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","version":"publishedVersion"}],"oa_locations_embargoed":[],"oa_status":"bronze","published_date":"1996-01-01","publisher":"International - Monetary Fund (IMF)","title":"China: Recent Economic Developments","updated":"2022-08-31T09:33:27.569485","year":1996,"z_authors":[{"family":"International - Monetary Fund","sequence":"first"}]},"score":0.062133495,"snippet":"China: - Recent Economic Developments"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open + resources and economic development"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2021-12-29T02:46:05.480499","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1995/132/002.1995.issue-132-en.xml","url_for_landing_page":"https://doi.org/10.5089/9781451813388.002","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1995/132/002.1995.issue-132-en.xml","version":"publishedVersion"},"data_standard":2,"doi":"10.5089/9781451813388.002","doi_url":"https://doi.org/10.5089/9781451813388.002","first_oa_location":{"endpoint_id":"5a4c71918fc62d3e4ce","evidence":"oa repository (via OAI-PMH title and first author match)","host_type":"repository","is_best":false,"license":null,"oa_date":"2022-07-30","pmh_id":"oai:aleph.bib-bvb.de:BVB01-033724051","repository_institution":null,"updated":"2022-09-25T07:19:39.384012","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/027/002.1997.issue-027-en.xml","url_for_landing_page":"http://elibrary.imf.org/view/IMF002/02628-9781451813487/02628-9781451813487/02628-9781451813487.xml","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/027/002.1997.issue-027-en.xml","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":true,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1934-7685","journal_issns":"1934-7685","journal_name":"IMF Staff Country Reports","oa_locations":[{"endpoint_id":null,"evidence":"open @@ -293,5 +298,5 @@ http_interactions: economic development, and the environment"}]} ' - recorded_at: Tue, 27 Sep 2022 16:55:56 GMT + recorded_at: Mon, 10 Oct 2022 19:05:11 GMT recorded_with: VCR 6.1.0 diff --git a/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_new/when_an_existing_publication_does_not_have_a_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/does_not_update_the_publication_s_Unpaywall_check_timestamp.yml b/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_new/when_an_existing_publication_does_not_have_a_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/updates_the_publication_s_Unpaywall_check_timestamp.yml similarity index 85% rename from spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_new/when_an_existing_publication_does_not_have_a_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/does_not_update_the_publication_s_Unpaywall_check_timestamp.yml rename to spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_new/when_an_existing_publication_does_not_have_a_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/updates_the_publication_s_Unpaywall_check_timestamp.yml index 36f13415c..d20a256ac 100644 --- a/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_new/when_an_existing_publication_does_not_have_a_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/does_not_update_the_publication_s_Unpaywall_check_timestamp.yml +++ b/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_new/when_an_existing_publication_does_not_have_a_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/updates_the_publication_s_Unpaywall_check_timestamp.yml @@ -23,11 +23,11 @@ http_interactions: Server: - gunicorn Date: - - Tue, 27 Sep 2022 16:55:59 GMT + - Mon, 10 Oct 2022 19:05:13 GMT Content-Type: - application/json Content-Length: - - '8984' + - '9263' Access-Control-Allow-Origin: - "*" Access-Control-Allow-Methods: @@ -40,12 +40,19 @@ http_interactions: - 1.1 vegur body: encoding: ASCII-8BIT - string: '{"elapsed_seconds":0.217,"results":[{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.30541/v32i4ipp.357-386","doi_url":"https://doi.org/10.30541/v32i4ipp.357-386","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0030-9729","journal_issns":"0030-9729","journal_name":"The + string: '{"elapsed_seconds":0.203,"results":[{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.30541/v32i4ipp.357-386","doi_url":"https://doi.org/10.30541/v32i4ipp.357-386","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0030-9729","journal_issns":"0030-9729","journal_name":"The Pakistan Development Review","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1993-12-01","publisher":"Pakistan Institute of Developemnt Economics (PIDE)","title":"Economic Development and Development Economics (Presidential Address)","updated":"2021-01-13T12:08:11.543560","year":1993,"z_authors":[{"family":"Naqvi","given":"Syed Nawab Haider","sequence":"first"}]},"score":0.10277967,"snippet":"Economic - Development and Development Economics (Presidential Address)"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2235036","doi_url":"https://doi.org/10.2307/2235036","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0013-0133","journal_issns":"0013-0133","journal_name":"The + Development and Development Economics (Presidential Address)"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2609769","doi_url":"https://doi.org/10.2307/2609769","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0020-5850","journal_issns":"1468-2346,0020-5850","journal_name":"International + Affairs","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1964-01-01","publisher":"Oxford + University Press (OUP)","title":"Why Help India?, Foreign Aid and India''s + Economic Development, Indian Plans: A Generalist Approach, Administration + and Economic Development in India, Quiet Crisis in India: Economic Development + and American Policy and Impasse Indienne","updated":"2021-04-01T12:41:08.496365","year":1964,"z_authors":[{"family":"Mende","given":"Tibor","sequence":"first"}]},"score":0.10152169,"snippet":"Economic + Development, Indian Plans: A Generalist Approach, Administration and + Economic Development in India, Quiet Crisis"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2235036","doi_url":"https://doi.org/10.2307/2235036","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0013-0133","journal_issns":"0013-0133","journal_name":"The Economic Journal","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1995-05-01","publisher":"Oxford University Press (OUP)","title":"From Classical Economics to Development Economics.","updated":"2021-01-17T06:46:37.916114","year":1995,"z_authors":[{"family":"Snowdon","given":"Brian","sequence":"first"},{"family":"Meier","given":"Gerald M.","sequence":"additional"}]},"score":0.093200244,"snippet":"From Classical @@ -55,13 +62,7 @@ http_interactions: development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1007/978-1-4614-3858-8_100240","doi_url":"https://doi.org/10.1007/978-1-4614-3858-8_100240","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Encyclopedia of Creativity, Invention, Innovation and Entrepreneurship","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2013-01-01","publisher":"Springer New York","title":"Development Economics","updated":"2021-01-18T11:43:31.256248","year":2013,"z_authors":null},"score":0.09102392,"snippet":"Development - Economics"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1111/j.1541-1338.1987.tb00029.x","doi_url":"https://doi.org/10.1111/j.1541-1338.1987.tb00029.x","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1541-132X","journal_issns":"1541-132X,1541-1338","journal_name":"Review - of Policy Research","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1987-09-01","publisher":"Wiley","title":"MEASURING - ECONOMIC DEVELOPMENT: ECONOMIC DIVERSIFICATION AS AN ALTERNATIVE TO STANDARD - INDICATORS","updated":"2021-01-15T19:13:33.614113","year":1987,"z_authors":[{"family":"Thompson","given":"Joel - A.","sequence":"first"},{"family":"Lanier","given":"Mark W.","sequence":"additional"}]},"score":0.09102392,"snippet":"MEASURING - ECONOMIC DEVELOPMENT: ECONOMIC DIVERSIFICATION AS AN - ALTERNATIVE TO STANDARD INDICATORS"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1787/6ea04923-en","doi_url":"https://doi.org/10.1787/6ea04923-en","first_oa_location":null,"genre":"other","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1995-350X","journal_issns":"1999-0561","journal_name":"OECD + Economics"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1787/6ea04923-en","doi_url":"https://doi.org/10.1787/6ea04923-en","first_oa_location":null,"genre":"other","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1995-350X","journal_issns":"1999-0561","journal_name":"OECD Economic Surveys: Czech Republic 2020","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2020-12-17","publisher":"OECD","title":"Economic developments","updated":"2021-01-18T13:14:42.234137","year":2020,"z_authors":null},"score":0.09102392,"snippet":"Economic developments"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open @@ -138,7 +139,12 @@ http_interactions: National Council for Urban Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/caer-08-2016-0134","doi_url":"https://doi.org/10.1108/caer-08-2016-0134","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1756-137X","journal_issns":"1756-137X","journal_name":"China Agricultural Economic Review","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2017-02-06","publisher":"Emerald","title":"Development Economics: The Role of Agriculture in Development","updated":"2021-03-26T09:52:09.199561","year":2017,"z_authors":[{"family":"Ruan","given":"Jianqing","sequence":"first"}]},"score":0.0651129,"snippet":"Development - Economics: The Role of Agriculture in Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1057/9781137317490.0015","doi_url":"https://doi.org/10.1057/9781137317490.0015","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Economic + Economics: The Role of Agriculture in Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1007/978-3-030-14000-7_4","doi_url":"https://doi.org/10.1007/978-3-030-14000-7_4","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"The + Palgrave Handbook of Development Economics","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2019-01-01","publisher":"Springer + International Publishing","title":"Structuralists, Structures, and Economic + Development","updated":"2021-01-17T12:22:36.242093","year":2019,"z_authors":[{"family":"Dutt","given":"Amitava + Krishna","sequence":"first"}]},"score":0.062133495,"snippet":"Structuralists, + Structures, and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1057/9781137317490.0015","doi_url":"https://doi.org/10.1057/9781137317490.0015","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Economic Development from the State and Local Perspective","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":null,"publisher":"Palgrave Macmillan","title":"Economic Development Building Block","updated":"2021-01-18T11:42:25.035880","year":null,"z_authors":null},"score":0.062133495,"snippet":"Economic Development Building Block"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1057/9781137356796.0010","doi_url":"https://doi.org/10.1057/9781137356796.0010","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"The @@ -161,19 +167,17 @@ http_interactions: economic development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1080/00472336.2011.553058","doi_url":"https://doi.org/10.1080/00472336.2011.553058","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0047-2336","journal_issns":"0047-2336,1752-7554","journal_name":"Journal of Contemporary Asia","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2011-05-01","publisher":"Informa UK Limited","title":"Chinese Economic Development and the Environment","updated":"2021-01-19T01:26:58.445865","year":2011,"z_authors":[{"family":"Thompson","given":"Herb","sequence":"first"}]},"score":0.062133495,"snippet":"Chinese - Economic Development and the Environment"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1080/15480755.2014.937145","doi_url":"https://doi.org/10.1080/15480755.2014.937145","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1548-0755","journal_issns":"1548-0755,1556-8601","journal_name":"Planning + Economic Development and the Environment"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-03-16T18:07:32.504886","url":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","url_for_landing_page":"https://doi.org/10.1080/14672715.1972.10406289","url_for_pdf":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","version":"publishedVersion"},"data_standard":2,"doi":"10.1080/14672715.1972.10406289","doi_url":"https://doi.org/10.1080/14672715.1972.10406289","first_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-03-16T18:07:32.504886","url":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","url_for_landing_page":"https://doi.org/10.1080/14672715.1972.10406289","url_for_pdf":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":false,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0007-4810","journal_issns":"0007-4810","journal_name":"Bulletin + of Concerned Asian Scholars","oa_locations":[{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-03-16T18:07:32.504886","url":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","url_for_landing_page":"https://doi.org/10.1080/14672715.1972.10406289","url_for_pdf":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","version":"publishedVersion"}],"oa_locations_embargoed":[],"oa_status":"bronze","published_date":"1972-06-01","publisher":"Informa + UK Limited","title":"Economic development and welfare in China","updated":"2022-03-16T18:08:27.595451","year":1972,"z_authors":[{"family":"Lippit","given":"Victor","sequence":"first"}]},"score":0.062133495,"snippet":"Economic + development and welfare in China"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1080/15480755.2014.937145","doi_url":"https://doi.org/10.1080/15480755.2014.937145","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1548-0755","journal_issns":"1548-0755,1556-8601","journal_name":"Planning & Environmental Law","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2014-06-20","publisher":"Informa UK Limited","title":"The Temporary Use and Economic Development","updated":"2021-01-17T12:37:02.049454","year":2014,"z_authors":[{"family":"Silverman","given":"David S.","sequence":"first"}]},"score":0.062133495,"snippet":"The Temporary Use - and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1093/ia/15.4.621","doi_url":"https://doi.org/10.1093/ia/15.4.621","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0020-5850","journal_issns":"1468-2346,0020-5850","journal_name":"International - Affairs","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1936-07-01","publisher":"Oxford - University Press (OUP)","title":"An Outline Of European Economic Development","updated":"2021-01-18T11:39:28.646884","year":1936,"z_authors":[{"family":"H. - G. L.","sequence":"first"}]},"score":0.062133495,"snippet":"An Outline Of - European Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/9781615832460-016","doi_url":"https://doi.org/10.1108/9781615832460-016","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1472-7889","journal_issns":"1472-7889","journal_name":"Handbooks - in Transport","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2001-10-02","publisher":"Emerald - Group Publishing Limited","title":"Transportation Systems and Economic Development","updated":"2021-01-18T11:42:02.739808","year":2001,"z_authors":[{"family":"Haynes","given":"Kingsley","sequence":"first"},{"family":"Button","given":"Kenneth - J.","sequence":"additional"}]},"score":0.062133495,"snippet":"Transportation - Systems and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/eb028016","doi_url":"https://doi.org/10.1108/eb028016","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0140-9174","journal_issns":"0140-9174","journal_name":"Management + and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/eb028016","doi_url":"https://doi.org/10.1108/eb028016","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0140-9174","journal_issns":"0140-9174","journal_name":"Management Research News","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1989-03-01","publisher":"Emerald","title":"Local Economic Development and Training","updated":"2021-01-19T01:56:18.517472","year":1989,"z_authors":[{"family":"Hughes","given":"J.T.","sequence":"first"}]},"score":0.062133495,"snippet":"Local Economic Development and Training"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1142/11255","doi_url":"https://doi.org/10.1142/11255","first_oa_location":null,"genre":"monograph","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"2661-3883","journal_issns":"2661-3883,2661-3891","journal_name":"WSPC-ZJUP @@ -194,7 +198,15 @@ http_interactions: Eastern Survey","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1955-11-01","publisher":"University of California Press","title":"North Korea''s Economic Development","updated":"2021-01-19T13:09:16.129187","year":1955,"z_authors":[{"family":"Porter","given":"Catherine","sequence":"first"},{"family":"Holland","given":"William L.","sequence":"additional"}]},"score":0.062133495,"snippet":"North Korea''s - Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.18356/fcb9b895-en","doi_url":"https://doi.org/10.18356/fcb9b895-en","first_oa_location":null,"genre":"book","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1990-5114","journal_issns":"1990-5122","journal_name":"Economic + Economic Development"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2018-04-28T17:35:10.669563","url":"https://doi.org/10.15550/asj.2014.01.023","url_for_landing_page":null,"url_for_pdf":"https://doi.org/10.15550/asj.2014.01.023","version":"publishedVersion"},"data_standard":2,"doi":"10.15550/asj.2014.01.023","doi_url":"https://doi.org/10.15550/asj.2014.01.023","first_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2018-04-28T17:35:10.669563","url":"https://doi.org/10.15550/asj.2014.01.023","url_for_landing_page":null,"url_for_pdf":"https://doi.org/10.15550/asj.2014.01.023","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":true,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"2219-746X","journal_issns":"2219-746X,2219-7478","journal_name":"The + Advanced Science Journal","oa_locations":[{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2018-04-28T17:35:10.669563","url":"https://doi.org/10.15550/asj.2014.01.023","url_for_landing_page":null,"url_for_pdf":"https://doi.org/10.15550/asj.2014.01.023","version":"publishedVersion"},{"endpoint_id":"CiteSeerX.psu","evidence":"oa + repository (via OAI-PMH doi match)","host_type":"repository","is_best":false,"license":null,"oa_date":null,"pmh_id":"oai:CiteSeerX.psu:10.1.1.674.1533","repository_institution":"CiteSeerX.psu","updated":"2017-10-22T02:35:36.092562","url":"http://advancedscience.org/2014/1/023-028.pdf","url_for_landing_page":"http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.674.1533","url_for_pdf":"http://advancedscience.org/2014/1/023-028.pdf","version":"submittedVersion"}],"oa_locations_embargoed":[],"oa_status":"bronze","published_date":"2014-01-30","publisher":"Scireps + Corporation","title":"Innovative Component of Economic Development","updated":"2021-04-26T23:09:17.813154","year":2014,"z_authors":[{"family":"Onyshchenko","given":"V","sequence":"first"},{"name":"Poltava + National Technical Yuri Kondratyuk University, Ukraine","sequence":"first"},{"family":"Bryzhan","given":"I","sequence":"additional"}]},"score":0.062133495,"snippet":"Innovative + Component of Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.18356/fcb9b895-en","doi_url":"https://doi.org/10.18356/fcb9b895-en","first_oa_location":null,"genre":"book","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1990-5114","journal_issns":"1990-5122","journal_name":"Economic Development in Africa Report","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2007-10-05","publisher":"UN","title":"Economic Development in Africa 2007","updated":"2021-07-20T18:13:13.756440","year":2007,"z_authors":[{"name":"United Nations Conference on Trade and Development","sequence":"first"}]},"score":0.062133495,"snippet":"Economic @@ -230,7 +242,11 @@ http_interactions: Economic History Review","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1973-01-01","publisher":"JSTOR","title":"Population Growth and Economic Development.","updated":"2022-02-18T20:39:38.726118","year":1973,"z_authors":[{"family":"Wrigley","given":"E. A.","sequence":"first"},{"family":"Habakkuk","given":"H. J.","sequence":"additional"}]},"score":0.062133495,"snippet":"Population - Growth and Economic Development."},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"oa + Growth and Economic Development."},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2977749","doi_url":"https://doi.org/10.2307/2977749","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0022-1082","journal_issns":"0022-1082","journal_name":"The + Journal of Finance","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1965-03-01","publisher":"JSTOR","title":"Leading + Issues in Development Economics.","updated":"2021-04-27T00:59:55.768295","year":1965,"z_authors":[{"family":"Graeser","given":"Paul"},{"family":"Meier","given":"Gerald + M."}]},"score":0.062133495,"snippet":"Leading Issues in Development + Economics."},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"oa journal (via observed oa rate)","host_type":"publisher","is_best":true,"license":null,"oa_date":"2021-03-29","pmh_id":null,"repository_institution":null,"updated":"2021-08-05T03:11:56.090928","url":"https://doi.org/10.31080/asag.2021.05.0977","url_for_landing_page":"https://doi.org/10.31080/asag.2021.05.0977","url_for_pdf":null,"version":"publishedVersion"},"data_standard":2,"doi":"10.31080/asag.2021.05.0977","doi_url":"https://doi.org/10.31080/asag.2021.05.0977","first_oa_location":{"endpoint_id":null,"evidence":"oa journal (via observed oa rate)","host_type":"publisher","is_best":true,"license":null,"oa_date":"2021-03-29","pmh_id":null,"repository_institution":null,"updated":"2021-08-05T03:11:56.090928","url":"https://doi.org/10.31080/asag.2021.05.0977","url_for_landing_page":"https://doi.org/10.31080/asag.2021.05.0977","url_for_pdf":null,"version":"publishedVersion"},"genre":"journal-article","has_repository_copy":false,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":true,"journal_issn_l":"2581-365X","journal_issns":"2581-365X","journal_name":"Acta Scientific Agriculture","oa_locations":[{"endpoint_id":null,"evidence":"oa @@ -261,18 +277,7 @@ http_interactions: of Sustainable Politics and Economics of Natural Resources","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2021-01-01","publisher":"Edward Elgar Publishing","title":"Natural resources and economic development","updated":"2021-12-21T00:12:26.323928","year":2021,"z_authors":[{"family":"Chian Koh","given":"Wee","sequence":"first"}]},"score":0.062133495,"snippet":"Natural - resources and economic development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.4337/9781848444010.00010","doi_url":"https://doi.org/10.4337/9781848444010.00010","first_oa_location":null,"genre":"other","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Trade - Liberalisation and The Poverty of Nations","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":null,"publisher":"Edward - Elgar Publishing","title":"Trade Strategy and Economic Development","updated":"2021-01-15T21:41:11.481917","year":null,"z_authors":null},"score":0.062133495,"snippet":"Trade - Strategy and Economic Development"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open - (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-08-18T13:24:08.464072","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","url_for_landing_page":"https://doi.org/10.5089/9781451807721.002","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","version":"publishedVersion"},"data_standard":2,"doi":"10.5089/9781451807721.002","doi_url":"https://doi.org/10.5089/9781451807721.002","first_oa_location":{"endpoint_id":"5a4c71918fc62d3e4ce","evidence":"oa - repository (via OAI-PMH title and first author match)","host_type":"repository","is_best":false,"license":null,"oa_date":"2022-07-30","pmh_id":"oai:aleph.bib-bvb.de:BVB01-033723690","repository_institution":null,"updated":"2022-08-31T00:27:35.763471","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","url_for_landing_page":"http://elibrary.imf.org/view/IMF002/01227-9781451807738/01227-9781451807738/01227-9781451807738.xml","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":true,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1934-7685","journal_issns":"1934-7685","journal_name":"IMF - Staff Country Reports","oa_locations":[{"endpoint_id":null,"evidence":"open - (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-08-18T13:24:08.464072","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","url_for_landing_page":"https://doi.org/10.5089/9781451807721.002","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","version":"publishedVersion"},{"endpoint_id":"5a4c71918fc62d3e4ce","evidence":"oa - repository (via OAI-PMH title and first author match)","host_type":"repository","is_best":false,"license":null,"oa_date":"2022-07-30","pmh_id":"oai:aleph.bib-bvb.de:BVB01-033723690","repository_institution":null,"updated":"2022-08-31T00:27:35.763471","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","url_for_landing_page":"http://elibrary.imf.org/view/IMF002/01227-9781451807738/01227-9781451807738/01227-9781451807738.xml","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","version":"publishedVersion"}],"oa_locations_embargoed":[],"oa_status":"bronze","published_date":"1996-01-01","publisher":"International - Monetary Fund (IMF)","title":"China: Recent Economic Developments","updated":"2022-08-31T09:33:27.569485","year":1996,"z_authors":[{"family":"International - Monetary Fund","sequence":"first"}]},"score":0.062133495,"snippet":"China: - Recent Economic Developments"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open + resources and economic development"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2021-12-29T02:46:05.480499","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1995/132/002.1995.issue-132-en.xml","url_for_landing_page":"https://doi.org/10.5089/9781451813388.002","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1995/132/002.1995.issue-132-en.xml","version":"publishedVersion"},"data_standard":2,"doi":"10.5089/9781451813388.002","doi_url":"https://doi.org/10.5089/9781451813388.002","first_oa_location":{"endpoint_id":"5a4c71918fc62d3e4ce","evidence":"oa repository (via OAI-PMH title and first author match)","host_type":"repository","is_best":false,"license":null,"oa_date":"2022-07-30","pmh_id":"oai:aleph.bib-bvb.de:BVB01-033724051","repository_institution":null,"updated":"2022-09-25T07:19:39.384012","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/027/002.1997.issue-027-en.xml","url_for_landing_page":"http://elibrary.imf.org/view/IMF002/02628-9781451813487/02628-9781451813487/02628-9781451813487.xml","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/027/002.1997.issue-027-en.xml","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":true,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1934-7685","journal_issns":"1934-7685","journal_name":"IMF Staff Country Reports","oa_locations":[{"endpoint_id":null,"evidence":"open @@ -293,5 +298,5 @@ http_interactions: economic development, and the environment"}]} ' - recorded_at: Tue, 27 Sep 2022 16:55:59 GMT + recorded_at: Mon, 10 Oct 2022 19:05:13 GMT recorded_with: VCR 6.1.0 diff --git a/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_new/when_an_existing_publication_has_a_blank_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/does_not_update_the_publication_s_Unpaywall_check_timestamp.yml b/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_new/when_an_existing_publication_has_a_blank_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/updates_the_publication_s_Unpaywall_check_timestamp.yml similarity index 85% rename from spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_new/when_an_existing_publication_has_a_blank_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/does_not_update_the_publication_s_Unpaywall_check_timestamp.yml rename to spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_new/when_an_existing_publication_has_a_blank_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/updates_the_publication_s_Unpaywall_check_timestamp.yml index 051d22aac..d20a256ac 100644 --- a/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_new/when_an_existing_publication_has_a_blank_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/does_not_update_the_publication_s_Unpaywall_check_timestamp.yml +++ b/spec/fixtures/vcr_cassettes/UnpaywallPublicationImporter/_import_new/when_an_existing_publication_has_a_blank_DOI/when_the_title_is_ambiguous_and_does_not_have_an_exact_match_with_an_article_listed_with_Unpaywall/updates_the_publication_s_Unpaywall_check_timestamp.yml @@ -23,11 +23,11 @@ http_interactions: Server: - gunicorn Date: - - Tue, 27 Sep 2022 16:56:00 GMT + - Mon, 10 Oct 2022 19:05:13 GMT Content-Type: - application/json Content-Length: - - '8985' + - '9263' Access-Control-Allow-Origin: - "*" Access-Control-Allow-Methods: @@ -40,12 +40,19 @@ http_interactions: - 1.1 vegur body: encoding: ASCII-8BIT - string: '{"elapsed_seconds":0.208,"results":[{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.30541/v32i4ipp.357-386","doi_url":"https://doi.org/10.30541/v32i4ipp.357-386","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0030-9729","journal_issns":"0030-9729","journal_name":"The + string: '{"elapsed_seconds":0.203,"results":[{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.30541/v32i4ipp.357-386","doi_url":"https://doi.org/10.30541/v32i4ipp.357-386","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0030-9729","journal_issns":"0030-9729","journal_name":"The Pakistan Development Review","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1993-12-01","publisher":"Pakistan Institute of Developemnt Economics (PIDE)","title":"Economic Development and Development Economics (Presidential Address)","updated":"2021-01-13T12:08:11.543560","year":1993,"z_authors":[{"family":"Naqvi","given":"Syed Nawab Haider","sequence":"first"}]},"score":0.10277967,"snippet":"Economic - Development and Development Economics (Presidential Address)"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2235036","doi_url":"https://doi.org/10.2307/2235036","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0013-0133","journal_issns":"0013-0133","journal_name":"The + Development and Development Economics (Presidential Address)"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2609769","doi_url":"https://doi.org/10.2307/2609769","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0020-5850","journal_issns":"1468-2346,0020-5850","journal_name":"International + Affairs","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1964-01-01","publisher":"Oxford + University Press (OUP)","title":"Why Help India?, Foreign Aid and India''s + Economic Development, Indian Plans: A Generalist Approach, Administration + and Economic Development in India, Quiet Crisis in India: Economic Development + and American Policy and Impasse Indienne","updated":"2021-04-01T12:41:08.496365","year":1964,"z_authors":[{"family":"Mende","given":"Tibor","sequence":"first"}]},"score":0.10152169,"snippet":"Economic + Development, Indian Plans: A Generalist Approach, Administration and + Economic Development in India, Quiet Crisis"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2235036","doi_url":"https://doi.org/10.2307/2235036","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0013-0133","journal_issns":"0013-0133","journal_name":"The Economic Journal","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1995-05-01","publisher":"Oxford University Press (OUP)","title":"From Classical Economics to Development Economics.","updated":"2021-01-17T06:46:37.916114","year":1995,"z_authors":[{"family":"Snowdon","given":"Brian","sequence":"first"},{"family":"Meier","given":"Gerald M.","sequence":"additional"}]},"score":0.093200244,"snippet":"From Classical @@ -55,13 +62,7 @@ http_interactions: development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1007/978-1-4614-3858-8_100240","doi_url":"https://doi.org/10.1007/978-1-4614-3858-8_100240","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Encyclopedia of Creativity, Invention, Innovation and Entrepreneurship","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2013-01-01","publisher":"Springer New York","title":"Development Economics","updated":"2021-01-18T11:43:31.256248","year":2013,"z_authors":null},"score":0.09102392,"snippet":"Development - Economics"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1111/j.1541-1338.1987.tb00029.x","doi_url":"https://doi.org/10.1111/j.1541-1338.1987.tb00029.x","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1541-132X","journal_issns":"1541-132X,1541-1338","journal_name":"Review - of Policy Research","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1987-09-01","publisher":"Wiley","title":"MEASURING - ECONOMIC DEVELOPMENT: ECONOMIC DIVERSIFICATION AS AN ALTERNATIVE TO STANDARD - INDICATORS","updated":"2021-01-15T19:13:33.614113","year":1987,"z_authors":[{"family":"Thompson","given":"Joel - A.","sequence":"first"},{"family":"Lanier","given":"Mark W.","sequence":"additional"}]},"score":0.09102392,"snippet":"MEASURING - ECONOMIC DEVELOPMENT: ECONOMIC DIVERSIFICATION AS AN - ALTERNATIVE TO STANDARD INDICATORS"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1787/6ea04923-en","doi_url":"https://doi.org/10.1787/6ea04923-en","first_oa_location":null,"genre":"other","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1995-350X","journal_issns":"1999-0561","journal_name":"OECD + Economics"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1787/6ea04923-en","doi_url":"https://doi.org/10.1787/6ea04923-en","first_oa_location":null,"genre":"other","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1995-350X","journal_issns":"1999-0561","journal_name":"OECD Economic Surveys: Czech Republic 2020","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2020-12-17","publisher":"OECD","title":"Economic developments","updated":"2021-01-18T13:14:42.234137","year":2020,"z_authors":null},"score":0.09102392,"snippet":"Economic developments"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open @@ -138,7 +139,12 @@ http_interactions: National Council for Urban Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/caer-08-2016-0134","doi_url":"https://doi.org/10.1108/caer-08-2016-0134","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1756-137X","journal_issns":"1756-137X","journal_name":"China Agricultural Economic Review","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2017-02-06","publisher":"Emerald","title":"Development Economics: The Role of Agriculture in Development","updated":"2021-03-26T09:52:09.199561","year":2017,"z_authors":[{"family":"Ruan","given":"Jianqing","sequence":"first"}]},"score":0.0651129,"snippet":"Development - Economics: The Role of Agriculture in Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1057/9781137317490.0015","doi_url":"https://doi.org/10.1057/9781137317490.0015","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Economic + Economics: The Role of Agriculture in Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1007/978-3-030-14000-7_4","doi_url":"https://doi.org/10.1007/978-3-030-14000-7_4","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"The + Palgrave Handbook of Development Economics","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2019-01-01","publisher":"Springer + International Publishing","title":"Structuralists, Structures, and Economic + Development","updated":"2021-01-17T12:22:36.242093","year":2019,"z_authors":[{"family":"Dutt","given":"Amitava + Krishna","sequence":"first"}]},"score":0.062133495,"snippet":"Structuralists, + Structures, and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1057/9781137317490.0015","doi_url":"https://doi.org/10.1057/9781137317490.0015","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Economic Development from the State and Local Perspective","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":null,"publisher":"Palgrave Macmillan","title":"Economic Development Building Block","updated":"2021-01-18T11:42:25.035880","year":null,"z_authors":null},"score":0.062133495,"snippet":"Economic Development Building Block"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1057/9781137356796.0010","doi_url":"https://doi.org/10.1057/9781137356796.0010","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"The @@ -161,19 +167,17 @@ http_interactions: economic development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1080/00472336.2011.553058","doi_url":"https://doi.org/10.1080/00472336.2011.553058","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0047-2336","journal_issns":"0047-2336,1752-7554","journal_name":"Journal of Contemporary Asia","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2011-05-01","publisher":"Informa UK Limited","title":"Chinese Economic Development and the Environment","updated":"2021-01-19T01:26:58.445865","year":2011,"z_authors":[{"family":"Thompson","given":"Herb","sequence":"first"}]},"score":0.062133495,"snippet":"Chinese - Economic Development and the Environment"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1080/15480755.2014.937145","doi_url":"https://doi.org/10.1080/15480755.2014.937145","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1548-0755","journal_issns":"1548-0755,1556-8601","journal_name":"Planning + Economic Development and the Environment"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-03-16T18:07:32.504886","url":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","url_for_landing_page":"https://doi.org/10.1080/14672715.1972.10406289","url_for_pdf":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","version":"publishedVersion"},"data_standard":2,"doi":"10.1080/14672715.1972.10406289","doi_url":"https://doi.org/10.1080/14672715.1972.10406289","first_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-03-16T18:07:32.504886","url":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","url_for_landing_page":"https://doi.org/10.1080/14672715.1972.10406289","url_for_pdf":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":false,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0007-4810","journal_issns":"0007-4810","journal_name":"Bulletin + of Concerned Asian Scholars","oa_locations":[{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-03-16T18:07:32.504886","url":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","url_for_landing_page":"https://doi.org/10.1080/14672715.1972.10406289","url_for_pdf":"https://www.tandfonline.com/doi/pdf/10.1080/14672715.1972.10406289?needAccess=true","version":"publishedVersion"}],"oa_locations_embargoed":[],"oa_status":"bronze","published_date":"1972-06-01","publisher":"Informa + UK Limited","title":"Economic development and welfare in China","updated":"2022-03-16T18:08:27.595451","year":1972,"z_authors":[{"family":"Lippit","given":"Victor","sequence":"first"}]},"score":0.062133495,"snippet":"Economic + development and welfare in China"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1080/15480755.2014.937145","doi_url":"https://doi.org/10.1080/15480755.2014.937145","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1548-0755","journal_issns":"1548-0755,1556-8601","journal_name":"Planning & Environmental Law","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2014-06-20","publisher":"Informa UK Limited","title":"The Temporary Use and Economic Development","updated":"2021-01-17T12:37:02.049454","year":2014,"z_authors":[{"family":"Silverman","given":"David S.","sequence":"first"}]},"score":0.062133495,"snippet":"The Temporary Use - and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1093/ia/15.4.621","doi_url":"https://doi.org/10.1093/ia/15.4.621","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0020-5850","journal_issns":"1468-2346,0020-5850","journal_name":"International - Affairs","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1936-07-01","publisher":"Oxford - University Press (OUP)","title":"An Outline Of European Economic Development","updated":"2021-01-18T11:39:28.646884","year":1936,"z_authors":[{"family":"H. - G. L.","sequence":"first"}]},"score":0.062133495,"snippet":"An Outline Of - European Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/9781615832460-016","doi_url":"https://doi.org/10.1108/9781615832460-016","first_oa_location":null,"genre":"book-chapter","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1472-7889","journal_issns":"1472-7889","journal_name":"Handbooks - in Transport","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2001-10-02","publisher":"Emerald - Group Publishing Limited","title":"Transportation Systems and Economic Development","updated":"2021-01-18T11:42:02.739808","year":2001,"z_authors":[{"family":"Haynes","given":"Kingsley","sequence":"first"},{"family":"Button","given":"Kenneth - J.","sequence":"additional"}]},"score":0.062133495,"snippet":"Transportation - Systems and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/eb028016","doi_url":"https://doi.org/10.1108/eb028016","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0140-9174","journal_issns":"0140-9174","journal_name":"Management + and Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1108/eb028016","doi_url":"https://doi.org/10.1108/eb028016","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0140-9174","journal_issns":"0140-9174","journal_name":"Management Research News","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1989-03-01","publisher":"Emerald","title":"Local Economic Development and Training","updated":"2021-01-19T01:56:18.517472","year":1989,"z_authors":[{"family":"Hughes","given":"J.T.","sequence":"first"}]},"score":0.062133495,"snippet":"Local Economic Development and Training"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.1142/11255","doi_url":"https://doi.org/10.1142/11255","first_oa_location":null,"genre":"monograph","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"2661-3883","journal_issns":"2661-3883,2661-3891","journal_name":"WSPC-ZJUP @@ -194,7 +198,15 @@ http_interactions: Eastern Survey","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1955-11-01","publisher":"University of California Press","title":"North Korea''s Economic Development","updated":"2021-01-19T13:09:16.129187","year":1955,"z_authors":[{"family":"Porter","given":"Catherine","sequence":"first"},{"family":"Holland","given":"William L.","sequence":"additional"}]},"score":0.062133495,"snippet":"North Korea''s - Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.18356/fcb9b895-en","doi_url":"https://doi.org/10.18356/fcb9b895-en","first_oa_location":null,"genre":"book","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1990-5114","journal_issns":"1990-5122","journal_name":"Economic + Economic Development"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2018-04-28T17:35:10.669563","url":"https://doi.org/10.15550/asj.2014.01.023","url_for_landing_page":null,"url_for_pdf":"https://doi.org/10.15550/asj.2014.01.023","version":"publishedVersion"},"data_standard":2,"doi":"10.15550/asj.2014.01.023","doi_url":"https://doi.org/10.15550/asj.2014.01.023","first_oa_location":{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2018-04-28T17:35:10.669563","url":"https://doi.org/10.15550/asj.2014.01.023","url_for_landing_page":null,"url_for_pdf":"https://doi.org/10.15550/asj.2014.01.023","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":true,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"2219-746X","journal_issns":"2219-746X,2219-7478","journal_name":"The + Advanced Science Journal","oa_locations":[{"endpoint_id":null,"evidence":"open + (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2018-04-28T17:35:10.669563","url":"https://doi.org/10.15550/asj.2014.01.023","url_for_landing_page":null,"url_for_pdf":"https://doi.org/10.15550/asj.2014.01.023","version":"publishedVersion"},{"endpoint_id":"CiteSeerX.psu","evidence":"oa + repository (via OAI-PMH doi match)","host_type":"repository","is_best":false,"license":null,"oa_date":null,"pmh_id":"oai:CiteSeerX.psu:10.1.1.674.1533","repository_institution":"CiteSeerX.psu","updated":"2017-10-22T02:35:36.092562","url":"http://advancedscience.org/2014/1/023-028.pdf","url_for_landing_page":"http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.674.1533","url_for_pdf":"http://advancedscience.org/2014/1/023-028.pdf","version":"submittedVersion"}],"oa_locations_embargoed":[],"oa_status":"bronze","published_date":"2014-01-30","publisher":"Scireps + Corporation","title":"Innovative Component of Economic Development","updated":"2021-04-26T23:09:17.813154","year":2014,"z_authors":[{"family":"Onyshchenko","given":"V","sequence":"first"},{"name":"Poltava + National Technical Yuri Kondratyuk University, Ukraine","sequence":"first"},{"family":"Bryzhan","given":"I","sequence":"additional"}]},"score":0.062133495,"snippet":"Innovative + Component of Economic Development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.18356/fcb9b895-en","doi_url":"https://doi.org/10.18356/fcb9b895-en","first_oa_location":null,"genre":"book","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1990-5114","journal_issns":"1990-5122","journal_name":"Economic Development in Africa Report","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2007-10-05","publisher":"UN","title":"Economic Development in Africa 2007","updated":"2021-07-20T18:13:13.756440","year":2007,"z_authors":[{"name":"United Nations Conference on Trade and Development","sequence":"first"}]},"score":0.062133495,"snippet":"Economic @@ -230,7 +242,11 @@ http_interactions: Economic History Review","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1973-01-01","publisher":"JSTOR","title":"Population Growth and Economic Development.","updated":"2022-02-18T20:39:38.726118","year":1973,"z_authors":[{"family":"Wrigley","given":"E. A.","sequence":"first"},{"family":"Habakkuk","given":"H. J.","sequence":"additional"}]},"score":0.062133495,"snippet":"Population - Growth and Economic Development."},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"oa + Growth and Economic Development."},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.2307/2977749","doi_url":"https://doi.org/10.2307/2977749","first_oa_location":null,"genre":"journal-article","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"0022-1082","journal_issns":"0022-1082","journal_name":"The + Journal of Finance","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"1965-03-01","publisher":"JSTOR","title":"Leading + Issues in Development Economics.","updated":"2021-04-27T00:59:55.768295","year":1965,"z_authors":[{"family":"Graeser","given":"Paul"},{"family":"Meier","given":"Gerald + M."}]},"score":0.062133495,"snippet":"Leading Issues in Development + Economics."},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"oa journal (via observed oa rate)","host_type":"publisher","is_best":true,"license":null,"oa_date":"2021-03-29","pmh_id":null,"repository_institution":null,"updated":"2021-08-05T03:11:56.090928","url":"https://doi.org/10.31080/asag.2021.05.0977","url_for_landing_page":"https://doi.org/10.31080/asag.2021.05.0977","url_for_pdf":null,"version":"publishedVersion"},"data_standard":2,"doi":"10.31080/asag.2021.05.0977","doi_url":"https://doi.org/10.31080/asag.2021.05.0977","first_oa_location":{"endpoint_id":null,"evidence":"oa journal (via observed oa rate)","host_type":"publisher","is_best":true,"license":null,"oa_date":"2021-03-29","pmh_id":null,"repository_institution":null,"updated":"2021-08-05T03:11:56.090928","url":"https://doi.org/10.31080/asag.2021.05.0977","url_for_landing_page":"https://doi.org/10.31080/asag.2021.05.0977","url_for_pdf":null,"version":"publishedVersion"},"genre":"journal-article","has_repository_copy":false,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":true,"journal_issn_l":"2581-365X","journal_issns":"2581-365X","journal_name":"Acta Scientific Agriculture","oa_locations":[{"endpoint_id":null,"evidence":"oa @@ -261,18 +277,7 @@ http_interactions: of Sustainable Politics and Economics of Natural Resources","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":"2021-01-01","publisher":"Edward Elgar Publishing","title":"Natural resources and economic development","updated":"2021-12-21T00:12:26.323928","year":2021,"z_authors":[{"family":"Chian Koh","given":"Wee","sequence":"first"}]},"score":0.062133495,"snippet":"Natural - resources and economic development"},{"response":{"best_oa_location":null,"data_standard":2,"doi":"10.4337/9781848444010.00010","doi_url":"https://doi.org/10.4337/9781848444010.00010","first_oa_location":null,"genre":"other","has_repository_copy":false,"is_oa":false,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":null,"journal_issns":null,"journal_name":"Trade - Liberalisation and The Poverty of Nations","oa_locations":[],"oa_locations_embargoed":[],"oa_status":"closed","published_date":null,"publisher":"Edward - Elgar Publishing","title":"Trade Strategy and Economic Development","updated":"2021-01-15T21:41:11.481917","year":null,"z_authors":null},"score":0.062133495,"snippet":"Trade - Strategy and Economic Development"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open - (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-08-18T13:24:08.464072","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","url_for_landing_page":"https://doi.org/10.5089/9781451807721.002","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","version":"publishedVersion"},"data_standard":2,"doi":"10.5089/9781451807721.002","doi_url":"https://doi.org/10.5089/9781451807721.002","first_oa_location":{"endpoint_id":"5a4c71918fc62d3e4ce","evidence":"oa - repository (via OAI-PMH title and first author match)","host_type":"repository","is_best":false,"license":null,"oa_date":"2022-07-30","pmh_id":"oai:aleph.bib-bvb.de:BVB01-033723690","repository_institution":null,"updated":"2022-08-31T00:27:35.763471","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","url_for_landing_page":"http://elibrary.imf.org/view/IMF002/01227-9781451807738/01227-9781451807738/01227-9781451807738.xml","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":true,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1934-7685","journal_issns":"1934-7685","journal_name":"IMF - Staff Country Reports","oa_locations":[{"endpoint_id":null,"evidence":"open - (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2022-08-18T13:24:08.464072","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","url_for_landing_page":"https://doi.org/10.5089/9781451807721.002","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1996/040/002.1996.issue-040-en.xml","version":"publishedVersion"},{"endpoint_id":"5a4c71918fc62d3e4ce","evidence":"oa - repository (via OAI-PMH title and first author match)","host_type":"repository","is_best":false,"license":null,"oa_date":"2022-07-30","pmh_id":"oai:aleph.bib-bvb.de:BVB01-033723690","repository_institution":null,"updated":"2022-08-31T00:27:35.763471","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","url_for_landing_page":"http://elibrary.imf.org/view/IMF002/01227-9781451807738/01227-9781451807738/01227-9781451807738.xml","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/071/002.1997.issue-071-en.xml","version":"publishedVersion"}],"oa_locations_embargoed":[],"oa_status":"bronze","published_date":"1996-01-01","publisher":"International - Monetary Fund (IMF)","title":"China: Recent Economic Developments","updated":"2022-08-31T09:33:27.569485","year":1996,"z_authors":[{"family":"International - Monetary Fund","sequence":"first"}]},"score":0.062133495,"snippet":"China: - Recent Economic Developments"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open + resources and economic development"},{"response":{"best_oa_location":{"endpoint_id":null,"evidence":"open (via free pdf)","host_type":"publisher","is_best":true,"license":null,"oa_date":null,"pmh_id":null,"repository_institution":null,"updated":"2021-12-29T02:46:05.480499","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1995/132/002.1995.issue-132-en.xml","url_for_landing_page":"https://doi.org/10.5089/9781451813388.002","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1995/132/002.1995.issue-132-en.xml","version":"publishedVersion"},"data_standard":2,"doi":"10.5089/9781451813388.002","doi_url":"https://doi.org/10.5089/9781451813388.002","first_oa_location":{"endpoint_id":"5a4c71918fc62d3e4ce","evidence":"oa repository (via OAI-PMH title and first author match)","host_type":"repository","is_best":false,"license":null,"oa_date":"2022-07-30","pmh_id":"oai:aleph.bib-bvb.de:BVB01-033724051","repository_institution":null,"updated":"2022-09-25T07:19:39.384012","url":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/027/002.1997.issue-027-en.xml","url_for_landing_page":"http://elibrary.imf.org/view/IMF002/02628-9781451813487/02628-9781451813487/02628-9781451813487.xml","url_for_pdf":"https://www.elibrary.imf.org/downloadpdf/journals/002/1997/027/002.1997.issue-027-en.xml","version":"publishedVersion"},"genre":"journal-article","has_repository_copy":true,"is_oa":true,"is_paratext":false,"journal_is_in_doaj":false,"journal_is_oa":false,"journal_issn_l":"1934-7685","journal_issns":"1934-7685","journal_name":"IMF Staff Country Reports","oa_locations":[{"endpoint_id":null,"evidence":"open @@ -293,5 +298,5 @@ http_interactions: economic development, and the environment"}]} ' - recorded_at: Tue, 27 Sep 2022 16:56:00 GMT + recorded_at: Mon, 10 Oct 2022 19:05:13 GMT recorded_with: VCR 6.1.0