From 4379241e724bff2cac743b56bb7acaa6ffc9bce6 Mon Sep 17 00:00:00 2001 From: Wendel Fabian Chinsamy Date: Tue, 12 Dec 2023 11:36:28 +0200 Subject: [PATCH 1/6] initial relationships endpoint integration --- app/models/crossref.rb | 105 +++++++++--------- config/application.rb | 2 +- .../fetch_metadata_dataset.yml | 32 ++---- 3 files changed, 66 insertions(+), 73 deletions(-) diff --git a/app/models/crossref.rb b/app/models/crossref.rb index d28decff..c08d91b2 100644 --- a/app/models/crossref.rb +++ b/app/models/crossref.rb @@ -27,16 +27,15 @@ def source_id def get_query_url(options = {}) params = { - source: "crossref", - "from-collected-date" => options[:from_date], - "until-collected-date" => options[:until_date], - mailto: "info@datacite.org", - scholix: true, - rows: options[:rows], - cursor: options[:cursor], + "not-asserted-by" => "https://ror.org/04wxnsj81", + "object.registration-agency" => "DataCite", + "from-updated-time" => options[:from_date], + "until-updated-time" => options[:until_date], + "cursor" => options[:cursor], + "rows" => options[:rows] }.compact - "#{ENV['CROSSREF_QUERY_URL']}/v1/events?#{URI.encode_www_form(params)}" + "#{ENV['CROSSREF_QUERY_URL']}/relationships?#{URI.encode_www_form(params)}" end def get_total(options = {}) @@ -94,11 +93,9 @@ def queue_jobs(options = {}) end def push_data(result, _options = {}) - return result.body.fetch("errors") if result.body.fetch("errors", - nil).present? + return result.body.fetch("errors") if result.body.fetch("errors", nil).present? - items = result.body.dig("data", "message", "events") - # Rails.logger.info "Extracting related identifiers for #{items.size} DOIs updated from #{options[:from_date]} until #{options[:until_date]}." + items = result.body.dig("data", "message", "relationships") Array.wrap(items).map do |item| CrossrefImportJob.perform_later(item) @@ -108,45 +105,53 @@ def push_data(result, _options = {}) end def self.push_item(item) - subj = cached_crossref_response(item["subj_id"]) - obj = cached_datacite_response(item["obj_id"]) - - if ENV["STAFF_ADMIN_TOKEN"].present? - push_url = ENV["LAGOTTINO_URL"] + "/events/#{item['id']}" - - data = { - "data" => { - "id" => item["id"], - "type" => "events", - "attributes" => { - "messageAction" => item["action"], - "subjId" => item["subj_id"], - "objId" => item["obj_id"], - "relationTypeId" => item["relation_type_id"].to_s.dasherize, - "sourceId" => item["source_id"].to_s.dasherize, - "sourceToken" => item["source_token"], - "occurredAt" => item["occurred_at"], - "timestamp" => item["timestamp"], - "license" => item["license"], - "subj" => subj, - "obj" => obj, - }, + uuid = SecureRandom.uuid + subj_id = item.fetch("subject", "id") + obj_id = item.fetch("object", "id") + + subj = cached_crossref_response(subj_id) + obj = cached_datacite_response(obj_id) + + return if ENV["STAFF_ADMIN_TOKEN"].blank? + + # so the id is important!!! + # need to check this out + push_url = ENV["LAGOTTINO_URL"] + "/events/#{uuid}" + + data = { + "data" => { + "id" => uuid, + "type" => "events", + "attributes" => { + "messageAction" => "add", + "subjId" => subj_id, + "objId" => obj_id, + "relationTypeId" => item["relationship_type"].to_s.dasherize, + "sourceId" => "crossref", + "sourceToken" => item["source_token"], # well this may very well be null now. it might be used to do a lookup on the crossref side. + "occurredAt" => item["updated_time"], + "timestamp" => Time.now.utc, + "license" => "https://creativecommons.org/publicdomain/zero/1.0/", + "subj" => subj, + "obj" => obj, }, - } - - response = Maremma.put(push_url, data: data.to_json, - bearer: ENV["STAFF_ADMIN_TOKEN"], - content_type: "application/vnd.api+json", - accept: "application/vnd.api+json; version=2") - - if [200, 201].include?(response.status) - Rails.logger.info "[Event Data] #{item['subj_id']} #{item['relation_type_id']} #{item['obj_id']} pushed to Event Data service." - elsif response.status == 409 - Rails.logger.info "[Event Data] #{item['subj_id']} #{item['relation_type_id']} #{item['obj_id']} already pushed to Event Data service." - elsif response.body["errors"].present? - Rails.logger.error "[Event Data] #{item['subj_id']} #{item['relation_type_id']} #{item['obj_id']} had an error: #{response.body['errors']}" - Rails.logger.error data.inspect - end + }, + } + + response = Maremma.put( + push_url, + data: data.to_json, + bearer: ENV["STAFF_ADMIN_TOKEN"], + content_type: "application/vnd.api+json", + accept: "application/vnd.api+json; version=2") + + if [200, 201].include?(response.status) + Rails.logger.info "[Event Data] #{item['subj_id']} #{item['relation_type_id']} #{item['obj_id']} pushed to Event Data service." + elsif response.status == 409 + Rails.logger.info "[Event Data] #{item['subj_id']} #{item['relation_type_id']} #{item['obj_id']} already pushed to Event Data service." + elsif response.body["errors"].present? + Rails.logger.error "[Event Data] #{item['subj_id']} #{item['relation_type_id']} #{item['obj_id']} had an error: #{response.body['errors']}" + Rails.logger.error data.inspect end end end diff --git a/config/application.rb b/config/application.rb index dffa9c28..3dbdc2e3 100644 --- a/config/application.rb +++ b/config/application.rb @@ -40,7 +40,7 @@ ENV["LAGOTTINO_URL"] ||= "https://api.stage.datacite.org" ENV["SASHIMI_QUERY_URL"] ||= "https://api.stage.datacite.org" ENV["EVENTDATA_URL"] ||= "https://bus-staging.eventdata.crossref.org" -ENV["CROSSREF_QUERY_URL"] ||= "https://api.eventdata.crossref.org" +ENV["CROSSREF_QUERY_URL"] ||= "https://api.crossref.org/beta" ENV["TRUSTED_IP"] ||= "10.0.40.1" ENV["SLACK_WEBHOOK_URL"] ||= "" ENV["USER_AGENT"] ||= "Mozilla/5.0 (compatible; Maremma/#{Maremma::VERSION}; mailto:info@datacite.org)" diff --git a/spec/fixtures/vcr_cassettes/Base/get_datacite_metadata/fetch_metadata_dataset.yml b/spec/fixtures/vcr_cassettes/Base/get_datacite_metadata/fetch_metadata_dataset.yml index 8a155dc6..b6832de0 100644 --- a/spec/fixtures/vcr_cassettes/Base/get_datacite_metadata/fetch_metadata_dataset.yml +++ b/spec/fixtures/vcr_cassettes/Base/get_datacite_metadata/fetch_metadata_dataset.yml @@ -8,7 +8,7 @@ http_interactions: string: '' headers: User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) + - Mozilla/5.0 (compatible; Maremma/4.6.1; mailto:info@datacite.org) Accept: - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Encoding: @@ -19,7 +19,7 @@ http_interactions: message: OK headers: Date: - - Thu, 09 Nov 2023 06:24:04 GMT + - Thu, 05 May 2022 15:46:24 GMT Content-Type: - application/json; charset=utf-8 Connection: @@ -34,28 +34,16 @@ http_interactions: - Accept-Encoding Content-Encoding: - gzip - Referrer-Policy: - - strict-origin-when-cross-origin - X-Permitted-Cross-Domain-Policies: - - none - X-Xss-Protection: - - 1; mode=block - X-Request-Id: - - 4ea2ce86-cfec-497f-a2f6-ffb469a1cb50 - X-Download-Options: - - noopen Etag: - - W/"59ef6a3303e3e6a5d01041602f39bd44" - X-Frame-Options: - - SAMEORIGIN + - W/"8c293ffd62ad24c0d545e640145cd58c" X-Runtime: - - '0.036492' - X-Content-Type-Options: - - nosniff + - '0.078352' + X-Request-Id: + - 57820303-d288-49fc-9e44-9ceef8c801a7 X-Powered-By: - - Phusion Passenger(R) 6.0.18 + - Phusion Passenger(R) 6.0.13 Server: - - nginx/1.18.0 + Phusion Passenger(R) 6.0.18 + - nginx/1.18.0 + Phusion Passenger(R) 6.0.13 Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Methods: @@ -67,7 +55,7 @@ http_interactions: body: encoding: ASCII-8BIT string: !binary |- - H4sIAAR7TGUAA7RZ2XLaTBZ+FcpXfyqOLQTkD74zmxAB2WZHU7mQWg1qaC3RAogkU/Ma83rzJPO1JBDYpJJM1aTKAZ0+y3dOn6XVfLuxjMi4efh2w6ybh5uydFcty9V7QrbErR5ubm+ixKdYsDwW4smIooCZcURDIQLiVRk/oEu2L5ZACuNlRiq4mEXdiC0ZDaDsH9/OnsFmR5EfPtzf24ZrcXoHg9GdQEpYRO+8YHX/1mohP84wt57Umx+3rxT//an298fyNfZms9W8+fEFTvKIBq4RUfUVwisLZ6auCv4vrgjMPzeVwvyZrdw74QUJqBF5OXLXcITss804Z354W3q8a99Bi6Dnep/hpecaHNQV21JXy0RyxqXhMJ5ol2oEDGwrZ0bEPBeGvmQaL+P2RfiTA+ga3KLBbUm56/2e+Zzxwnym5M+NN23Ddwz3tvT5bvZ71nPGC+u5lj83r3ietWOuiH3/d2Pff2M+1/Ln5j9TnwbRban5u6FvXgl9puR3jYMcsYjTLAfTr3kCl7JEfSi191DIHMgZvNQMklB8jqIgJlEc0FKLIssd5maGhEI/NjkL7TTbm4ZjBsxa0aMk91aB4duMlFoosFITagMKtMSDfuYKoW8/ch0k1bmgBoiyVJZEjzLXlEQZ2vxBWHmNKi3QYv3ChUqr1PS8wBKQ4fcl50kTPqjzanHkG4SWlMCL/ddilPPSsxEgwpEI7VWluevJq1V4SV3jw19jGqXydsINx/FcFjulSNA2LPzLif8p//MDSQzXe/eBeD78+Yu9+3BgLvmLsXfvsn6CGKa9P+spoFipiyJY4huMiTDeZPQ8tdQwjKmVynPDXcXGSlCpu8onSzpGAowWtNDH8SOoJjMjKgaFw0Iitg5d0g88ImYQ9jSkIvtCYlPHeApWQu5EDWjoxQFJbSsUu42ULtZ/CAYOaNbrtp6SkQsnzKPY9zkVOzr2bq6IZZOtLMnl+7VRlz5+qtfW1/jO59CXYh17n0cwZAeaf116gWOkuXfTVDs3oGyBLy0vN+Yc0mxlR2GfhVEefRqSgPkCeL4JBQFGh5mx0mMQMcLpQ9rxi/4v+uqxGYsud+qNouecOpVoAVnJfxd7+7139+iAlTp3I4/cfS9X5O+g4hjwcC0eZ4DySDxFonBFhl6CfXRLolST0jLwkJc2CvpU2seyQ92IrTSxmbcpy84LuPWff/07LAXU90KGxIQCLyiFDsqh5HickpjTEsmrLjzWb3hXGkM+s5i3hrBEz8tYpFoGxjjJW2y5DAwiIENXbCWZGiszjlDn+ZliiGwW5hbwZRlQypOSsTUYN0xgKvwUzRAHgxKqAS2JgwtVx2PER/QSUvSS2xIRfcA/9YHbUpi2jJVoGbeX+OGVxdLUSJV/jQ3OoqTkUCNMA3B1dx5NhAgOpsm6ol7fy3rkMUNj6HRXQ7qkAXXJMXH3jqiy51a9as52K8uZJkTmW3MtscGoulNZg5uOttUVHusHiVnzodMfr9jzoao11/tEn2tba95b66MG5PcxOfhVIr/UVceWrO7jx35Sr1gVEluHQWxWem7/oO4GrfZ21i4PJrLm6bOyDRtnsps/ku3PeEwqQxsYudAD+Y8kXxsr9fViPvRNuXqucwOavZC5pI9qW+Lg0HbUJUecODVuNqWDqpz4DwvZ5uasHetKR1rMNN9SJhkeucwtpb015GliOtOwPx5szdkUPEMb9Jh2tU3hm8SM7lAiLW/bl8V6Z23Mh7zv1BO9sHGuiz2vpM9q8/GTMRty0x36usM5YQ1fV6axpXDHmE2TaZfv9LHEhu16T11X94NmVRqMVakva2vL0WKt633qy3yjz2qSMdN9fa6+b714K7W1XxNnChz1hIi9ZI8rYWtR6XHEZ0vWJ9oF79jpRPq49mIoPDQVviPJbvUyqnX66932JLup2eZsktmB/HOzfpLPfbrQeaIJXkVL9FlHQnyfFrMyf97YtqkM4fduNUxqn/9/djRvMW9Ei1k1VNthPE2qiNsrnpPOMwzrP45d15TrG0vmcb/ZaPQ3u/gcd8ZT6CwwqIWfylvahf08LiN5utPnPQl2Wv2N92d2zn10B8eckZCzoT4fFFi6Q9TDXsSvNWwPVtphVdYOi/0Ta3Rot4F64pHIvQV6y0ulV0trtdkYW91eeVEZlokzWQ2VqQSckTGrAZvoPbstPiVTmZywZM/Tw7EmSHfKkH8HQ5kmsA1/ewnqxEUfahGXH1BfyM+6S5zODrm6VttpTa5eZNROt8cRi50164XGHLVf1ERGm2kZDs7hv/p+sH7cD4Aht5n3lJqOeCUnPJUpM5zp2uqex0YrLxyfLyov73/i+6d+peC5Jjec22IPffSVWPiktrS22ta2yMlNFi/EpFk/APdXfaZJZ3lf0DZaQudaugeTiojNNPqlDNd26HVcbVuJWZnufsMGNxXoVzqJqBXYQF9BzI5xaRW5VtBqb/equ/llTBZyR0JO2f2RPdHnw9yeXTOVTmTO6rExn0Zqd8gRZ9uQ+eGzUi4v1733/ZlWW8xq28+j8tqsNBBX1TNGGxzneLxIbB/f/St+nuEZnvIPtmK9MrV1efIeWFzIhdDtWrOOe6yrZ+QZkevYZ42nfXrUKObldFgjyrQLWdRIJ3we9dpiLhF5KqnscXu0s5jtRW3EWOOj8zngnuUZ4ifibTqIy+Si169+Ks+F/UldzeqWPa9JVRsTeTBG3f9MJu9r8NU2EV/MSpF/vfN5dJwlwnfECPs0vLqe5gHmnLChty8xX6f3JnTe4CJOY2nD1Fy/gf0+zsDRXBtb88YOfSLtOVPlE/xq7/r4G6wxW512bdBaVJ/G06/wAf1uL/BvfuLj9fWiFzqowQg4D2f1kNNQ7xJXoOP0fOxjOua9iT57ipOYbei9xryR+nIeH8TtgB7sk256hlldPteO8XhG7mM+qu8nx7hhrhDgXch7jj6MGTOJJ4rtm8oesgPMNxKPWE3FPm8Q73ze1VqG0tkB22kuDeX6Vu9avonZ+yJm7wbnI+SZ1d0lOIftlm0vfplJ8Ys4u4xqY1MexMtW+zBwd/tBd78xcRYbjB9j/CWDUf3rYrzZaetVTZuJM8ml32cxBCYNc4rv0h7MGpfPp7ztMPRT1L4mqetawxTnVHeY0FHDIU5d1L8nZgF6A4PsBnWK3jdMLPCj/kQfTutt4XQO+gjnXsRQ7Vo4D+43Va+pk0TUagNnQy7mf01V9C3OXgfEJ4RsZCK2i8o0hI31sYepXU0irpgBU8gOYrWTYjjiWmPP0INxXk0a/PVsTM+WR+yYU4tiXqDP66B31nk8DtC/oaPqaiowi/xR6gcj2/fNqYdkeCXMPpxl05kHH8R3HXk9DYHHtpwOcqKDmTZZ6W5va44E/2T1Imntl6SBM/XLykJtiXmI3BHyMXKqLPIwnUPK5RxC3qxRM4hDwybifAFMqBcRl2yWKNksAd8b/xdyHedrntVAbpvMp7DLJWAFX+eAfeMkPZddzZ039LSWcJZAPznAbrJAr8aLUxzw4zu5eHnEC9ekoODVzBDvgdPjy7t0vK04UdIL4Yf7+4s74IznfkMDl/IPFXHHkd5lHPWy8BFvnls84y2WYjXKrlyWzLXEG2V6/WCExXXBltFd04vdKIUgnsKnLQ3GTNzjpfcH3s7lnmEVTEfKK8bg+MJXcAJ2+mb4lvJKFm+rUcEknp6WZ6iykLwhnPOk19jUym6XPn2Q5A9SbSzVH2qVB/nvO0mS9NT1FQvxTvwrvuPloVVcVsW+9Sv9x5sj4Z4trr0fvt0QzqhA+O3y9xNCLHIn/it+Ock4w5sf4uIx8LbMSq8h38oVIke2TMihFjPeSPz0l5qM/cePs40LC2lxJVxs1iu62J9rtKflK2K+T695T9t3Qce//wIAAP//AwDng9cTZhoAAA== + H4sIAFDxc2IAA7RZ2XLaTBZ+FcpXScWxhYD8wXdmEyIg2+xo6r+QWg1qaC3RAogkU/Ma83rzJPO1JBDYpJJM1aTKAR2d5Tunz9LdfLuxjMi4efh2w6ybh5uydFcty9V7QrbErR5ubm+ixKd4YXksxJMRRQEz44iGQgTEqzJ+QJdsX7wCKYyXGangYhZ1I7ZkNICyf3w7ewabHUV++HB/bxuuxekdDEZ3AilhEb3zgtX9W6uF/DjD3HpSb37cvlL81+faX5/K19ibzVbz5sffcJJHNHCNiKqvEF55cWbqquD/4orA/HNTKcyf2cq9E16QgBqRlyN3DUfIPtuMc+aHt6XHu/YdtAh6rvcZXnquwUFdsS11tUwkZ1waDuOJdqlGwMCycmZEzHNh6O9M42Xc/hb+5AC6BrdocFtS7nq/Zz5nvDCfKflz403b8B3DvS19uZv9nvWc8cJ6ruXPzSueZ+2YK2Lf/93Y99+Yz7X8ufkv1KdBdFtq/m7om1dCnyn5XeMgRyziNMvB9GuewKUsUR9K7T0UMgdyBi81gyQUn6MoiEkUB7TUoshyh7mZIaHQj03OQjvN9qbhmAGzVvQoyb1VYPg2I6UWCqzUhNqAAi3xoJ+5Qujbj1wHSXUuqAGiLJUl0aPMNSVRhjZ/EFZeo0oLtHh/4UKlVWp6XmAJyPD7kvOkCR/UefVy5BuElpTAi/3XYpTz0rMRIMKRCO1Vpbnryau38JK6xsd3Yxql8nbCDcfxXBY7pUjQNix858T/lP/5kSSG673/SDwf/rxj7z8emEveMfb+fdZPEMO092c9BRQrdVEES3yDMRHGm4yep5YahjG1UnluuKvYWAkqdVf5ZEnHSIDRghb6OH4E1WRmRMWgcFhIxNKhS/qBR8QMwpqGVGRfSGzqGE/BSsidqAENvTggqW2FYrWR0sX7H4KBA5r1uq2nZOTCCfMo9n1OxYqOvZsrYtlkK0ty+X5t1KVPn+u19TW+8zmECITsQPPQLb3AMdJMu2mqnRtQtkCTFpMbcw5dbGVHYZ+FUR5rGpKA+QJmHvKCABPDzHTpMYgY4fQh7e9Ftxdd9Nh6RU87dULRYU59SRR8VuDfxUp+7909OmClzt3II3ffyxX5O6gY+g/XvD8DlPv9FIkyFfl4CfbRLYnCTErLwEMW2ijfUyEfiwxVIhbOxNLdpiw7L+DWf/7177AUUN8LGdIQCrygFDpI/pLjcUpiTkskr7HwWK3hXWkM+cxi3gjCEj0vWpFYGRjjJG+x5TIwiIAMXbGVZGqszDhCnWdjiiGyWZhbwJdlQClPSsbWYNwwganwU7Q+bANKyH00IA4u1BiPER/ROUjROW5LRFS9f6r621KYNoiVaBC3l/jhlcXS1EiVf40NzqKk5FAjTANwdXUeTYQIDqapuaJe38s64jFDY+h0V0O6pAF1yTFx946oqedWvWrOdivLmSZE5ltzLbHBqLpTWYObjrbVFR7rB4lZ86HTH6/Y86GqNdf7RJ9rW2veW+ujBuT3MTn4VSK/1FXHlqzu46d+Uq9YFRJbh0FsVnpu/6DuBq32dtYuDyay5umzsg0bZ7KbP5Ltz3hMKkMbGLnQA/lPJH83VurrxXzom3L1XOcGNHshc0kf1bbEwRbtqEuOOHFq3GxKB1U58R8Wss3NWTvWlY60mGm+pUwyPHKZW0p7a8jTxHSmYX882JqzKXiGNugx7WqbwjeJGd2hRFreti+L9521MR/yvlNP9MLGuS72vJK+qM3Hz8ZsyE136OsO54Q1fF2ZxpbCHWM2TaZdvtPHEhu26z11Xd0PmlVpMFalvqytLUeLta73uS/zjT6rScZM9/W5+qH14q3U1n5NnClw1BMi1pI9roStRaXHEZ8tWZ9oF7xjpxPp49qLofDQVPiOJLvVy6jW6a9325Pspmabs0lmB/LPzfpJPvfpQueJJngVLdFnHQnxfVrMyvx5Y9umMoTfu9UwqX35/9nRvMW8ES1m1VBth/E0qSJur3hOOs8wrP84dl1Trm8smcf9ZqPR3+zic9wZT6GzwKAWfipvaRf287iM5OlOn/ck2Gn1N96f2Tn30R0cc0ZCzob6fFBg6Q5RD3sRv9awPVhph1VZOyz2T6zRod0G6olHIvcW6C0vlV4trdVmY2x1e+VFZVgmzmQ1VKYScEbGrAZsovfstviUTGVywpI9Tw/HmiDdKUP+HQxlmsA2/O0lqBMXfahFXH5AfSE/6y5xOjvk6lptpzW5epFRO90eRyx21qwXGnPUflETGW2mZTg4h//qh8H6cT8Ahtxm3lNqOuKVnPBUpsxwpmurex4brbxwfL6ovHz4ie+f+5WC55rccG6LNfTRV2Lhk9rS2mpb2yInN1m8EJNm/QDcX/WZJp3lfUHbaAmda+kaTCoiNtPolzJc26HXcbVtJWZluvsNG9xUoF/pJKJWYAN9BTE7xqVV5FpBq71dq+7mlzFZyB0JOWX3R/ZEnw9ze3bNVDqROavHxnwaqd0hR5xtQ+aHL0q5vFz3PvRnWm0xq22/jMprs9JAXFXPGG2wcefxIrF9fPev+HmGZ3jKP9iK9crU1uXJB2BxIRdCt2vNOu6xrp6RZ0SuY501nvbpUaOYl9NhjSjTLmRRI53wedRri7lE5Kmkssft0c5ithe1EeMdH53PAfcszxA/EW/TQVwmF71+9VN5LuxP6mpWt+x5TaramMiDMer+ZzJ5X4Ovton4YlaK/Oudz6PjLBG+I0ZYp+HV92keYM4JG3r7EvN1em9C5w0u4jSWNkzN9RtY7+MMHM21sTVv7NAn0p4zVT7Dr/auj7/BGrPVadcGrUX1aTz9Ch/Q7/YC/+YnPl5/X/RCBzUYAefhrB5yGupd4gp0nJ6PfUzHvDfRZ09xErMNvdeYN1JfzuODuB3Qg33STfcwq8vn2jEez8h9zEf1w+QYN8wVArwLec/RhzFjJvFEsX1T2UN2gPlG4hGrqVjnDeKdz7tay1A6O2A7zaWhXN/qXcs3MXtfxOzdYH+EPLO6uwT7sN2y7cUvMyl+EXuXUW1syoN42WofBu5uP+juNyb2YoPxY4y/ZDCqf12MNzttvappM7EnufT7LIbApGFO8V3ag1nj8vmUtx2Gfora1yR1XWuYYp/qDhM6ajjEqYv698QsQG9gkN2gTtH7hokFftSf6MNpvS2czkEfYd+LGKpdC/vB/abqNXWSiFptYG/IxfyvqYq+xd7rgPiEkI1MxHZRmYawsT72MLWrScQVM2AK2UGsdlIMR1xrrBl6MParSYO/no3p3vKIHXNqUcwL9Hkd9M46j8cB+jd0VF1NBWaRP0r9YGTrvjn1kAyvhNmHvWw68+CD+K4jr6ch8NiW00FOdDDTJivd7W3NkeCfrF4krf2SNLCnfllZqC0xD5E7Qj5GTpVFHqZzSLmcQ8ibNWoGcWjYROwvgAn1IuKSzRIlmyXge+P/Qq5jf82zGshtk/kUdrkErODrHLBunKT7squ584ae1hL2EugnB9hNFujVODjFAT+eycXhEQeuSUHB0cwQ58Dp8fAuHe8mTpT0+vfh/v7ixjfjud/QwKX8Y0XcaKQ3F0e9LHzEyXOLZ5xiKd5G2QXLkrmWOFGmlw1GWFwXbBndNb3YjVII4il82tJgzMStXXp/4O1c7hlWwXSkvGIMjge+ghOw05PhW8orWZxWo4JJPD0tz1BlIXlDOOdJL62pld0lff4oyR+l2liqP9QqD/Jfd5Ik6anrKxbiTPwrvuNVoVVcTcW+9Sv9x3si4Z4tLrkfvt0QzqhA+O3y1xJCLHIn/it+J8k4w5sf4pox8LbMSi8d38oVIke2TMihFjPeSPz0d5mM/cePs4ULC2lxAVws1iu6WJ9rtKflK2K+Tq95T8t3Qce//wIAAP//AwDGsDcUVBoAAA== http_version: null - recorded_at: Thu, 09 Nov 2023 06:22:51 GMT + recorded_at: Thu, 05 May 2022 15:46:24 GMT recorded_with: VCR 5.1.0 From 8712982c0ce326a57471c8de0ac498ef4686b95c Mon Sep 17 00:00:00 2001 From: Wendel Fabian Chinsamy Date: Sat, 16 Dec 2023 10:32:18 +0200 Subject: [PATCH 2/6] rework crossref import jsob --- app/models/crossref.rb | 91 +++++++++++++++++++++--------------------- 1 file changed, 45 insertions(+), 46 deletions(-) diff --git a/app/models/crossref.rb b/app/models/crossref.rb index c08d91b2..8f5f5b84 100644 --- a/app/models/crossref.rb +++ b/app/models/crossref.rb @@ -17,14 +17,20 @@ def self.import(options = {}) until_date = options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current crossref = Crossref.new - crossref.queue_jobs(crossref.unfreeze(from_date: from_date.strftime("%F"), - until_date: until_date.strftime("%F"), host: true)) + + crossref.queue_jobs(crossref.unfreeze( + from_date: from_date.strftime("%F"), + until_date: until_date.strftime("%F"), host: true)) end def source_id "crossref" end + def allowed_relationship_types + ["cites", "references", "is-supplemented-by"] + end + def get_query_url(options = {}) params = { "not-asserted-by" => "https://ror.org/04wxnsj81", @@ -48,74 +54,56 @@ def get_total(options = {}) def queue_jobs(options = {}) options[:offset] = options[:offset].to_i || 0 options[:rows] = options[:rows].presence || job_batch_size - options[:from_date] = - options[:from_date].presence || (Time.now.to_date - 1.day).iso8601 - options[:until_date] = - options[:until_date].presence || Time.now.to_date.iso8601 + options[:from_date] = options[:from_date].presence || (Time.now.to_date - 1.day).iso8601 + options[:until_date] = options[:until_date].presence || Time.now.to_date.iso8601 options[:content_type] = "json" - total, cursor = get_total(options) + count, cursor = process_data(options) + total = count + + if count.zero? + text = "No DOIs updated #{options[:from_date]} - #{options[:until_date]}." + else + loop do + count, cursor = process_data(options) - if total.positive? - # walk through results paginated via cursor - total_pages = (total.to_f / job_batch_size).ceil - error_total = 0 + break if count.zero? || cursor.blank? - (0...total_pages).each do |page| - options[:offset] = page * job_batch_size - options[:total] = total options[:cursor] = cursor - count, cursor = process_data(options) + total += count end + text = "Queued import for #{total} DOIs updated #{options[:from_date]} - #{options[:until_date]}." - else - text = "No DOIs updated #{options[:from_date]} - #{options[:until_date]}." end - Rails.logger.info "[Event Data] #{text}" - - # send slack notification - options[:level] = if total.zero? - "warning" - elsif error_total.positive? - "danger" - else - "good" - end - options[:title] = "Report for #{source_id}" - if options[:slack_webhook_url].present? - send_notification_to_slack(text, - options) - end + Rails.logger.info("[Event Data] #{text}") + send_slack_notification(options, text) - # return number of works queued total end def push_data(result, _options = {}) - return result.body.fetch("errors") if result.body.fetch("errors", nil).present? - - items = result.body.dig("data", "message", "relationships") - - Array.wrap(items).map do |item| - CrossrefImportJob.perform_later(item) + if result.body.fetch("errors", nil).present? do + return result.body.fetch("errors") end + items = Array.wrap(result + .body + .dig("data", "message", "relationships") + .select { |item| allowed_relationship_types.includes?(item["relationship_type"].to_s.dasherize) }) + .map { |item| CrossrefImportJob.perform_later(item) } + [items.length, result.body.dig("data", "message", "next-cursor")] end def self.push_item(item) + return if ENV["STAFF_ADMIN_TOKEN"].blank? + uuid = SecureRandom.uuid subj_id = item.fetch("subject", "id") obj_id = item.fetch("object", "id") - subj = cached_crossref_response(subj_id) obj = cached_datacite_response(obj_id) - - return if ENV["STAFF_ADMIN_TOKEN"].blank? - - # so the id is important!!! - # need to check this out push_url = ENV["LAGOTTINO_URL"] + "/events/#{uuid}" data = { @@ -127,7 +115,7 @@ def self.push_item(item) "subjId" => subj_id, "objId" => obj_id, "relationTypeId" => item["relationship_type"].to_s.dasherize, - "sourceId" => "crossref", + "sourceId" => source_id, "sourceToken" => item["source_token"], # well this may very well be null now. it might be used to do a lookup on the crossref side. "occurredAt" => item["updated_time"], "timestamp" => Time.now.utc, @@ -154,4 +142,15 @@ def self.push_item(item) Rails.logger.error data.inspect end end + + private + + def send_slack_notification(options, text) + options[:level] = total.zero? ? "warning" : "good" + options[:title] = "Report for #{source_id}" + + if options[:slack_webhook_url].present? + send_notification_to_slack(text, options) + end + end end From 9ef89d75daf857f0dcfd387e72e4d1c2fca88b98 Mon Sep 17 00:00:00 2001 From: Wendel Fabian Chinsamy Date: Sat, 16 Dec 2023 10:45:46 +0200 Subject: [PATCH 3/6] rework crossref.rb --- app/models/crossref.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/app/models/crossref.rb b/app/models/crossref.rb index 8f5f5b84..4a937510 100644 --- a/app/models/crossref.rb +++ b/app/models/crossref.rb @@ -64,11 +64,8 @@ def queue_jobs(options = {}) if count.zero? text = "No DOIs updated #{options[:from_date]} - #{options[:until_date]}." else - loop do + while count.postive? && cursor.present? count, cursor = process_data(options) - - break if count.zero? || cursor.blank? - options[:cursor] = cursor total += count end @@ -83,15 +80,16 @@ def queue_jobs(options = {}) end def push_data(result, _options = {}) - if result.body.fetch("errors", nil).present? do - return result.body.fetch("errors") - end + errors = result.body.fetch("errors", nil) + + return errors if errors.present? items = Array.wrap(result .body .dig("data", "message", "relationships") .select { |item| allowed_relationship_types.includes?(item["relationship_type"].to_s.dasherize) }) - .map { |item| CrossrefImportJob.perform_later(item) } + + items.map { |item| CrossrefImportJob.perform_later(item) } [items.length, result.body.dig("data", "message", "next-cursor")] end From a8d0265a47bdc15e85b18036310cfef172fe8b0d Mon Sep 17 00:00:00 2001 From: Wendel Fabian Chinsamy Date: Wed, 20 Dec 2023 12:49:32 +0200 Subject: [PATCH 4/6] rework specs to remove dependency on the crossref service --- app/models/crossref.rb | 55 +- ...default_date_range_yesterday_to_today_.yml | 595 ------------------ spec/models/crossref_spec.rb | 97 +-- 3 files changed, 80 insertions(+), 667 deletions(-) delete mode 100644 spec/fixtures/vcr_cassettes/Crossref/_import/with_missing_parameters/queues_jobs_for_the_default_date_range_yesterday_to_today_.yml diff --git a/app/models/crossref.rb b/app/models/crossref.rb index 4a937510..ed18b5cb 100644 --- a/app/models/crossref.rb +++ b/app/models/crossref.rb @@ -1,26 +1,36 @@ class Crossref < Base + def self.import_by_month_dates(options={}) + { + from_date: (options[:from_date].present? ? Date.parse(options[:from_date]) : Date.current).beginning_of_month, + until_date: (options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current).end_of_month + } + end + + def self.import_dates(options={}) + { + from_date: options[:from_date].present? ? Date.parse(options[:from_date]) : Date.current - 1.day, + until_date: options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current + } + end + def self.import_by_month(options = {}) - from_date = (options[:from_date].present? ? Date.parse(options[:from_date]) : Date.current).beginning_of_month - until_date = (options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current).end_of_month + dates = import_by_month_dates(options) - # get first day of every month between from_date and until_date - (from_date..until_date).select { |d| d.day == 1 }.each do |m| - CrossrefImportByMonthJob.perform_later(from_date: m.strftime("%F"), - until_date: m.end_of_month.strftime("%F")) + (dates[:from_date]..dates[:until_date]).select { |d| d.day == 1 }.each do |m| + CrossrefImportByMonthJob.perform_later(from_date: m.strftime("%F"), until_date: m.end_of_month.strftime("%F")) end - "Queued import for DOIs updated from #{from_date.strftime('%F')} until #{until_date.strftime('%F')}." + "Queued import for DOIs updated from #{dates[:from_date].strftime('%F')} until #{dates[:until_date].strftime('%F')}." end def self.import(options = {}) - from_date = options[:from_date].present? ? Date.parse(options[:from_date]) : Date.current - 1.day - until_date = options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current - + dates = import_dates(options) crossref = Crossref.new crossref.queue_jobs(crossref.unfreeze( - from_date: from_date.strftime("%F"), - until_date: until_date.strftime("%F"), host: true)) + from_date: dates[:from_date].strftime("%F"), + until_date: dates[:until_date].strftime("%F"), + host: true)) end def source_id @@ -37,26 +47,15 @@ def get_query_url(options = {}) "object.registration-agency" => "DataCite", "from-updated-time" => options[:from_date], "until-updated-time" => options[:until_date], - "cursor" => options[:cursor], - "rows" => options[:rows] + "cursor" => options[:cursor] }.compact "#{ENV['CROSSREF_QUERY_URL']}/relationships?#{URI.encode_www_form(params)}" end - def get_total(options = {}) - query_url = get_query_url(options.merge(rows: 0)) - result = Maremma.get(query_url, options) - message = result.body.dig("data", "message").to_h - [message["total-results"].to_i, message["next-cursor"]] - end - def queue_jobs(options = {}) - options[:offset] = options[:offset].to_i || 0 - options[:rows] = options[:rows].presence || job_batch_size options[:from_date] = options[:from_date].presence || (Time.now.to_date - 1.day).iso8601 options[:until_date] = options[:until_date].presence || Time.now.to_date.iso8601 - options[:content_type] = "json" count, cursor = process_data(options) total = count @@ -64,7 +63,7 @@ def queue_jobs(options = {}) if count.zero? text = "No DOIs updated #{options[:from_date]} - #{options[:until_date]}." else - while count.postive? && cursor.present? + while count.positive? && cursor.present? count, cursor = process_data(options) options[:cursor] = cursor total += count @@ -74,7 +73,7 @@ def queue_jobs(options = {}) end Rails.logger.info("[Event Data] #{text}") - send_slack_notification(options, text) + send_slack_notification(options, text, total) total end @@ -113,7 +112,7 @@ def self.push_item(item) "subjId" => subj_id, "objId" => obj_id, "relationTypeId" => item["relationship_type"].to_s.dasherize, - "sourceId" => source_id, + "sourceId" => "crossref", "sourceToken" => item["source_token"], # well this may very well be null now. it might be used to do a lookup on the crossref side. "occurredAt" => item["updated_time"], "timestamp" => Time.now.utc, @@ -143,7 +142,7 @@ def self.push_item(item) private - def send_slack_notification(options, text) + def send_slack_notification(options, text, total) options[:level] = total.zero? ? "warning" : "good" options[:title] = "Report for #{source_id}" diff --git a/spec/fixtures/vcr_cassettes/Crossref/_import/with_missing_parameters/queues_jobs_for_the_default_date_range_yesterday_to_today_.yml b/spec/fixtures/vcr_cassettes/Crossref/_import/with_missing_parameters/queues_jobs_for_the_default_date_range_yesterday_to_today_.yml deleted file mode 100644 index 91255284..00000000 --- a/spec/fixtures/vcr_cassettes/Crossref/_import/with_missing_parameters/queues_jobs_for_the_default_date_range_yesterday_to_today_.yml +++ /dev/null @@ -1,595 +0,0 @@ ---- -http_interactions: -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?from-collected-date=2023-01-01&mailto=info@datacite.org&rows=0&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '125' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:03 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":null,"total-results":355,"items-per-page":0,"events":[]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:35:42 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '23865' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:08 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"34e5233f-dd8a-49ed-ad0b-eaf8000a1760","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.2305\/IUCN.UK.2010-3.RLTS.T39742A10261941.en","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T21:13:45.000Z","subj_id":"https:\/\/doi.org\/10.1101\/2021.06.19.449102","id":"c1a99114-39f5-4ce0-8d2f-7e12ce7317b5","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-213484b7-0224-4400-aaf4-23fcc89c4a8d","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1101\/2021.06.19.449102","url":"https:\/\/doi.org\/10.1101\/2021.06.19.449102","work_type_id":"posted-content"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.2305\/IUCN.UK.2010-3.RLTS.T39742A10261941.en","url":"https:\/\/doi.org\/10.2305\/IUCN.UK.2010-3.RLTS.T39742A10261941.en","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T00:04:57Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.17632\/hx5dvj46rp.1","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T07:43:17.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.dib.2022.108846","id":"bba8d9ae-1d9c-4ece-8388-e680d45e8c1e","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-1f02a18c-efdb-469f-9972-fb4bf8be096a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.dib.2022.108846","url":"https:\/\/doi.org\/10.1016\/j.dib.2022.108846","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.17632\/hx5dvj46rp.1","url":"https:\/\/doi.org\/10.17632\/hx5dvj46rp.1","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:05:17Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.11922\/sciencedb.00273","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T04:40:41.000Z","subj_id":"https:\/\/doi.org\/10.5194\/essd-13-2723-2021","id":"cd30a80a-5c3b-4757-a155-9db80402d7b4","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-9981d3a1-51e7-4954-b5be-986bb81ba2d6","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/essd-13-2723-2021","url":"https:\/\/doi.org\/10.5194\/essd-13-2723-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.11922\/sciencedb.00273","url":"https:\/\/doi.org\/10.11922\/sciencedb.00273","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T00:06:31Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.3713920","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:25:44.000Z","subj_id":"https:\/\/doi.org\/10.5194\/nhess-21-1825-2021","id":"347c3dd1-0272-4f0a-a7df-79d04fe559f6","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-7ad640c2-f6cb-4c7d-9d8d-367630147113","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/nhess-21-1825-2021","url":"https:\/\/doi.org\/10.5194\/nhess-21-1825-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.3713920","url":"https:\/\/doi.org\/10.5281\/zenodo.3713920,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:06:59Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1594\/PANGAEA.893843","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:23:39.000Z","subj_id":"https:\/\/doi.org\/10.1029\/2022ms003262","id":"8232f8cd-eb09-4f2c-8732-fadc7bde52b8","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-132641a4-7cc4-4ce6-b367-bdb09e65a742","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1029\/2022ms003262","url":"https:\/\/doi.org\/10.1029\/2022ms003262","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1594\/PANGAEA.893843","url":"https:\/\/doi.org\/10.1594\/PANGAEA.893843","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:07:30Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.7289\/V5C8276M","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T09:11:54.000Z","subj_id":"https:\/\/doi.org\/10.5194\/se-12-1389-2021","id":"e517f15e-98f7-46ed-8e56-80b90412b73e","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-3656c9a5-955d-4c25-8f0b-5086a4d8fc5a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/se-12-1389-2021","url":"https:\/\/doi.org\/10.5194\/se-12-1389-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.7289\/V5C8276M","url":"https:\/\/doi.org\/10.7289\/V5C8276M,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:07:50Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.21227\/h8g0-8z59","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:24:00.000Z","subj_id":"https:\/\/doi.org\/10.3390\/en16010054","id":"50c323b1-a951-499c-a773-c630aff4e4a7","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-2b7f9b8a-11d7-4546-b5ab-732f7d872196","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3390\/en16010054","url":"https:\/\/doi.org\/10.3390\/en16010054","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.21227\/h8g0-8z59","url":"https:\/\/ieee-dataport.org\/documents\/dissolved-gas-data-transformer-oil-fault-diagnosis-power-transformers-membership-degree#files.","method":"landing-page-text","verification":"checked-url-basic","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:07:50Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5066\/P9V0U1NF","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T13:41:20.000Z","subj_id":"https:\/\/doi.org\/10.5194\/cp-17-1227-2021","id":"2faba69f-d258-49eb-a94c-c1af61009db0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-85c56db1-595d-4922-af8e-6e04fb9091ce","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/cp-17-1227-2021","url":"https:\/\/doi.org\/10.5194\/cp-17-1227-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5066\/P9V0U1NF","url":"https:\/\/doi.org\/10.5066\/P9V0U1NF,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:07:57Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5880\/fidgeo.2021.006","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T04:40:48.000Z","subj_id":"https:\/\/doi.org\/10.5194\/se-12-1309-2021","id":"2d3f2c76-5a32-43e1-aced-ac3d3e719939","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-350f6720-2067-42c1-b469-37bad6219ec9","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/se-12-1309-2021","url":"https:\/\/doi.org\/10.5194\/se-12-1309-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5880\/fidgeo.2021.006","url":"https:\/\/doi.org\/10.5880\/fidgeo.2021.006,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:08:01Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5683\/SP2\/JTIQDO","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T09:11:02.000Z","subj_id":"https:\/\/doi.org\/10.5194\/hess-25-3301-2021","id":"4e06c34d-fbbe-4cc9-b35a-eaea2382dc0e","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-ca70f24d-52c0-460f-8c5a-32986382dd4e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/hess-25-3301-2021","url":"https:\/\/doi.org\/10.5194\/hess-25-3301-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5683\/SP2\/JTIQDO","url":"https:\/\/doi.org\/10.5683\/SP2\/JTIQDO,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:08:05Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.3334\/cdiac\/otg.ndp088(v2015)","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:25:45.000Z","subj_id":"https:\/\/doi.org\/10.5194\/essd-13-2777-2021","id":"3433542b-ac65-4f56-897b-2c24e3e63678","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-3bf47c4c-c86a-42d2-ad80-65ca39e16559","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/essd-13-2777-2021","url":"https:\/\/doi.org\/10.5194\/essd-13-2777-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.3334\/cdiac\/otg.ndp088(v2015)","url":"https:\/\/doi.org\/10.3334\/cdiac\/otg.ndp088(v2015),","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:08:05Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5439\/1025220","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:25:51.000Z","subj_id":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","id":"fa75a9e2-091a-4349-8abe-d5d27ae1b39d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-88324816-274c-40d3-a390-1aea03a937fd","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","url":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5439\/1025220","url":"https:\/\/doi.org\/10.5439\/1025220,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:08:23Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5439\/1025185","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:25:51.000Z","subj_id":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","id":"758bdef9-12ef-4a68-a149-3b29d9f0b865","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-ebbc40a4-da4d-4dae-ad57-c2c96eb50213","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","url":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5439\/1025185","url":"https:\/\/doi.org\/10.5439\/1025185,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:08:25Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.4539986","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T14:10:48.000Z","subj_id":"https:\/\/doi.org\/10.5194\/hess-25-3429-2021","id":"47434ed8-14d9-4c4b-85d7-fb3aafe01d9d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-35a74217-2662-4563-a236-571f60e189de","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/hess-25-3429-2021","url":"https:\/\/doi.org\/10.5194\/hess-25-3429-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.4539986","url":"https:\/\/doi.org\/10.5281\/zenodo.4539986,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:09:30Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5067\/MODIS\/MOD10A1.006","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T14:10:48.000Z","subj_id":"https:\/\/doi.org\/10.5194\/hess-25-3429-2021","id":"489ff939-7a1c-49ea-a497-940670e754b7","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-35a74217-2662-4563-a236-571f60e189de","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/hess-25-3429-2021","url":"https:\/\/doi.org\/10.5194\/hess-25-3429-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5067\/MODIS\/MOD10A1.006","url":"https:\/\/doi.org\/10.5067\/MODIS\/MOD10A1.006,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:09:34Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.7093164","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:23:39.000Z","subj_id":"https:\/\/doi.org\/10.1029\/2022ms003262","id":"a166fb52-8f5a-45fd-9208-ca5efa34413f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-5ccad154-67be-4cee-bfb9-be0cee233c12","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1029\/2022ms003262","url":"https:\/\/doi.org\/10.1029\/2022ms003262","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.7093164","url":"https:\/\/doi.org\/10.5281\/zenodo.7093164","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:11:33Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.7092058","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:23:39.000Z","subj_id":"https:\/\/doi.org\/10.1029\/2022ms003262","id":"907ed776-21be-49e7-89d2-0bfd6752ec04","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-5ccad154-67be-4cee-bfb9-be0cee233c12","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1029\/2022ms003262","url":"https:\/\/doi.org\/10.1029\/2022ms003262","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.7092058","url":"https:\/\/doi.org\/10.5281\/zenodo.7092058","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:11:34Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5439\/1021460","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:25:51.000Z","subj_id":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","id":"13248f35-5f98-4ce9-a185-52cabe54d6c3","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-3b72a3fd-7205-430b-871b-f7234bd5e1a6","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","url":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5439\/1021460","url":"https:\/\/doi.org\/10.5439\/1021460,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:21:49Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.23645\/epacomptox.6062479.v1","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T12:12:43.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.watres.2021.116859","id":"4c3a990b-23a5-4557-a1ec-bae841ed3371","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-2cdbf8a8-147d-4e56-9342-13c4b355eda1","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.watres.2021.116859","url":"https:\/\/doi.org\/10.1016\/j.watres.2021.116859","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.23645\/epacomptox.6062479.v1","url":"https:\/\/doi.org\/10.23645\/epacomptox.6062479.v1","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:23:45Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5880\/WSM.2016.001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T09:11:54.000Z","subj_id":"https:\/\/doi.org\/10.5194\/se-12-1389-2021","id":"95219840-ce32-495c-b621-3782599c2950","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-20df7a6a-5599-495c-8bfc-8e62ed30ecb3","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/se-12-1389-2021","url":"https:\/\/doi.org\/10.5194\/se-12-1389-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5880\/WSM.2016.001","url":"https:\/\/doi.org\/10.5880\/WSM.2016.001,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:32:15Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5439\/1025274","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:25:51.000Z","subj_id":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","id":"d36315c5-6454-432e-8eaa-04ecf1a3dd05","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-1ac387ca-1929-4db0-884f-f622132db9e0","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","url":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5439\/1025274","url":"https:\/\/doi.org\/10.5439\/1025274,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:44:34Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5439\/1150253","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:25:51.000Z","subj_id":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","id":"c0c4cdd6-bc1a-4358-a787-705b1bb6c774","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-1ac387ca-1929-4db0-884f-f622132db9e0","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","url":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5439\/1150253","url":"https:\/\/doi.org\/10.5439\/1150253,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:44:34Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.3886\/icpsr21984","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T08:42:14.000Z","subj_id":"https:\/\/doi.org\/10.2139\/ssrn.3860943","id":"abbc7dd2-dfbd-4cf1-ae4c-ee5abc988966","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-8e0ff311-61bf-4451-bfa2-6c158ce7e28a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.2139\/ssrn.3860943","url":"https:\/\/doi.org\/10.2139\/ssrn.3860943","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.3886\/icpsr21984","url":"https:\/\/doi.org\/10.3886\/icpsr21984","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:44:37Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.2305\/IUCN.UK.2010-3.RLTS.T185400A8403816.en","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T21:13:45.000Z","subj_id":"https:\/\/doi.org\/10.1101\/2021.06.19.449102","id":"8c23b437-8f07-438d-9e01-5b0d561af474","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-f76c0042-6197-499d-ba8e-fead7af788d0","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1101\/2021.06.19.449102","url":"https:\/\/doi.org\/10.1101\/2021.06.19.449102","work_type_id":"posted-content"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.2305\/IUCN.UK.2010-3.RLTS.T185400A8403816.en","url":"https:\/\/doi.org\/10.2305\/IUCN.UK.2010-3.RLTS.T185400A8403816.en","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T00:50:24Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.dio_cassius-roman_history.1914","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T22:11:44.000Z","subj_id":"https:\/\/doi.org\/10.47589\/adalya.837710","id":"34e5233f-dd8a-49ed-ad0b-eaf8000a1760","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-ad47e4ed-c079-4d06-b47c-11f05e2a7a59","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.47589\/adalya.837710","url":"https:\/\/doi.org\/10.47589\/adalya.837710","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.dio_cassius-roman_history.1914","url":"https:\/\/doi.org\/10.4159\/DLCL.dio_cassius-roman_history.1914","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T00:51:04Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:35:47 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?cursor=34e5233f-dd8a-49ed-ad0b-eaf8000a1760&from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '24278' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:10 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"c8aaebf0-a6f0-46b6-bc62-6fe16b370590","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4232\/1.13520","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:25:44.000Z","subj_id":"https:\/\/doi.org\/10.1080\/17457289.2021.1924733","id":"c190d483-509c-431f-a7dd-dda581b64804","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-02af79ea-02e6-4b6c-a474-234a618822fd","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/17457289.2021.1924733","url":"https:\/\/doi.org\/10.1080\/17457289.2021.1924733","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4232\/1.13520","url":"https:\/\/doi.org\/10.4232\/1.13520","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T00:59:51Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1163\/2211-4394_rwilwo_ilwo_iiim11","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T12:40:56.000Z","subj_id":"https:\/\/doi.org\/10.17230\/co-herencia.18.34.6","id":"c0a93c2f-daca-41a1-b485-4552897b3ed1","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-379912e1-ccdf-4483-a776-607521eee2ce","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17230\/co-herencia.18.34.6","url":"https:\/\/doi.org\/10.17230\/co-herencia.18.34.6","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1163\/2211-4394_rwilwo_ilwo_iiim11","url":"https:\/\/doi.org\/10.1163\/2211-4394_rwilwo_ilwo_iiim11","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T01:04:43Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e566432006-002","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T04:40:57.000Z","subj_id":"https:\/\/doi.org\/10.33321\/cdi.2021.45.21","id":"2e27de81-e3fd-48eb-9e76-7b5498cfbe43","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-811da1c1-3789-4bcb-a1cf-3500eaea2a9b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.33321\/cdi.2021.45.21","url":"https:\/\/doi.org\/10.33321\/cdi.2021.45.21","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e566432006-002","url":"https:\/\/doi.org\/10.1037\/e566432006-002","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T01:04:53Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5676\/DWD_GPCC\/FD_M_V2018_050","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T07:11:31.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.jhydrol.2022.129056","id":"23f0086f-fdc7-49d5-8fdc-bd2a0c442e6a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-67712d32-e04a-46fe-90e8-9a8b4e526988","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.jhydrol.2022.129056","url":"https:\/\/doi.org\/10.1016\/j.jhydrol.2022.129056","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5676\/DWD_GPCC\/FD_M_V2018_050","url":"https:\/\/doi.org\/10.5676\/DWD_GPCC\/FD_M_V2018_050","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T01:05:32Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5676\/DWD_GPCC\/FD_M_V2018_050","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T07:11:31.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.jhydrol.2022.129056","id":"bc487d1e-8732-455f-96aa-ddec7461b5a9","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-67712d32-e04a-46fe-90e8-9a8b4e526988","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.jhydrol.2022.129056","url":"https:\/\/doi.org\/10.1016\/j.jhydrol.2022.129056","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5676\/DWD_GPCC\/FD_M_V2018_050","url":"https:\/\/doi.org\/10.5676\/DWD_GPCC\/FD_M_V2018_050","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T01:08:44Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t65932-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T15:43:19.000Z","subj_id":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.v39n1p43","id":"6c7b523d-b2e8-4b58-b73c-9164791b8833","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-444972f2-bcfc-48e3-b7ca-127cf9610c23","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.v39n1p43","url":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.v39n1p43","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t65932-000","url":"https:\/\/doi.org\/10.1037\/t65932-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T01:23:48Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.plutarch-moralia_were_athenians_more_famous_war_wisdom.1936","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T17:14:35.000Z","subj_id":"https:\/\/doi.org\/10.15848\/hh.v15i40.1940","id":"95d6b010-e0a9-4672-9ffa-9614252a5237","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-c59cdc58-241b-4038-ad1b-048383da36ea","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.15848\/hh.v15i40.1940","url":"https:\/\/doi.org\/10.15848\/hh.v15i40.1940","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.plutarch-moralia_were_athenians_more_famous_war_wisdom.1936","url":"https:\/\/doi.org\/10.4159\/DLCL.plutarch-moralia_were_athenians_more_famous_war_wisdom.1936","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T01:27:56Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t28485-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T19:16:24.000Z","subj_id":"https:\/\/doi.org\/10.17244\/eku.1162003","id":"79cded05-8129-4cbf-a666-d6b5a7589cf2","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-663529a6-868d-4399-9d67-ebbdfd2c7ed7","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17244\/eku.1162003","url":"https:\/\/doi.org\/10.17244\/eku.1162003","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t28485-000","url":"https:\/\/doi.org\/10.1037\/t28485-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T01:28:51Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e526112012-054","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T16:45:21.000Z","subj_id":"https:\/\/doi.org\/10.26791\/sarkiat.1189864","id":"9d071a0c-eef7-40c8-beb6-c92f0bfba6e6","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-e34124f4-ecfa-41ec-949e-20392a0e16cd","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.26791\/sarkiat.1189864","url":"https:\/\/doi.org\/10.26791\/sarkiat.1189864","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e526112012-054","url":"https:\/\/doi.org\/10.1037\/e526112012-054","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T01:44:40Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.18434\/T4W30F","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T08:42:01.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.tsf.2021.138695","id":"4ae908ab-2f1d-4597-8eff-0e287df3c25d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-b6256fd5-f1c2-42c8-b243-da0cdc56b5c8","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.tsf.2021.138695","url":"https:\/\/doi.org\/10.1016\/j.tsf.2021.138695","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.18434\/T4W30F","url":"https:\/\/doi.org\/10.18434\/T4W30F","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T01:45:59Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.7286412","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:23:30.000Z","subj_id":"https:\/\/doi.org\/10.1038\/s41535-022-00528-5","id":"47850ccc-de62-4900-afc3-5fc1d7bbe580","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-0c505170-2834-40a2-b760-aaf09fe38fd7","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1038\/s41535-022-00528-5","url":"https:\/\/doi.org\/10.1038\/s41535-022-00528-5","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.7286412","url":"https:\/\/zenodo.org\/record\/7286412#.Y5nuVnaZNPY","method":"landing-page-meta-tag","verification":"checked-url-basic","work_type_id":"Dataset"},"timestamp":"2023-01-01T01:51:08Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t06475-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T15:43:06.000Z","subj_id":"https:\/\/doi.org\/10.1080\/10503307.2022.2156305","id":"23ee904e-e5cd-4389-889c-58a1b514072d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-c5012588-50cf-446c-89fe-2ada7bcadc48","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/10503307.2022.2156305","url":"https:\/\/doi.org\/10.1080\/10503307.2022.2156305","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t06475-000","url":"https:\/\/doi.org\/10.1037\/t06475-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T01:52:52Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.2305\/IUCN.UK.2019-3.RLTS.T39381A2915850.en","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T13:12:01.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.marpol.2021.104632","id":"e979d504-1958-4a23-bcb5-298217411a76","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-15ba029d-005e-4167-bab1-a3a77724e368","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.marpol.2021.104632","url":"https:\/\/doi.org\/10.1016\/j.marpol.2021.104632","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.2305\/IUCN.UK.2019-3.RLTS.T39381A2915850.en","url":"https:\/\/doi.org\/10.2305\/IUCN.UK.2019-3.RLTS.T39381A2915850.en","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T01:56:30Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.2305\/IUCN.UK.2019-1.RLTS.T39332A117498371.en","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T13:12:01.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.marpol.2021.104632","id":"9d00eff0-c488-48b1-b323-3e5d3fe239ae","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-15ba029d-005e-4167-bab1-a3a77724e368","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.marpol.2021.104632","url":"https:\/\/doi.org\/10.1016\/j.marpol.2021.104632","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.2305\/IUCN.UK.2019-1.RLTS.T39332A117498371.en","url":"https:\/\/doi.org\/10.2305\/IUCN.UK.2019-1.RLTS.T39332A117498371.en","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T01:56:30Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.2305\/IUCN.UK.2019-1.RLTS.T39341A2903170.en","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T13:12:01.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.marpol.2021.104632","id":"8c3d86d9-1500-43c9-9c81-388d8e935d2e","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-15ba029d-005e-4167-bab1-a3a77724e368","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.marpol.2021.104632","url":"https:\/\/doi.org\/10.1016\/j.marpol.2021.104632","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.2305\/IUCN.UK.2019-1.RLTS.T39341A2903170.en","url":"https:\/\/doi.org\/10.2305\/IUCN.UK.2019-1.RLTS.T39341A2903170.en","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T01:56:30Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t05500-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T17:29:42.000Z","subj_id":"https:\/\/doi.org\/10.17759\/chp.2019150305","id":"3ce6fcb8-005a-4e73-a1ac-aecf811f7f27","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-f4dca623-8fb8-4e45-a084-65514179c14f","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/chp.2019150305","url":"https:\/\/doi.org\/10.17759\/chp.2019150305","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t05500-000","url":"https:\/\/doi.org\/10.1037\/t05500-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T01:56:31Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.17632\/btmrycjpbj.1","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T18:12:15.000Z","subj_id":"https:\/\/doi.org\/10.1109\/icus55513.2022.9987219","id":"3c3b48eb-1c0d-40fe-a903-5404f9e1fd49","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-1982ce16-d30f-40cc-8160-da62370381e8","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1109\/icus55513.2022.9987219","url":"https:\/\/doi.org\/10.1109\/icus55513.2022.9987219","work_type_id":"proceedings-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.17632\/btmrycjpbj.1","url":"https:\/\/doi.org\/10.17632\/btmrycjpbj.1","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T01:56:56Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e318952004-015","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T14:40:11.000Z","subj_id":"https:\/\/doi.org\/10.17759\/chp.2018140112","id":"519ed4ff-c47c-4c5b-84a3-3c7d95b5d635","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-7f2eb2b7-d744-4926-97e1-8eb8c0b1a70b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/chp.2018140112","url":"https:\/\/doi.org\/10.17759\/chp.2018140112","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e318952004-015","url":"https:\/\/doi.org\/10.1037\/e318952004-015","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T02:02:55Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t02165-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T14:40:11.000Z","subj_id":"https:\/\/doi.org\/10.17759\/chp.2018140112","id":"4667efb7-a0f6-4255-802d-226b0f9f7008","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-7f2eb2b7-d744-4926-97e1-8eb8c0b1a70b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/chp.2018140112","url":"https:\/\/doi.org\/10.17759\/chp.2018140112","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t02165-000","url":"https:\/\/doi.org\/10.1037\/t02165-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T02:02:56Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.3572671","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T21:41:33.000Z","subj_id":"https:\/\/doi.org\/10.1098\/rsta.2020.0291","id":"6e68d524-8bf5-4930-8ab7-8a0f84ec23ca","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-832ec343-8b1b-49bd-abcf-da92802991c3","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1098\/rsta.2020.0291","url":"https:\/\/doi.org\/10.1098\/rsta.2020.0291","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.3572671","url":"https:\/\/doi.org\/10.5281\/zenodo.3572671","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T02:04:55Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.6092\/INGV.IT-SHARE-EDSF","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:17:26.000Z","subj_id":"https:\/\/doi.org\/10.3389\/feart.2021.663385","id":"ae32a2d4-71d8-4924-8a97-1e82bcce590d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-5f766440-fa82-4ce1-ac3a-a0de1a875e7a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3389\/feart.2021.663385","url":"https:\/\/doi.org\/10.3389\/feart.2021.663385","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.6092\/INGV.IT-SHARE-EDSF","url":"https:\/\/doi.org\/10.6092\/INGV.IT-SHARE-EDSF","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T02:06:22Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.13140\/RG.2.2.33613.23528","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T11:43:05.000Z","subj_id":"https:\/\/doi.org\/10.36804\/nndipbop.38-3-4.2022.34-40","id":"dde284ab-cfc8-4fdd-9bfb-d4b30e7850d2","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-fb05dcf8-b58a-4508-ac77-21337287d3a6","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.36804\/nndipbop.38-3-4.2022.34-40","url":"https:\/\/doi.org\/10.36804\/nndipbop.38-3-4.2022.34-40","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.13140\/RG.2.2.33613.23528","url":"https:\/\/doi.org\/10.13140\/RG.2.2.33613.23528","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T02:09:16Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.15468\/39omei","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T13:40:35.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.ympev.2021.107219","id":"a3713ec3-cf8f-4270-8acf-f808d87f412e","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-88481e20-068e-4027-81a8-b3dcaaf3c7e8","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.ympev.2021.107219","url":"https:\/\/doi.org\/10.1016\/j.ympev.2021.107219","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.15468\/39omei","url":"https:\/\/doi.org\/10.15468\/39omei","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T02:09:29Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.25921\/531n-c230","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:25:45.000Z","subj_id":"https:\/\/doi.org\/10.5194\/essd-13-2777-2021","id":"712795f1-e18e-4acc-8385-e7d04c7403bf","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-87033cc8-abe5-41a2-97cf-d05e28c44fc1","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/essd-13-2777-2021","url":"https:\/\/doi.org\/10.5194\/essd-13-2777-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.25921\/531n-c230","url":"https:\/\/doi.org\/10.25921\/531n-c230,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T02:17:28Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.statius-thebaid.2004","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T22:13:22.000Z","subj_id":"https:\/\/doi.org\/10.47589\/adalya.837983","id":"c8aaebf0-a6f0-46b6-bc62-6fe16b370590","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-4428eec8-333d-41cd-82a8-9ae80e3cdeb0","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.47589\/adalya.837983","url":"https:\/\/doi.org\/10.47589\/adalya.837983","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.statius-thebaid.2004","url":"https:\/\/doi.org\/10.4159\/DLCL.statius-thebaid.2004","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T02:27:31Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:35:49 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?cursor=c8aaebf0-a6f0-46b6-bc62-6fe16b370590&from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '23711' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:11 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"e486dd1a-d772-4402-b662-5d119f9aefda","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.callimachus-epigrams.1921","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T22:13:22.000Z","subj_id":"https:\/\/doi.org\/10.47589\/adalya.837983","id":"15aa7aa7-35c8-4d21-8661-c2bf11865c59","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-4428eec8-333d-41cd-82a8-9ae80e3cdeb0","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.47589\/adalya.837983","url":"https:\/\/doi.org\/10.47589\/adalya.837983","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.callimachus-epigrams.1921","url":"https:\/\/doi.org\/10.4159\/DLCL.callimachus-epigrams.1921","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T02:27:31Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.plutarch-lives_alexander.1919","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T22:13:22.000Z","subj_id":"https:\/\/doi.org\/10.47589\/adalya.837983","id":"e41f28f1-1d92-4a5e-9e76-77da6a0d21f6","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-4428eec8-333d-41cd-82a8-9ae80e3cdeb0","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.47589\/adalya.837983","url":"https:\/\/doi.org\/10.47589\/adalya.837983","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.plutarch-lives_alexander.1919","url":"https:\/\/doi.org\/10.4159\/DLCL.plutarch-lives_alexander.1919","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T02:27:32Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.7914\/SN\/KO","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:17:26.000Z","subj_id":"https:\/\/doi.org\/10.3389\/feart.2021.663385","id":"195b3365-ab34-4cc0-a3b4-c9df3334eb82","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-b097af71-46de-494e-a8a0-abeb9d21087d","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3389\/feart.2021.663385","url":"https:\/\/doi.org\/10.3389\/feart.2021.663385","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.7914\/SN\/KO","url":"https:\/\/doi.org\/10.7914\/SN\/KO","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T02:28:22Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1163\/1873-5363_boj_a771","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T22:12:18.000Z","subj_id":"https:\/\/doi.org\/10.47589\/adalya.837543","id":"e489018c-e17c-4bd7-bc5a-b9d8dc07ce73","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-47437fa2-14f4-44c3-96c5-31abab507a8b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.47589\/adalya.837543","url":"https:\/\/doi.org\/10.47589\/adalya.837543","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1163\/1873-5363_boj_a771","url":"http:\/\/dx.doi.org\/10.1163\/1873-5363_boj_a771;","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T02:35:11Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5061\/dryad.pg4f4qrnr","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T16:10:35.000Z","subj_id":"https:\/\/doi.org\/10.1242\/jeb.203844","id":"c65e4503-32ab-4242-a477-e530f4726a95","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-22b5824f-8099-435d-9128-aab309abf82a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1242\/jeb.203844","url":"https:\/\/doi.org\/10.1242\/jeb.203844","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5061\/dryad.pg4f4qrnr","url":"https:\/\/doi.org\/10.5061\/dryad.pg4f4qrnr","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T02:35:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5061\/dryad.pg4f4qrnr","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T16:10:35.000Z","subj_id":"https:\/\/doi.org\/10.1242\/jeb.203844","id":"1d28c130-9a15-40dd-9bf6-cb39786b9193","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-22b5824f-8099-435d-9128-aab309abf82a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1242\/jeb.203844","url":"https:\/\/doi.org\/10.1242\/jeb.203844","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5061\/dryad.pg4f4qrnr","url":"https:\/\/doi.org\/10.5061\/dryad.pg4f4qrnr","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T02:39:28Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4121\/12993911","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T08:42:01.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.engfracmech.2021.107841","id":"dcb1d8b0-0efe-4f3b-b746-02bbf86713b5","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-5d1e4b50-fa22-4e4e-a7fd-8aaf1db64848","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.engfracmech.2021.107841","url":"https:\/\/doi.org\/10.1016\/j.engfracmech.2021.107841","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4121\/12993911","url":"http:\/\/dx.doi.org\/10.4121\/12993911.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T02:50:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5067\/MODIS\/MCD12Q1.006","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T08:15:48.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.gecco.2021.e01682","id":"1b1d98cd-a819-4ac5-889a-9c392a5ef0a4","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-392d6bd1-9caa-4f07-8032-4cf60e4d17ee","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.gecco.2021.e01682","url":"https:\/\/doi.org\/10.1016\/j.gecco.2021.e01682","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5067\/MODIS\/MCD12Q1.006","url":"https:\/\/doi.org\/10.5067\/MODIS\/MCD12Q1.006\u3009.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T02:51:20Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e526112012-054","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T22:40:35.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3130898","id":"9b1b5c75-6e5f-466f-91a5-f7659d7ef9e0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-473dcf5c-3824-45b0-9a78-df0a30876a6b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3130898","url":"https:\/\/doi.org\/10.1145\/3130898","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e526112012-054","url":"https:\/\/doi.org\/10.1037\/e526112012-054","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T02:51:45Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5285\/65edb979-eebd-4331-94f6-52f0844fb3cb","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T12:15:54.000Z","subj_id":"https:\/\/doi.org\/10.1371\/journal.pone.0252466","id":"4b5b7212-18e4-4f4d-aab5-e78e63472dc6","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-bf824490-54da-40c4-b12f-4f87466724ed","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1371\/journal.pone.0252466","url":"https:\/\/doi.org\/10.1371\/journal.pone.0252466","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5285\/65edb979-eebd-4331-94f6-52f0844fb3cb","url":"https:\/\/doi.org\/10.5285\/65edb979-eebd-4331-94f6-52f0844fb3cb","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T03:05:41Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5061\/dryad.9s4mw6mm3","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T23:44:02.000Z","subj_id":"https:\/\/doi.org\/10.1111\/ecog.06504","id":"fcacdfca-1849-43c1-9dc2-cc041d6b5c79","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-56745059-f359-4ffd-b9c9-b1e589653f87","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1111\/ecog.06504","url":"https:\/\/doi.org\/10.1111\/ecog.06504","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5061\/dryad.9s4mw6mm3","url":"https:\/\/doi.org\/10.5061\/dryad.9s4mw6mm3","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T03:09:04Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.18434\/T48G6X","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T15:12:40.000Z","subj_id":"https:\/\/doi.org\/10.54287\/gujsa.1193047","id":"753aed14-bb09-48ed-a281-d22428e5ff1a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-1616a639-b91b-43fb-b67c-864abed76d06","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.54287\/gujsa.1193047","url":"https:\/\/doi.org\/10.54287\/gujsa.1193047","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.18434\/T48G6X","url":"https:\/\/doi.org\/10.18434\/T48G6X","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T03:11:50Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t17237-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T12:40:09.000Z","subj_id":"https:\/\/doi.org\/10.17759\/chp.2015110103","id":"a3ab5149-4701-47d1-9891-fd2cc723b45a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-b36a2c4f-c489-4385-8e43-38a7433206a4","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/chp.2015110103","url":"https:\/\/doi.org\/10.17759\/chp.2015110103","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t17237-000","url":"https:\/\/doi.org\/10.1037\/t17237-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T03:14:56Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5439\/1647300","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:25:51.000Z","subj_id":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","id":"d23fe26d-9187-416b-8f05-4503e8a6301b","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-028de32b-2ed7-4600-8a50-387058f3f5f2","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","url":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5439\/1647300","url":"https:\/\/doi.org\/10.5439\/1647300,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T03:33:45Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5439\/1256098","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:25:51.000Z","subj_id":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","id":"60d3dfa0-1d0e-4c46-8218-400d711014d3","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-028de32b-2ed7-4600-8a50-387058f3f5f2","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","url":"https:\/\/doi.org\/10.5194\/amt-14-4403-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5439\/1256098","url":"https:\/\/doi.org\/10.5439\/1256098,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T03:33:45Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t02445-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T05:45:24.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s10567-021-00356-2","id":"0ac0c13b-6164-4ba2-9d70-beecc6b4a87c","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-07270fc3-21b2-428c-9229-b1bc7e417970","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s10567-021-00356-2","url":"https:\/\/doi.org\/10.1007\/s10567-021-00356-2","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t02445-000","url":"https:\/\/doi.org\/10.1037\/t02445-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T03:41:54Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.3886\/icpsr28181","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T15:40:46.000Z","subj_id":"https:\/\/doi.org\/10.2139\/ssrn.3862508","id":"898293d3-fa31-420a-8b8b-c7e9772cfaa8","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-8d1d52d4-291f-43ce-9e48-fb4a4df31138","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.2139\/ssrn.3862508","url":"https:\/\/doi.org\/10.2139\/ssrn.3862508","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.3886\/icpsr28181","url":"https:\/\/doi.org\/10.3886\/icpsr28181","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T03:50:43Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.18434\/T4D303","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T16:44:58.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.elspec.2022.147280","id":"83d83eb1-cb90-4d6a-a13a-9cfc5b06f7a4","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-df38e09c-a2c0-44eb-bee2-e5aed02684fa","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.elspec.2022.147280","url":"https:\/\/doi.org\/10.1016\/j.elspec.2022.147280","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.18434\/T4D303","url":"http:\/\/dx.doi.org\/10.18434\/T4D303,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T03:52:00Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1145\/3193289","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T23:14:19.000Z","subj_id":"https:\/\/doi.org\/10.1109\/iccis56375.2022.9998162","id":"91272b5b-9562-414e-953f-ef423a60c697","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-a6501de2-e986-4755-9d60-35b979954d62","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1109\/iccis56375.2022.9998162","url":"https:\/\/doi.org\/10.1109\/iccis56375.2022.9998162","work_type_id":"proceedings-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1145\/3193289","url":"https:\/\/doi.org\/10.1145\/3193289","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T03:54:00Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e576842013-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T16:40:16.000Z","subj_id":"https:\/\/doi.org\/10.1101\/2020.06.09.20127100","id":"fa943478-5255-4a57-8d39-4c23604f04e6","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-24154d67-d688-4e48-b5fe-5718616600e5","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1101\/2020.06.09.20127100","url":"https:\/\/doi.org\/10.1101\/2020.06.09.20127100","work_type_id":"posted-content"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e576842013-001","url":"https:\/\/doi.org\/10.1037\/e576842013-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T03:54:10Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4231\/D3T14TP1T","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T14:41:20.000Z","subj_id":"https:\/\/doi.org\/10.1785\/0120200354","id":"605a657b-d363-4324-9b77-5ecbe90b74ee","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-70d91f65-4e35-4d89-8fdb-03dd53f94e6d","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1785\/0120200354","url":"https:\/\/doi.org\/10.1785\/0120200354","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4231\/D3T14TP1T","url":"https:\/\/doi.org\/10.4231\/D3T14TP1T","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T03:55:03Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.3410\/f.1047455.497408","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T07:43:20.000Z","subj_id":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.v40n9p407","id":"8477c271-30e2-49aa-b470-82198bfd7e6a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-808dd646-1449-4fb3-94d0-0dbfc60a4188","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.v40n9p407","url":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.v40n9p407","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.3410\/f.1047455.497408","url":"https:\/\/doi.org\/10.3410\/f.1047455.497408","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T03:59:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t41885-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:19:51.000Z","subj_id":"https:\/\/doi.org\/10.37597\/ajphes.2021.27.1.2","id":"eec1886d-0398-48f5-bf93-1541d3d30a75","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-e9b6c171-2d14-40d6-96ff-7259fc5bb6f0","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.37597\/ajphes.2021.27.1.2","url":"https:\/\/doi.org\/10.37597\/ajphes.2021.27.1.2","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t41885-000","url":"https:\/\/doi.org\/10.1037\/t41885-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T04:04:01Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1163\/2468-1733_shafr_sim250060113","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T16:44:22.000Z","subj_id":"https:\/\/doi.org\/10.26735\/crfv5332","id":"5c77c1fd-24c8-463e-983d-0a8dc0906028","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-07f83c99-5d8a-4e1f-b684-6dcbec136c07","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.26735\/crfv5332","url":"https:\/\/doi.org\/10.26735\/crfv5332","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1163\/2468-1733_shafr_sim250060113","url":"https:\/\/doi.org\/10.1163\/2468-1733_shafr_sim250060113","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T04:10:12Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e442152005-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T16:11:10.000Z","subj_id":"https:\/\/doi.org\/10.1002\/jee.20393","id":"e486dd1a-d772-4402-b662-5d119f9aefda","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-18abaa8c-6d4f-4af8-888c-79936319505a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1002\/jee.20393","url":"https:\/\/doi.org\/10.1002\/jee.20393","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e442152005-001","url":"https:\/\/doi.org\/10.1037\/e442152005-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T04:28:44Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:35:50 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?cursor=e486dd1a-d772-4402-b662-5d119f9aefda&from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '23426' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:12 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"f78b0092-379f-473c-9b35-ba1b6551d773","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4232\/1.13471","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:21:02.000Z","subj_id":"https:\/\/doi.org\/10.4057\/jsr.72.312","id":"57cbfcf6-a7ab-4e24-a10c-4c903015e1e7","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-85c06b02-b0c8-46fa-8179-3b0cf9e58bbc","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.4057\/jsr.72.312","url":"https:\/\/doi.org\/10.4057\/jsr.72.312","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4232\/1.13471","url":"https:\/\/doi.org\/10.4232\/1.13471\uff09.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T04:30:09Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e560182009-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:04:16.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.surg.2021.03.003","id":"81a229ec-7cf9-45f9-bbba-3356ff514bdc","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-32956b06-b1e0-45bc-9154-a579c7e066fc","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.surg.2021.03.003","url":"https:\/\/doi.org\/10.1016\/j.surg.2021.03.003","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e560182009-001","url":"https:\/\/doi.org\/10.1037\/e560182009-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T04:32:32Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t06496-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:16:40.000Z","subj_id":"https:\/\/doi.org\/10.3177\/jnsv.68.540","id":"e8a742bf-30cd-4b1f-b3b3-b653f607f6ec","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-4558d992-ab9e-44e3-8822-21b1ba4f6785","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3177\/jnsv.68.540","url":"https:\/\/doi.org\/10.3177\/jnsv.68.540","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t06496-000","url":"https:\/\/doi.org\/10.1037\/t06496-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T04:40:16Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5067\/MODIS\/MOD13C1.006","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:24:28.000Z","subj_id":"https:\/\/doi.org\/10.1029\/2022ms003263","id":"4666113e-692b-40c8-ae3f-386395138b61","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-c7266911-0b23-4d63-8249-9ae61faf8137","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1029\/2022ms003263","url":"https:\/\/doi.org\/10.1029\/2022ms003263","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5067\/MODIS\/MOD13C1.006","url":"https:\/\/doi.org\/10.5067\/MODIS\/MOD13C1.006","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T04:41:01Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.21348\/b.0001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T10:11:39.000Z","subj_id":"https:\/\/doi.org\/10.1785\/0220210024","id":"87313669-0654-4f58-8df5-25ac3d9aa007","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-fcc74ad5-f76b-4ab4-b1e2-e0b90cac9936","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1785\/0220210024","url":"https:\/\/doi.org\/10.1785\/0220210024","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.21348\/b.0001","url":"https:\/\/doi.org\/10.21348\/b.0001","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T04:44:31Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.7927\/H4M61H5F","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T08:15:48.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.gecco.2021.e01682","id":"c4217fe6-8772-4a64-bc38-b410f6bcfb7a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-745409e9-202e-47e5-a1b1-9a936c6d44ce","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.gecco.2021.e01682","url":"https:\/\/doi.org\/10.1016\/j.gecco.2021.e01682","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.7927\/H4M61H5F","url":"https:\/\/doi.org\/10.7927\/H4M61H5F\u3009.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T04:55:38Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.17632\/kfc3rbk78w.1","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:12:07.000Z","subj_id":"https:\/\/doi.org\/10.1248\/yakushi.22-00149","id":"1f7a5baf-4d48-4847-92dd-28ba32762fca","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-16ae0e49-25a7-45e6-ad87-1c2596059ff8","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1248\/yakushi.22-00149","url":"https:\/\/doi.org\/10.1248\/yakushi.22-00149","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.17632\/kfc3rbk78w.1","url":"https:\/\/doi.org\/10.17632\/kfc3rbk78w.1","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T04:56:44Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t00393-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T13:43:24.000Z","subj_id":"https:\/\/doi.org\/10.20525\/ijrbs.v11i10.2243","id":"66ac2978-b3a7-439d-95ed-3efafa08a18f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-343f9c1b-3390-4a35-8e28-5cd5d3e22fa2","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.20525\/ijrbs.v11i10.2243","url":"https:\/\/doi.org\/10.20525\/ijrbs.v11i10.2243","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t00393-000","url":"https:\/\/doi.org\/10.1037\/t00393-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T04:57:11Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.17632\/brrpng6gzy.1","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T10:41:35.000Z","subj_id":"https:\/\/doi.org\/10.1186\/s12915-021-01060-x","id":"ee699e12-6479-4606-8b31-d3a988ab3dec","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-d3172f48-b925-443b-9593-9101db17178f","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1186\/s12915-021-01060-x","url":"https:\/\/doi.org\/10.1186\/s12915-021-01060-x","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.17632\/brrpng6gzy.1","url":"https:\/\/doi.org\/10.17632\/brrpng6gzy.1","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T05:09:59Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.6084\/m9.figshare.14744046","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:21:25.000Z","subj_id":"https:\/\/doi.org\/10.5194\/acp-21-8979-2021","id":"7d0c530a-634c-494c-879c-1b26a3fa49a4","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-18e7604c-38d5-4c83-82d7-25a3f3789955","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/acp-21-8979-2021","url":"https:\/\/doi.org\/10.5194\/acp-21-8979-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.6084\/m9.figshare.14744046","url":"https:\/\/doi.org\/10.6084\/m9.figshare.14744046,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T05:10:07Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t03903-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T21:41:54.000Z","subj_id":"https:\/\/doi.org\/10.4236\/jss.2021.96014","id":"9d2a2755-a674-4455-9a40-593b2de2e4cb","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-ebc5d40e-e32c-4667-ac4e-e9019ea027c6","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.4236\/jss.2021.96014","url":"https:\/\/doi.org\/10.4236\/jss.2021.96014","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t03903-000","url":"https:\/\/doi.apa.org\/doi\/10.1037\/t03903-000","method":"url-text","verification":"recognised-domain-prefix","work_type_id":"dataset"},"timestamp":"2023-01-01T05:19:55Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t61546-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T10:13:13.000Z","subj_id":"https:\/\/doi.org\/10.53443\/anadoluibfd.1171176","id":"40260c18-9bb4-49cf-b46c-69212a48780d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-e5b52c9c-d658-423a-ab44-77edbb5a78a1","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.53443\/anadoluibfd.1171176","url":"https:\/\/doi.org\/10.53443\/anadoluibfd.1171176","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t61546-000","url":"https:\/\/doi.org\/10.1037\/t61546-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T05:25:17Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e526112012-054","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T08:40:06.000Z","subj_id":"https:\/\/doi.org\/10.1145\/308364.308366","id":"01a45c02-5f95-4c96-bbc1-1483f1c17b65","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-9a3a6bb1-3df5-41d8-bc96-4bf0935d5b47","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/308364.308366","url":"https:\/\/doi.org\/10.1145\/308364.308366","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e526112012-054","url":"https:\/\/doi.org\/10.1037\/e526112012-054","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T05:44:33Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e384262004-033","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T15:41:36.000Z","subj_id":"https:\/\/doi.org\/10.2139\/ssrn.3862333","id":"965e22c2-a03e-453c-903d-12a398a7ac01","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-c17d9738-616f-4f41-80fb-7c4c580faa81","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.2139\/ssrn.3862333","url":"https:\/\/doi.org\/10.2139\/ssrn.3862333","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e384262004-033","url":"https:\/\/doi.org\/10.1037\/e384262004-033","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T05:46:37Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1515\/ebr.menorah","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T22:11:39.000Z","subj_id":"https:\/\/doi.org\/10.47589\/adalya.837991","id":"bb7eb776-4759-41d6-b798-34d0e2596de4","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-db468fe6-601b-48be-bcf7-0d310769e1da","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.47589\/adalya.837991","url":"https:\/\/doi.org\/10.47589\/adalya.837991","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1515\/ebr.menorah","url":"https:\/\/doi.org\/10.1515\/ebr.menorah","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T05:49:03Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5067\/ATLAS\/ATL08.004","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T22:44:53.000Z","subj_id":"https:\/\/doi.org\/10.1109\/icares56907.2022.9993523","id":"4728e0c0-0c98-4468-bc83-8b1017bbc4c5","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-4170bb51-e284-489d-a36d-6c93b833cf94","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1109\/icares56907.2022.9993523","url":"https:\/\/doi.org\/10.1109\/icares56907.2022.9993523","work_type_id":"proceedings-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5067\/ATLAS\/ATL08.004","url":"https:\/\/doi.org\/10.5067\/ATLAS\/ATL08.004","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T05:49:25Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5441\/002","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T20:14:19.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3152123","id":"52f24633-f866-4f74-88e1-6138c1f20be0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-975633a1-7b42-4ed1-84bc-d556789922a1","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3152123","url":"https:\/\/doi.org\/10.1145\/3152123","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5441\/002","url":"https:\/\/doi.org\/10.5441\/002","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T05:51:00Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5441\/002\/edbt.2016.19","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T20:14:19.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3152123","id":"0a4a1efa-6514-4174-b4e8-ec435a5e74e8","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-975633a1-7b42-4ed1-84bc-d556789922a1","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3152123","url":"https:\/\/doi.org\/10.1145\/3152123","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5441\/002\/edbt.2016.19","url":"http:\/\/dx.doi.org\/10.5441\/002\/edbt.2016.19","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T05:51:00Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e496672006-002","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T16:10:49.000Z","subj_id":"https:\/\/doi.org\/10.4049\/jimmunol.164.12.6461","id":"34885840-6532-4b44-bb51-68ccd1a6a0e3","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-bd94689c-429e-4324-88c2-ba0d28d71b46","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.4049\/jimmunol.164.12.6461","url":"https:\/\/doi.org\/10.4049\/jimmunol.164.12.6461","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e496672006-002","url":"https:\/\/doi.org\/10.1037\/e496672006-002","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T05:55:21Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.31905\/D808B830","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T10:11:39.000Z","subj_id":"https:\/\/doi.org\/10.1785\/0220210024","id":"60c27207-30b9-4f8f-b8ee-a02373001096","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-da23413e-c0ee-4ee2-a5fb-9747f850fe95","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1785\/0220210024","url":"https:\/\/doi.org\/10.1785\/0220210024","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.31905\/D808B830","url":"https:\/\/doi.org\/10.31905\/D808B830","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T05:56:23Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.31905\/EL3FQQ40","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T10:11:39.000Z","subj_id":"https:\/\/doi.org\/10.1785\/0220210024","id":"f14247d2-7a94-4511-a31d-33f6e6eb6c69","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-da23413e-c0ee-4ee2-a5fb-9747f850fe95","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1785\/0220210024","url":"https:\/\/doi.org\/10.1785\/0220210024","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.31905\/EL3FQQ40","url":"https:\/\/doi.org\/10.31905\/EL3FQQ40","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T05:56:24Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e578262012-008","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T19:14:54.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3181671","id":"ea0395c5-9570-4aa1-82ee-67685bd137a3","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-9fb676d8-a372-454b-9828-59c604b27a92","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3181671","url":"https:\/\/doi.org\/10.1145\/3181671","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e578262012-008","url":"https:\/\/doi.org\/10.1037\/e578262012-008","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T06:12:30Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.24381\/CDS.68D2BB30","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T22:44:47.000Z","subj_id":"https:\/\/doi.org\/10.1109\/icares56907.2022.9993609","id":"34056bf2-c143-4822-80a8-3fa091fcdea9","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-19b2bc7c-2333-4e32-a306-1c973c3804bf","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1109\/icares56907.2022.9993609","url":"https:\/\/doi.org\/10.1109\/icares56907.2022.9993609","work_type_id":"proceedings-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.24381\/CDS.68D2BB30","url":"https:\/\/doi.org\/10.24381\/CDS.68D2BB30","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T06:23:10Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t35374-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:24:29.000Z","subj_id":"https:\/\/doi.org\/10.3224\/dms.v14i1.14","id":"423c82cc-5ec5-4116-a1c0-255e3a829695","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-7c3213f7-76b3-4e82-a4b8-8644e5981206","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3224\/dms.v14i1.14","url":"https:\/\/doi.org\/10.3224\/dms.v14i1.14","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t35374-000","url":"https:\/\/doi.org\/10.1037\/t35374-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T06:25:41Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t35374-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:24:29.000Z","subj_id":"https:\/\/doi.org\/10.3224\/dms.v14i1.14","id":"f78b0092-379f-473c-9b35-ba1b6551d773","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-7c3213f7-76b3-4e82-a4b8-8644e5981206","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3224\/dms.v14i1.14","url":"https:\/\/doi.org\/10.3224\/dms.v14i1.14","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t35374-000","url":"https:\/\/doi.org\/10.1037\/t35374-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T06:29:04Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:35:52 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?cursor=f78b0092-379f-473c-9b35-ba1b6551d773&from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '23652' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:14 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"8585f39e-7179-4be4-9a18-c630c49b0843","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4231\/D3T14TP1T","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T07:10:54.000Z","subj_id":"https:\/\/doi.org\/10.1785\/0120200353","id":"b90b7343-bd8a-49e7-b7b3-e86b1a996e7d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-ad66bb23-cf72-49ef-b3ad-77221d2dda1f","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1785\/0120200353","url":"https:\/\/doi.org\/10.1785\/0120200353","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4231\/D3T14TP1T","url":"https:\/\/doi.org\/10.4231\/D3T14TP1T","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T06:34:30Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1126\/science.aah7334","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T13:14:20.000Z","subj_id":"https:\/\/doi.org\/10.1002\/eqe.3789","id":"b08a7f25-d792-4365-af80-d13a6dc8b72a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-fb637f0f-838b-47ad-ad49-6c2c6ce52074","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1002\/eqe.3789","url":"https:\/\/doi.org\/10.1002\/eqe.3789","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1126\/science.aah7334","url":"https:\/\/doi.org\/10.1126\/science.aah7334","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T06:40:34Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.15156\/BIO\/786385","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T12:13:51.000Z","subj_id":"https:\/\/doi.org\/10.1038\/s41385-021-00429-z","id":"4f525f47-a5da-436c-aa3f-7f96105aca47","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-aa4fd21b-a6d2-4655-8990-751bad7691c2","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1038\/s41385-021-00429-z","url":"https:\/\/doi.org\/10.1038\/s41385-021-00429-z","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.15156\/BIO\/786385","url":"https:\/\/doi.org\/10.15156\/BIO\/786385","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T06:48:29Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t00742-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T10:18:10.000Z","subj_id":"https:\/\/doi.org\/10.1111\/j.1600-6143.2007.01878.x","id":"8606eeeb-b7c3-4285-a0bc-1ca896bd4588","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-94ed6827-153d-41d0-bd62-99d75c88bc4c","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1111\/j.1600-6143.2007.01878.x","url":"https:\/\/doi.org\/10.1111\/j.1600-6143.2007.01878.x","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t00742-000","url":"https:\/\/doi.org\/10.1037\/t00742-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T07:00:08Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e409022004-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T08:41:08.000Z","subj_id":"https:\/\/doi.org\/10.1002\/14651858.cd004025.pub4","id":"926e22cb-692e-4919-81cc-09c5edf234d0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-6259c2bd-210e-4275-a165-e4286c185ce8","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1002\/14651858.cd004025.pub4","url":"https:\/\/doi.org\/10.1002\/14651858.cd004025.pub4","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e409022004-001","url":"https:\/\/doi.org\/10.1037\/e409022004-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T07:03:45Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5061\/dryad.ps0f0","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T13:11:54.000Z","subj_id":"https:\/\/doi.org\/10.3389\/fevo.2021.632449","id":"43d030aa-ce53-45b1-a04e-f629c764d45c","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-032869af-2b1c-4bbc-9400-e07553f70038","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3389\/fevo.2021.632449","url":"https:\/\/doi.org\/10.3389\/fevo.2021.632449","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5061\/dryad.ps0f0","url":"https:\/\/doi.org\/10.5061\/dryad.ps0f0","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T07:04:10Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t27734-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T22:50:16.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3130800.3130830","id":"64ca255c-c759-4bb8-9077-fea644e0face","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-a560db1f-5484-4128-a4aa-1f921944d966","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3130800.3130830","url":"https:\/\/doi.org\/10.1145\/3130800.3130830","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t27734-000","url":"https:\/\/doi.org\/10.1037\/t27734-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T07:11:01Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5061\/dryad.41ns1rnj2","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T23:43:44.000Z","subj_id":"https:\/\/doi.org\/10.1111\/ecog.06470","id":"181f5b03-b38e-462e-9993-bec22452ed30","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-ae93442b-528e-4fee-b8dd-46ea8918b79c","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1111\/ecog.06470","url":"https:\/\/doi.org\/10.1111\/ecog.06470","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5061\/dryad.41ns1rnj2","url":"https:\/\/doi.org\/10.5061\/dryad.41ns1rnj2","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T07:22:13Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.7910\/DVN\/28075","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T16:44:50.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.asieco.2022.101578","id":"15862f45-f3e1-4408-8665-3076f3900cb0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-a0800e34-1149-4ea1-b1f8-dc44ec678747","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.asieco.2022.101578","url":"https:\/\/doi.org\/10.1016\/j.asieco.2022.101578","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.7910\/DVN\/28075","url":"https:\/\/doi.org\/10.7910\/DVN\/28075\u3009,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T07:26:15Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.5720317","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T10:13:36.000Z","subj_id":"https:\/\/doi.org\/10.1049\/ipr2.12729","id":"227e0da0-be1d-412d-8df4-115066364ee4","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-2c28acf1-0b13-459a-94b1-846eca681462","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1049\/ipr2.12729","url":"https:\/\/doi.org\/10.1049\/ipr2.12729","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.5720317","url":"https:\/\/doi.org\/10.5281\/zenodo.5720317","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T07:41:56Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5067\/D7GK8F5J8M8R","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T05:43:15.000Z","subj_id":"https:\/\/doi.org\/10.5575\/geosoc.2022.0041","id":"d71fa210-9c11-4475-8ccc-0fa6dfb5cf01","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-f6609c6d-e4ca-4a71-9abc-02612be44315","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5575\/geosoc.2022.0041","url":"https:\/\/doi.org\/10.5575\/geosoc.2022.0041","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5067\/D7GK8F5J8M8R","url":"https:\/\/doi.org\/10.5067\/D7GK8F5J8M8R","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T07:52:28Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1163\/2210-7975_hrd-9935-2015005","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T16:10:55.000Z","subj_id":"https:\/\/doi.org\/10.3224\/gwp.v70i2.07","id":"73b905b8-0077-4f3a-b111-c017dca0bf7c","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-27a2fb8f-9b77-4369-9b75-d67071d044ed","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3224\/gwp.v70i2.07","url":"https:\/\/doi.org\/10.3224\/gwp.v70i2.07","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1163\/2210-7975_hrd-9935-2015005","url":"https:\/\/doi.org\/10.1163\/2210-7975_hrd-9935-2015005","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T07:56:20Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1163\/1874-6772_seg_a9_380","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T04:40:41.000Z","subj_id":"https:\/\/doi.org\/10.2139\/ssrn.3859631","id":"3eea41d3-b642-4e28-8c3a-860192cb6a64","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-c8a6b2de-409b-485e-86e3-2b41705849eb","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.2139\/ssrn.3859631","url":"https:\/\/doi.org\/10.2139\/ssrn.3859631","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1163\/1874-6772_seg_a9_380","url":"https:\/\/doi.org\/10.1163\/1874-6772_seg_a9_380","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T07:57:02Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5061\/dryad.18931zcx3","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T09:11:58.000Z","subj_id":"https:\/\/doi.org\/10.1098\/rspb.2021.0684","id":"c24b156f-f7c1-415e-80cc-568e13c2baaf","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-d51279cf-c2a1-4ad5-85cd-c5dc11bc66fe","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1098\/rspb.2021.0684","url":"https:\/\/doi.org\/10.1098\/rspb.2021.0684","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5061\/dryad.18931zcx3","url":"https:\/\/doi.org\/10.5061\/dryad.18931zcx3","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T08:09:17Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e495702006-008","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T20:15:05.000Z","subj_id":"https:\/\/doi.org\/10.4049\/jimmunol.169.7.3630","id":"1e2c18c2-7234-48e7-8a35-0cf089bb25f0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-4b744a00-5357-40f9-ae42-a89ce378308d","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.4049\/jimmunol.169.7.3630","url":"https:\/\/doi.org\/10.4049\/jimmunol.169.7.3630","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e495702006-008","url":"https:\/\/doi.org\/10.1037\/e495702006-008","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T08:09:29Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1594\/PANGAEA.828636","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:13:51.000Z","subj_id":"https:\/\/doi.org\/10.21203\/rs.3.rs-2234202\/v1","id":"04e4b1b0-aa0a-4c8f-b4b1-c03df66cf1be","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-9cfe3120-d03d-4e5e-b7b8-94e529906d0d","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.21203\/rs.3.rs-2234202\/v1","url":"https:\/\/doi.org\/10.21203\/rs.3.rs-2234202\/v1","work_type_id":"posted-content"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1594\/PANGAEA.828636","url":"https:\/\/doi.org\/10.1594\/PANGAEA.828636","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T08:15:40Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t27734-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T21:09:58.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3130800.3130813","id":"dfec9893-8025-4471-b72c-30455a2d3182","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-fbb3f259-c398-4528-a2db-6b73a9de340b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3130800.3130813","url":"https:\/\/doi.org\/10.1145\/3130800.3130813","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t27734-000","url":"https:\/\/doi.org\/10.1037\/t27734-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T08:18:02Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t47439-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T05:45:24.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s10567-021-00356-2","id":"ee264ccb-f85b-480c-ae21-f169ae7d9181","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-1c45ecb3-8cdf-420d-b41e-224018defa1a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s10567-021-00356-2","url":"https:\/\/doi.org\/10.1007\/s10567-021-00356-2","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t47439-000","url":"https:\/\/doi.org\/10.1037\/t47439-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T08:21:48Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.7910\/DVN\/VWGF5Q","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T09:11:59.000Z","subj_id":"https:\/\/doi.org\/10.1177\/00027642211021627","id":"3d57c513-d778-4d25-9115-590a4ff7377c","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-99b057a2-f8cc-4afd-ba73-616f49e2bb18","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1177\/00027642211021627","url":"https:\/\/doi.org\/10.1177\/00027642211021627","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.7910\/DVN\/VWGF5Q","url":"https:\/\/doi.org\/10.7910\/DVN\/VWGF5Q","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T08:28:12Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t00393-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:07:25.000Z","subj_id":"https:\/\/doi.org\/10.1108\/jocm-04-2022-0122","id":"7dac9de5-23d5-424b-b563-8f9efcc0a16e","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-53b496d2-f569-4aa6-8f42-9f004b36b3ac","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1108\/jocm-04-2022-0122","url":"https:\/\/doi.org\/10.1108\/jocm-04-2022-0122","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t00393-000","url":"https:\/\/doi.org\/10.1037\/t00393-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T08:29:41Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.ovid-fasti.1931","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:15:06.000Z","subj_id":"https:\/\/doi.org\/10.1515\/phil-2020-0127","id":"2d9b2ac6-8433-4d26-9468-007c17477ff2","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-7fd5649b-234a-4db0-8b44-abb51038fb84","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1515\/phil-2020-0127","url":"https:\/\/doi.org\/10.1515\/phil-2020-0127","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.ovid-fasti.1931","url":"https:\/\/doi.org\/10.4159\/DLCL.ovid-fasti.1931","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T08:33:27Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.18170\/DVN\/NJIVQB","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T07:42:19.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s11356-022-24748-1","id":"8a81e685-3e04-475c-9db8-9dbee45eb54f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-7b430617-cfc2-4db6-934b-eae6d5f78a36","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s11356-022-24748-1","url":"https:\/\/doi.org\/10.1007\/s11356-022-24748-1","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.18170\/DVN\/NJIVQB","url":"https:\/\/doi.org\/10.18170\/DVN\/NJIVQB","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T08:35:55Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1163\/2210-7975_hrd-0490-0719","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T23:42:37.000Z","subj_id":"https:\/\/doi.org\/10.5585\/rtj.v10i1.10841","id":"3bae912d-6cf7-4a3e-9a13-cf3812f596f0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-6ea39379-081a-437e-94b5-d57b97100271","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5585\/rtj.v10i1.10841","url":"https:\/\/doi.org\/10.5585\/rtj.v10i1.10841","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1163\/2210-7975_hrd-0490-0719","url":"https:\/\/doi.org\/10.1163\/2210-7975_hrd-0490-0719","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T08:40:18Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.14711\/spcol\/b807385","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T13:44:08.000Z","subj_id":"https:\/\/doi.org\/10.34142\/2312-1548.2021.57.04","id":"c646a838-61d4-4bab-af4b-c5f8baf524be","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-6d99901a-5d05-49ca-ae6b-1a438e54594b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.34142\/2312-1548.2021.57.04","url":"https:\/\/doi.org\/10.34142\/2312-1548.2021.57.04","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.14711\/spcol\/b807385","url":"https:\/\/doi.org\/10.14711\/spcol\/b807385","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T08:42:16Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.18434\/T4T88K","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T08:41:59.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.tsf.2021.138692","id":"8585f39e-7179-4be4-9a18-c630c49b0843","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-106d76ba-0ed2-4087-b0fd-02324d3f0383","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.tsf.2021.138692","url":"https:\/\/doi.org\/10.1016\/j.tsf.2021.138692","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.18434\/T4T88K","url":"https:\/\/doi.org\/10.18434\/T4T88K,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T08:58:12Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:35:53 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?cursor=8585f39e-7179-4be4-9a18-c630c49b0843&from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '23641' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:15 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"5d1634fd-e64a-4322-9f39-be69e62e7e17","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t23568-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T05:42:41.000Z","subj_id":"https:\/\/doi.org\/10.29121\/granthaalayah.v10.i12.2022.4936","id":"63f015cc-36ba-4725-ae9c-44008240e104","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-64016e5d-acd5-4185-b25b-cd3db166a792","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.29121\/granthaalayah.v10.i12.2022.4936","url":"https:\/\/doi.org\/10.29121\/granthaalayah.v10.i12.2022.4936","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t23568-000","url":"https:\/\/doi.org\/10.1037\/t23568-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T09:04:07Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.48670\/moi-00098","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T20:16:17.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.marpol.2022.105467","id":"4b400b32-adb7-406f-901e-c53836e2cca9","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-4f1f5bda-4a54-4bb9-bd66-28fde75f83cf","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.marpol.2022.105467","url":"https:\/\/doi.org\/10.1016\/j.marpol.2022.105467","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.48670\/moi-00098","url":"https:\/\/doi.org\/10.48670\/moi-00098","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T09:12:51Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.24894\/HWPh.1818","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T14:11:36.000Z","subj_id":"https:\/\/doi.org\/10.5209\/ashf.67209","id":"7cb3bdc4-7a09-40aa-b94e-d8b9091bb933","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-a23e9067-1f2a-4d85-b0b0-0bc8fc6f0f94","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5209\/ashf.67209","url":"https:\/\/doi.org\/10.5209\/ashf.67209","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.24894\/HWPh.1818","url":"https:\/\/doi.org\/10.24894\/HWPh.1818","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T09:17:44Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.2305\/IUCN.UK.2020-3.RLTS.T154071884A154074759.en","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T16:10:34.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s12225-021-09928-5","id":"846e9b05-085f-46bb-9e11-61da72095ff2","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-586002c9-e2bc-41c0-a05c-517e728f9d09","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s12225-021-09928-5","url":"https:\/\/doi.org\/10.1007\/s12225-021-09928-5","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.2305\/IUCN.UK.2020-3.RLTS.T154071884A154074759.en","url":"https:\/\/doi.org\/10.2305\/IUCN.UK.2020-3.RLTS.T154071884A154074759.en","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T09:20:10Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.18462\/iir.icr.2019.0832","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T19:42:00.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.enconman.2022.116623","id":"527aeb5d-906f-4bc0-b2da-55a43ac4257d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-98333c90-ea96-463e-b941-4de34c4d6084","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.enconman.2022.116623","url":"https:\/\/doi.org\/10.1016\/j.enconman.2022.116623","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.18462\/iir.icr.2019.0832","url":"https:\/\/doi.org\/10.18462\/iir.icr.2019.0832","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T09:22:30Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t61546-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T16:40:48.000Z","subj_id":"https:\/\/doi.org\/10.35675\/befdergi.810944","id":"df1ad89c-6fae-4e5a-835d-15cb5337f835","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-313e2b5a-8c80-40b2-bfc4-eba2d6a5f185","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.35675\/befdergi.810944","url":"https:\/\/doi.org\/10.35675\/befdergi.810944","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t61546-000","url":"https:\/\/doi.org\/10.1037\/t61546-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T09:25:31Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.25318\/1710001501-eng","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T19:13:28.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.ijcha.2021.100827","id":"a0d3963a-4ff9-4434-9697-db6680d1c117","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-bf49ab7a-83d3-4611-9d5c-5f680c217d0d","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.ijcha.2021.100827","url":"https:\/\/doi.org\/10.1016\/j.ijcha.2021.100827","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.25318\/1710001501-eng","url":"https:\/\/doi.org\/10.25318\/1710001501-eng","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T09:35:11Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.4817295","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T18:41:10.000Z","subj_id":"https:\/\/doi.org\/10.1515\/ling-2021-0118","id":"5fb9d2ee-b470-4290-9a50-1c425c809e3c","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-5e70ccb4-18f6-4336-9040-e5054b9ecb40","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1515\/ling-2021-0118","url":"https:\/\/doi.org\/10.1515\/ling-2021-0118","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.4817295","url":"https:\/\/doi.org\/10.5281\/zenodo.4817295.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T09:36:23Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e572172013-055","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T19:14:54.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3181671","id":"8207f5e0-1e8e-48fa-9d1f-f042c755ec5c","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-313c5424-1b0b-4d28-aa7b-32093146123e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3181671","url":"https:\/\/doi.org\/10.1145\/3181671","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e572172013-055","url":"https:\/\/doi.org\/10.1037\/e572172013-055","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T09:38:32Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e306662005-004","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T16:44:52.000Z","subj_id":"https:\/\/doi.org\/10.2196\/43629","id":"d7055997-da5e-4f1f-aa77-514ffb6e981c","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-f3e71707-d4c6-4145-a89f-bf2e3f9086d0","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.2196\/43629","url":"https:\/\/doi.org\/10.2196\/43629","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e306662005-004","url":"https:\/\/doi.org\/10.1037\/e306662005-004","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T09:38:44Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e496332006-010","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:03:31.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.steroids.2021.108901","id":"01908a9b-1810-4f13-98dc-3d106cda999f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-69a00989-8009-45b4-90d4-5857edf09944","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.steroids.2021.108901","url":"https:\/\/doi.org\/10.1016\/j.steroids.2021.108901","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e496332006-010","url":"https:\/\/doi.org\/10.1037\/e496332006-010","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T09:38:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t03113-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:40:12.000Z","subj_id":"https:\/\/doi.org\/10.1111\/inm.12895","id":"2f99a07f-ed35-4dfa-aca6-4334382c65ae","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-4673d0d3-4661-4e41-8dd5-cdb101bbcfea","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1111\/inm.12895","url":"https:\/\/doi.org\/10.1111\/inm.12895","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t03113-000","url":"https:\/\/doi.org\/10.1037\/t03113-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T09:39:10Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t59053-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T08:41:50.000Z","subj_id":"https:\/\/doi.org\/10.1186\/s12909-021-02708-6","id":"5d5e79a4-84a7-44ca-adef-8d55e743e078","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-04aa71b1-32aa-4846-a38b-33c34f88f9c9","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1186\/s12909-021-02708-6","url":"https:\/\/doi.org\/10.1186\/s12909-021-02708-6","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t59053-000","url":"https:\/\/doi.org\/10.1037\/t59053-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T09:39:37Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.3611246","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T08:42:10.000Z","subj_id":"https:\/\/doi.org\/10.4000\/alsic.5900","id":"79b11170-c5a0-46db-9ce6-aa11f462b636","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-b3928299-b300-49f8-8422-3d1a3f5711a2","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.4000\/alsic.5900","url":"https:\/\/doi.org\/10.4000\/alsic.5900","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.3611246","url":"https:\/\/doi.org\/10.5281\/zenodo.3611246","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T09:47:30Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.17632\/btmrycjpbj.1","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T18:12:47.000Z","subj_id":"https:\/\/doi.org\/10.1109\/icus55513.2022.9986996","id":"4e3138ad-9777-424e-9cec-26c002cf3b2a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-c4428bd6-675d-4938-a992-0f68e726ce92","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1109\/icus55513.2022.9986996","url":"https:\/\/doi.org\/10.1109\/icus55513.2022.9986996","work_type_id":"proceedings-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.17632\/btmrycjpbj.1","url":"https:\/\/doi.org\/10.17632\/btmrycjpbj.1","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T09:55:07Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e623972009-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T07:10:33.000Z","subj_id":"https:\/\/doi.org\/10.1111\/tri.13947","id":"1c34f0ca-ea56-4e82-b120-34e5bdac75e3","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-ebaef2fe-22d8-4296-8076-0f5576918cb4","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1111\/tri.13947","url":"https:\/\/doi.org\/10.1111\/tri.13947","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e623972009-001","url":"https:\/\/doi.org\/10.1037\/e623972009-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T10:06:28Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5067\/MODIS\/MOD17A3HGF.006","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:00:13.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.techfore.2021.120722","id":"a5f9fef6-6749-470e-bb78-8dd5107b6336","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-c88dd5fa-c86c-43aa-830a-f95af93b323d","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.techfore.2021.120722","url":"https:\/\/doi.org\/10.1016\/j.techfore.2021.120722","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5067\/MODIS\/MOD17A3HGF.006","url":"https:\/\/doi.org\/10.5067\/MODIS\/MOD17A3HGF.006","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T10:11:25Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e577502012-008","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T21:12:46.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3134702","id":"27ebc78b-18cb-4819-9dd0-bfdbf0f7e184","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-ae31dd16-8d88-489e-9cb9-ac9b6ef67597","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3134702","url":"https:\/\/doi.org\/10.1145\/3134702","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e577502012-008","url":"https:\/\/doi.org\/10.1037\/e577502012-008","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T10:11:57Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5441\/002\/edbt.2016.50","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T08:41:15.000Z","subj_id":"https:\/\/doi.org\/10.1145\/2990192","id":"ebc08c06-0dfc-429c-93c8-90942db3bd46","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-7126a928-80e0-4b4d-ac69-68c4e1763403","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/2990192","url":"https:\/\/doi.org\/10.1145\/2990192","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5441\/002\/edbt.2016.50","url":"http:\/\/dx.doi.org\/10.5441\/002\/edbt.2016.50","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T10:21:21Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5441\/002","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T08:41:15.000Z","subj_id":"https:\/\/doi.org\/10.1145\/2990192","id":"540dca56-984f-40f3-91fc-ca6b255bd141","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-7126a928-80e0-4b4d-ac69-68c4e1763403","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/2990192","url":"https:\/\/doi.org\/10.1145\/2990192","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5441\/002","url":"https:\/\/doi.org\/10.5441\/002","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T10:21:21Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e471672008-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T21:40:54.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3140587.3062377","id":"8306a998-6a1a-41c8-8317-be7eabce165f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-a1857d18-a3fb-402d-9b97-e61afca95e9c","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3140587.3062377","url":"https:\/\/doi.org\/10.1145\/3140587.3062377","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e471672008-001","url":"https:\/\/doi.org\/10.1037\/e471672008-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T10:21:54Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e496672006-002","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T17:19:48.000Z","subj_id":"https:\/\/doi.org\/10.4049\/jimmunol.165.1.373","id":"2484ce86-c054-4553-b60f-8c3191a99178","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-57ccb2c9-0a62-46b0-87c5-dcc6ab72d0db","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.4049\/jimmunol.165.1.373","url":"https:\/\/doi.org\/10.4049\/jimmunol.165.1.373","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e496672006-002","url":"https:\/\/doi.org\/10.1037\/e496672006-002","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T10:23:29Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e573842014-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:23:47.000Z","subj_id":"https:\/\/doi.org\/10.3390\/ijerph20010056","id":"03cf4045-d054-47d1-b0cd-be97409c2eda","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-9f9447e8-bb43-4981-a6f5-bb30bfe5499b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3390\/ijerph20010056","url":"https:\/\/doi.org\/10.3390\/ijerph20010056","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e573842014-001","url":"https:\/\/doi.org\/10.1037\/e573842014-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T10:32:13Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t27734-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T21:17:10.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3072959.3073664","id":"5696c2a5-f27e-46b6-94f8-63061b9ee3af","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-e6f98a23-9443-4935-8388-fe4190843ddf","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3072959.3073664","url":"https:\/\/doi.org\/10.1145\/3072959.3073664","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t27734-000","url":"https:\/\/doi.org\/10.1037\/t27734-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T10:34:04Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1285\/i20356609v13i1p01","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:16:27.000Z","subj_id":"https:\/\/doi.org\/10.23858\/ethp.2022.43.3045","id":"5d1634fd-e64a-4322-9f39-be69e62e7e17","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-1a36e655-03b6-4b56-9dcd-106bfcc4f586","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.23858\/ethp.2022.43.3045","url":"https:\/\/doi.org\/10.23858\/ethp.2022.43.3045","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1285\/i20356609v13i1p01","url":"https:\/\/doi.org\/10.1285\/i20356609v13i1p01.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T10:40:43Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:35:54 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?cursor=5d1634fd-e64a-4322-9f39-be69e62e7e17&from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '23853' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:16 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"4787737e-ec5a-4710-9c55-cbd84145ef74","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e539692009-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:09:06.000Z","subj_id":"https:\/\/doi.org\/10.1108\/ejm-09-2019-0730","id":"196f9d9a-dee6-49da-b2a0-4c713512a5c5","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-cfece67e-1bea-48db-b755-92c6faed8bfb","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1108\/ejm-09-2019-0730","url":"https:\/\/doi.org\/10.1108\/ejm-09-2019-0730","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e539692009-001","url":"https:\/\/doi.org\/10.1037\/e539692009-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T10:53:18Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4232\/1.12925","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T13:11:53.000Z","subj_id":"https:\/\/doi.org\/10.1080\/13636820.2021.1931946","id":"05a1b492-67c0-441f-ae51-601d0c242910","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-f3f77964-097b-4529-b57a-0b6501cddb3e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/13636820.2021.1931946","url":"https:\/\/doi.org\/10.1080\/13636820.2021.1931946","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4232\/1.12925","url":"https:\/\/doi.org\/10.4232\/1.12925","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T10:58:18Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.17632\/6d25rpvwtb.1","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T05:41:26.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.mex.2022.101981","id":"4621812e-1332-4a18-85ce-505146b7c87f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-4785cf63-7753-410e-b4aa-a6f13f404243","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.mex.2022.101981","url":"https:\/\/doi.org\/10.1016\/j.mex.2022.101981","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.17632\/6d25rpvwtb.1","url":"https:\/\/doi.org\/10.17632\/6d25rpvwtb.1","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T11:04:32Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.3410\/f.739524179.793585051","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T19:13:31.000Z","subj_id":"https:\/\/doi.org\/10.1101\/2021.06.18.448932","id":"667207a6-436e-4a31-8de7-9ca2deaa624b","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-6eb84a95-328f-4cc5-a8ce-0791756b0e02","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1101\/2021.06.18.448932","url":"https:\/\/doi.org\/10.1101\/2021.06.18.448932","work_type_id":"posted-content"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.3410\/f.739524179.793585051","url":"https:\/\/doi.org\/10.3410\/f.739524179.793585051","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T11:08:37Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t25485-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T21:42:40.000Z","subj_id":"https:\/\/doi.org\/10.1186\/s12913-021-06563-5","id":"21454324-2e87-46c0-b433-fb1910d98df7","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-fea80a0c-83bc-4da3-a591-241ff4183283","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1186\/s12913-021-06563-5","url":"https:\/\/doi.org\/10.1186\/s12913-021-06563-5","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t25485-000","url":"https:\/\/doi.org\/10.1037\/t25485-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T11:13:06Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e522022006-016","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T17:11:56.000Z","subj_id":"https:\/\/doi.org\/10.17721\/bsp.2020.2(12).20","id":"bce94ebc-7f60-4fb0-941e-204f38c1260a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-c9983df9-832a-4b51-b2d0-5ddc989c2a5d","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17721\/bsp.2020.2(12).20","url":"https:\/\/doi.org\/10.17721\/bsp.2020.2(12).20","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e522022006-016","url":"https:\/\/doi.org\/10.1037\/e522022006-016","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T11:16:41Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.18434\/T4D303","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T12:41:08.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.ijggc.2021.103378","id":"dad1bb26-8406-4c61-9422-38a476e962ce","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-c8eb6133-e14e-46e3-adf4-2cd4d563ac5a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.ijggc.2021.103378","url":"https:\/\/doi.org\/10.1016\/j.ijggc.2021.103378","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.18434\/T4D303","url":"https:\/\/doi.org\/10.18434\/T4D303","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T11:20:00Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.17632\/jxpfjc64kr.1","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T23:14:40.000Z","subj_id":"https:\/\/doi.org\/10.1109\/nana56854.2022.00038","id":"90876c57-ef95-43cf-9eea-06ea8d3da618","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-52d98ea9-369e-4c60-a1ce-00477c2f8c14","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1109\/nana56854.2022.00038","url":"https:\/\/doi.org\/10.1109\/nana56854.2022.00038","work_type_id":"proceedings-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.17632\/jxpfjc64kr.1","url":"https:\/\/doi.org\/10.17632\/jxpfjc64kr.1","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T11:35:52Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t00742-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T04:43:51.000Z","subj_id":"https:\/\/doi.org\/10.14389\/jsad.14.1_29","id":"fbe0ba69-014c-4814-a196-cfde0f0c4046","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-e1e57786-5ae2-4c4b-b34f-0f158875d0ec","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.14389\/jsad.14.1_29","url":"https:\/\/doi.org\/10.14389\/jsad.14.1_29","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t00742-000","url":"https:\/\/doi.org\/10.1037\/t00742-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T11:49:19Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t75069-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T04:43:51.000Z","subj_id":"https:\/\/doi.org\/10.14389\/jsad.14.1_29","id":"24825327-6fd8-45c8-b2d4-044b09286a4b","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-e1e57786-5ae2-4c4b-b34f-0f158875d0ec","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.14389\/jsad.14.1_29","url":"https:\/\/doi.org\/10.14389\/jsad.14.1_29","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t75069-000","url":"https:\/\/doi.org\/10.1037\/t75069-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T11:49:19Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t48947-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T19:15:19.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3231938","id":"9270d938-65a2-40d7-a294-0c926a79196a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-0988d3d4-4c23-4b1c-b210-454aa23587de","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3231938","url":"https:\/\/doi.org\/10.1145\/3231938","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t48947-000","url":"https:\/\/doi.org\/10.1037\/t48947-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T12:24:52Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5285\/836f016a-33be-6ddc-e053-6c86abc0788e","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T05:43:15.000Z","subj_id":"https:\/\/doi.org\/10.5575\/geosoc.2022.0041","id":"fcfb6c77-f2cb-4d63-933c-c07a13d60c24","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-d2098ee7-8278-4ed0-a384-70f02808da62","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5575\/geosoc.2022.0041","url":"https:\/\/doi.org\/10.5575\/geosoc.2022.0041","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5285\/836f016a-33be-6ddc-e053-6c86abc0788e","url":"https:\/\/doi.org\/10.5285\/836f016a-33be-6ddc-e053-6c86abc0788e","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T12:28:55Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t15099-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T05:45:24.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s10567-021-00356-2","id":"55596d5d-e475-4e1b-8d37-e3bdecb4151e","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-5f44ce8b-f491-45c0-91e6-3192fad1fec2","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s10567-021-00356-2","url":"https:\/\/doi.org\/10.1007\/s10567-021-00356-2","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t15099-000","url":"https:\/\/doi.org\/10.1037\/t15099-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T12:30:01Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.18434\/T4D303","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T16:43:33.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.apcata.2022.119014","id":"f1966fc2-68a0-4b3a-b27f-9bbbb72dd24f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-ae367209-43af-4f30-b545-caa6e2c776ed","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.apcata.2022.119014","url":"https:\/\/doi.org\/10.1016\/j.apcata.2022.119014","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.18434\/T4D303","url":"https:\/\/doi.org\/10.18434\/T4D303\u3009.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T12:33:24Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.7910\/DVN\/ZABGNF","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:17:52.000Z","subj_id":"https:\/\/doi.org\/10.3390\/geosciences11060254","id":"d477da54-b611-4b44-9b26-ed53da20d5f7","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-68d3edaa-795c-4877-a914-53da8be54bce","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3390\/geosciences11060254","url":"https:\/\/doi.org\/10.3390\/geosciences11060254","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.7910\/DVN\/ZABGNF","url":"https:\/\/dataverse.harvard.edu\/dataset.xhtml?persistentId=doi:10.7910\/DVN\/ZABGNF","method":"url-text","verification":"confirmed-domain-prefix","work_type_id":"Dataset"},"timestamp":"2023-01-01T12:34:31Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5061\/dryad.cnp5hqc47","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T08:15:06.000Z","subj_id":"https:\/\/doi.org\/10.1098\/rsbl.2021.0097","id":"287d1b80-1935-4d57-9688-24db67122381","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-e6371c69-6556-4a2b-b379-adff9fa1cd40","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1098\/rsbl.2021.0097","url":"https:\/\/doi.org\/10.1098\/rsbl.2021.0097","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5061\/dryad.cnp5hqc47","url":"https:\/\/doi.org\/10.5061\/dryad.cnp5hqc47","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T12:55:16Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1163\/2210-7975_hrd-9977-2015009","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T10:44:59.000Z","subj_id":"https:\/\/doi.org\/10.34142\/2312-1548.2021.56.02","id":"b140eb19-36f6-4c97-9644-ca91f8a96ffb","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-1efb2617-1e19-4cfb-b584-d734895984a3","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.34142\/2312-1548.2021.56.02","url":"https:\/\/doi.org\/10.34142\/2312-1548.2021.56.02","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1163\/2210-7975_hrd-9977-2015009","url":"https:\/\/doi.org\/10.1163\/2210-7975_hrd-9977-2015009","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T13:06:01Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.24381\/CDS.68D2BB30","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T10:45:00.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.jag.2022.103176","id":"5d543271-c1d0-472d-a15a-6e3ab7cf2837","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-f27902ee-c2df-4cf3-bdb7-c48cabe711c2","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.jag.2022.103176","url":"https:\/\/doi.org\/10.1016\/j.jag.2022.103176","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.24381\/CDS.68D2BB30","url":"https:\/\/doi.org\/10.24381\/CDS.68D2BB30.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T13:12:12Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5067\/MODIS\/MOD13C2.006","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T10:45:00.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.jag.2022.103176","id":"1f3cd946-5c54-4c19-91ed-cba8022fe50b","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-f27902ee-c2df-4cf3-bdb7-c48cabe711c2","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.jag.2022.103176","url":"https:\/\/doi.org\/10.1016\/j.jag.2022.103176","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5067\/MODIS\/MOD13C2.006","url":"https:\/\/doi.org\/10.5067\/MODIS\/MOD13C2.006.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T13:12:12Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t07980-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T20:41:24.000Z","subj_id":"https:\/\/doi.org\/10.1589\/rika.36.457","id":"6e7cce9b-a251-4add-90aa-9e485e1b5ed6","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-6fac1d2b-7298-41bc-9f7f-172430a30538","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1589\/rika.36.457","url":"https:\/\/doi.org\/10.1589\/rika.36.457","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t07980-000","url":"https:\/\/doi.org\/10.1037\/t07980-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T13:17:27Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.6084\/m9.figshare.1603424","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T07:10:19.000Z","subj_id":"https:\/\/doi.org\/10.1145\/2988239","id":"1d5a53be-6d1c-4b05-8579-16d78fe3a57c","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-774dbe7a-7c2e-4ffa-8505-1f56ea5e7660","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/2988239","url":"https:\/\/doi.org\/10.1145\/2988239","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.6084\/m9.figshare.1603424","url":"http:\/\/dx.doi.org\/10.6084\/m9.figshare.1603424.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T13:35:12Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t27734-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T07:10:13.000Z","subj_id":"https:\/\/doi.org\/10.1145\/2940325","id":"22a3d599-1453-4283-a468-f4ad6f6629c4","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-7fd8ebee-4746-41c7-b80d-71b1aad424fd","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/2940325","url":"https:\/\/doi.org\/10.1145\/2940325","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t27734-000","url":"https:\/\/doi.org\/10.1037\/t27734-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T13:35:27Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.hippocrates_cos-oath.1923","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T04:41:28.000Z","subj_id":"https:\/\/doi.org\/10.1080\/23736992.2021.1939031","id":"1fa19beb-0004-4a4c-859d-eafc5a95c650","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-0f901f4e-3538-4926-8821-2e57a5f03d9a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/23736992.2021.1939031","url":"https:\/\/doi.org\/10.1080\/23736992.2021.1939031","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.hippocrates_cos-oath.1923","url":"https:\/\/doi.org\/10.4159\/DLCL.hippocrates_cos-oath.1923","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T13:59:09Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.25828\/9tmn-fz97","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T05:48:43.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.childyouth.2022.106801","id":"02bd1abb-2aae-478d-872c-e758d44c325a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-197a62ff-9362-458b-a69b-f08a285f3c37","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.childyouth.2022.106801","url":"https:\/\/doi.org\/10.1016\/j.childyouth.2022.106801","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.25828\/9tmn-fz97","url":"https:\/\/doi.org\/10.25828\/9tmn-fz97","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T14:11:07Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4211\/hs.48594c7eba41451f91776a296f6464f5","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:24:28.000Z","subj_id":"https:\/\/doi.org\/10.1029\/2022ms003263","id":"4787737e-ec5a-4710-9c55-cbd84145ef74","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-5c8c2694-eb74-41a5-9c01-5313dcd4d55e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1029\/2022ms003263","url":"https:\/\/doi.org\/10.1029\/2022ms003263","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4211\/hs.48594c7eba41451f91776a296f6464f5","url":"https:\/\/doi.org\/10.4211\/hs.48594c7eba41451f91776a296f6464f5","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T14:12:06Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:35:55 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?cursor=4787737e-ec5a-4710-9c55-cbd84145ef74&from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '23537' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:17 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"975bdaee-dad4-447e-80b5-9b39b179aec9","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.17190\/AMF\/1246060","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:24:28.000Z","subj_id":"https:\/\/doi.org\/10.1029\/2022ms003263","id":"ab54d143-436b-4065-880a-6be83cb66790","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-5c8c2694-eb74-41a5-9c01-5313dcd4d55e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1029\/2022ms003263","url":"https:\/\/doi.org\/10.1029\/2022ms003263","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.17190\/AMF\/1246060","url":"https:\/\/doi.org\/10.17190\/AMF\/1246060","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T14:12:09Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.15200\/winn.147220.00404","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T17:10:36.000Z","subj_id":"https:\/\/doi.org\/10.51472\/jeso20211020","id":"85dd8ff0-3e3e-4969-9428-d422202f252f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-a25caf99-e97d-45fa-aff7-124a8b34dea9","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.51472\/jeso20211020","url":"https:\/\/doi.org\/10.51472\/jeso20211020","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.15200\/winn.147220.00404","url":"https:\/\/doi.org\/10.15200\/winn.147220.00404","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T14:14:56Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1163\/_afco_asc_852","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T21:13:46.000Z","subj_id":"https:\/\/doi.org\/10.29034\/ijmra.v12n3editorial2","id":"f840f1f3-a2d5-47aa-ab6c-038584d12a1d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-5d3c2083-8950-40c0-8172-5f5d7317dccd","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.29034\/ijmra.v12n3editorial2","url":"https:\/\/doi.org\/10.29034\/ijmra.v12n3editorial2","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1163\/_afco_asc_852","url":"https:\/\/doi.org\/10.1163\/_afco_asc_852","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T14:25:48Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.17989\/ENCSR072VUO","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T12:41:32.000Z","subj_id":"https:\/\/doi.org\/10.1101\/2022.12.28.522114","id":"45215502-c229-45ed-84e5-7d65a2f49fc5","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-9ca8ad2e-3987-4f26-90cd-358e8db314df","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1101\/2022.12.28.522114","url":"https:\/\/doi.org\/10.1101\/2022.12.28.522114","work_type_id":"posted-content"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.17989\/ENCSR072VUO","url":"https:\/\/doi.org\/10.17989\/ENCSR072VUO","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T14:35:31Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.17989\/ENCSR558RBK","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T12:41:32.000Z","subj_id":"https:\/\/doi.org\/10.1101\/2022.12.28.522114","id":"1f49eebe-fced-4fc8-8fa7-b8625d40c910","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-9ca8ad2e-3987-4f26-90cd-358e8db314df","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1101\/2022.12.28.522114","url":"https:\/\/doi.org\/10.1101\/2022.12.28.522114","work_type_id":"posted-content"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.17989\/ENCSR558RBK","url":"https:\/\/doi.org\/10.17989\/ENCSR558RBK","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T14:35:31Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5067\/MODIS\/MCD19A2.006","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T10:43:09.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.envint.2022.107719","id":"f0aae3d7-7bc4-4f7d-b767-dca37b3c3a93","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-8ad8c540-a845-4432-9797-fd452cce599b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.envint.2022.107719","url":"https:\/\/doi.org\/10.1016\/j.envint.2022.107719","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5067\/MODIS\/MCD19A2.006","url":"https:\/\/doi.org\/10.5067\/MODIS\/MCD19A2.006.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T14:39:39Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.7289\/V5PZ56R6","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T10:43:09.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.envint.2022.107719","id":"b5023840-a408-4272-9e24-8d8b2836061a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-8ad8c540-a845-4432-9797-fd452cce599b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.envint.2022.107719","url":"https:\/\/doi.org\/10.1016\/j.envint.2022.107719","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.7289\/V5PZ56R6","url":"https:\/\/doi.org\/10.7289\/V5PZ56R6.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T14:39:39Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5067\/7KKNQ5UURM2W","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T14:12:20.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.jhydrol.2022.129005","id":"2cbc152b-b99c-4aa5-8f3e-83e28cfcfb93","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-ac03238f-5d58-4dab-b39b-06e6b853167e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.jhydrol.2022.129005","url":"https:\/\/doi.org\/10.1016\/j.jhydrol.2022.129005","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5067\/7KKNQ5UURM2W","url":"https:\/\/doi.org\/10.5067\/7KKNQ5UURM2W.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T14:45:23Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5061\/dryad.sj3tx966g","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T23:42:48.000Z","subj_id":"https:\/\/doi.org\/10.1111\/ecog.06265","id":"ea57af52-7d69-4e1f-9009-4e7b4acf5ce2","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-85776e54-ef52-4443-aaa9-3385c304bb37","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1111\/ecog.06265","url":"https:\/\/doi.org\/10.1111\/ecog.06265","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5061\/dryad.sj3tx966g","url":"https:\/\/doi.org\/10.5061\/dryad.sj3tx966g","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T14:49:51Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t11524-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T05:45:24.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s10567-021-00356-2","id":"6186b5f2-c8a9-4182-a85e-41aa974b9cf0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-4a20195f-eede-4b2b-96e2-4a2e96accc89","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s10567-021-00356-2","url":"https:\/\/doi.org\/10.1007\/s10567-021-00356-2","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t11524-000","url":"https:\/\/doi.org\/10.1037\/t11524-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-01T15:33:49Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.23696\/vdemds20","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T17:10:33.000Z","subj_id":"https:\/\/doi.org\/10.1080\/00207659.2021.1939945","id":"f8496ad0-c473-4521-87c6-e8fa2199d15e","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-3fe1b908-5982-4b84-b608-a6066985fa96","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/00207659.2021.1939945","url":"https:\/\/doi.org\/10.1080\/00207659.2021.1939945","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.23696\/vdemds20","url":"https:\/\/doi.org\/10.23696\/vdemds20","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T15:39:45Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4232\/1.13560","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T17:10:33.000Z","subj_id":"https:\/\/doi.org\/10.1080\/00207659.2021.1939945","id":"8603bf44-8342-4c19-a45e-49c8eda910fd","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-3fe1b908-5982-4b84-b608-a6066985fa96","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/00207659.2021.1939945","url":"https:\/\/doi.org\/10.1080\/00207659.2021.1939945","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4232\/1.13560","url":"https:\/\/doi.org\/10.4232\/1.13560","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T15:39:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5441\/002","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T21:15:15.000Z","subj_id":"https:\/\/doi.org\/10.1145\/2948896.2948899","id":"4686cee4-b146-4081-b950-aac90818b920","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-6efadd74-a552-4967-bf5c-3c827b20cc7c","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/2948896.2948899","url":"https:\/\/doi.org\/10.1145\/2948896.2948899","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5441\/002","url":"https:\/\/doi.org\/10.5441\/002","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T15:47:32Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5061\/dryad.sbcc2fr40","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T09:12:46.000Z","subj_id":"https:\/\/doi.org\/10.1098\/rspb.2021.0737","id":"62e12468-a0ee-4600-b0c5-5c521e52c178","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-6ca988a0-9020-4700-ab62-5752b2f914d1","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1098\/rspb.2021.0737","url":"https:\/\/doi.org\/10.1098\/rspb.2021.0737","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5061\/dryad.sbcc2fr40","url":"https:\/\/doi.org\/10.5061\/dryad.sbcc2fr40","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T16:28:23Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.4320937","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T19:40:55.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s41781-022-00084-4","id":"435109d9-256f-44a8-9e18-338970dfdb28","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-50269e46-5a3a-4430-9c67-e78484d293ec","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s41781-022-00084-4","url":"https:\/\/doi.org\/10.1007\/s41781-022-00084-4","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.4320937","url":"https:\/\/doi.org\/10.5281\/zenodo.4320937","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T16:40:30Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.13140\/RG.2.2.32028.95368","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2022-12-31T06:06:30.000Z","subj_id":"https:\/\/doi.org\/10.1080\/10926755.2022.2156015","id":"f2f975c5-f53d-4e8a-b58e-12fcd28f635d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20221231-metadata-0b4826d4-8188-41b3-943f-514cb531c73a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/10926755.2022.2156015","url":"https:\/\/doi.org\/10.1080\/10926755.2022.2156015","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.13140\/RG.2.2.32028.95368","url":"https:\/\/doi.org\/10.13140\/RG.2.2.32028.95368","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-01T16:42:40Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1594\/PANGAEA.889943","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:11:25.000Z","subj_id":"https:\/\/doi.org\/10.5194\/acp-21-9609-2021","id":"2fd03053-cb52-4a73-81a9-edda383ed785","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e4973125-32d5-45b0-a54f-fccf3c060b7b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/acp-21-9609-2021","url":"https:\/\/doi.org\/10.5194\/acp-21-9609-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1594\/PANGAEA.889943","url":"https:\/\/doi.org\/10.1594\/PANGAEA.889943,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T00:14:31Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.17595\/20170411.001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:11:25.000Z","subj_id":"https:\/\/doi.org\/10.5194\/acp-21-9609-2021","id":"b4c39633-cc32-43ca-b376-6064c8c151c0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-2f360402-fb16-4652-8bee-3f9ff93942e0","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/acp-21-9609-2021","url":"https:\/\/doi.org\/10.5194\/acp-21-9609-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.17595\/20170411.001","url":"https:\/\/doi.org\/10.17595\/20170411.001,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T00:14:44Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.3886\/ICPSR36151.v6","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T20:14:15.000Z","subj_id":"https:\/\/doi.org\/10.1080\/13547860.2021.1917095","id":"d758d5c1-897b-46cd-b2e2-b18daa95d499","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-2c319bca-6210-40b1-b635-8646d292fe3e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/13547860.2021.1917095","url":"https:\/\/doi.org\/10.1080\/13547860.2021.1917095","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.3886\/ICPSR36151.v6","url":"https:\/\/doi.org\/10.3886\/ICPSR36151.v6","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T00:15:18Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e572172013-206","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T20:13:33.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3462546","id":"f449c80f-ef4f-47a3-9db0-5b0b4590a009","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-04eb1ba2-d7a9-4ef1-bb5b-c1b1bef1aed9","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3462546","url":"https:\/\/doi.org\/10.1145\/3462546","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e572172013-206","url":"https:\/\/doi.org\/10.1037\/e572172013-206","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T00:22:02Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t07550-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T14:12:41.000Z","subj_id":"https:\/\/doi.org\/10.17759\/sps.2021120308","id":"352043b9-47d0-48c8-83be-e353e08eba3f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-c34620df-9943-4142-b863-62e4bd613f11","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/sps.2021120308","url":"https:\/\/doi.org\/10.17759\/sps.2021120308","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t07550-000","url":"https:\/\/doi.org\/10.1037\/t07550-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T00:23:08Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5441\/002\/edbt.2014.23","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:11:14.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3450945","id":"565fbac5-ff55-4faf-95c4-f2054c393025","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-93ef127a-d11b-451e-881d-4c56d2acd61b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3450945","url":"https:\/\/doi.org\/10.1145\/3450945","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5441\/002\/edbt.2014.23","url":"https:\/\/doi.org\/10.5441\/002\/edbt.2014.23","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T00:33:19Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5441\/002\/edbt.2014.34","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:11:14.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3450945","id":"6005b5a3-ed35-4e86-80b0-99db70c16fe0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-fff04069-06c1-4e5c-9e98-740a819917e4","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3450945","url":"https:\/\/doi.org\/10.1145\/3450945","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5441\/002\/edbt.2014.34","url":"https:\/\/doi.org\/10.5441\/002\/edbt.2014.34","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T00:34:53Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1145\/3276990","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:12:08.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3532184","id":"c31e2f5e-185b-461c-bdf4-9cfd2bacbb44","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-2b1deb31-ada2-4361-8dc2-82c5332ca881","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3532184","url":"https:\/\/doi.org\/10.1145\/3532184","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1145\/3276990","url":"https:\/\/doi.org\/10.1145\/3276990","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T00:44:10Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.3816592","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T09:12:57.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3401026","id":"975bdaee-dad4-447e-80b5-9b39b179aec9","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-0a87331a-8697-4823-aad5-bbbd92663a97","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3401026","url":"https:\/\/doi.org\/10.1145\/3401026","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.3816592","url":"https:\/\/doi.org\/10.5281\/zenodo.3816592","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T00:46:04Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:35:57 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?cursor=975bdaee-dad4-447e-80b5-9b39b179aec9&from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '24197' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:19 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"e8f38ef2-6d3a-4075-981d-f30b8d76df41","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.3816592","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T09:12:57.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3401026","id":"46f82286-ea89-40ea-9f22-8b246ea2b6cd","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-0a87331a-8697-4823-aad5-bbbd92663a97","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3401026","url":"https:\/\/doi.org\/10.1145\/3401026","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.3816592","url":"https:\/\/doi.org\/10.5281\/zenodo.3816592","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T00:46:04Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.3972121","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:10:38.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3417995","id":"f63deb7b-9044-46aa-8ee5-1bce368a2978","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-04659d36-4e6d-4f4c-9540-4899d25b2251","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3417995","url":"https:\/\/doi.org\/10.1145\/3417995","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.3972121","url":"https:\/\/doi.org\/10.5281\/zenodo.3972121","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T00:50:15Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.3972121","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:10:38.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3417995","id":"13a98638-78fe-45ec-862c-e613191b0c14","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-04659d36-4e6d-4f4c-9540-4899d25b2251","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3417995","url":"https:\/\/doi.org\/10.1145\/3417995","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.3972121","url":"https:\/\/doi.org\/10.5281\/zenodo.3972121","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T00:50:15Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-virtues_vices.1935","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T15:41:25.000Z","subj_id":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","id":"dba84489-92bc-4c79-a45c-53565d56d447","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e6a5f372-e0f2-4cad-af89-a10a0ab5641e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","url":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-virtues_vices.1935","url":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-virtues_vices.1935","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T00:52:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.euripides-suppliant_women.1998","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T15:41:25.000Z","subj_id":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","id":"a9dc4cce-472c-48f8-85e6-2d34a58d5a7c","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e6a5f372-e0f2-4cad-af89-a10a0ab5641e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","url":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.euripides-suppliant_women.1998","url":"https:\/\/doi.org\/10.4159\/DLCL.euripides-suppliant_women.1998","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T00:52:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.apollodorus_mythographer-library.1921","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T15:41:25.000Z","subj_id":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","id":"8ae4c840-5bd9-49eb-85df-2eb1b00321b0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e6a5f372-e0f2-4cad-af89-a10a0ab5641e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","url":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.apollodorus_mythographer-library.1921","url":"https:\/\/doi.org\/10.4159\/DLCL.apollodorus_mythographer-library.1921","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T00:52:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.euripides-iphigenia_taurians.1999","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T15:41:25.000Z","subj_id":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","id":"52bd7573-1849-4674-9fd4-8a6a52e87aa0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e6a5f372-e0f2-4cad-af89-a10a0ab5641e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","url":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.euripides-iphigenia_taurians.1999","url":"https:\/\/doi.org\/10.4159\/DLCL.euripides-iphigenia_taurians.1999","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T00:52:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.lucian-dead_come_to_life_fisherman.1921","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T15:41:25.000Z","subj_id":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","id":"34c2b6d1-dfc2-4194-ba2e-ee36abfba72d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e6a5f372-e0f2-4cad-af89-a10a0ab5641e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","url":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.lucian-dead_come_to_life_fisherman.1921","url":"https:\/\/doi.org\/10.4159\/DLCL.lucian-dead_come_to_life_fisherman.1921","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T00:52:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-problems.2011","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T15:41:25.000Z","subj_id":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","id":"1a133a14-4f5c-4ca1-817c-fec8ee343503","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e6a5f372-e0f2-4cad-af89-a10a0ab5641e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","url":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-problems.2011","url":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-problems.2011","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T00:52:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.lucian-harmonides.1959","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T15:41:25.000Z","subj_id":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","id":"4ea1c4be-1541-4c46-900d-3c5f91a8a4c9","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e6a5f372-e0f2-4cad-af89-a10a0ab5641e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","url":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.1","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.lucian-harmonides.1959","url":"https:\/\/doi.org\/10.4159\/DLCL.lucian-harmonides.1959","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T00:52:47Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e317972004-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T14:14:11.000Z","subj_id":"https:\/\/doi.org\/10.17759\/sps.2021120210","id":"745f8259-651f-4373-9244-d844cf3872d5","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-1566e218-83b6-43de-b9ee-bb08c4c145b1","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/sps.2021120210","url":"https:\/\/doi.org\/10.17759\/sps.2021120210","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e317972004-001","url":"https:\/\/doi.org\/10.1037\/e317972004-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T00:53:07Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5285\/a29c5465-b138-234d-e053-6c86abc040b9","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T10:13:37.000Z","subj_id":"https:\/\/doi.org\/10.3390\/s21134304","id":"83c6f7ed-8b4b-4982-8df9-ffbecdbb5e2b","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-18d0769d-ea35-4062-ba54-370696c7ab96","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3390\/s21134304","url":"https:\/\/doi.org\/10.3390\/s21134304","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5285\/a29c5465-b138-234d-e053-6c86abc040b9","url":"https:\/\/doi.org\/10.5285\/a29c5465-b138-234d-e053-6c86abc040b9","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T01:00:05Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5286\/ISIS.E.RB1920737","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T06:03:01.000Z","subj_id":"https:\/\/doi.org\/10.1063\/5.0054291","id":"9e4afadc-6c9a-493f-9dd5-3ab70326219d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-8d78ba2e-7043-4bc0-ba11-0ce4e2ae672d","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1063\/5.0054291","url":"https:\/\/doi.org\/10.1063\/5.0054291","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5286\/ISIS.E.RB1920737","url":"https:\/\/doi.org\/10.5286\/ISIS.E.RB1920737","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T01:02:25Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.4304613","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T18:11:37.000Z","subj_id":"https:\/\/doi.org\/10.3390\/app11135947","id":"21fa7d15-6dfd-4595-9be8-8ae96c699b91","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-2c8a4731-1443-4ff1-bbe2-2fb9eb6dbc08","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3390\/app11135947","url":"https:\/\/doi.org\/10.3390\/app11135947","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.4304613","url":"https:\/\/zenodo.org\/record\/4304613#.YNSWXJVR2Uk.","method":"landing-page-meta-tag","verification":"checked-url-basic","work_type_id":"Dataset"},"timestamp":"2023-01-02T01:14:41Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e615752007-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T05:31:20.000Z","subj_id":"https:\/\/doi.org\/10.1111\/j.1600-6143.2005.00961.x","id":"c1437a34-cda4-48a4-a3f7-54a8d9979b15","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-d03ba1b4-d011-4aa4-a830-d7cad8a98dc6","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1111\/j.1600-6143.2005.00961.x","url":"https:\/\/doi.org\/10.1111\/j.1600-6143.2005.00961.x","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e615752007-001","url":"https:\/\/doi.org\/10.1037\/e615752007-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T01:16:35Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-meteorlogica.1952","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T10:12:08.000Z","subj_id":"https:\/\/doi.org\/10.5194\/nhess-21-1935-2021","id":"0a8be270-9a84-4595-8745-b40d9eb62357","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-5aa7dc2d-fdf4-499b-8281-2c3be22eee23","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/nhess-21-1935-2021","url":"https:\/\/doi.org\/10.5194\/nhess-21-1935-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-meteorlogica.1952","url":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-meteorlogica.1952","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T01:18:40Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1163\/9789004337862_lgbo_com_010391","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T05:32:39.000Z","subj_id":"https:\/\/doi.org\/10.2196\/29531","id":"a39b7fdc-88f7-4b36-975b-0b4ee42d875d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e2e1bbc1-b2b0-4990-9195-2c9ed8c80563","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.2196\/29531","url":"https:\/\/doi.org\/10.2196\/29531","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1163\/9789004337862_lgbo_com_010391","url":"https:\/\/doi.org\/10.1163\/9789004337862_lgbo_com_010391","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T01:20:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.3886\/E118908V1","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:41:05.000Z","subj_id":"https:\/\/doi.org\/10.1257\/app.20170604","id":"59fe11f5-998c-49bc-b076-b713a1506639","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-fac8b286-3d55-44e3-8fa4-453adc96c7ca","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1257\/app.20170604","url":"https:\/\/doi.org\/10.1257\/app.20170604","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.3886\/E118908V1","url":"https:\/\/doi.org\/10.3886\/E118908V1.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T01:21:41Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e517532013-004","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T07:11:16.000Z","subj_id":"https:\/\/doi.org\/10.51847\/cj6189cibl","id":"5ca5c203-bcb0-4a51-94ab-1a58b23350e6","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-2aa5b8b7-c817-47cf-b7e7-ce79e0ec26d2","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.51847\/cj6189cibl","url":"https:\/\/doi.org\/10.51847\/cj6189cibl","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e517532013-004","url":"https:\/\/doi.org\/10.1037\/e517532013-004","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T01:26:37Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.3799603","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T22:42:19.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3469888","id":"b2a86ada-e116-4b19-8fa5-34e2b0b3cf2f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-5bdb3828-3539-4cb0-a039-4a3ce62c46ab","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3469888","url":"https:\/\/doi.org\/10.1145\/3469888","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.3799603","url":"https:\/\/doi.org\/10.5281\/zenodo.3799603","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T01:27:40Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5067\/SLREF-CDRV2","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T17:40:34.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s00190-021-01529-1","id":"4672974f-4b4f-4cb5-bd7d-79c74851b5d0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-ab176492-9621-4f8b-a784-8330d8cfeeed","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s00190-021-01529-1","url":"https:\/\/doi.org\/10.1007\/s00190-021-01529-1","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5067\/SLREF-CDRV2","url":"https:\/\/doi.org\/10.5067\/SLREF-CDRV2","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T01:33:04Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1126\/science.aav8384","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:10:44.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3451964.3451974","id":"0bc68aeb-6202-4137-ad2a-fff7fad3d4c0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-fb60b3c3-9f0c-4cc9-b1ca-9fc755f9d3b0","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3451964.3451974","url":"https:\/\/doi.org\/10.1145\/3451964.3451974","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1126\/science.aav8384","url":"https:\/\/doi.org\/10.1126\/science.aav8384","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T01:42:16Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e495822006-007","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T22:16:56.000Z","subj_id":"https:\/\/doi.org\/10.4049\/jimmunol.170.7.3866","id":"dd6c32e6-57d0-4d35-8f06-1ce2ec53284e","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-a3256734-3772-41e6-af8a-dd7aa593be88","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.4049\/jimmunol.170.7.3866","url":"https:\/\/doi.org\/10.4049\/jimmunol.170.7.3866","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e495822006-007","url":"https:\/\/doi.org\/10.1037\/e495822006-007","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T01:42:41Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1787\/aac7c3f1-en","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:11:13.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s40888-021-00232-w","id":"6355d0f9-038b-41f8-b7a9-646618a1879f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-7b4ddaa7-d4b0-4756-a384-da5495cc016a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s40888-021-00232-w","url":"https:\/\/doi.org\/10.1007\/s40888-021-00232-w","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1787\/aac7c3f1-en","url":"https:\/\/doi.org\/10.1787\/aac7c3f1-en","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T01:42:58Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4121\/uuid:98d571be-cdd4-4e5a-a589-7c5b1320e569","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T22:12:05.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3449355","id":"e8f38ef2-6d3a-4075-981d-f30b8d76df41","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-941db2e0-c245-4cfd-8427-4accad6ec2b3","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3449355","url":"https:\/\/doi.org\/10.1145\/3449355","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4121\/uuid:98d571be-cdd4-4e5a-a589-7c5b1320e569","url":"https:\/\/doi.org\/10.4121\/uuid:98d571be-cdd4-4e5a-a589-7c5b1320e569","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T01:43:27Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:35:58 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?cursor=e8f38ef2-6d3a-4075-981d-f30b8d76df41&from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '23603' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:20 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"df292974-1661-4dc2-891c-08265c80bee9","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.21227\/2kxd-m509","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:40:36.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3472752","id":"c55afc4a-36b4-4f3a-81b3-fc2fa0a2c7fc","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-3e7b33a7-204d-4ae0-98e8-834efc23c50e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3472752","url":"https:\/\/doi.org\/10.1145\/3472752","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.21227\/2kxd-m509","url":"https:\/\/dx.doi.org\/10.21227\/2kxd-m509","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T01:44:22Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.25845\/5e28f062c5097","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T23:41:45.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3478513.3480520","id":"cce70485-6ba8-4ef1-a30c-438977fea5a8","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-511d5276-737d-48cd-80bf-a2813839a180","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3478513.3480520","url":"https:\/\/doi.org\/10.1145\/3478513.3480520","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.25845\/5e28f062c5097","url":"https:\/\/doi.org\/10.25845\/5e28f062c5097","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T01:56:49Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5519\/0002965","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T22:12:21.000Z","subj_id":"https:\/\/doi.org\/10.11646\/zootaxa.4995.1.2","id":"16ba9454-102c-4f95-b5bc-790048f18a52","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e0949753-6a2f-499b-bfed-67953219b759","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.11646\/zootaxa.4995.1.2","url":"https:\/\/doi.org\/10.11646\/zootaxa.4995.1.2","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5519\/0002965","url":"https:\/\/doi.org\/10.5519\/0002965","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T01:57:41Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.17632\/wmy84gzngw.1","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T20:41:06.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3418355","id":"c5281c62-dd56-4870-8a1f-8aabd5ab5f0a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-158c9006-0362-4ce1-9177-7510c0b187e8","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3418355","url":"https:\/\/doi.org\/10.1145\/3418355","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.17632\/wmy84gzngw.1","url":"http:\/\/dx.doi.org\/10.17632\/wmy84gzngw.1","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T02:04:09Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1145\/3291617","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T21:33:29.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3290341","id":"f6f8a00e-0184-474d-afd0-c8b9d9f4e4d4","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e84fe2e2-f4c4-479f-8d21-2e7bfd429104","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3290341","url":"https:\/\/doi.org\/10.1145\/3290341","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1145\/3291617","url":"https:\/\/doi.org\/10.1145\/3291617","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T02:04:44Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5676\/EUM_SAF_CM\/CFC_METEOSAT\/V001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T12:40:59.000Z","subj_id":"https:\/\/doi.org\/10.2151\/jmsj.2021-062","id":"2f92606c-049b-45b7-a494-36a899d42f94","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-5e227748-22a1-445e-90e5-57df3e0cbd2f","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.2151\/jmsj.2021-062","url":"https:\/\/doi.org\/10.2151\/jmsj.2021-062","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5676\/EUM_SAF_CM\/CFC_METEOSAT\/V001","url":"https:\/\/doi.org\/10.5676\/EUM_SAF_CM\/CFC_METEOSAT\/V001","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T02:05:34Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1594\/PANGAEA.847719","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T20:40:38.000Z","subj_id":"https:\/\/doi.org\/10.3389\/fmars.2021.634726","id":"85ba7a27-6f2f-445d-b6c2-2c88b0959d76","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-a2b31b90-0d38-43e7-ab7a-57199cfccc18","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3389\/fmars.2021.634726","url":"https:\/\/doi.org\/10.3389\/fmars.2021.634726","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1594\/PANGAEA.847719","url":"https:\/\/doi.org\/10.1594\/PANGAEA.847719","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T02:06:39Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1163\/1570-6664_iyb_sim_org_39200","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T08:15:02.000Z","subj_id":"https:\/\/doi.org\/10.38050\/01300105202128","id":"958e54ab-ea9f-4d25-9bdb-fe33045b1c9b","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-5cdea819-e3d6-4c19-ae49-f7de9e48d3b8","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.38050\/01300105202128","url":"https:\/\/doi.org\/10.38050\/01300105202128","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1163\/1570-6664_iyb_sim_org_39200","url":"https:\/\/doi.org\/10.1163\/1570-6664_iyb_sim_org_39200","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T02:19:58Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t11525-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T07:41:11.000Z","subj_id":"https:\/\/doi.org\/10.26795\/2307-1281-2021-9-2-5","id":"98d8651e-170e-4c53-99e0-582f6525dbc3","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-9f10a86c-cfd6-4a38-b7eb-f232e255a065","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.26795\/2307-1281-2021-9-2-5","url":"https:\/\/doi.org\/10.26795\/2307-1281-2021-9-2-5","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t11525-000","url":"https:\/\/doi.org\/10.1037\/t11525-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T02:23:09Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.3886\/E118642V1","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:40:37.000Z","subj_id":"https:\/\/doi.org\/10.1257\/app.20190703","id":"8107d406-d026-4e50-a5d3-d27cb40a9a4b","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-50c8a681-6961-4b48-95bb-d17fb65a4585","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1257\/app.20190703","url":"https:\/\/doi.org\/10.1257\/app.20190703","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.3886\/E118642V1","url":"https:\/\/doi.org\/10.3886\/E118642V1.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T02:27:51Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t03902-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T06:18:21.000Z","subj_id":"https:\/\/doi.org\/10.1111\/j.1600-6143.2005.01148.x","id":"cb3d19fd-d900-484c-b1a9-63f7d0700615","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-71394ed9-332f-48ca-a5a9-6e0e5a3e3e8a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1111\/j.1600-6143.2005.01148.x","url":"https:\/\/doi.org\/10.1111\/j.1600-6143.2005.01148.x","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t03902-000","url":"https:\/\/doi.org\/10.1037\/t03902-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T02:34:10Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.7910\/DVN\/LW0BTB","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T08:40:49.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3404820.3404823","id":"4af1cf1f-dee9-4390-8f4c-e6a2d9bfb544","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-701da0cd-678a-403d-b168-c47f87ecb0c5","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3404820.3404823","url":"https:\/\/doi.org\/10.1145\/3404820.3404823","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.7910\/DVN\/LW0BTB","url":"https:\/\/doi.org\/10.7910\/DVN\/LW0BTB","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T02:34:52Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.21227\/fpsb-jz61","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T08:40:49.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3404820.3404823","id":"340ec644-a97a-4539-83eb-6d171e76138a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-701da0cd-678a-403d-b168-c47f87ecb0c5","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3404820.3404823","url":"https:\/\/doi.org\/10.1145\/3404820.3404823","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.21227\/fpsb-jz61","url":"https:\/\/doi.org\/10.21227\/fpsb-jz61","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T02:34:52Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.21227\/781w-ef42","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T08:40:49.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3404820.3404823","id":"10cd9b11-b74d-43fc-9682-18f07ec29fd4","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-701da0cd-678a-403d-b168-c47f87ecb0c5","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3404820.3404823","url":"https:\/\/doi.org\/10.1145\/3404820.3404823","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.21227\/781w-ef42","url":"https:\/\/doi.org\/10.21227\/781w-ef42","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T02:34:52Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1145\/3291619","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T23:49:38.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3290346","id":"ad36040c-8274-4704-a465-0806e852a00d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-c85677a7-1a21-458d-ad93-6372dc11973c","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3290346","url":"https:\/\/doi.org\/10.1145\/3290346","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1145\/3291619","url":"https:\/\/doi.org\/10.1145\/3291619","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T02:47:51Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1126\/science.caredit.a1200027","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T06:01:32.000Z","subj_id":"https:\/\/doi.org\/10.1080\/02635143.2021.1944077","id":"6bfbec8c-af1e-4ff9-a805-4c14a2c0291a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-9dfe1d1f-07ff-4ff0-a6a5-12691c248d45","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/02635143.2021.1944077","url":"https:\/\/doi.org\/10.1080\/02635143.2021.1944077","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1126\/science.caredit.a1200027","url":"https:\/\/doi.org\/10.1126\/science.caredit.a1200027","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T02:55:01Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.16904\/envidat.59","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:40:30.000Z","subj_id":"https:\/\/doi.org\/10.5194\/tc-15-2969-2021","id":"b78aa878-911b-41c1-83f5-6bac1cf3327b","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e607c6e7-c880-48a8-a056-fc9e82477392","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/tc-15-2969-2021","url":"https:\/\/doi.org\/10.5194\/tc-15-2969-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.16904\/envidat.59","url":"https:\/\/doi.org\/10.16904\/envidat.59","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T02:57:23Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.6371382","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:41:23.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3531528","id":"a62ae172-ecda-4e36-8f79-4e9aab80f0f5","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-1ef62694-75cb-49a5-b32b-37442faa5852","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3531528","url":"https:\/\/doi.org\/10.1145\/3531528","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.6371382","url":"https:\/\/doi.org\/10.5281\/zenodo.6371382","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T03:04:19Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.25925\/20190605","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:11:25.000Z","subj_id":"https:\/\/doi.org\/10.5194\/acp-21-9609-2021","id":"d30e4cb4-a9a1-4361-947d-e9a33599637a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-0b586900-2a6a-4f51-85e8-7fa3bbdfd863","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/acp-21-9609-2021","url":"https:\/\/doi.org\/10.5194\/acp-21-9609-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.25925\/20190605","url":"https:\/\/doi.org\/10.25925\/20190605,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T03:11:15Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.3886\/E119446V3","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T15:16:59.000Z","subj_id":"https:\/\/doi.org\/10.1001\/jamahealthforum.2021.1262","id":"9c7df6f5-8b08-4fd5-a65f-9936f62e3ee3","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-ff30a7ee-948f-4feb-b442-20a2f0d417a2","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1001\/jamahealthforum.2021.1262","url":"https:\/\/doi.org\/10.1001\/jamahealthforum.2021.1262","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.3886\/E119446V3","url":"https:\/\/www.openicpsr.org\/openicpsr\/project\/119446\/version\/V3\/view","method":"landing-page-meta-tag","verification":"checked-url-exact","work_type_id":"Dataset"},"timestamp":"2023-01-02T03:11:15Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1093\/obo\/9780199846719-0069","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T15:10:34.000Z","subj_id":"https:\/\/doi.org\/10.18669\/ct.2020.02","id":"288fadc4-4e3d-4335-9f51-d73bceb0c0e8","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-24441d49-6850-4ecc-95c4-1bf5cab0458a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.18669\/ct.2020.02","url":"https:\/\/doi.org\/10.18669\/ct.2020.02","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1093\/obo\/9780199846719-0069","url":"https:\/\/doi.org\/10.1093\/obo\/9780199846719-0069","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T03:12:29Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5067\/Suborbital\/KORUSAQ\/DATA01","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T08:15:13.000Z","subj_id":"https:\/\/doi.org\/10.5194\/amt-14-4639-2021","id":"aad3ae81-ee66-4629-a1d8-08e7fb4db689","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-fd9d0342-e5d1-4a28-a3ec-4a92f5f70c77","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/amt-14-4639-2021","url":"https:\/\/doi.org\/10.5194\/amt-14-4639-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5067\/Suborbital\/KORUSAQ\/DATA01","url":"https:\/\/doi.org\/10.5067\/Suborbital\/KORUSAQ\/DATA01,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T03:31:57Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5065\/D65Q4T4Z","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T08:15:13.000Z","subj_id":"https:\/\/doi.org\/10.5194\/amt-14-4639-2021","id":"98c9c45f-fe4d-43d7-952c-94a748c1612f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-fd9d0342-e5d1-4a28-a3ec-4a92f5f70c77","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/amt-14-4639-2021","url":"https:\/\/doi.org\/10.5194\/amt-14-4639-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5065\/D65Q4T4Z","url":"https:\/\/doi.org\/10.5065\/D65Q4T4Z,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T03:31:57Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.6084\/m9.figshare.5086357","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T23:51:58.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3402127.3402133","id":"d63dd564-e0f7-46f9-b4fd-0ff34d51e78d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-9e3a817d-8be3-4d88-bfcb-1f649d3e477b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3402127.3402133","url":"https:\/\/doi.org\/10.1145\/3402127.3402133","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.6084\/m9.figshare.5086357","url":"https:\/\/doi.org\/10.6084\/m9.figshare.5086357","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T03:32:12Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t73087-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T08:40:45.000Z","subj_id":"https:\/\/doi.org\/10.1111\/apa.16002","id":"df292974-1661-4dc2-891c-08265c80bee9","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-34b70092-753d-4a45-a898-2c72f03bd42e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1111\/apa.16002","url":"https:\/\/doi.org\/10.1111\/apa.16002","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t73087-000","url":"https:\/\/doi.org\/10.1037\/t73087-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T03:33:47Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:35:59 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?cursor=df292974-1661-4dc2-891c-08265c80bee9&from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '23418' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:23 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"da3055bd-851d-43af-a2e2-bcac23cb59e1","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t00393-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T07:10:50.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3368554","id":"56b262a4-1fe5-4b46-b9f5-b3574b951644","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-988e350b-a493-4336-b961-136338ba1959","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3368554","url":"https:\/\/doi.org\/10.1145\/3368554","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t00393-000","url":"https:\/\/doi.org\/10.1037\/t00393-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T03:37:13Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e526112012-054","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T13:10:13.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3397324","id":"3f4f4fd4-d619-48e9-851e-3bd6fec3e0fa","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-43da0a8a-64a1-4094-a355-4d70cecefd4f","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3397324","url":"https:\/\/doi.org\/10.1145\/3397324","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e526112012-054","url":"https:\/\/doi.org\/10.1037\/e526112012-054","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T03:47:19Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1145\/3159940","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T12:41:05.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3410448","id":"8780c678-b7d8-4563-8ffe-e1f3c40cb853","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-fe1fb59b-6dfb-4680-a429-4a0b019e3cda","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3410448","url":"https:\/\/doi.org\/10.1145\/3410448","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1145\/3159940","url":"https:\/\/doi.org\/10.1145\/3159940","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T04:01:57Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5441\/002\/edbt.2018.76","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T07:40:36.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3356901","id":"c81b31c1-c4a4-4bf5-b526-3218193d67a6","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-d1be9e9c-8787-4098-bb6c-daaf0a1ccbd3","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3356901","url":"https:\/\/doi.org\/10.1145\/3356901","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5441\/002\/edbt.2018.76","url":"https:\/\/doi.org\/10.5441\/002\/edbt.2018.76","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T04:03:07Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1285\/i20356609v12i3p691","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T10:42:25.000Z","subj_id":"https:\/\/doi.org\/10.33225\/pmc\/21.16.19","id":"6149dd04-1235-4e2c-b363-05bc8d372a46","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-71e47db1-ab7f-476d-8846-58ff157293d1","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.33225\/pmc\/21.16.19","url":"https:\/\/doi.org\/10.33225\/pmc\/21.16.19","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1285\/i20356609v12i3p691","url":"https:\/\/doi.org\/10.1285\/i20356609v12i3p691","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T04:09:28Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e624282011-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T23:40:34.000Z","subj_id":"https:\/\/doi.org\/10.1080\/03091902.2021.1936237","id":"905dd0d3-7c4a-4851-9655-bed07d44f4cb","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-8b2e3dee-a338-47c2-b1b3-1bbe0273e273","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/03091902.2021.1936237","url":"https:\/\/doi.org\/10.1080\/03091902.2021.1936237","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e624282011-001","url":"https:\/\/doi.org\/10.1037\/e624282011-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T04:12:20Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.16904\/envidat.124","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T20:14:28.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3494531","id":"a5efe0bc-d364-40f0-9242-e00a654cb3d4","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-f54ea5bd-2310-4611-ab04-214e26a0bcfb","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3494531","url":"https:\/\/doi.org\/10.1145\/3494531","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.16904\/envidat.124","url":"https:\/\/doi.org\/10.16904\/envidat.124","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T04:37:21Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e518712013-042","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T08:41:16.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3345641","id":"acd395b7-772d-4826-be94-1a09bb128035","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-328ec3e1-ca27-478c-9fa5-fde43a81cbd2","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3345641","url":"https:\/\/doi.org\/10.1145\/3345641","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e518712013-042","url":"https:\/\/doi.org\/10.1037\/e518712013-042","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T04:38:22Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.strabo-geography.1917","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T15:42:21.000Z","subj_id":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.6","id":"5e5ece8b-a44d-4800-9e9e-46b0cbcfffdb","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-2bed4bc9-096d-4676-b81d-533f728a99d8","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.6","url":"https:\/\/doi.org\/10.46931\/aran.2021.15.1.6","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.strabo-geography.1917","url":"https:\/\/doi.org\/10.4159\/DLCL.strabo-geography.1917","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T04:59:33Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t67721-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T15:40:13.000Z","subj_id":"https:\/\/doi.org\/10.17759\/exppsy.2016090408","id":"a5e096e6-b57b-4085-b7ea-64f58988990f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-4fcf26f3-9b86-4835-ae79-c0faf1d763f4","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/exppsy.2016090408","url":"https:\/\/doi.org\/10.17759\/exppsy.2016090408","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t67721-000","url":"https:\/\/doi.org\/10.1037\/t67721-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T05:15:51Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1145\/3276939","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T23:11:49.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3430952","id":"f4489421-19d8-4e2e-ae25-f8518b73147d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-6378de21-255f-4153-934c-8850b17dead1","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3430952","url":"https:\/\/doi.org\/10.1145\/3430952","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1145\/3276939","url":"https:\/\/doi.org\/10.1145\/3276939","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T05:16:01Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5441\/002\/icdt.2014.22","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T21:54:04.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3371130","id":"03226252-00f9-4a7c-8392-4615eca4a034","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-946db38b-2454-4314-accb-a0978d388714","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3371130","url":"https:\/\/doi.org\/10.1145\/3371130","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5441\/002\/icdt.2014.22","url":"https:\/\/doi.org\/10.5441\/002\/icdt.2014.22","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T05:22:30Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e518612013-445","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T16:42:24.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s11336-021-09776-z","id":"1bb33d34-72d6-44c7-ad73-72eb566d654d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-32f2855c-b5b3-456e-9065-35bd1a539d46","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s11336-021-09776-z","url":"https:\/\/doi.org\/10.1007\/s11336-021-09776-z","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e518612013-445","url":"https:\/\/doi.org\/10.1037\/e518612013-445","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T05:24:17Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.4306165","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T07:43:07.000Z","subj_id":"https:\/\/doi.org\/10.3389\/feart.2021.642243","id":"72c22dc7-ea98-4dff-91bd-59fa57b9b971","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-214412e1-1444-4cac-936c-d97c59cb4a4b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3389\/feart.2021.642243","url":"https:\/\/doi.org\/10.3389\/feart.2021.642243","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.4306165","url":"https:\/\/doi.org\/10.5281\/zenodo.4306165","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T05:25:23Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t69659-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T22:42:47.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3531064","id":"01a7e11b-8dd2-4a7d-9bfb-26c283486714","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-5b89c10b-42c9-48c1-ac63-90aa9b0ce402","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3531064","url":"https:\/\/doi.org\/10.1145\/3531064","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t69659-000","url":"https:\/\/doi.org\/10.1037\/t69659-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T05:33:36Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.21227\/mw6a-d662","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T22:12:49.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3520439","id":"7f71899d-c0c4-425b-a563-0f83754e3975","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-7260bcfc-8f58-4b96-9e53-e3cf58c1386b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3520439","url":"https:\/\/doi.org\/10.1145\/3520439","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.21227\/mw6a-d662","url":"https:\/\/dx.doi.org\/10.21227\/mw6a-d662","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T05:42:31Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e640572009-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T17:10:43.000Z","subj_id":"https:\/\/doi.org\/10.1080\/14702436.2021.1937135","id":"e3e71e91-8d0d-4137-8030-1a6516d383fe","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-4be77d4e-5b19-48c2-8166-718194441464","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/14702436.2021.1937135","url":"https:\/\/doi.org\/10.1080\/14702436.2021.1937135","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e640572009-001","url":"https:\/\/doi.org\/10.1037\/e640572009-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T05:42:41Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e564862012-003","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T17:10:43.000Z","subj_id":"https:\/\/doi.org\/10.1080\/14702436.2021.1937135","id":"836e6a69-cd11-4c9f-b702-af36d2a3b687","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-4be77d4e-5b19-48c2-8166-718194441464","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/14702436.2021.1937135","url":"https:\/\/doi.org\/10.1080\/14702436.2021.1937135","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e564862012-003","url":"https:\/\/doi.org\/10.1037\/e564862012-003","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T05:42:41Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.4436319","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T21:40:25.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3448977","id":"4c554188-acb5-431b-aa55-9f1a382b47af","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-4efed56c-2ede-4244-8eac-8f07dc34c877","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3448977","url":"https:\/\/doi.org\/10.1145\/3448977","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.4436319","url":"https:\/\/doi.org\/10.5281\/zenodo.4436319","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T06:03:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.4436319","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T21:40:25.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3448977","id":"0c309ff6-a76d-4345-baf2-778c3c528d66","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-4efed56c-2ede-4244-8eac-8f07dc34c877","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3448977","url":"https:\/\/doi.org\/10.1145\/3448977","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.4436319","url":"https:\/\/doi.org\/10.5281\/zenodo.4436319","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T06:03:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.23721\/107\/1354084","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:51:22.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3402413.3402415","id":"011efe2a-a576-47fc-96e8-61d9e24efaaa","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-d5a36d9f-af41-4148-9022-b6aa92b2bc88","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3402413.3402415","url":"https:\/\/doi.org\/10.1145\/3402413.3402415","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.23721\/107\/1354084","url":"https:\/\/doi.org\/10.23721\/107\/1354084","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T06:06:03Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.15783\/C7J010","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T23:54:51.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3392154","id":"a9299aaa-db49-4d3f-b491-84e9614bd2e2","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-07f28a0b-3fdd-4e87-9ab9-4eb679205b88","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3392154","url":"https:\/\/doi.org\/10.1145\/3392154","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.15783\/C7J010","url":"http:\/\/crawdad.org\/epfl\/mobility\/20090224","method":"landing-page-meta-tag","verification":"confirmed-domain-prefix","work_type_id":"Dataset"},"timestamp":"2023-01-02T06:13:55Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e538062007-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T14:14:15.000Z","subj_id":"https:\/\/doi.org\/10.17759\/sps.2022130107","id":"f31c75bf-5d9f-4cb9-8093-98367bd9aa71","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-5bdf660c-1b2b-409c-8ce4-04485a7c916e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/sps.2022130107","url":"https:\/\/doi.org\/10.17759\/sps.2022130107","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e538062007-001","url":"https:\/\/doi.org\/10.1037\/e538062007-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T06:38:33Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.3410\/f.12271959.13447059","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:40:23.000Z","subj_id":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.2020535","id":"858001cf-ee7b-42a0-9925-5e33d66e92bd","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-280bbf1c-eeab-425b-bdef-a047354ce661","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.2020535","url":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.2020535","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.3410\/f.12271959.13447059","url":"https:\/\/doi.org\/10.3410\/f.12271959.13447059","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T06:44:34Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e576842013-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T16:41:50.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s12571-021-01188-2","id":"da3055bd-851d-43af-a2e2-bcac23cb59e1","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-c586af37-92fa-40ef-8266-daefeb0a213e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s12571-021-01188-2","url":"https:\/\/doi.org\/10.1007\/s12571-021-01188-2","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e576842013-001","url":"https:\/\/doi.org\/10.1037\/e576842013-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T06:45:00Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:36:03 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?cursor=da3055bd-851d-43af-a2e2-bcac23cb59e1&from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '23572' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:27 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"79d550f9-347e-42e0-9165-2a85da9c2ede","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1285\/i20705948v13n3p652","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T07:12:26.000Z","subj_id":"https:\/\/doi.org\/10.3389\/fpsyg.2021.685275","id":"a5c2ada2-3578-4ae5-b02c-b794df489e1e","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-16153463-cb44-49b4-8482-b3c989f59ad0","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3389\/fpsyg.2021.685275","url":"https:\/\/doi.org\/10.3389\/fpsyg.2021.685275","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1285\/i20705948v13n3p652","url":"https:\/\/doi.org\/10.1285\/i20705948v13n3p652","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T07:18:47Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t04900-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T14:14:29.000Z","subj_id":"https:\/\/doi.org\/10.17759\/sps.2021120312","id":"bfd658a5-45df-4232-a8cb-bc8afb730438","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-7cb38800-51a7-4682-8e2d-92d062534fe1","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/sps.2021120312","url":"https:\/\/doi.org\/10.17759\/sps.2021120312","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t04900-000","url":"https:\/\/doi.org\/10.1037\/t04900-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T07:20:02Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e509012013-037","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T20:13:59.000Z","subj_id":"https:\/\/doi.org\/10.17269\/s41997-021-00508-5","id":"56208c1c-efa3-4097-90c7-86dbc6f0c3ed","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e7024c2d-b1cc-47c8-abef-5c48e215b26f","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17269\/s41997-021-00508-5","url":"https:\/\/doi.org\/10.17269\/s41997-021-00508-5","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e509012013-037","url":"https:\/\/doi.org\/10.1037\/e509012013-037","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T07:31:54Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t33337-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T14:09:41.000Z","subj_id":"https:\/\/doi.org\/10.17759\/sps.2020110205","id":"c74252c3-fa81-41ae-bb76-0ed4e6341ae1","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-a3a7b3d0-0745-4237-ad5d-96e5b643fd41","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/sps.2020110205","url":"https:\/\/doi.org\/10.17759\/sps.2020110205","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t33337-000","url":"https:\/\/doi.org\/10.1037\/t33337-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T07:33:36Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.2305\/iucn.uk.2008.rlts.t136291a4270290.en","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T17:11:21.000Z","subj_id":"https:\/\/doi.org\/10.53452\/nt1246","id":"aee57d19-4cd4-47e0-a9c2-cee05987beea","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-32324943-98ea-4933-8000-97f31dcd9e01","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.53452\/nt1246","url":"https:\/\/doi.org\/10.53452\/nt1246","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.2305\/iucn.uk.2008.rlts.t136291a4270290.en","url":"https:\/\/doi.org\/10.2305\/iucn.uk.2008.rlts.t136291a4270290.en","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T07:47:50Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.2305\/iucn.uk.2008.rlts.t4240a10699069.en","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T17:11:21.000Z","subj_id":"https:\/\/doi.org\/10.53452\/nt1246","id":"5791b137-bf13-4270-a84c-266a15cdea48","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-32324943-98ea-4933-8000-97f31dcd9e01","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.53452\/nt1246","url":"https:\/\/doi.org\/10.53452\/nt1246","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.2305\/iucn.uk.2008.rlts.t4240a10699069.en","url":"https:\/\/doi.org\/10.2305\/iucn.uk.2008.rlts.t4240a10699069.en","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T07:47:50Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.3886\/E112839V1","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:40:37.000Z","subj_id":"https:\/\/doi.org\/10.1257\/app.20190703","id":"73c58bf3-3276-4ba1-a3cd-93b6aaa796c7","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-2e86e965-c843-4c62-82e9-be99f38f5a2d","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1257\/app.20190703","url":"https:\/\/doi.org\/10.1257\/app.20190703","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.3886\/E112839V1","url":"https:\/\/doi.org\/10.3886\/E112839V1","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T07:48:58Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e540562006-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T05:29:12.000Z","subj_id":"https:\/\/doi.org\/10.4049\/jimmunol.178.11.6710","id":"346c59b3-f598-4142-9bd8-3b1d8d9a142a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-5d733bc3-5fa8-47fe-a246-f8af5d845314","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.4049\/jimmunol.178.11.6710","url":"https:\/\/doi.org\/10.4049\/jimmunol.178.11.6710","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e540562006-001","url":"https:\/\/doi.org\/10.1037\/e540562006-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T07:50:35Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5067\/ALTTS-TJ142","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T17:40:34.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s00190-021-01529-1","id":"64e1a721-7edb-4402-b921-3a0a5c1fc43b","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-d2610e40-fe43-40b8-a17f-d579e0d7d3b6","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s00190-021-01529-1","url":"https:\/\/doi.org\/10.1007\/s00190-021-01529-1","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5067\/ALTTS-TJ142","url":"https:\/\/doi.org\/10.5067\/ALTTS-TJ142","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T07:51:31Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t33337-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T14:12:43.000Z","subj_id":"https:\/\/doi.org\/10.17759\/sps.2022130104","id":"944a7aa3-5410-4fc2-9c49-6f6185e3eb49","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-7c4938c8-e845-4cf4-9d85-12b2ad46ce15","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/sps.2022130104","url":"https:\/\/doi.org\/10.17759\/sps.2022130104","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t33337-000","url":"https:\/\/doi.org\/10.1037\/t33337-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T08:03:59Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e578382012-033","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T19:11:29.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3444369","id":"16a9657f-4b23-4808-b139-16c529fad116","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-c85443d2-5444-48b9-8c3d-cd9e516c98a3","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3444369","url":"https:\/\/doi.org\/10.1145\/3444369","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e578382012-033","url":"https:\/\/doi.org\/10.1037\/e578382012-033","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T08:35:08Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t56255-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T11:25:35.000Z","subj_id":"https:\/\/doi.org\/10.17759\/sps.2016070208","id":"085319f9-7bef-4058-aac6-8a998be7f350","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-1a6f0a30-30c4-4e52-9f82-c5a3e7528b0e","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/sps.2016070208","url":"https:\/\/doi.org\/10.17759\/sps.2016070208","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t56255-000","url":"https:\/\/doi.org\/10.1037\/t56255-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T08:39:57Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e412952005-009","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T21:10:40.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3447913.3447927","id":"edc49208-79ee-4ffb-84c6-b220edc41fbb","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-d2825388-5db4-4ab8-97e8-5de3f5324e3a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3447913.3447927","url":"https:\/\/doi.org\/10.1145\/3447913.3447927","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e412952005-009","url":"https:\/\/doi.org\/10.1037\/e412952005-009","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T08:52:35Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.24381\/cds.e2161bac","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T10:13:37.000Z","subj_id":"https:\/\/doi.org\/10.3390\/s21134304","id":"8c5b10aa-c232-44e6-b710-34556f8d24fc","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-cdf1ba11-c026-4472-8956-f10538285898","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3390\/s21134304","url":"https:\/\/doi.org\/10.3390\/s21134304","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.24381\/cds.e2161bac","url":"https:\/\/doi.org\/10.24381\/cds.e2161bac","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T09:52:59Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.3410\/f.727316145.793548433","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T23:42:40.000Z","subj_id":"https:\/\/doi.org\/10.14245\/ns.2244290.145","id":"b1c91b26-c120-42b1-b3a5-6b8b8e0dcce2","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-32a9de87-1bcc-4df6-9073-f67d412aa7ee","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.14245\/ns.2244290.145","url":"https:\/\/doi.org\/10.14245\/ns.2244290.145","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.3410\/f.727316145.793548433","url":"https:\/\/doi.org\/10.3410\/f.727316145.793548433","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T10:03:04Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e572172013-458","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T11:11:13.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3386358","id":"40678c63-c914-4cfa-ad43-112f19b69364","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-d5839e8f-60ec-48bc-839f-701ef3a4b4d6","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3386358","url":"https:\/\/doi.org\/10.1145\/3386358","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e572172013-458","url":"https:\/\/doi.org\/10.1037\/e572172013-458","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T10:52:28Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.15783\/C7J010","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T20:40:21.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3424346","id":"87598cf3-274b-4f15-a486-adc3dbba2a96","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-67778b79-87a8-4184-8664-f259e9ec37e0","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3424346","url":"https:\/\/doi.org\/10.1145\/3424346","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.15783\/C7J010","url":"https:\/\/crawdad.org\/epfl\/mobility\/20090224\/.","method":"landing-page-meta-tag","verification":"confirmed-domain-prefix","work_type_id":"Dataset"},"timestamp":"2023-01-02T10:57:45Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e578132012-015","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T20:13:01.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3457144","id":"6d66ea67-8332-48fa-a3dd-601387d1a0da","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e0f64b07-fd5f-48b0-9bc5-5c04aa06ad5c","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3457144","url":"https:\/\/doi.org\/10.1145\/3457144","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e578132012-015","url":"https:\/\/doi.org\/10.1037\/e578132012-015","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T11:01:16Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e577712012-044","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T23:16:06.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3331160","id":"0e25ba7f-ba5c-4260-acfb-876f5be45be4","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-9c423b81-8f38-4a6a-8439-a2cb2db88b7f","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3331160","url":"https:\/\/doi.org\/10.1145\/3331160","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e577712012-044","url":"https:\/\/doi.org\/10.1037\/e577712012-044","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T11:19:39Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.17894\/ucph.33bd30d2-5796-48f4-a0a8-96fcc0ce6af5","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T17:11:32.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s10851-021-01041-3","id":"a7d784bf-8d19-40fa-ad29-1251c5d62825","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-68464de6-17aa-49b7-a697-8cf6a2d14280","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s10851-021-01041-3","url":"https:\/\/doi.org\/10.1007\/s10851-021-01041-3","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.17894\/ucph.33bd30d2-5796-48f4-a0a8-96fcc0ce6af5","url":"https:\/\/doi.org\/10.17894\/ucph.33bd30d2-5796-48f4-a0a8-96fcc0ce6af5","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T11:36:48Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.823707","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T07:11:49.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3409488","id":"29137b9e-b59a-4ea0-a8bd-d66a7eeff3ae","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-f41fea64-3ae5-4860-b084-fe50752859d2","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3409488","url":"https:\/\/doi.org\/10.1145\/3409488","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.823707","url":"https:\/\/doi.org\/10.5281\/zenodo.823707","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T11:45:54Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.823707","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T07:11:49.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3409488","id":"0f9e8f51-eaed-4ac7-91ed-2e6bf1192f6c","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-f41fea64-3ae5-4860-b084-fe50752859d2","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3409488","url":"https:\/\/doi.org\/10.1145\/3409488","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.823707","url":"https:\/\/doi.org\/10.5281\/zenodo.823707","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T11:45:54Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1285\/i24212113v6i1p129","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T07:41:23.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s42087-021-00232-z","id":"56328e77-6f71-47ad-bf6a-97c99fe152d1","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-f97cba39-7e14-4cea-b5e7-b8a33af4c8b8","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s42087-021-00232-z","url":"https:\/\/doi.org\/10.1007\/s42087-021-00232-z","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1285\/i24212113v6i1p129","url":"https:\/\/doi.org\/10.1285\/i24212113v6i1p129","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T11:53:22Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e572172013-064","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T11:10:41.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3375188","id":"82229b70-6269-4017-96bb-654a1d9973c0","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-51006864-09bd-41e3-aa93-5cbb6b9a8ab5","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3375188","url":"https:\/\/doi.org\/10.1145\/3375188","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e572172013-064","url":"https:\/\/doi.org\/10.1037\/e572172013-064","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T12:15:04Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e572172013-271","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T10:42:33.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3411825","id":"79d550f9-347e-42e0-9165-2a85da9c2ede","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-db5255a6-c509-4c8c-bdda-a00269731c8c","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3411825","url":"https:\/\/doi.org\/10.1145\/3411825","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e572172013-271","url":"https:\/\/doi.org\/10.1037\/e572172013-271","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T13:08:27Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:36:07 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?cursor=79d550f9-347e-42e0-9165-2a85da9c2ede&from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '23462' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:29 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"c0fb781d-3214-414b-8f4a-41f1760e347c","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t05462-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T13:40:57.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3377342","id":"f52ac9cd-3a03-4449-a761-dbd896482b60","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-274a2a7d-0b72-4ed9-aefd-645775c56300","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3377342","url":"https:\/\/doi.org\/10.1145\/3377342","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t05462-000","url":"https:\/\/doi.org\/10.1037\/t05462-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T13:09:26Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.6084\/m9.figshare.8085755","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T09:12:49.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3408897","id":"b73ed211-fc70-4fed-9863-bd5d94ec9cfb","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-7b757083-de09-4d45-8b36-b36eb52d10f1","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3408897","url":"https:\/\/doi.org\/10.1145\/3408897","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.6084\/m9.figshare.8085755","url":"https:\/\/doi.org\/10.6084\/m9.figshare.8085755","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T13:17:46Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5061\/dryad.mcvdnck0f","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T18:41:45.000Z","subj_id":"https:\/\/doi.org\/10.1098\/rstb.2020.0215","id":"d968a7f8-3f45-44fa-b258-3671c880fc69","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-7ff7c7ac-9952-4bfe-b572-232b76718abd","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1098\/rstb.2020.0215","url":"https:\/\/doi.org\/10.1098\/rstb.2020.0215","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5061\/dryad.mcvdnck0f","url":"https:\/\/doi.org\/10.5061\/dryad.mcvdnck0f","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T13:40:51Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1787\/b86d1fc8-en","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T17:10:52.000Z","subj_id":"https:\/\/doi.org\/10.30586\/pek.939605","id":"cfd70c52-faa9-45aa-84b5-9aecf62e7e0e","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-16b6c81c-c7eb-4c8f-847c-dcefb45f0777","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.30586\/pek.939605","url":"https:\/\/doi.org\/10.30586\/pek.939605","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1787\/b86d1fc8-en","url":"https:\/\/doi.org\/10.1787\/b86d1fc8-en","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T13:41:07Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1285\/i20356609v12i3p819","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T23:14:16.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3492823","id":"c47f020d-7fc4-474f-ba2f-bf19206ac204","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-300b1eff-5219-4bd8-b720-89b996e69181","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3492823","url":"https:\/\/doi.org\/10.1145\/3492823","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1285\/i20356609v12i3p819","url":"https:\/\/doi.org\/10.1285\/i20356609v12i3p819","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T13:44:13Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5441\/002","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T09:41:02.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3379446","id":"8b14486c-5583-4284-96d6-d833526b4e94","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-dc91648c-bf06-4aed-baf5-f29f180b582b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3379446","url":"https:\/\/doi.org\/10.1145\/3379446","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5441\/002","url":"https:\/\/doi.org\/10.5441\/002","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T13:51:54Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5441\/002\/icdt.2014.22","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T09:41:02.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3379446","id":"46f901a5-f078-4d74-9a3a-5b18f8d30a5c","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-dc91648c-bf06-4aed-baf5-f29f180b582b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3379446","url":"https:\/\/doi.org\/10.1145\/3379446","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5441\/002\/icdt.2014.22","url":"https:\/\/doi.org\/10.5441\/002\/icdt.2014.22","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T13:51:54Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5441\/002\/icdt.2014.22","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T09:41:02.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3379446","id":"4367eb32-31eb-455f-a8a5-f772cf1659a7","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-dc91648c-bf06-4aed-baf5-f29f180b582b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3379446","url":"https:\/\/doi.org\/10.1145\/3379446","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5441\/002\/icdt.2014.22","url":"https:\/\/doi.org\/10.5441\/002\/icdt.2014.22","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T13:51:54Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.854445","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T11:11:03.000Z","subj_id":"https:\/\/doi.org\/10.7717\/peerj.11622","id":"6add493e-6422-48eb-bfc6-ccbdd57db2c4","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-66412d24-9ce6-4a05-9355-b6dea9cf17a4","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.7717\/peerj.11622","url":"https:\/\/doi.org\/10.7717\/peerj.11622","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.854445","url":"https:\/\/doi.org\/10.5281\/zenodo.854445","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T14:00:28Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t07671-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T10:13:09.000Z","subj_id":"https:\/\/doi.org\/10.1111\/jpr.12345","id":"8c7cbc95-3dd1-4e7e-8e92-72291e17de7d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-86c49204-bd14-4f7c-ac24-5618f8cc3391","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1111\/jpr.12345","url":"https:\/\/doi.org\/10.1111\/jpr.12345","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t07671-000","url":"https:\/\/doi.org\/10.1037\/t07671-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T14:17:21Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t04262-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T13:44:01.000Z","subj_id":"https:\/\/doi.org\/10.21070\/acopen.7.2022.5098","id":"faf57ac1-234d-4924-ace1-656dcb526aab","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-909934f4-c813-4a42-a38c-e7d7ae2c2938","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.21070\/acopen.7.2022.5098","url":"https:\/\/doi.org\/10.21070\/acopen.7.2022.5098","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t04262-000","url":"https:\/\/doi.org\/10.1037\/t04262-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T14:25:37Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t63409-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T06:40:15.000Z","subj_id":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","id":"8061fcfe-6762-4211-9e48-8154b0a5e563","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-96cedc7f-952f-46f5-ab4d-9f12fdba547b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","url":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t63409-000","url":"https:\/\/doi.org\/10.1037\/t63409-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T14:38:55Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t15145-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T20:13:45.000Z","subj_id":"https:\/\/doi.org\/10.17759\/exppsy.2019120112","id":"6bf54567-c98d-42aa-a94d-ffd54d26b680","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-96809a80-60c0-4bba-9588-28b12bcf3098","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/exppsy.2019120112","url":"https:\/\/doi.org\/10.17759\/exppsy.2019120112","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t15145-000","url":"https:\/\/doi.org\/10.1037\/t15145-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T15:23:42Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-art_rhetoric.1926","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T12:40:40.000Z","subj_id":"https:\/\/doi.org\/10.1080\/00933104.2021.1933665","id":"f299f70b-9950-4b3d-91a4-8dd9d2097686","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-d45f55cb-917c-4c03-8918-74cda30ae3e3","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/00933104.2021.1933665","url":"https:\/\/doi.org\/10.1080\/00933104.2021.1933665","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-art_rhetoric.1926","url":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-art_rhetoric.1926","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T15:26:01Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-politics.1932","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T12:40:40.000Z","subj_id":"https:\/\/doi.org\/10.1080\/00933104.2021.1933665","id":"65a16639-38da-4e51-814b-6be591cfc15b","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-d45f55cb-917c-4c03-8918-74cda30ae3e3","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/00933104.2021.1933665","url":"https:\/\/doi.org\/10.1080\/00933104.2021.1933665","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-politics.1932","url":"https:\/\/doi.org\/10.4159\/DLCL.aristotle-politics.1932","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T15:26:01Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1163\/2210-7975_hrd-2156-0662","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T11:11:05.000Z","subj_id":"https:\/\/doi.org\/10.3224\/fug.v2i2.04","id":"06b75f12-6c21-46c8-a35c-98f8a15445d8","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-80ee958f-ff84-4ae7-93ef-9a2b7e1f87b3","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.3224\/fug.v2i2.04","url":"https:\/\/doi.org\/10.3224\/fug.v2i2.04","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1163\/2210-7975_hrd-2156-0662","url":"https:\/\/doi.org\/10.1163\/2210-7975_hrd-2156-0662","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T15:45:06Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t58031-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T11:41:37.000Z","subj_id":"https:\/\/doi.org\/10.21560\/spcd.vi.645465","id":"33a2fc48-5995-452e-9dca-52eab65c4b7a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-c80e645d-d7e1-47b8-a1a2-10db8ea92395","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.21560\/spcd.vi.645465","url":"https:\/\/doi.org\/10.21560\/spcd.vi.645465","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t58031-000","url":"https:\/\/doi.org\/10.1037\/t58031-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T16:01:51Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.4159\/DLCL.epictetus-discourses.1925","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T18:10:51.000Z","subj_id":"https:\/\/doi.org\/10.11612\/resphil.2061","id":"38543e6b-aecf-4d76-aaf3-0dc67792277e","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-687067ce-7c49-4fef-aadd-54e8801292f7","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.11612\/resphil.2061","url":"https:\/\/doi.org\/10.11612\/resphil.2061","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.4159\/DLCL.epictetus-discourses.1925","url":"https:\/\/doi.org\/10.4159\/DLCL.epictetus-discourses.1925","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T16:16:18Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.3897727","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T23:41:39.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3458770","id":"40276a88-49cd-4805-bcbf-f0fbe7b9cf38","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-d73562ce-c917-40ea-a6aa-98347acf767a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3458770","url":"https:\/\/doi.org\/10.1145\/3458770","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.3897727","url":"https:\/\/doi.org\/10.5281\/zenodo.3897727","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T16:16:41Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t07502-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T15:10:05.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s10802-021-00842-9","id":"834aeb49-a4d2-4a5b-a8e5-1c7c99a5175c","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-b5acdd2f-e8ca-4bb5-985f-24884400ee25","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s10802-021-00842-9","url":"https:\/\/doi.org\/10.1007\/s10802-021-00842-9","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t07502-000","url":"https:\/\/doi.org\/10.1037\/t07502-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T16:22:50Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1145\/3235045","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T21:41:03.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3473573","id":"7ecb694b-d39e-4603-b8ff-650a1a9d2a26","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-641ab25a-6232-451d-bfbc-8052a7809452","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3473573","url":"https:\/\/doi.org\/10.1145\/3473573","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1145\/3235045","url":"https:\/\/doi.org\/10.1145\/3235045","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T16:25:03Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1145\/3373113","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T21:41:03.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3473573","id":"28c50085-5714-4713-9268-ae60771c159c","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-641ab25a-6232-451d-bfbc-8052a7809452","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3473573","url":"https:\/\/doi.org\/10.1145\/3473573","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1145\/3373113","url":"https:\/\/doi.org\/10.1145\/3373113","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T16:25:03Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1126\/science.abb8633","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T14:49:02.000Z","subj_id":"https:\/\/doi.org\/10.1139\/facets-2020-0077","id":"422f8df9-d9cf-4bfd-af88-629d70ed4372","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e2d5a807-30e9-4748-a124-ba4bac5a570b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1139\/facets-2020-0077","url":"https:\/\/doi.org\/10.1139\/facets-2020-0077","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1126\/science.abb8633","url":"https:\/\/doi.org\/10.1126\/science.abb8633","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T16:40:55Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t27734-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T21:19:11.000Z","subj_id":"https:\/\/doi.org\/10.17759\/exppsy.2020130306","id":"60913f7c-4f3b-4258-beca-3086b8b7adf1","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-704f841c-202f-4fd2-999a-85fb190a0615","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/exppsy.2020130306","url":"https:\/\/doi.org\/10.17759\/exppsy.2020130306","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t27734-000","url":"https:\/\/doi.org\/10.1037\/t27734-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T16:54:49Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t04767-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T15:40:08.000Z","subj_id":"https:\/\/doi.org\/10.17759\/exppsy.2017100304","id":"c0fb781d-3214-414b-8f4a-41f1760e347c","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-acf3101a-9265-46e3-93be-f5acb6554895","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17759\/exppsy.2017100304","url":"https:\/\/doi.org\/10.17759\/exppsy.2017100304","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t04767-000","url":"https:\/\/doi.org\/10.1037\/t04767-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T16:59:32Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:36:08 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?cursor=c0fb781d-3214-414b-8f4a-41f1760e347c&from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '23679' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:32 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"5d91bf35-341c-4551-98a1-f45033b5453b","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e576962012-008","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T23:16:06.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3331160","id":"38aa5a14-df7a-4b59-9d03-7446f33c85eb","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-e1cd5c2c-7c6c-43b8-9663-b04981820c18","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3331160","url":"https:\/\/doi.org\/10.1145\/3331160","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e576962012-008","url":"https:\/\/doi.org\/10.1037\/e576962012-008","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T17:24:25Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.13140\/RG.2.2.29642.49604","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T22:43:25.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3494825.3494830","id":"46885850-c1b8-4724-af3e-e914c26a4be6","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-93629ec5-60b4-495e-b5c5-f7bfe233a7b6","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3494825.3494830","url":"https:\/\/doi.org\/10.1145\/3494825.3494830","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.13140\/RG.2.2.29642.49604","url":"https:\/\/doi.org\/10.13140\/RG.2.2.29642.49604","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T17:58:28Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.13140\/RG.2.2.36162.30401","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T22:43:25.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3494825.3494830","id":"e24653d5-1e94-4381-b154-60bb7e0f5e5a","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-93629ec5-60b4-495e-b5c5-f7bfe233a7b6","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3494825.3494830","url":"https:\/\/doi.org\/10.1145\/3494825.3494830","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.13140\/RG.2.2.36162.30401","url":"https:\/\/doi.org\/10.13140\/RG.2.2.36162.30401","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T17:58:29Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.7937\/K9\/TCIA.2015.LO9QL9SX","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T23:41:20.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3467471","id":"28f792b2-6643-42db-899a-598ff2a0830f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-8c1e8820-f1e1-40d0-b32f-28614a32d5eb","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3467471","url":"https:\/\/doi.org\/10.1145\/3467471","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.7937\/K9\/TCIA.2015.LO9QL9SX","url":"http:\/\/doi.org\/10.7937\/K9\/TCIA.2015.LO9QL9SX","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T18:07:33Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.14284\/170","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T04:40:42.000Z","subj_id":"https:\/\/doi.org\/10.1007\/s12526-021-01194-9","id":"01145c52-0309-40a7-9aba-cd00fb449c1f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-26a57a67-1fe5-4b71-bb3d-7f1eca57aca2","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1007\/s12526-021-01194-9","url":"https:\/\/doi.org\/10.1007\/s12526-021-01194-9","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.14284\/170","url":"https:\/\/doi.org\/10.14284\/170","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T18:09:36Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1287\/65b09d50-252d-4794-9004-5a8d2357add2","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T07:11:59.000Z","subj_id":"https:\/\/doi.org\/10.4467\/22996362pz.21.013.13478","id":"ab5a4b94-8717-4379-bbe4-68dd3c64479d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-5af2264d-a3ae-492c-8205-9fc31961c9d5","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.4467\/22996362pz.21.013.13478","url":"https:\/\/doi.org\/10.4467\/22996362pz.21.013.13478","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1287\/65b09d50-252d-4794-9004-5a8d2357add2","url":"https:\/\/doi.org\/10.1287\/65b09d50-252d-4794-9004-5a8d2357add2","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T18:19:05Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t49981-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T20:40:53.000Z","subj_id":"https:\/\/doi.org\/10.1136\/bmjopen-2021-052312","id":"fa844ec6-71f6-4250-9280-205f1fca8221","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-936da568-6d66-4b49-886b-25ee3f814d24","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1136\/bmjopen-2021-052312","url":"https:\/\/doi.org\/10.1136\/bmjopen-2021-052312","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t49981-000","url":"https:\/\/doi.org\/10.1037\/t49981-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T18:19:51Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e577762012-013","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T11:11:13.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3386358","id":"7013193d-1100-4bcf-8e79-c4cb62ca7ba2","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-392600e9-76b5-4d21-805e-773a89a7cdc0","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3386358","url":"https:\/\/doi.org\/10.1145\/3386358","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e577762012-013","url":"https:\/\/doi.org\/10.1037\/e577762012-013","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T18:20:06Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.18128\/D070.V6.4","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T17:40:09.000Z","subj_id":"https:\/\/doi.org\/10.1016\/j.sleh.2021.05.004","id":"82e2ad5b-a462-4c49-a9fb-eff190229df2","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-dfaebeed-7993-45b9-9fee-157e6a3fb1a3","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1016\/j.sleh.2021.05.004","url":"https:\/\/doi.org\/10.1016\/j.sleh.2021.05.004","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.18128\/D070.V6.4","url":"https:\/\/doi.org\/10.18128\/D070.V6.4.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T18:21:56Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t00393-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T06:08:22.000Z","subj_id":"https:\/\/doi.org\/10.18332\/ejm\/136453","id":"9612f3b1-3c1f-40e7-853c-6b9e5a685b37","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-ef1cef88-5322-4ea9-afe1-c1ab8ecc1479","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.18332\/ejm\/136453","url":"https:\/\/doi.org\/10.18332\/ejm\/136453","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t00393-000","url":"https:\/\/doi.org\/10.1037\/t00393-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T18:38:26Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t45196-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T06:40:15.000Z","subj_id":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","id":"9d3ef0e2-13b0-4fa3-968d-2adf58dc0786","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-0df6c0b0-d5dc-4a7d-a493-a5a2a9b03dd8","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","url":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t45196-000","url":"https:\/\/doi.org\/10.1037\/t45196-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T18:38:51Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t58343-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T06:40:15.000Z","subj_id":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","id":"dd423a6c-7346-425a-8754-c97083396855","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-1676ddac-9360-42a9-ae87-567e0e00de42","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","url":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t58343-000","url":"https:\/\/doi.org\/10.1037\/t58343-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T18:38:58Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t00470-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T06:40:15.000Z","subj_id":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","id":"d0ede66e-405e-4e8f-b0d6-999db6db66dc","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-1676ddac-9360-42a9-ae87-567e0e00de42","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","url":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t00470-000","url":"https:\/\/doi.org\/10.1037\/t00470-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T18:38:58Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t14366-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T06:40:15.000Z","subj_id":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","id":"9d0b61a9-e862-47f4-8cb6-4616c8a9353e","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-1676ddac-9360-42a9-ae87-567e0e00de42","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","url":"https:\/\/doi.org\/10.1080\/10632921.2021.1919586","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t14366-000","url":"https:\/\/doi.org\/10.1037\/t14366-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T18:38:58Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t02824-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T15:42:44.000Z","subj_id":"https:\/\/doi.org\/10.17826\/cumj.1179024","id":"ac05549d-6aff-4f42-a1d8-28d6a4e93d31","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-70973fad-d802-4bcc-8fdb-ffe7b74e91f3","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.17826\/cumj.1179024","url":"https:\/\/doi.org\/10.17826\/cumj.1179024","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t02824-000","url":"https:\/\/doi.org\/10.1037\/t02824-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T18:45:07Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e572172013-456","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T10:41:29.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3394980","id":"afdcfe96-2dea-47da-8adb-8ae2d9df7545","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-1853566d-025c-443b-a7b6-bf53faecb590","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3394980","url":"https:\/\/doi.org\/10.1145\/3394980","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e572172013-456","url":"https:\/\/doi.org\/10.1037\/e572172013-456","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T18:45:08Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e415842005-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T12:13:27.000Z","subj_id":"https:\/\/doi.org\/10.1080\/1547688x.2021.1909788","id":"4f70524b-d56a-45dd-90fc-c6fe102acdcb","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-225db34c-9edb-405d-b814-0440a9817de9","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1080\/1547688x.2021.1909788","url":"https:\/\/doi.org\/10.1080\/1547688x.2021.1909788","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e415842005-001","url":"https:\/\/doi.org\/10.1037\/e415842005-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T19:02:40Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.3410\/f.1088852.541966","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T16:43:31.000Z","subj_id":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.v39n2p102","id":"b990bafb-644c-45e2-bc5f-bfb71eba7cc7","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-68cdf039-9ca1-4ffb-af36-f54ea0f762f3","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.v39n2p102","url":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.v39n2p102","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.3410\/f.1088852.541966","url":"https:\/\/doi.org\/10.3410\/f.1088852.541966","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T19:22:41Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5281\/zenodo.3351275","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T11:40:41.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3389010","id":"00f4e3e4-769a-4ad7-870f-535e5723c789","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-7915252e-4cc7-41eb-998c-eb3fb336f943","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3389010","url":"https:\/\/doi.org\/10.1145\/3389010","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5281\/zenodo.3351275","url":"https:\/\/doi.org\/10.5281\/zenodo.3351275","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T19:54:37Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.6084\/m9.figshare.20218133.v3","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T12:14:21.000Z","subj_id":"https:\/\/doi.org\/10.5194\/acp-2022-682","id":"0a02c336-d766-4098-9201-842db49e640d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-f468c945-2c34-4008-b869-02bef288589f","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/acp-2022-682","url":"https:\/\/doi.org\/10.5194\/acp-2022-682","work_type_id":"posted-content"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.6084\/m9.figshare.20218133.v3","url":"https:\/\/doi.org\/10.6084\/m9.figshare.20218133.v3","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T20:06:25Z","relation_type_id":"is-part-of"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5441\/002\/edbt.2020.21","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T21:41:00.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3460207","id":"6b7d757d-a8d8-46bc-960b-2c54bdb254f7","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-90640836-10e6-4671-8855-a2b2b7d17b2b","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3460207","url":"https:\/\/doi.org\/10.1145\/3460207","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5441\/002\/edbt.2020.21","url":"https:\/\/doi.org\/10.5441\/002\/edbt.2020.21","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T21:12:13Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.7927\/H42V2D1C","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T12:13:40.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3390251.3390256","id":"128927c2-8cfb-4176-9c25-38cdda1ac42d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-bde28104-44cb-460c-beaf-08a2f7221081","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3390251.3390256","url":"https:\/\/doi.org\/10.1145\/3390251.3390256","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.7927\/H42V2D1C","url":"https:\/\/doi.org\/10.7927\/H42V2D1C","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T21:40:45Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t12446-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T08:41:26.000Z","subj_id":"https:\/\/doi.org\/10.1177\/08902070211043023","id":"177e84e9-2645-46a0-900b-e7e22e191892","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-c487592f-562c-485d-be9f-a8fad58cc606","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1177\/08902070211043023","url":"https:\/\/doi.org\/10.1177\/08902070211043023","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t12446-000","url":"https:\/\/doi.org\/10.1037\/t12446-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T21:41:07Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1126\/science.caredit.abe1220","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T14:49:02.000Z","subj_id":"https:\/\/doi.org\/10.1139\/facets-2020-0077","id":"650daea3-eb73-447c-a002-87a36873d387","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-7f0a8b4a-118c-4e65-81ff-b257733a6c5d","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1139\/facets-2020-0077","url":"https:\/\/doi.org\/10.1139\/facets-2020-0077","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1126\/science.caredit.abe1220","url":"https:\/\/doi.org\/10.1126\/science.caredit.abe1220","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T21:42:25Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t41588-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T22:42:07.000Z","subj_id":"https:\/\/doi.org\/10.4236\/psych.2021.126057","id":"5d91bf35-341c-4551-98a1-f45033b5453b","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-d421e6b5-9dbb-481c-aa2c-3ccbbb86e967","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.4236\/psych.2021.126057","url":"https:\/\/doi.org\/10.4236\/psych.2021.126057","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t41588-000","url":"https:\/\/doi.apa.org\/doi\/10.1037\/t41588-000","method":"url-text","verification":"recognised-domain-prefix","work_type_id":"dataset"},"timestamp":"2023-01-02T21:44:30Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:36:11 GMT -- request: - method: get - uri: https://api.eventdata.crossref.org/v1/events?cursor=5d91bf35-341c-4551-98a1-f45033b5453b&from-collected-date=2023-01-01&mailto=info@datacite.org&rows=25&scholix=true&source=crossref&until-collected-date=2023-01-02 - body: - encoding: US-ASCII - string: '' - headers: - User-Agent: - - Mozilla/5.0 (compatible; Maremma/4.9.8; mailto:info@datacite.org) - Accept: - - text/html,application/json,application/xml;q=0.9, text/plain;q=0.8,image/png,*/*;q=0.5 - Content-Type: - - application/json;charset=UTF-8 - Accept-Encoding: - - gzip,deflate - response: - status: - code: 200 - message: OK - headers: - Content-Type: - - application/json;charset=UTF-8 - Vary: - - Accept - Access-Control-Allow-Origin: - - "*" - Content-Length: - - '4875' - Server: - - http-kit - Date: - - Fri, 17 Nov 2023 11:37:34 GMT - body: - encoding: ASCII-8BIT - string: '{"status":"ok","message-type":"event-list","message":{"next-cursor":"aa939d62-1e4e-40e2-a04b-ffddf181ae2f","total-results":355,"items-per-page":25,"events":[{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/t05462-000","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T16:43:31.000Z","subj_id":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.v39n2p122","id":"849cdef6-0f41-4c7f-bce4-8ff9b601d014","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-eab3542e-1e61-4fcb-89d4-9d85ca7b06b8","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.v39n2p122","url":"https:\/\/doi.org\/10.47102\/annals-acadmedsg.v39n2p122","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/t05462-000","url":"https:\/\/doi.org\/10.1037\/t05462-000","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T21:51:55Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.5067\/MODIS\/MCD12C1.006","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T08:15:13.000Z","subj_id":"https:\/\/doi.org\/10.5194\/amt-14-4639-2021","id":"00a1ee4c-2536-4d99-ac3f-4b97f41711f1","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-f87b8035-75d7-448c-b92f-80aef47c220a","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5194\/amt-14-4639-2021","url":"https:\/\/doi.org\/10.5194\/amt-14-4639-2021","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.5067\/MODIS\/MCD12C1.006","url":"https:\/\/doi.org\/10.5067\/MODIS\/MCD12C1.006,","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T22:27:21Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e508782020-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T10:12:46.000Z","subj_id":"https:\/\/doi.org\/10.5304\/jafscd.2021.103.003","id":"947a6b66-d49d-49db-98a4-50f50f992e5d","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-faaba894-edbc-483d-8c65-2e02786ef971","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.5304\/jafscd.2021.103.003","url":"https:\/\/doi.org\/10.5304\/jafscd.2021.103.003","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e508782020-001","url":"https:\/\/doi.org\/10.1037\/e508782020-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T22:54:38Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.7910\/DVN\/28075","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T21:40:44.000Z","subj_id":"https:\/\/doi.org\/10.1145\/3443687","id":"e84c16a7-9fbe-42b6-b3c2-3ed5ddc0bc03","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-715613de-900c-447f-940d-4728ef224906","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.1145\/3443687","url":"https:\/\/doi.org\/10.1145\/3443687","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.7910\/DVN\/28075","url":"https:\/\/doi.org\/10.7910\/DVN\/28075.","method":"doi-literal","verification":"literal","work_type_id":"Dataset"},"timestamp":"2023-01-02T23:03:01Z","relation_type_id":"references"},{"license":"https:\/\/creativecommons.org\/publicdomain\/zero\/1.0\/","obj_id":"https:\/\/doi.org\/10.1037\/e566622006-001","source_token":"36c35e23-8757-4a9d-aacf-345e9b7eb50d","occurred_at":"2023-01-01T23:10:49.000Z","subj_id":"https:\/\/doi.org\/10.4049\/jimmunol.173.1.559","id":"aa939d62-1e4e-40e2-a04b-ffddf181ae2f","evidence_record":"https:\/\/evidence.eventdata.crossref.org\/evidence\/20230101-metadata-4a1f1018-d513-4432-95a7-5a02d753e730","terms":"https:\/\/doi.org\/10.13003\/CED-terms-of-use","action":"add","subj":{"pid":"https:\/\/doi.org\/10.4049\/jimmunol.173.1.559","url":"https:\/\/doi.org\/10.4049\/jimmunol.173.1.559","work_type_id":"journal-article"},"source_id":"crossref","obj":{"pid":"https:\/\/doi.org\/10.1037\/e566622006-001","url":"https:\/\/doi.org\/10.1037\/e566622006-001","method":"doi-literal","verification":"literal","work_type_id":"dataset"},"timestamp":"2023-01-02T23:49:31Z","relation_type_id":"references"}]}}' - http_version: null - recorded_at: Fri, 17 Nov 2023 11:36:13 GMT -recorded_with: VCR 5.1.0 diff --git a/spec/models/crossref_spec.rb b/spec/models/crossref_spec.rb index b6f095e1..14578833 100644 --- a/spec/models/crossref_spec.rb +++ b/spec/models/crossref_spec.rb @@ -1,50 +1,61 @@ require "rails_helper" describe Crossref, type: :model, vcr: true do - let(:from_date) { "2018-01-04" } - let(:until_date) { "2018-08-05" } - - describe ".import_by_month" do - context "with valid parameters" do - it "queues jobs for each month between from_date and until_date" do - response = Crossref.import_by_month(from_date: from_date, until_date: until_date) - expect(response).to eq("Queued import for DOIs updated from 2018-01-01 until 2018-08-31.") + let(:from_date) { "2023-12-17" } + let(:until_date) { "2023-12-18" } + + describe ".import_by_month_dates" do + describe "returns the correct dates" do + it "when dates are provided" do + options = { + from_date: from_date, + until_date: until_date + } + + expect(Crossref.import_by_month_dates(options)).to(eq({ + from_date: Date.parse("2023-12-01"), + until_date: Date.parse("2023-12-31") + })) end - end - context "with missing parameters" do - it "queues jobs with default dates (current month)" do - response = Crossref.import_by_month - expect(response).to start_with("Queued import for DOIs updated from") + it "when dates are not provided" do + allow(Date).to(receive(:current).and_return(Date.parse("2023-01-12"))) + + from_date = nil + until_date = nil + + expect(Crossref.import_by_month_dates).to(eq({ + from_date: Date.parse("2023-01-01"), + until_date: Date.parse("2023-01-31") + })) end end end - describe ".import" do - context "with valid parameters" do - it "queues jobs for DOIs updated within the specified date range" do - until_date = "2018-01-31" - response = Crossref.import(from_date: from_date, until_date: until_date) - expect(response).to be_a(Integer).and be >= 0 + describe ".import_dates" do + describe "returns the correct dates" do + it "when dates are provided" do + options = { + from_date: from_date, + until_date: until_date + } + + expect(Crossref.import_dates(options)).to(eq({ + from_date: Date.parse(from_date), + until_date: Date.parse(until_date) + })) end - end - - context "with missing parameters" do - it "queues jobs for the default date range (yesterday to today)" do - # Stub Date.current to return a fixed date - allow(Date).to receive(:current).and_return(Date.new(2023, 1, 2)) - # Use a spy on Date.parse - date_spy = spy("Date") - allow(Date).to receive(:parse).and_wrap_original do |original_method, *args| - date_spy.parse(*args) - original_method.call(*args) - end + it "when dates are not provided" do + allow(Date).to(receive(:current).and_return(Date.parse("2023-01-12"))) - # Mocking Date.parse - response = Crossref.import + from_date = nil + until_date = nil - expect(response).to be_a(Integer).and be >= 0 + expect(Crossref.import_dates).to(eq({ + from_date: Date.parse("2023-01-11"), + until_date: Date.parse("2023-01-12") + })) end end end @@ -59,20 +70,19 @@ describe "#get_query_url" do it "returns a valid query URL with the given options" do crossref = Crossref.new - query_url = crossref.get_query_url(from_date: from_date, until_date: until_date, rows: 10, cursor: "abc123") - expect(query_url).to include("source=crossref") - expect(query_url).to include("from-collected-date=#{from_date}") - expect(query_url).to include("until-collected-date=#{until_date}") - expect(query_url).to include("rows=10") + query_url = crossref.get_query_url(from_date: from_date, until_date: until_date, cursor: "abc123") + expect(query_url).to include("from-updated-time=#{from_date}") + expect(query_url).to include("until-updated-time=#{until_date}") expect(query_url).to include("cursor=abc123") + expect(query_url).to include("not-asserted-by=https%3A%2F%2Fror.org%2F04wxnsj81") + expect(query_url).to include("object.registration-agency=DataCite") end end describe "#queue_jobs" do context "when there are DOIs to import" do it "queues jobs and returns the total number of works queued" do - allow_any_instance_of(Crossref).to receive(:get_total).and_return([5, "next_cursor"]) - allow_any_instance_of(Crossref).to receive(:process_data).and_return([5, "next_cursor"]) + allow_any_instance_of(Crossref).to receive(:process_data).and_return([5, nil]) response = Crossref.new.queue_jobs(from_date: from_date, until_date: until_date) @@ -80,8 +90,7 @@ end it "sends a Slack notification when slack_webhook_url is present" do - allow_any_instance_of(Crossref).to receive(:get_total).and_return([1, "cursor"]) - allow_any_instance_of(Crossref).to receive(:process_data).and_return([1, "cursor"]) + allow_any_instance_of(Crossref).to receive(:process_data).and_return([1, nil]) allow(Rails.logger).to receive(:info) @@ -96,7 +105,7 @@ context "when there are no DOIs to import" do it "returns 0 and logs a message when there are no DOIs to import" do - allow_any_instance_of(Crossref).to receive(:get_total).and_return([0, nil]) + allow_any_instance_of(Crossref).to receive(:process_data).and_return([0, nil]) # Spy on Rails.logger logger_spy = spy("logger") From cbe8d9b5c37fc04d85c4de86bc80da12abf63c45 Mon Sep 17 00:00:00 2001 From: Wendel Fabian Chinsamy Date: Wed, 27 Dec 2023 11:07:40 +0200 Subject: [PATCH 5/6] encapsulate methods as protected to still enable testing --- app/models/crossref.rb | 42 +++++++++++++++++++++++++++++------------- 1 file changed, 29 insertions(+), 13 deletions(-) diff --git a/app/models/crossref.rb b/app/models/crossref.rb index ed18b5cb..4879f07d 100644 --- a/app/models/crossref.rb +++ b/app/models/crossref.rb @@ -1,17 +1,17 @@ class Crossref < Base - def self.import_by_month_dates(options={}) - { - from_date: (options[:from_date].present? ? Date.parse(options[:from_date]) : Date.current).beginning_of_month, - until_date: (options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current).end_of_month - } - end - - def self.import_dates(options={}) - { - from_date: options[:from_date].present? ? Date.parse(options[:from_date]) : Date.current - 1.day, - until_date: options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current - } - end + # def self.import_by_month_dates(options={}) + # { + # from_date: (options[:from_date].present? ? Date.parse(options[:from_date]) : Date.current).beginning_of_month, + # until_date: (options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current).end_of_month + # } + # end + + # def self.import_dates(options={}) + # { + # from_date: options[:from_date].present? ? Date.parse(options[:from_date]) : Date.current - 1.day, + # until_date: options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current + # } + # end def self.import_by_month(options = {}) dates = import_by_month_dates(options) @@ -140,6 +140,22 @@ def self.push_item(item) end end + protected + + def self.import_by_month_dates(options={}) + { + from_date: (options[:from_date].present? ? Date.parse(options[:from_date]) : Date.current).beginning_of_month, + until_date: (options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current).end_of_month + } + end + + def self.import_dates(options={}) + { + from_date: options[:from_date].present? ? Date.parse(options[:from_date]) : Date.current - 1.day, + until_date: options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current + } + end + private def send_slack_notification(options, text, total) From 2b95095de101a27c261b34ef63d32a6546202837 Mon Sep 17 00:00:00 2001 From: Wendel Fabian Chinsamy Date: Thu, 4 Jan 2024 11:16:30 +0200 Subject: [PATCH 6/6] uncomment code --- app/models/crossref.rb | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/app/models/crossref.rb b/app/models/crossref.rb index 4879f07d..387242fc 100644 --- a/app/models/crossref.rb +++ b/app/models/crossref.rb @@ -1,17 +1,17 @@ class Crossref < Base - # def self.import_by_month_dates(options={}) - # { - # from_date: (options[:from_date].present? ? Date.parse(options[:from_date]) : Date.current).beginning_of_month, - # until_date: (options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current).end_of_month - # } - # end - - # def self.import_dates(options={}) - # { - # from_date: options[:from_date].present? ? Date.parse(options[:from_date]) : Date.current - 1.day, - # until_date: options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current - # } - # end + def self.import_by_month_dates(options={}) + { + from_date: (options[:from_date].present? ? Date.parse(options[:from_date]) : Date.current).beginning_of_month, + until_date: (options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current).end_of_month + } + end + + def self.import_dates(options={}) + { + from_date: options[:from_date].present? ? Date.parse(options[:from_date]) : Date.current - 1.day, + until_date: options[:until_date].present? ? Date.parse(options[:until_date]) : Date.current + } + end def self.import_by_month(options = {}) dates = import_by_month_dates(options)